/** Shopify CDN: Minification failed

Line 1114:70 Unexpected "}"
Line 1117:0 Unexpected "5."
Line 1119:2 Comments in CSS use "/* ... */" instead of "//"
Line 1122:0 Unexpected "6."
Line 1124:2 Comments in CSS use "/* ... */" instead of "//"
Line 1130:1 Unexpected "/"

**/
body::before {
  content: "🟢 premium-hero.css: ЗАГРУЖЕН";
  position: fixed;
  top: 50px;
  left: 10px;
  background: #4caf50;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font: bold 12px Arial, sans-serif;
  z-index: 99999;
}
/* ======================= ИНДИКАТОРЫ (СОХРАНЕНО) ======================= */
.old-test-indicator-css {
  position: fixed;
  top: 10px;
  left: 10px;
  background-color: #007bff;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: sans-serif;
  font-weight: bold;
  z-index: 1000;
  animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.old-test-indicator-js {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
  color: #fd7e14;
}
@keyframes spin-animation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ======================= ФИНАЛЬНЫЕ СТИЛИ СЕКЦИИ ======================= */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 4rem 0;
}
/* --- ИЗМЕНЕНО (Микро-операция №9) --- */
.main-image-wrapper:hover .main-image {
  transform: scale(1.05);
}
/* --- ИЗМЕНЕНО (Микро-операция №8) --- */
.main-image {
  max-width: 100%;
  border-radius: 16px;
  display: block;
  transition: transform 0.4s ease-in-out;
}
.gallery-col {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 100px;
  align-self: start;
}
.info-col {
  display: flex;
  flex-direction: column;
}
.hero-gallery__thumbnails {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.mh-thumbnail-button {
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 0;
  background: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  opacity: 0.6;
}
.mh-thumbnail-button.is-active {
  border-color: transparent;
  opacity: 1;
}
.mh-thumbnail-button img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
/* --- ИЗМЕНЕНО (Микро-операция №7) --- */
.thumbnail-glider {
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(20% - 12.8px + 4px);
  aspect-ratio: 1 / 1;
  border: 2px solid var(--ph-color-accent-blue);
  border-radius: 14px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  box-shadow: 0 0 0 1px var(--ph-color-background);
}
.info-title {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  margin: 0;
}
.hero-info__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  margin-top: 1rem;
  color: var(--ph-color-text);
}
.rating-stars {
  color: #ffc700;
}
.hero-info__colors {
  margin-top: 2rem;
}
.hero-info__label {
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 1rem;
  color: var(--ph-color-text);
}
.color-selector__buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.mh-color-button {
  padding: 12px 24px;
  border: 2px solid var(--ph-color-accent-blue-light);
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  background-color: transparent;
  color: var(--ph-color-text);
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.mh-color-button:hover {
  transform: translateY(-2px);
}
.mh-color-button.is-active::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 3px solid var(--ph-color-accent-blue);
  border-radius: 14px;
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}
.mh-color-button[data-color="Black"].is-active {
  background-color: var(--ph-color-dark);
  color: var(--ph-color-background);
}
.mh-color-button[data-color="Red"].is-active {
  background-color: var(--ph-color-accent-red);
  color: var(--ph-color-background);
}
.mh-color-button[data-color="Grey"].is-active {
  background-color: var(--ph-color-accent-grey);
  color: var(--ph-color-background);
}
.bundle-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.bundle-header__line {
  flex-grow: 1;
  height: 1px;
  background-color: var(--ph-color-border);
}
.bundle-header__title {
  font-weight: 600;
  font-size: 14px;
  color: var(--ph-color-accent-grey);
  text-transform: uppercase;
  white-space: nowrap;
}
.purchase-options__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
/* --- ИЗМЕНЕНО (Микро-операция №1) --- */
.mh-purchase-option-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid var(--ph-color-accent-blue);
  border-radius: 16px;
  cursor: pointer;
  padding: 20px;
  width: 100%;
  position: relative;
  overflow: visible;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 4px 20px rgba(0, 122, 255, 0.15),
    0 2px 6px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform-style: preserve-3d;
}
/* --- ИЗМЕНЕНО (Микро-операция №2) --- */
.mh-purchase-option-card.is-active {
  transform: translateY(-8px) scale(1.01);
  border-width: 3px;
  border-color: var(--ph-color-accent-blue);
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  box-shadow: 
    0 15px 35px rgba(0, 122, 255, 0.2),
    0 6px 15px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.mh-purchase-option-card.is-active {
  transform: translateY(-8px) scale(1.01);
  border-width: 3px;
  border-color: var(--ph-color-accent-blue);
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  box-shadow: 
    0 15px 35px rgba(0, 122, 255, 0.2),
    0 6px 15px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.card-main-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.radio-button-wrapper {
  width: 20px;
  height: 20px;
  border: 2px solid var(--ph-color-border);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.mh-purchase-option-card.is-active .radio-button-wrapper {
  border-color: var(--ph-color-dark);
}
.radio-button::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--ph-color-dark);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mh-purchase-option-card.is-active .radio-button::after {
  transform: scale(1);
}
.card-content-grid {
  flex-grow: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}
.card-left,
.card-right {
  display: flex;
  flex-direction: column;
}
.card-right {
  text-align: right;
}
.card-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--ph-color-text);
}
.card-subtitle {
  font-size: 14px;
  color: #6e6e73;
}
.card-subtitle--savings {
  color: var(--ph-color-accent-green);
  font-weight: 600;
}
.card-price {
  font-weight: 700;
  font-size: 18px;
  color: var(--ph-color-text);
}
.card-original-price {
  font-size: 14px;
  color: #6e6e73;
  text-decoration: line-through;
}
.popular-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 40px;
  height: 40px;
  background: var(--ph-color-accent-red);
  border-radius: 0 12px 0 20px;
  animation: star-glow 2s ease-in-out infinite;
}

