/* ===== СКРЫВАЕМ ТЕХНИЧЕСКИЕ ХАРАКТЕРИСТИКИ ===== */
.js-store-prod-charcs,
.t-store__prod-popup__charcs,
.t-store__prod-popup__properties {
  display: none !important;
}

/* ===== НЕАКТИВНЫЙ ВАРИАНТ УПАКОВКИ (приглушен) ===== */
.t-product__option-item,
.t-store__prod-popup__option-item,
.t-product__option-select-img-item,
.t-store__prod-popup__option-select-img-item {
  border: 1px solid #444444 !important;
  opacity: 0.5 !important;
  transition: all 0.3s ease !important;
  border-radius: 4px !important;
}

/* ===== АКТИВНЫЙ (ВЫБРАННЫЙ) ВАРИАНТ — белая рамка со свечением ===== */
.t-product__option-item_active,
.t-store__prod-popup__option-item_active,
.t-product__option-select-img-item_active,
.t-store__prod-popup__option-select-img-item_active {
  border: 2px solid #FFFFFF !important;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6) !important;
  opacity: 1 !important;
  transform: scale(1.06) !important;
}

/* ===== ТЕКСТ "ВСЕ АРОМАТЫ" НА ДЕСКТОПЕ (вместо "More products") ===== */
.js-store-close-text {
  font-size: 0;
}
.js-store-close-text::before {
  content: 'Все ароматы';
  font-size: 12px;
  color: #ffffff;
}

/* ===== СКРЫВАЕМ СТРЕЛКУ "НАЗАД" НА МОБИЛЬНЫХ ===== */
@media screen and (max-width: 640px) {
  .t-store__prod-snippet__container .t-popup__close {
    display: none !important;
  }
}