/* Окно корзины */
.t706__cartwin-content {
  background: #fff !important;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 20px;
}
.t706__cartwin-top,
.t706__cartwin-bottom {
  border-color: #e0e0e0;
}

/* Кол-во товара */
.t706__product-quantity {
  font-size: 16px;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-weight: 600;
  background: #f9f9f9;
  transition: border 0.3s;
}
.t706__product-quantity:focus {
  border-color: #c7a528;
}

/* Карточка */
.t-store__card {
  border-radius: 20px;
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
  position: relative;
}
.t-store__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(255, 215, 0, 0.35);
}

/* Изображение */
.t-store__card__imgwrapper {
  transition: transform 0.4s ease;
}
.t-store__card:hover .t-store__card__imgwrapper {
  transform: scale(1.08);
}

/* Название */
.t-store__card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 17px;
  margin-top: 14px;
  letter-spacing: 0.5px;
}

/* Цена */
.t-store__card__price-value {
  font-size: 20px;
  font-weight: 700;
  color: #ffca28;
  margin: 10px 0;
}

/* Кнопка */
.t-store__card__btn {
  background: linear-gradient(145deg, #ffe066, #ffc107);
  color: #000;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
  transition: all 0.3s ease;
}
.t-store__card__btn:hover {
  background: linear-gradient(145deg, #ffdd57, #ffb300);
  transform: translateY(-2px);
}
