.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 8px; /* расстояние между элементами */
}

.cart-item-info {
  flex-grow: 1; /* чтобы текст занимал оставшееся место */
  font-size: 0.9rem;
  color: #212529;
}

.cart-item-buttons {
  display: flex;
  gap: 4px;
}

.cart-btn {
  padding: 0;
  width: 28px;
  height: 28px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  user-select: none;
  border: 1px solid #ced4da;
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
  color: #212529;
  transition: background-color 0.2s, color 0.2s;
}

.cart-btn:hover {
  background-color: #007bff;
  color: white;
}

.cart-btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.5);
}

.disclaimer-top {
  font-size: 0.9rem;
  color: #555;
  text-align: center;
  margin: 10px 0;
  padding: 8px;
  background-color: #f8f9fa; /* светлый фон */
  border-bottom: 1px solid #ccc;
}