/* cart-lines.css */

/* Контейнер количества */
.cart-line__qty {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

/* Число */
.qty-value {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 500;
}

/* Колонка со стрелками — только лейаут, сами стрелки рисуются в общем CSS через ::before */
.qty-arrows {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.qty-arrows .qty-btn {
  position: relative;
  width: 18px;
  height: 18px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

/* ---------- Блок цены справа ---------- */

.cart-line__price {
  justify-self: flex-end;
  text-align: right;
}

/* Обёртка: колонка как на референсе */
.cl-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.cl-price-now {
  font-size: 1rem;
  font-weight: 600;
}

/* Строка со старой ценой и бейджем */
.cl-price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.cl-price-old {
  opacity: 0.7;
}

.cl-price-badge {
  margin-left: 0.0rem;
  padding: 0.1rem 0.4rem;
  border-radius: 0.5rem;
  background: #EAD6C0;
  color: #24282C;
  font-size: 0.75rem;
  font-weight: 600;
}
