/* --- 1. КАРТОЧКИ ТОВАРОВ (ПК) --- */
.t-store__card {
  border-radius: 20px;
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpCard 0.8s ease forwards;
}

@keyframes fadeUpCard {
  to { opacity: 1; transform: translateY(0); }
}

@media screen and (min-width: 960px) {
  .t-store__card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 202, 40, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 202, 40, 0.1);
  }
  .t-store__card:hover .t-store__card__imgwrapper {
    filter: brightness(1.1);
    transform: scale(1.08);
  }
}

.t-store__card__imgwrapper {
  transition: all 0.5s ease;
  filter: brightness(0.9);
}

.t-store__card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 17px;
  margin-top: 14px;
  color: #ffffff !important;
}

.t-store__card__price-value {
  font-size: 20px;
  font-weight: 700;
  color: #ffca28;
}

.t-store__card__btn {
  background: linear-gradient(145deg, #ffe066, #ffc107);
  color: #000 !important;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 12px;
  border: none;
  text-transform: uppercase;
}

/* --- 2. КОРЗИНА (T706) --- */
.t706__cartwin-content {
  background: #fff !important;
  border-radius: 24px;
}

.t706__product-title,
.t706__product-price,
.t706__cartwin-prodamount {
  color: #000 !important;
}

.t706__cartwin-prodamount-btn {
  background-color: #ffca28 !important;
  color: #000 !important;
  border-radius: 14px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  height: 55px !important;
}

/* ❌ ВСЕ СТИЛИ ДЛЯ - 1 + УБРАНЫ ПОЛНОСТЬЮ */

/* --- 3. МОБИЛЬНАЯ ВЕРСИЯ --- */
@media screen and (max-width: 480px) {

  .t-store__grid {
    display: flex !important;
    flex-wrap: wrap !important;
    padding: 0 5px !important;
  }

  .t-store__col {
    width: 50% !important;
    padding: 5px !important;
  }

  .t-store__card {
    border-radius: 12px !important;
  }

  .t-store__card__textwrapper {
    padding: 12px 8px !important;
  }

  /* название блюда больше */
  .t-store__card__title {
    font-size: 14px !important;
    line-height: 1.25 !important;
    height: auto !important;
    min-height: 36px !important;
  }

  .t-store__card__price-value {
    font-size: 15px !important;
  }

  .t-store__card__btn {
    padding: 14px 2px !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
  }
}

/* --- АНИМАЦИЯ ПОЯВЛЕНИЯ --- */
.t-store__col:nth-child(1) .t-store__card { animation-delay: 0.1s; }
.t-store__col:nth-child(2) .t-store__card { animation-delay: 0.2s; }
.t-store__col:nth-child(3) .t-store__card { animation-delay: 0.3s; }
.t-store__col:nth-child(4) .t-store__card { animation-delay: 0.4s; }
