/* .cart-wrapper{
	background-color: #fff;
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	min-width: 200px;
	width: 55%;
	z-index: 88;
	display: none;
}
.cart-wrapper.active{
	display: flex;
	flex-direction: column;
} */

/* Контейнер дій під ціною */
.products-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  justify-content: center;
}

/* Пігулка кількості */
.products-qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #262626;       /* тонка темно-сіра рамка */
  border-radius: 999px;             /* повністю округла */
  padding: 8px 12px;
  min-width: 96px;                  /* щоб не стискалося занадто */
  justify-content: space-between;
  background: #fff;
}

.products-qty .qty-minus,
.products-qty .qty-plus {
  background: transparent;
  border: none;
  font-size: 16px;
  line-height: 1;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.products-qty .qty-minus:focus,
.products-qty .qty-plus:focus {
  outline: 2px solid #e5c0b6;      /* м’який фокус під колір кнопки */
  outline-offset: 2px;
}

.products-qty .qty-input {
  width: 28px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  padding: 0;
  appearance: textfield;
}
.products-qty .qty-input::-webkit-outer-spin-button,
.products-qty .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Кнопка Купити праворуч */
.products-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  background: #e9b6aa;             /* персиково-рожевий як на прикладі */
  color: #000;
  transition: transform .06s ease, opacity .2s ease;
  white-space: nowrap;
}
.products-buy:hover { opacity: .9; }
.products-buy:active { transform: translateY(1px); }

/* На дуже вузьких екранах переносимо на новий рядок, якщо не влазить */
@media (max-width: 420px) {
  .products-actions {
    flex-wrap: wrap;
    gap: 10px 12px;
  }
}

