/* ==========================================================================
   You Name It — Premium Storefront V3
   Final visual layer: Hero + Cards + Motion + Conversion + Mobile
   Loads AFTER premium-redesign.css and shopify-home.css.
   Preserves ALL CMS, Firestore, RTL, dark mode, and accessibility.
   ========================================================================== */

/* ============================================================
   1. HERO — Cinematic Premium Treatment
   Uses .hero--premium to match shopify-home.css specificity.
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2.5rem, 7vw, 5rem);
  padding-bottom: clamp(2.5rem, 7vw, 5rem);
}

/* Gradient mesh background for depth */
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 140%;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 169, 110, 0.06) 0%,
    rgba(201, 169, 110, 0.02) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 1;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

/* Stronger headline hierarchy — .hero--premium matches specificity */
.hero--premium .hero__eyebrow {
  font-size: var(--text-2xs);
  padding: var(--space-1-5) var(--space-5);
  box-shadow: 0 2px 12px rgba(139, 105, 20, 0.12);
}

.hero--premium h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--color-chocolate);
  max-width: 640px;
}

.hero--premium h1 .accent-text {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-primary) 60%, var(--color-accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
}

.hero--premium .hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 500px;
  margin-bottom: var(--space-8);
}

/* Premium hero frame */
.hero--premium .hero__frame {
  border-radius: clamp(16px, 3vw, 28px);
  box-shadow:
    0 24px 80px rgba(44, 24, 16, 0.16),
    0 4px 12px rgba(44, 24, 16, 0.04),
    0 0 0 1px rgba(139, 105, 20, 0.05);
  position: relative;
}

.hero--premium .hero__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -2px 0 rgba(44, 24, 16, 0.04);
  pointer-events: none;
  z-index: 3;
}

.hero--premium .hero__frame:hover {
  box-shadow:
    0 32px 90px rgba(44, 24, 16, 0.19),
    0 8px 24px rgba(44, 24, 16, 0.06),
    0 0 0 1px rgba(139, 105, 20, 0.08),
    0 0 60px rgba(201, 169, 110, 0.06);
  transform: scale(1.008);
}

.hero--premium .hero__img {
  border-radius: inherit;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero--premium .hero__frame:hover .hero__img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

/* CTA button premium treatment */
.hero--premium .hero__cta .btn-store--primary {
  min-width: 200px;
  padding: 0.85rem 2rem;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-primary) 50%, var(--color-accent-dark) 100%);
  background-size: 200% 200%;
  color: var(--color-text-inverse);
  border: none;
  box-shadow:
    0 4px 20px rgba(139, 105, 20, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero--premium .hero__cta .btn-store--primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 36px rgba(139, 105, 20, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background-position: 100% 0;
}

.hero--premium .hero__cta .btn-store--primary:active {
  transform: translateY(0) scale(0.98);
}

.hero--premium .hero__cta .btn-store--ghost {
  min-width: 160px;
  padding: 0.8rem 1.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  background: transparent;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero--premium .hero__cta .btn-store--ghost:hover {
  background: var(--color-text);
  color: var(--color-text-inverse);
  border-color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 24, 16, 0.12);
}

/* ============================================================
   2. PRODUCT CARDS — Premium V3
   ============================================================ */

.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(44, 24, 16, 0.03),
    0 8px 24px rgba(44, 24, 16, 0.02);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease;
  position: relative;
  will-change: transform;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 12px 40px rgba(44, 24, 16, 0.08),
    0 24px 60px rgba(44, 24, 16, 0.05),
    0 0 0 1px rgba(139, 105, 20, 0.06);
  border-color: rgba(139, 105, 20, 0.1);
}

/* Ambient glow on hover */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  box-shadow:
    0 0 0 1px rgba(139, 105, 20, 0.04),
    0 0 40px rgba(201, 169, 110, 0.04);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: -1;
}

.product-card:hover::after {
  opacity: 1;
}