.popular-badge::after {
  content: "★";
  position: absolute;
  top: 12px;
  right: -40px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes star-glow {
  0%, 100% { 
    filter: brightness(1) drop-shadow(0 0 3px rgba(255, 59, 48, 0.5)); 
  }
  50% { 
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 59, 48, 0.8)); 
  }
}
/* --- ИЗМЕНЕНО (Микро-операция №3) --- */
.mh-add-to-cart-button {
  width: 100%;
  height: 56px;
  background-color: var(--ph-color-dark);
  color: var(--ph-color-background);
  border-radius: 8px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.3s;
}
.mh-add-to-cart-button:hover {
  transform: translateY(-8px) scale(1.03) rotateX(5deg);
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 12px 24px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.15);
  border: 2px solid var(--ph-color-accent-blue);
  animation: cart-magnetic 0.6s ease-out;
}

@keyframes cart-magnetic {
  0% {
    transform: translateY(-6px) scale(1.02);
  }
  30% {
    transform: translateY(-12px) scale(1.05) rotateX(8deg);
  }
  60% {
    transform: translateY(-6px) scale(1.02) rotateX(2deg);
  }
  100% {
    transform: translateY(-8px) scale(1.03) rotateX(5deg);
  }
}

.mh-add-to-cart-button:active {
  transform: scale(0.96) translateY(-2px);
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(0, 0, 0, 0.2);
  transition-duration: 0.1s;
  animation: cart-click 0.2s ease-out;
}
@keyframes cart-click {
  0% { transform: scale(0.96) translateY(-2px); }
  50% { transform: scale(0.94) translateY(0px); }
  100% { transform: scale(0.96) translateY(-2px); }
}

.mh-add-to-cart-button.is-loading .add-to-cart-button__content {
  opacity: 0;
}
.add-to-cart-button__content {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.icon-wrapper.is-hidden {
  display: none;
}
.mh-live-counter {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6e6e73;
}
/* --- ИЗМЕНЕНО (Микро-операция №5) --- */
.eye-icon.is-pulsing {
  animation: blink-eye 4.5s infinite;
  color: var(--ph-color-accent-red);
}
.viewer-count {
  font-weight: 700;
  color: var(--ph-color-dark);
}
/* --- ИЗМЕНЕНО (Микро-операция №6) --- */
@keyframes blink-eye {
  0%,
  15%,
  100% {
    transform: scaleY(1);
  }
  7.5% {
    transform: scaleY(0.1);
  }
}
.mh-add-to-cart-button .loading-spinner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
  opacity: 0;
  animation: spin 1s linear infinite;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scale(0.8);
}