/* Image frame */
.product-card__media {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark, #efe6dc) 100%);
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.product-card__media img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.4s ease;
}

.product-card:hover .product-card__media img,
.product-card:hover .product-card__img--loaded {
  transform: scale(1.06);
  filter: brightness(1.03);
}

/* Body */
.product-card__body {
  padding: var(--space-4) var(--space-4-5) var(--space-4-5);
}

.product-card__cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary, #c9a96e);
  margin-bottom: var(--space-1);
}

.product-card__title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-2);
}

/* Price hierarchy */
.product-card__meta {
  border-top: 1px solid var(--color-border-soft);
  margin-top: var(--space-3);
  padding-top: var(--space-3);
}

.product-card__price {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.product-card__price .price-currency {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  margin-inline-start: 2px;
}

.price-from {
  font-size: 0.65rem;
  color: var(--color-text-light);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Add-to-cart button */
.product-card__actions .btn-store {
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
}

.product-card__actions .btn-store--primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-primary));
  color: var(--color-text-inverse);
  border: none;
  box-shadow: 0 2px 8px rgba(139, 105, 20, 0.18);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card__actions .btn-store--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(139, 105, 20, 0.25);
}

.product-card__actions .btn-store--primary:active {
  transform: scale(0.97);
}

/* Badge */
.product-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 2;
  background: linear-gradient(135deg, var(--color-gold), var(--color-primary));
  color: var(--color-text-inverse);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  box-shadow:
    0 2px 8px rgba(139, 105, 20, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

/* Wishlist heart */
.yni-wishlist-heart {
  opacity: 0.5;
  transform: scale(0.85);
  transition: all 0.3s ease;
}

.product-card:hover .yni-wishlist-heart {
  opacity: 1;
  transform: scale(1);
}

.yni-wishlist-heart:hover {
  filter: drop-shadow(0 0 8px rgba(169, 68, 66, 0.4));
  transform: scale(1.1) !important;
}

/* ============================================================
   3. CATEGORY SECTION — Premium Showcase
   ============================================================ */

.category-showcase {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.category-showcase .sh-section__head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* Bento grid */
.category-showcase--bento .category-grid {
  gap: 1rem;
}

.category-showcase--bento .category-card {
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 16px rgba(44, 24, 16, 0.05);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-showcase--bento .category-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(44, 24, 16, 0.1),
    0 4px 12px rgba(44, 24, 16, 0.04);
}

/* Content overlay */
.category-showcase--bento .category-card__content {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(28, 15, 8, 0.65) 35%,
    rgba(28, 15, 8, 0.85) 100%
  );
  padding: 1.75rem 1.25rem 1.25rem;
}

.category-showcase--bento .category-card__title {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

/* Arrow */
.category-card__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-bg);
  color: var(--color-primary);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 8px rgba(139, 105, 20, 0.12);
}

.category-card:hover .category-card__arrow {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(139, 105, 20, 0.25);
}

/* ============================================================
   4. FEATURED PRODUCTS — Premium Elevation
   ============================================================ */

.curated-for-you--premium {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.curated-for-you--premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-border-soft, rgba(139, 105, 20, 0.1)),
    transparent
  );
}

.curated-for-you--premium .curated-for-you__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.curated-for-you--premium .curated-for-you__track {
  gap: clamp(1rem, 2vw, 1.5rem);
}

.curated-for-you--premium .curated-for-you__card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(44, 24, 16, 0.04);
  border: 1px solid var(--color-border-soft);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease;
}

.curated-for-you--premium .curated-for-you__card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 36px rgba(44, 24, 16, 0.08),
    0 24px 60px rgba(44, 24, 16, 0.04);
  border-color: rgba(139, 105, 20, 0.08);
}

.curated-for-you--premium .curated-for-you__media img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.4s ease;
}

.curated-for-you--premium .curated-for-you__card:hover .curated-for-you__media img {
  transform: scale(1.08);
  filter: brightness(1.03);
}