.mh-add-to-cart-button.is-loading .loading-spinner {
  opacity: 1;
  transform: scale(1);
} 

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.mh-bundle-selectors {
  display: grid;
  gap: 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
    margin-top 0.6s ease-in-out, padding 0.6s ease-in-out, 
    border-color 0.3s ease, background 0.3s ease;
  padding: 0 1rem;
  border: 2px solid transparent;
  border-radius: 16px;
  background: transparent;
  position: relative;
  margin-top: 0;
}

.mh-purchase-option-card.is-active .mh-bundle-selectors {
  max-height: 500px;
  margin-top: 1.5rem;
  padding: 20px;
  border-color: var(--ph-color-accent-blue);
  background: linear-gradient(135deg, rgba(240, 248, 255, 0.6) 0%, rgba(230, 243, 255, 0.4) 100%);
  box-shadow: 
    0 8px 24px rgba(0, 122, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mh-purchase-option-card.is-active .mh-bundle-selectors::before {
  content: "Выберите цвет для каждого динамика";
  position: absolute;
  top: -12px;
  left: 24px;
  background: linear-gradient(135deg, var(--ph-color-background) 0%, #f8f9fa 100%);
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ph-color-accent-blue);
  border: 2px solid var(--ph-color-accent-blue);
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.15);
  animation: label-appear 0.6s ease-out 0.3s both;
}

@keyframes label-appear {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mh-bundle-selectors::before {
  content: "Выберите цвет для каждого динамика";
  position: absolute;
  top: -12px;
  left: 20px;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ph-color-accent-blue);
  border: 1px solid rgba(0, 122, 255, 0.3);
}
.mh-purchase-option-card.is-active .mh-bundle-selectors {
  max-height: 500px;
  margin-top: 1.5rem;
  padding-bottom: 1rem;
}
.bundle-item {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mh-purchase-option-card.is-active .bundle-item {
  opacity: 1;
  transform: translateY(0);
}
.mh-purchase-option-card.is-active .bundle-item:nth-child(2) {
  transition-delay: 0.1s;
}
/* --- Стили для нового кастомного селектора --- */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}
/* Наш видимый кастомный триггер */
.custom-select-trigger {
  width: 100%;
  height: 44px;
  padding: 10px 14px;
  border: 2px solid var(--ph-color-accent-blue);
  border-radius: 12px;
  background-color: var(--ph-color-background);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 8px rgba(0, 122, 255, 0.08);
}

.custom-select-trigger:hover {
  border-width: 3px;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 122, 255, 0.15);
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}
.selected-option {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.color-swatch {
  background-color: #ccc; /* Резервный цвет из нерабочего файла */
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--ph-color-border);
  flex-shrink: 0;
  transition: background-color 0.3s ease; /* Плавность из нерабочего файла */
}
.select-arrow {
  font-size: 12px;
  color: var(--ph-color-text);
}
/* Скрытый, но функциональный нативный select */
.custom-select-wrapper select.custom-select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-appearance: none; /* Убираем стандартный вид в Chrome/Safari */
  -moz-appearance: none; /* Убираем стандартный вид в Firefox */
  appearance: none;
  cursor: pointer;
  z-index: 2; /* Важно: чтобы клик всегда попадал в select */
}
/* --- Стили для заливки кнопки цветом (НОВАЯ ФУНКЦИЯ) --- */
.custom-select-trigger {
  transition: background-color 0.3s ease, color 0.3s ease;
}
/* Когда JS добавляет data-selected-color="Black", применяем этот стиль */
.custom-select-trigger[data-selected-color="Black"] {
  background-color: var(--ph-color-dark);
  color: var(--ph-color-background);
}
.custom-select-trigger[data-selected-color="Black"] .select-arrow {
  color: var(--ph-color-background);
}
/* Когда JS добавляет data-selected-color="Red", применяем этот стиль */
.custom-select-trigger[data-selected-color="Red"] {
  background-color: var(--ph-color-accent-red);
  color: var(--ph-color-background);
}
.custom-select-trigger[data-selected-color="Red"] .select-arrow {
  color: var(--ph-color-background);
}
/* Когда JS добавляет data-selected-color="Grey", применяем этот стиль */
.custom-select-trigger[data-selected-color="Grey"] {
  background-color: var(--ph-color-accent-grey);
  color: var(--ph-color-background);
}
.custom-select-trigger[data-selected-color="Grey"] .select-arrow {
  color: var(--ph-color-background);
}
/* И так далее для других цветов... */
.mh-shipping-protection {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--ph-color-border);
  border-radius: 8px;
  margin-top: 1.5rem;
  background-color: #f5f5f7;
}
.shield-icon {
  width: 36px;
  height: 36px;
  color: var(--ph-color-accent-green);
  filter: drop-shadow(0 2px 4px rgba(52, 199, 89, 0.2));
  transition: all 0.3s ease;
}