.curated-for-you--premium .curated-for-you__body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.curated-for-you--premium .curated-for-you__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary, #c9a96e);
}

.curated-for-you--premium .curated-for-you__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.curated-for-you--premium .curated-for-you__link {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.curated-for-you--premium .curated-for-you__link:hover {
  gap: 0.65rem;
}

/* ============================================================
   5. SCROLL REVEAL — Unified Motion System
   ============================================================ */

.sh-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.sh-reveal.sh-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.sh-reveal .sh-section__head {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.sh-reveal.sh-reveal--visible .sh-section__head {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.06s;
}

/* Card-level stagger */
.sh-reveal .sr-card {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.sh-reveal.sh-reveal--visible .sr-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delays */
.sh-reveal.sh-reveal--visible .sr-card:nth-child(1)  { transition-delay: 0.04s; }
.sh-reveal.sh-reveal--visible .sr-card:nth-child(2)  { transition-delay: 0.08s; }
.sh-reveal.sh-reveal--visible .sr-card:nth-child(3)  { transition-delay: 0.12s; }
.sh-reveal.sh-reveal--visible .sr-card:nth-child(4)  { transition-delay: 0.16s; }
.sh-reveal.sh-reveal--visible .sr-card:nth-child(5)  { transition-delay: 0.20s; }
.sh-reveal.sh-reveal--visible .sr-card:nth-child(6)  { transition-delay: 0.24s; }
.sh-reveal.sh-reveal--visible .sr-card:nth-child(7)  { transition-delay: 0.28s; }
.sh-reveal.sh-reveal--visible .sr-card:nth-child(8)  { transition-delay: 0.32s; }
.sh-reveal.sh-reveal--visible .sr-card:nth-child(9)  { transition-delay: 0.35s; }
.sh-reveal.sh-reveal--visible .sr-card:nth-child(10) { transition-delay: 0.38s; }
.sh-reveal.sh-reveal--visible .sr-card:nth-child(11) { transition-delay: 0.41s; }
.sh-reveal.sh-reveal--visible .sr-card:nth-child(12) { transition-delay: 0.44s; }

/* Kill CSS animations inside scroll-reveal */
.sh-reveal .product-card,
.sh-reveal .category-card {
  animation: none !important;
}

/* Section eyebrow */
.sh-section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary, #c9a96e);
  margin-bottom: 0.6rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.sh-section__eyebrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--color-primary, #c9a96e);
  border-radius: 1px;
}

/* Hero entrance */
.hero__content {
  animation: heroContentReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroContentReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero__visual {
  animation: heroVisualReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

@keyframes heroVisualReveal {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(20px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

.hero__eyebrow {
  animation: fadeSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   6. CONVERSION POLISH
   ============================================================ */

.sh-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 5rem) clamp(1rem, 2vw, 1.5rem);
}

.sh-section__head {
  text-align: center;
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

.sh-section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

.sh-section__head p {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Buttons */
.btn-store--primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-primary) 50%, var(--color-accent-dark) 100%);
  background-size: 200% 200%;
  color: var(--color-text-inverse);
  border: none;
  box-shadow:
    0 4px 16px rgba(139, 105, 20, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-store--primary:hover:not(:disabled) {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(139, 105, 20, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-store--primary:active:not(:disabled) {
  transform: translateY(0) scale(0.98);
}

.btn-store--ghost {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-store--ghost:hover {
  background: var(--color-bg-secondary);
  color: var(--color-accent);
  border-color: var(--color-accent-soft);
  box-shadow: 0 4px 16px rgba(139, 105, 20, 0.08);
}

/* Footer divider */
.store-footer-section {
  position: relative;
}

.store-footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 105, 20, 0.12), transparent);
}

/* ============================================================
   7. MOBILE PREMIUM
   ============================================================ */

@media (max-width: 768px) {
  .hero {
    padding-top: clamp(2rem, 5vw, 3rem);
    padding-bottom: clamp(2rem, 5vw, 3rem);
  }

  .hero--premium h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    max-width: 100%;
  }

  .hero--premium .hero__lead {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero--premium .hero__cta .btn-store--primary {
    min-width: 100%;
    padding: 0.9rem 1.5rem;
    text-align: center;
    justify-content: center;
  }

  .hero--premium .hero__cta .btn-store--ghost {
    min-width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero--premium .hero__frame {
    max-width: 100%;
    aspect-ratio: 4/3;
  }

  .product-card {
    border-radius: var(--radius-lg);
  }

  .product-card__body {
    padding: var(--space-3) var(--space-3-5) var(--space-3-5);
  }

  .product-card__title {
    font-size: 0.9rem;
  }

  .category-showcase--bento .category-grid {
    gap: 0.75rem;
  }

  .category-showcase--bento .category-card {
    border-radius: var(--radius-lg);
  }

  .curated-for-you--premium .curated-for-you__card {
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 480px) {
  .hero--premium h1 {
    font-size: clamp(1.6rem, 6.5vw, 2rem);
  }

  .hero--premium .hero__cta .btn-store--primary {
    min-width: 100%;
    font-size: 0.9rem;
  }

  .hero--premium .hero__cta .btn-store--ghost {
    min-width: 100%;
    font-size: 0.85rem;
  }

  .product-card__actions .btn-store {
    min-height: 40px;
    font-size: 0.75rem;
  }

  .category-showcase--bento .category-grid {
    gap: 0.5rem;
  }

  .curated-for-you--premium .curated-for-you__track {
    gap: 0.625rem;
  }

  .curated-for-you--premium .curated-for-you__body {
    padding: 0.65rem 0.75rem 0.85rem;
  }

  .curated-for-you--premium .curated-for-you__name {
    font-size: 0.85rem;
  }

  .curated-for-you--premium .curated-for-you__desc {
    display: none;
  }

  .sh-section {
    padding: 2rem 0.75rem;
  }
}

/* ============================================================
   8. DARK MODE — Premium Depth
   ============================================================ */

[data-theme="dark"] .hero h1 {
  color: var(--color-text);
}

[data-theme="dark"] .product-card {
  background: var(--color-surface);
  border-color: var(--color-border);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .product-card:hover {
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.25),
    0 24px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(201, 169, 110, 0.08);
  border-color: rgba(201, 169, 110, 0.12);
}

[data-theme="dark"] .product-card::after {
  box-shadow:
    0 0 0 1px rgba(201, 169, 110, 0.06),
    0 0 40px rgba(201, 169, 110, 0.03);
}

[data-theme="dark"] .product-card__media {
  background: linear-gradient(135deg, rgba(30, 30, 30, 1), rgba(40, 40, 40, 1));
}

[data-theme="dark"] .category-showcase--bento .category-card:hover {
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .curated-for-you--premium .curated-for-you__card:hover {
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.25),
    0 24px 60px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .category-showcase--bento .category-card__content {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.6) 35%,
    rgba(0, 0, 0, 0.82) 100%
  );
}

/* ============================================================
   9. RTL — Bidirectional Polish
   ============================================================ */

[dir="rtl"] .category-card:hover .category-card__arrow {
  transform: translateX(-4px);
}

/* ============================================================
   10. REDUCED MOTION — Accessibility Kill-Switch
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .sh-reveal,
  .sh-reveal .sr-card,
  .sh-reveal .sh-section__head,
  .sh-reveal .feature-card,
  .sh-reveal .testimonial-card,
  .sh-reveal .curated-for-you__card,
  .sh-reveal .banner-item,
  .sh-reveal.sh-reveal--visible .sr-card,
  .sh-reveal.sh-reveal--visible .feature-card,
  .sh-reveal.sh-reveal--visible .testimonial-card,
  .sh-reveal.sh-reveal--visible .curated-for-you__card,
  .sh-reveal.sh-reveal--visible .banner-item,
  .store-footer-section .footer__grid,
  .product-detail__gallery,
  .product-detail__info {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    transition-delay: 0s !important;
  }

  .hero__content,
  .hero__visual,
  .hero__eyebrow {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .product-card:hover,
  .category-card:hover,
  .feature-card:hover,
  .testimonial-card:hover,
  .curated-for-you__card:hover,
  .banner-item:hover,
  .social-link:hover,
  .hero__frame:hover {
    transform: none !important;
  }

  .product-card:hover .product-card__img--loaded,
  .product-card:hover .product-card__media img,
  .category-card:hover .category-card__image,
  .curated-for-you__card:hover .curated-for-you__media img,
  .hero__frame:hover .hero__img {
    transform: none !important;
    filter: none !important;
  }

  .product-card,
  .category-card,
  .feature-card,
  .testimonial-card,
  .curated-for-you__card,
  .banner-item,
  .social-link {
    will-change: auto !important;
  }

  .product-card::after {
    display: none !important;
  }
}

/* ============================================================
   11. PRINT
   ============================================================ */

@media print {
  .hero::before,
  .sh-reveal .sr-card,
  .yni-wishlist-heart,
  .product-card__actions,
  .back-to-top {
    display: none !important;
  }

  .sh-reveal,
  .product-card,
  .category-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ============================================================
   12. PERFORMANCE
   ============================================================ */

.product-card,
.category-card,
.curated-for-you__card,
.social-link,
.hero__frame {
  contain: layout style paint;
}

/* ============================================================
   13. COLLECTIONS GRID
   ============================================================ */

.curated-collections--premium .curated-collections__card {
  border: 1px solid var(--color-border-soft);
}

.curated-collections--premium .curated-collections__card:hover {
  border-color: rgba(139, 105, 20, 0.08);
}

/* ============================================================
   14. TESTIMONIALS
   ============================================================ */

.testimonials-section--scroll .testimonial-card {
  border: 1px solid var(--color-border-soft);
}

.testimonials-section--scroll .testimonial-card:hover {
  border-color: rgba(139, 105, 20, 0.08);
}

.testimonials-section--scroll .testimonial-card__quote-icon {
  color: var(--color-primary, #c9a96e);
}

.testimonials-section--scroll .testimonial-card__name {
  color: var(--color-primary, #c9a96e);
}

/* ============================================================
   15. SOCIAL SECTION
   ============================================================ */

.social-section--premium .social-link {
  border: 1px solid var(--color-border-soft);
}

.social-section--premium .social-link:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.08);
}

/* ============================================================
   16. ABOUT SECTION
   ============================================================ */

.about-section--story .about-section__frame {
  box-shadow: 0 20px 60px rgba(44, 24, 16, 0.12);
}

.about-section--story .about-section__frame:hover {
  box-shadow: 0 28px 80px rgba(44, 24, 16, 0.16);
}

.about-section--story .about-section__cta {
  background: linear-gradient(135deg, var(--color-gold), var(--color-primary));
  color: var(--color-text-inverse);
  box-shadow: 0 4px 16px rgba(139, 105, 20, 0.2);
}

.about-section--story .about-section__cta:hover {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-dark));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 105, 20, 0.28);
}

/* ============================================================
   17. BANNERS
   ============================================================ */

.banners-section--premium .banner-item {
  border: 1px solid var(--color-border-soft);
}

.banners-section--premium .banner-item:hover {
  border-color: rgba(139, 105, 20, 0.08);
}

/* ============================================================
   18. SHOP PAGE
   ============================================================ */

.shop-header__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.shop-search {
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(44, 24, 16, 0.03);
}

.shop-search:focus {
  box-shadow:
    0 0 0 3px rgba(201, 169, 110, 0.12),
    0 2px 8px rgba(44, 24, 16, 0.03);
}