.mh-shipping-protection:hover .shield-icon {
  transform: scale(1.1);
  color: #30d158;
  filter: drop-shadow(0 4px 8px rgba(52, 199, 89, 0.3));
}
.protection-text {
  flex-grow: 1;
}
.protection-title {
  font-weight: 600;
  display: block;
}
.protection-price {
  font-size: 14px;
  color: #6e6e73;
}
.toggle-switch {
  width: 52px;
  height: 28px;
  background: linear-gradient(135deg, #e9e9eb 0%, #d1d1d6 100%);
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.toggle-switch.is-active {
  background: linear-gradient(135deg, #34c759 0%, #30d158 100%);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 8px rgba(52, 199, 89, 0.3);
}
.toggle-handle {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.toggle-switch.is-active .toggle-handle {
  transform: translateX(24px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
}
.reviews-container {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ph-color-border);
  text-align: center;
}
.reviews-carousel {
  position: relative;
  height: 80px;
  margin-bottom: 1rem;
  cursor: default;
}
.review-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.review-slide.is-active {
  opacity: 1;
  transform: translateY(0);
}
.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.review-text {
  font-size: 14px;
  font-style: italic;
  color: #6e6e73;
}
.review-text b {
  font-weight: 600;
  color: var(--ph-color-text);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--ph-color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s, transform 0.3s;
}
.dot:hover {
  background-color: #b0b0b0;
  transform: scale(1.2);
}
.dot.is-active {
  background-color: var(--ph-color-dark);
  transform: scale(1.2);
}
.see-more-button {
  color: var(--ph-color-dark);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}
.see-more-button::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--ph-color-dark);
  transform: scaleX(0);
  transition: transform 0.3s ease-out;
}
.see-more-button:hover::after {
  transform: scaleX(1);
}
[data-animate-on-scroll] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
[data-animate-on-scroll].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================= ПРЕМИАЛЬНАЯ АДАПТИВНОСТЬ ======================= */

/* --- Планшеты и небольшие десктопы (до 990px) --- */
@media (max-width: 990px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 2rem 0;
  }

  .gallery-col {
    order: 1;
  }
  .info-col {
    order: 2;
  }
}

/* --- Мобильные устройства (до 749px) --- */
@media (max-width: 749px) {
  .hero-section {
    gap: 32px;
  }

  /* Планшеты - новая точка останова */
  @media (max-width: 1024px) and (min-width: 750px) {
    .hero-section {
      gap: 60px;
      padding: 3rem 0;
    }

    .mh-color-button {
      padding: 10px 20px;
      font-size: 14px;
    }

    .mh-purchase-option-card {
      padding: 14px;
    }

    .card-title,
    .card-price {
      font-size: 17px;
    }
  }

  /* Улучшения touch targets для мобильных */
  @media (max-width: 749px) {
    .mh-color-button {
      min-height: 44px;
      min-width: 60px;
      touch-action: manipulation;
    }

    .toggle-switch {
      min-height: 44px;
      min-width: 60px;
      padding: 8px;
    }

    .dot {
      min-width: 44px;
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .dot::after {
      content: "";
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: var(--ph-color-border);
      transition: background-color 0.3s;
    }

    .dot.is-active::after {
      background-color: var(--ph-color-dark);
    }

    /* Улучшенное отображение селекторов на мобильных */
    .custom-select-trigger {
      min-height: 44px;
      font-size: 16px; /* Предотвращает zoom на iOS */
      touch-action: manipulation;
    }
  }

  .info-title {
    font-size: 32px;
  }

  .hero-info__rating {
    font-size: 16px;
  }

  .mh-color-button {
    padding: 10px 20px;
  }

  .card-title,
  .card-price {
    font-size: 16px;
  }

  .mh-add-to-cart-button {
    height: 52px;
    font-size: 16px;
  }

  .hero-gallery__thumbnails {
    gap: 12px;
  }
}
/* P-002: УДАЛЕНО - заменено на универсальные правила в Liquid */
/* Старые правила с жестко прописанным ID больше не нужны */
/* Универсальные правила теперь генерируются динамически в premium-hero.liquid */

/* Универсальные fallback правила для всех цветных селекторов */
[id^="shopify-section-"]
  .custom-select-trigger[data-selected-color]
  .color-swatch {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Стили для ошибок валидации */
.validation-errors {
  margin-bottom: 1rem;
  padding: 12px;
  background-color: #fee;
  border: 1px solid #fcc;
  border-radius: 4px;
  color: #c33;
  font-family: inherit;
}

.validation-errors p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.validation-errors + .validation-errors {
  display: none; /* Предотвращаем дублирование */
}

/* Премиальные каскадные анимации появления */
@keyframes cascadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes premium-glow {
  0% {
    box-shadow: 0 0 5px rgba(0, 122, 255, 0);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 5px rgba(0, 122, 255, 0);
  }
}

/* Каскадное появление элементов */
.hero-info__colors,
.bundle-header,
.purchase-options__list > *,
.mh-add-to-cart-button,
.mh-live-counter,
.mh-shipping-protection,
.reviews-container {
  animation: cascadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation-fill-mode: both;
}

.hero-info__colors {
  animation-delay: 0.1s;
}
.bundle-header {
  animation-delay: 0.2s;
}
.purchase-options__list > *:nth-child(1) {
  animation-delay: 0.3s;
}
.purchase-options__list > *:nth-child(2) {
  animation-delay: 0.4s;
}
.purchase-options__list > *:nth-child(3) {
  animation-delay: 0.5s;
}
.mh-add-to-cart-button {
  animation-delay: 0.6s;
}
.mh-live-counter {
  animation-delay: 0.7s;
}
.mh-shipping-protection {
  animation-delay: 0.8s;
}
.reviews-container {
  animation-delay: 0.9s;
}

/* Премиальные hover эффекты для кнопок */
.mh-color-button {
  position: relative;
  overflow: hidden;
}

.mh-color-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  transition: all 0.5s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.mh-color-button:hover::before {
  width: 100px;
  height: 100px;
}

/* Улучшенные тени для глубины */
.main-image-wrapper {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
}

.main-image-wrapper:hover {
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.18);
}

.mh-thumbnail-button img {
  transition: all 0.3s ease;
}

.mh-thumbnail-button:hover img {
  transform: scale(1.05);
}

.mh-thumbnail-button.is-active img {
  transform: scale(1.02);
}
/* 
ЗАГЛУШКИ ДЛЯ БУДУЩИХ УЛУЧШЕНИЙ:

1. ИНТЕГРАЦИЯ С SHOPIFY REVIEWS:
.shopify-review-widget {
  // Заменить статические отзывы на динамические из Shopify
  // API: {{ product.metafields.reviews.rating.value }}
}

2. ДИНАМИЧЕСКАЯ ЦЕНА ДОСТАВКИ:
.protection-price::before {
  // content: "{{ shipping_protection.price | money }}";
  // Заменить статические $10.00 на динамическую цену
}

3. REAL-TIME INVENTORY:
.inventory-indicator {
  // Индикатор остатков товара в реальном времени
  // Интеграция с DSers/Spocket API
}

4. A/B TESTING STYLES:
.variant-a { /* Версия A для A/B тестирования */ }
.variant-b { /* Версия B для A/B тестирования */ }

5. DARK MODE SUPPORT:
@media (prefers-color-scheme: dark) {
  // Темная тема для пользователей с системными настройками
}

6. REDUCED MOTION SUPPORT:
@media (prefers-reduced-motion: reduce) {
  // Отключение анимаций для пользователей с ограничениями
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
*/