﻿/** Shopify CDN: Minification failed

Line 171:5 Expected identifier but found ";"
Line 243:4 Unexpected "}"
Line 4198:2 Unexpected "}"
Line 6149:11 Expected identifier but found whitespace
Line 6149:13 Unexpected "{"
Line 6149:22 Expected ":"
Line 6149:58 Expected ":"
Line 6155:10 Expected identifier but found whitespace
Line 6155:12 Unexpected "{"
Line 6155:21 Expected ":"
... and 7 more hidden warnings

**/
/* ===== ===== */
    :root {
      /**/
      --color-black: #000000;
      --color-black-light: #0a0a0a;
      --color-black-dark: #050505;
      
      --color-gold: #D4AF37;
      --color-gold-light: #F4CF57;
      --color-gold-dark: #B48F17;
      --color-gold-pale: #E8D68A;
      
      --color-charcoal: #1A1A1A;
      --color-graphite: #2A2A2A;
      --color-white: #FFFFFF;
      --color-off-white: #F5F5F5;
      
      /* Gradients */
      --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4CF57 50%, #B48F17 100%);
      --gradient-black: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
      --gradient-metallic: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 50%, #0a0a0a 100%);
      
      /**/
      --font-heading: 'Cormorant Garamond', serif;
      --font-body: 'Montserrat', sans-serif;
      
      /**/
      --spacing-xs: 0.5rem;
      --spacing-sm: 1rem;
      --spacing-md: 2rem;
      --spacing-lg: 4rem;
      --spacing-xl: 6rem;
      --spacing-xxl: 10rem;
      
      /* Shadows */
      --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
      --shadow-black: 0 4px 20px rgba(0, 0, 0, 0.5);
      --shadow-elegant: 0 10px 40px rgba(0, 0, 0, 0.4);
      
      /**/
      --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-elegant: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    /* ===== ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    html {
      scroll-behavior: smooth;
    }
    
    body {
      font-family: var(--font-body);
      background-color: var(--color-black);
      color: var(--color-off-white);
      line-height: 1.7;
      overflow-x: hidden;
      max-width: 100vw;
    }
    
    /* Typography */
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      color: var(--color-gold);
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: 0.02em;
    }
    
    h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
    h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
    h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
    
    p {
      font-weight: 300;
      letter-spacing: 0.01em;
    }
    
    a {
      color: var(--color-gold);
      text-decoration: none;
    }
    
    a:hover {
      color: var(--color-gold-light);
    }
    
    /**/
    .nav-link {
      padding: 0.5rem 0;
    }
    
    img {
      max-width: 100%;
      height: 100%;
      display: block;
    }
    
    /* ===== ===== */
    .btn {
      display: inline-block;
      padding: 16px 40px;
      font-size: 13px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 2px;
      border: 1px solid var(--color-gold);
      background: transparent;
      color: var(--color-gold);
      cursor: pointer;
      transition: background-color 0.2s ease, color 0.2s ease;
    }
    
    .btn:hover {
      background: var(--color-gold);
      color: var(--color-black);
    }
    
    .btn-primary {
      background: var(--gradient-gold);
      color: var(--color-black);
      border: none;
    }
    
    .btn-primary:hover {
      background: var(--color-gold);
      color: var(--color-black);
    }
    
    .btn-outline {
      background: transparent;
      border: 1px solid var(--color-gold);
    }
    
    /* ===== Header Navigation ===== */
    .header {
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(212, 175, 55, 0.3);
      padding: var(--spacing-sm) var(--spacing-md);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    
    .header.scrolled {
      padding: var(--spacing-xs) var(--spacing-md);
      background: rgba(0, 0, 0, 0.98);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    }
    
    .;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .header__logo {
      font-family: var(--font-heading);
      font-size: 32px;
      font-weight: 700;
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 4px;
      text-transform: uppercase;
    }
    
    .header__nav {
      display: flex;
      gap: var(--spacing-md);
      align-items: center;
    }
    
    .header__nav a {
      color: var(--color-off-white);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 400;
      padding: 0.5rem 0;
    }
    
    .header__nav a:hover {
      color: var(--color-gold);
    }
    
    .header__icons {
      display: flex;
      gap: var(--spacing-sm);
      align-items: center;
    }
    
    .header__icon {
      color: var(--color-gold);
      font-size: 20px;
    }
    
    .header__icon:hover {
      color: var(--color-gold-light);
    }
    
    /* ===== Footer ===== */
    .footer {
      background: var(--gradient-metallic);
      border-top: 1px solid rgba(212, 175, 55, 0.3);
      padding: var(--spacing-xxl) var(--spacing-md) var(--spacing-lg);
      margin-top: var(--spacing-xxl);
    }
      .header__inner {
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

    .footer__inner {
        max-width: 1280px;
        margin: 0 auto;
      }
    }
    
    .footer__grid {
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: var(--spacing-lg);
      margin-bottom: var(--spacing-lg);
    }
    
    .footer__brand .header__logo {
      margin-bottom: var(--spacing-sm);
    }
    
    .footer__brand p {
      color: var(--color-off-white);
      opacity: 0.7;
      font-size: 14px;
      line-height: 1.8;
      max-width: 300px;
    }
    
    .footer__column h4 {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--color-gold);
      margin-bottom: var(--spacing-md);
    }
    
    .footer__column ul {
      list-style: none;
    }
    
    .footer__column li {
      margin-bottom: var(--spacing-xs);
    }
    
    .footer__column a {
      color: var(--color-off-white);
      opacity: 0.7;
      font-size: 14px;
    }
    
    .footer__column a:hover {
      opacity: 1;
      color: var(--color-gold);
    }
    
    .footer__bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: var(--spacing-md);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: var(--spacing-sm);
    }
    
    .footer__copyright {
      color: var(--color-off-white);
      opacity: 0.5;
      font-size: 13px;
    }
    
    .footer__social {
      display: flex;
      gap: var(--spacing-sm);
    }
    
    .footer__social a {
      color: var(--color-gold);
      font-size: 18px;
    }
    
    .footer__social a:hover {
      color: var(--color-gold-light);
    }
    
    /* ===== ===== */
    .main {
      min-height: calc(100vh - 400px);
    }
    
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 var(--spacing-md);
    }
    
    /* ===== Decorative Elements ===== */
    .gold-line {
      width: 60px;
      height: 2px;
      background: var(--gradient-gold);
      margin: var(--spacing-md) auto;
    }
    
    .gold-accent {
      position: relative;
    }
    
    .gold-accent::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 1px;
      background: var(--gradient-gold);
    }
    
    /* ===== Animations ===== */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .animate-fade-in {
      animation: fadeInUp 0.4s ease forwards;
    }
    
    /* ===== Responsive ===== */
    @media (max-width: 1024px) {
      .footer__grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 768px) {
      .header__inner {
        flex-direction: row;
        gap: var(--spacing-xs);
        flex-wrap: nowrap;
      }
      
      .header__nav { display: none !important; }
      
      .footer__grid {
        grid-template-columns: 1fr;
      }
      
      .footer__bottom {
        flex-direction: column;
        text-align: center;
      }
      
      h1 { font-size: 2.5rem; }
      h2 { font-size: 2rem; }
      h3 { font-size: 1.5rem; }
    }
    
    /* ===== ===== */
    .announcement-bar {
      background: var(--gradient-gold);
      color: var(--color-black);
      text-align: center;
      padding: 10px 20px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.5px;
    }
    
    .announcement-bar p {
      margin: 0;
    }
    
    /* ===== ===== */
    .hero--fullscreen {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    
    .hero--fullscreen .hero__bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%),
        radial-gradient(ellipse at center, #1a1a1a 0%, #000000 100%);
      z-index: 1;
      overflow: hidden;
    }
    
    /**/
    .hero__glow {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
      filter: blur(60px);
      animation: glowPulse 8s ease-in-out infinite;
      z-index: 1;
    }
    
    .hero__glow-1 {
      width: 600px;
      height: 600px;
      top: -200px;
      left: -100px;
      animation-delay: 0s;
    }
    
    .hero__glow-2 {
      width: 500px;
      height: 500px;
      top: 50%;
      right: -150px;
      animation-delay: 2s;
    }
    
    .hero__glow-3 {
      width: 400px;
      height: 400px;
      bottom: -100px;
      left: 30%;
      animation-delay: 4s;
    }
    
    @keyframes glowPulse {
      0%, 100% { opacity: 0.5; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1); }
    }
    
    /**/
    .hero__line {
      position: absolute;
      background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
      opacity: 0.3;
      z-index: 1;
    }
    
    .hero__line-1 {
      width: 100%;
      height: 1px;
      top: 30%;
      left: 0;
      animation: lineShine 6s ease-in-out infinite;
    }
    
    .hero__line-2 {
      width: 1px;
      height: 300px;
      top: 20%;
      left: 50%;
      background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
      animation: lineShine 8s ease-in-out infinite;
      animation-delay: 1s;
    }
    
    .hero__line {
      position: absolute;
      background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
      opacity: 0.15;
      z-index: 1;
    }
    
    /**/
    .hero__watermark {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-heading);
      font-size: clamp(8rem, 20vw, 20rem);
      font-weight: 700;
      letter-spacing: 0.2em;
      color: var(--color-gold);
      opacity: 0.03;
      z-index: 0;
      pointer-events: none;
      white-space: nowrap;
    }
    
    .hero--fullscreen .hero__bg::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        repeating-linear-gradient(
          0deg,
          transparent,
          transparent 2px,
          rgba(212, 175, 55, 0.02) 2px,
          rgba(212, 175, 55, 0.02) 4px
        );
    }
    
    .hero--fullscreen .hero__content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 900px;
      padding: 0 20px;
    }
    
    .hero__subtitle {
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 6px;
      text-transform: uppercase;
      color: var(--color-gold);
      margin-bottom: 1rem;
    }
    
    .hero__title {
      font-size: clamp(3.5rem, 10vw, 8rem);
      font-weight: 700;
      letter-spacing: 0.1em;
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1.5rem;
      text-shadow: 0 0 80px rgba(212, 175, 55, 0.3);
    }
    
    .hero__description {
      font-size: 1.25rem;
      color: var(--color-off-white);
      margin-bottom: 2.5rem;
      font-weight: 300;
      letter-spacing: 1px;
    }
    
    .hero__buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    .btn-lg {
      padding: 18px 50px;
      font-size: 14px;
    }
    
    .btn-icon {
      width: 18px;
      height: 18px;
      margin-left: 8px;
      vertical-align: middle;
      transition: transform 0.3s ease;
    }
    
    .btn:hover .btn-icon {
      transform: translateX(5px);
    }
    
    .hero__scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      text-align: center;
    }
    
    .hero__scroll-indicator span {
      display: block;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--color-gold);
      margin-bottom: 10px;
    }
    
    .scroll-line {
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, var(--color-gold), transparent);
      margin: 0 auto;
    }
    

    
    /* ===== ===== */
    .animate-fade-in-up {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.4s ease forwards;
    }
    
    .animate-fade-in-up.animate-delay-1 { animation-delay: 0.1s; }
    .animate-fade-in-up.animate-delay-2 { animation-delay: 0.2s; }
    .animate-fade-in-up.animate-delay-3 { animation-delay: 0.3s; }
    
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .animate-on-scroll {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }
    
    .animate-on-scroll.animate-delay-1 { transition-delay: 0.05s; }
    .animate-on-scroll.animate-delay-2 { transition-delay: 0.1s; }
    .animate-on-scroll.animate-delay-3 { transition-delay: 0.15s; }
    
    .animate-on-scroll.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* ===== ===== */
    .category-nav {
      background: var(--color-black-light);
    }
    
    .category-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }
    
    .category-card {
      position: relative;
      background: var(--color-charcoal);
      border: 1px solid rgba(212, 175, 55, 0.2);
      overflow: hidden;
      transition: border-color 0.3s ease;
    }
    
    .category-card:hover {
      border-color: var(--color-gold);
    }
    
    .category-card__image {
      height: 280px;
      background: var(--color-graphite);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    
    .category-card__placeholder {
      width: 120px;
      height: 120px;
      color: var(--color-gold);
      opacity: 0.5;
    }
    
    .category-card__placeholder svg {
      width: 100%;
      height: 100%;
    }
    
    .category-card__content {
      padding: 2rem;
      text-align: center;
    }
    
    .category-card__content h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }
    
    .category-card__content p {
      color: var(--color-off-white);
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
    }
    
    .category-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--color-gold);
    }
    
    .category-link svg {
      width: 16px;
      height: 16px;
      transition: transform 0.3s ease;
    }
    
    .category-link:hover svg {
      transform: translateX(5px);
    }
    
    /* ===== ===== */
    .product-grid {
      display: grid;
      width: 100%;
    }
    
    /* ===== ===== */
    .product-grid--6 {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1rem;
    }
    
    .product-grid--5 {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.5rem;
    }
    
    .product-grid--4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    
    .product-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      padding: 6px 14px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      z-index: 20;
      background: var(--color-gold);
      color: var(--color-black);
    }
    
    .product-badge--sale {
      background: var(--color-gold);
      color: var(--color-black);
    }
    
    .product-badge--sold-out {
      background: var(--color-charcoal);
      color: var(--color-off-white);
      border: 1px solid var(--color-gold);
    }
    
    .price-sale {
      color: var(--color-gold);
      font-weight: 600;
    }
    
    .price-original {
      color: var(--color-off-white);
      text-decoration: line-through;
      font-size: 0.65em;
      margin-left: 8px;
      opacity: 0.6;
    }
    
    /* ===== ===== */
    .brand-story--large {
      position: relative;
      padding: 8rem 0;
      background: var(--color-black);
    }
    
    .brand-story--large .brand-story__bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(26,26,26,0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/><circle cx="90" cy="30" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
      z-index: 1;
    }
    
    .brand-story--large .brand-story__overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.8) 100%);
      z-index: 2;
    }
    
    .brand-story__content {
      position: relative;
      z-index: 3;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .brand-story__text {
      font-size: 1.1rem;
      line-height: 2;
      color: var(--color-off-white);
      margin-bottom: 1.5rem;
      opacity: 0.9;
    }
    
    .brand-story__stats {
      display: flex;
      justify-content: center;
      gap: 4rem;
      margin: 3rem 0;
      flex-wrap: wrap;
    }
    
    .stat-item {
      text-align: center;
    }
    
    .stat-number {
      display: block;
      font-size: 3rem;
      font-weight: 700;
      font-family: var(--font-heading);
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    
    .stat-label {
      font-size: 0.9rem;
      color: var(--color-off-white);
      text-transform: uppercase;
      letter-spacing: 2px;
    }
    
    /* ===== ===== */
    .testimonials {
      background: var(--color-black-light);
    }
    
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }
    
    .testimonial-card {
      background: var(--color-charcoal);
      padding: 2.5rem;
      border: 1px solid rgba(212, 175, 55, 0.1);
      transition: border-color 0.3s ease;
    }
    
    .testimonial-card:hover {
      border-color: var(--color-gold);
    }
    
    .testimonial-rating {
      color: var(--color-gold);
      font-size: 1.25rem;
      letter-spacing: 4px;
      margin-bottom: 1.5rem;
    }
    
    .testimonial-text {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--color-off-white);
      font-style: italic;
      margin-bottom: 2rem;
      position: relative;
      padding-left: 20px;
    }
    
    .testimonial-text::before {
      content: '"';
      position: absolute;
      left: 0;
      top: -10px;
      font-size: 4rem;
      color: var(--color-gold);
      opacity: 0.3;
      font-family: Georgia, serif;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--gradient-gold);
      color: var(--color-black);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 1.2rem;
    }
    
    .author-info {
      display: flex;
      flex-direction: column;
    }
    
    .author-name {
      font-style: normal;
      font-weight: 600;
      color: var(--color-gold);
      font-size: 1rem;
    }
    
    .author-location {
      font-size: 0.85rem;
      color: var(--color-off-white);
      opacity: 0.6;
    }
    
    /* ===== ===== */
    .newsletter {
      background: linear-gradient(135deg, var(--color-black) 0%, var(--color-charcoal) 100%);
      border-top: 1px solid rgba(212, 175, 55, 0.2);
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .newsletter-content {
      max-width: 600px;
      margin: 0 auto;
    }
    
    .newsletter-text {
      font-size: 1.1rem;
      color: var(--color-off-white);
      margin-bottom: 1rem;
    }
    
    .newsletter-offer {
      font-size: 1.25rem;
      color: var(--color-gold);
      margin-bottom: 2rem;
    }
    
    .newsletter-offer strong {
      font-size: 1.5rem;
    }
    
    .newsletter-form {
      margin-bottom: 1.5rem;
    }
    
    .newsletter-input-group {
      display: flex;
      gap: 1rem;
      max-width: 500px;
      margin: 0 auto;
    }
    
    .newsletter-input {
      flex: 1;
      padding: 16px 20px;
      font-size: 14px;
      font-family: var(--font-body);
      background: var(--color-black);
      border: 1px solid rgba(212, 175, 55, 0.3);
      color: var(--color-off-white);
      transition: var(--transition-smooth);
    }
    
    .newsletter-input:focus {
      outline: none;
      border-color: var(--color-gold);
      box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    }
    
    .newsletter-input::placeholder {
      color: var(--color-off-white);
      opacity: 0.5;
    }
    
    .newsletter-note {
      font-size: 0.85rem;
      color: var(--color-off-white);
      opacity: 0.5;
    }
    
    /* ===== Instagram Feed ===== */
    .instagram {
      background: var(--color-black);
    }
    
    .instagram-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin-top: 3rem;
    }
    
    .instagram-item {
      position: relative;
      aspect-ratio: 1;
      background: var(--color-charcoal);
      border: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .instagram-item:hover {
      border-color: var(--color-gold);
    }
    
    .instagram-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-gold);
      opacity: 0.3;
    }
    
    .instagram-placeholder svg {
      width: 80px;
      height: 80px;
    }
    
    .instagram-overlay {
      display: none;
    }
    
    /* ===== ===== */
    .section-padding {
      padding: 6rem 0;
    }
    
    .section-header {
      margin-bottom: 3rem;
    }
    
    .section-subtitle {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--color-gold);
      margin-bottom: 1rem;
    }
    
    .section-title {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }
    
    .section-description {
      font-size: 1.1rem;
      color: var(--color-off-white);
      max-width: 600px;
      margin: 1.5rem auto 0;
      opacity: 0.8;
    }
    
    .gold-line {
      width: 80px;
      height: 2px;
      background: var(--gradient-gold);
      margin: 0;
    }
    
    .gold-line--center {
      margin: 0 auto;
    }
    
    .text-center {
      text-align: center;
    }
    
    /* ===== Responsive ===== */
    @media (max-width: 1024px) {
      .category-grid,
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .product-grid--6 {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
      }
      
      .product-grid--5 {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
      }
      
      .product-grid--4 {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .brand-story__stats {
        gap: 2rem;
      }
    }
    
    @media (max-width: 768px) {
      /* ===== ===== */
      body, html {
        overflow-x: hidden;
        max-width: 100vw;
      }
      
      .container,
      .header__inner,
      .footer__inner,
      .hero__content,
      .section-header {
        max-width: 100%;
      }
      
      /* ===== ===== */
      .product-grid--6 {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
      }
      
      .product-grid--5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
      }
      
      .product-grid--4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
      }
      
      /* ===== ===== */
      .header {
        padding: 8px 12px;
        min-height: 50px;
      }
      
      .header__inner {
        flex-wrap: nowrap;
        gap: 8px;
      }
      
      .header__logo {
        font-size: 20px;
        letter-spacing: 1px;
        white-space: nowrap;
        order: 1;
      }
      
      .header__nav {
        display: none !important; /**/
      }
      
      .header__icons {
        gap: 8px;
        order: 3;
        display: flex;
      }
      
      .header__icon {
        font-size: 18px;
        min-width: 36px;
        min-height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
      }
      
      /**/
      .mobile-menu-toggle {
        display: block !important;
        background: none;
        border: none;
        color: var(--color-gold);
        font-size: 20px;
        cursor: pointer;
        padding: 0;
        min-width: 36px;
        min-height: 36px;
        order: 2;
        margin-left: auto;
      }
      
      .mobile-menu {
        position: fixed;
        top: 50px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 50px);
        background: var(--color-black);
        z-index: 999;
        padding: 1.5rem;
        overflow-y: auto;
      }
      
      .mobile-menu.open {
        left: 0;
      }
      
      .mobile-menu a {
        display: block;
        padding: 0.75rem 0;
        color: var(--color-off-white);
        font-size: 15px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        min-height: 44px;
      }
      
      .mobile-menu a:hover {
        color: var(--color-gold);
        padding-left: 10px;
      }
      
      /* ===== ===== */
      .product-grid--6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
      }
      
      .product-card--compact {
        border-width: 1px;
      }
      
      .product-card--compact .product-card__image-wrapper {
        aspect-ratio: 1/1;
      }
      
      .product-card--compact .product-card__info {
        padding: 0.6rem;
      }
      
      .product-card--compact .product-card__title {
        font-size: 0.75rem;
        line-height: 1.3;
      }
      
      .product-card--compact .product-card__price {
        font-size: 0.7rem;
      }
      
      .product-grid--5,
      .product-grid--4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
      }
      
      /* ===== ===== */
      .btn {
        min-height: 44px;
        padding: 12px 24px;
      }
      
      .btn-lg {
        padding: 14px 30px;
        font-size: 13px;
        min-height: 48px;
      }
      
      /* ===== ===== */
      .hero--fullscreen {
        min-height: 500px;
      }
      
      .hero__subtitle {
        font-size: 12px;
        letter-spacing: 4px;
      }
      
      .hero__title {
        font-size: 3rem;
      }
      
      .hero__description {
        font-size: 1rem;
      }
      
      .hero__buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }
      
      .hero__buttons .btn {
        width: 100%;
        max-width: 300px;
      }
      
      /* ===== ===== */
      .category-grid,
      .testimonials-grid,
      .instagram-grid {
        grid-template-columns: 1fr;
      }
      
      .newsletter-input-group {
        flex-direction: column;
      }
      
      .newsletter-input-group .btn {
        width: 100%;
      }
      
      .brand-story__stats {
        flex-direction: column;
        gap: 2rem;
      }
      
      .section-padding {
        padding: 3rem 0;
      }
      
      .section-title {
        font-size: 1.75rem;
      }
      
      /* ===== ===== */
      .trust-badges {
        gap: 1.5rem;
      }
      
      .trust-badge {
        max-width: 100px;
      }
      
      .trust-badge svg {
        width: 32px;
        height: 32px;
      }
      
      .trust-badge__title {
        font-size: 11px;
      }
      
      .trust-badge__text {
        font-size: 10px;
      }
      
      /* ===== ===== */
      .cart-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
      }
      
      .cart-overlay.open {
        opacity: 1;
        visibility: visible;
      }
      
      .cart-drawer {
        position: fixed !important;
        top: 0 !important;
        right: -400px !important;
        width: 400px;
        max-width: 100%;
        height: 100vh !important;
        background: var(--color-black);
        border-left: 1px solid rgba(212, 175, 55, 0.3);
        z-index: 10000 !important;
        transition: right 0.3s ease;
        display: flex !important;
        flex-direction: column;
        left: auto !important;
      }
      
      .cart-drawer.open {
        right: 0 !important;
      }
      
      .cart-drawer__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
      }
      
      .cart-drawer__title {
        font-size: 1.2rem;
        color: var(--color-gold);
        font-weight: 600;
      }
      
      .cart-drawer__close {
        background: none;
        border: none;
        color: var(--color-off-white);
        font-size: 2rem;
        cursor: pointer;
        padding: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      .cart-drawer__items {
        flex: 1;
        overflow-y: auto;
        padding: 1.5rem;
      }
      
      .cart-drawer__footer {
        padding: 1.5rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
      }
      
      .cart-drawer__subtotal {
        display: flex;
        justify-content: space-between;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        color: var(--color-off-white);
      }
      
      .cart-drawer__subtotal-value {
        color: var(--color-gold);
        font-weight: 700;
      }
      
      .cart-drawer__checkout {
        width: 100%;
        padding: 1rem;
        background: var(--gradient-gold);
        color: var(--color-black);
        border: none;
        font-weight: 600;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 1px;
      }
      
      .quick-view__grid {
        grid-template-columns: 1fr;
      }
      
      .quick-view__image {
        min-height: 250px;
      }
      
      .quick-view__info {
        padding: 2rem;
      }
      
      .quick-view__title {
        font-size: 1.5rem;
      }
      
      .quick-view__price {
        font-size: 1.25rem;
      }
      
      .quick-view__actions {
        flex-direction: column;
      }
      
      .quick-view__wishlist {
        width: 100%;
        height: 50px;
      }
      
      /* ===== ===== */
      .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }
      
      .feature-card {
        padding: 1rem;
      }
      
      .feature-icon {
        width: 48px;
        height: 48px;
      }
      
      .feature-card h3 {
        font-size: 1rem;
      }
      
      .feature-card p {
        font-size: 0.8rem;
      }
      
      /* ===== ===== */
      .category-card__image {
        height: 200px;
      }
      
      .category-card__content {
        padding: 1.5rem;
      }
      
      .category-card__content h3 {
        font-size: 1.25rem;
      }
      
      /* ===== ===== */
      .testimonial-card {
        padding: 1.5rem;
      }
      
      .testimonial-text {
        font-size: 0.95rem;
      }
      
      /* ===== Footer ===== */
      .footer {
        padding: 3rem 1rem 2rem;
      }
      
      .footer__grid {
        gap: 2rem;
      }
    }
    
    /* ===== ===== */
    @media (max-width: 480px) {
      /* ===== ===== */
      body, html {
        overflow-x: hidden;
        max-width: 100vw;
      }
      
      .container,
      .header__inner,
      .footer__inner,
      .hero__content {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
      }
      
      /* ===== ===== */
      .product-grid--6,
      .product-grid--5,
      .product-grid--4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
      }
      
      .product-card--compact .product-card__info {
        padding: 0.5rem;
      }
      
      .product-card--compact .product-card__title {
        font-size: 0.7rem;
      }
      
      .product-card--compact .product-card__price {
        font-size: 0.65rem;
      }
      
      /* ===== ===== */
      h1 { font-size: 2rem; }
      h2 { font-size: 1.75rem; }
      h3 { font-size: 1.25rem; }
      
      .hero__title {
        font-size: 2.5rem;
      }
      
      .hero__subtitle {
        font-size: 10px;
        letter-spacing: 3px;
      }
      
      .hero__description {
        font-size: 0.9rem;
      }
      
      /* ===== ===== */
      .header__logo {
        font-size: 20px;
      }
      
      .header__icon {
        min-width: 40px;
        min-height: 40px;
        font-size: 18px;
      }
      
      .mobile-menu-toggle {
        min-width: 40px;
        min-height: 40px;
      }
      
      /* ===== ===== */
      .btn {
        padding: 12px 20px;
        font-size: 12px;
      }
      
      .btn-lg {
        padding: 14px 24px;
        font-size: 13px;
      }
      
      /* ===== ===== */
      .features__grid {
        grid-template-columns: 1fr;
      }
      
      /* ===== ===== */
      .section-padding {
        padding: 2rem 0;
      }
      
      .container {
        padding: 0 1rem;
      }
      
      /* ===== ===== */
      .stat-number {
        font-size: 2.5rem;
      }
      
      .stat-label {
        font-size: 0.8rem;
      }
      
      /* ===== ===== */
      .product-detail {
        gap: 1.5rem;
      }
      
      .product-title {
        font-size: 1.5rem;
      }
      
      .product-price {
        font-size: 1.25rem;
      }
      
      /* ===== ===== */
      .cart-item {
        grid-template-columns: 80px 1fr;
      }
      
      .cart-item__image {
        width: 80px;
        height: 80px;
      }
      
      .cart-item__actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
      
      /* ===== ===== */
      .quantity-control {
        min-height: 44px;
      }
      
      .qty-btn {
        min-width: 44px;
        min-height: 44px;
      }
      
      .quantity-input {
        height: 44px;
      }
      
      /* ===== ===== */
      .share-btn {
        min-width: 44px;
        min-height: 44px;
        width: 44px;
        height: 44px;
      }
      
      /* ===== ===== */
      .quick-action-btn {
        min-width: 44px;
        min-height: 44px;
        width: 44px;
        height: 44px;
      }
      
      /* ===== ===== */
      .tab-header {
        padding: 0.75rem 1rem;
        font-size: 13px;
      }
      
      /* ===== ===== */
      .specs-table td {
        padding: 0.75rem;
        font-size: 14px;
      }
      
      /* ===== Pagination ===== */
      .pagination-page {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
      }
      
      /* ===== ===== */
      .newsletter-input {
        min-height: 44px;
        padding: 12px;
      }
      
      /* ===== ===== */
      .category-grid {
        gap: 1rem;
      }
      
      /* ===== Instagram ===== */
      .instagram-grid {
        gap: 0.5rem;
      }
    }
    
    /* ===== ===== */
    .product-card__overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 10;
      backdrop-filter: blur(2px);
    }
    
    .product-card__image-wrapper:hover .product-card__overlay {
      opacity: 1;
      visibility: visible;
    }
    
    .quick-view-btn {
      padding: 12px 24px;
      background: var(--gradient-gold);
      color: var(--color-black);
      border: none;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s ease;
      transform: translateY(20px);
      opacity: 0;
    }
    
    .product-card__image-wrapper:hover .quick-view-btn {
      transform: translateY(0);
      opacity: 1;
    }
    
    .quick-view-btn:hover {
      background: linear-gradient(135deg, #F4CF57 0%, #E8D68A 100%);
      box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
      transform: translateY(-2px);
    }
    
    .product-card__actions {
      display: flex;
      gap: 8px;
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.4s ease 0.1s;
    }
    
    .product-card__image-wrapper:hover .product-card__actions {
      transform: translateY(0);
      opacity: 1;
    }
    
    .product-card__action-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(212, 175, 55, 0.2);
      border: 1px solid var(--color-gold);
      color: var(--color-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .product-card__action-btn:hover {
      background: var(--color-gold);
      color: var(--color-black);
      transform: scale(1.1);
    }
    
    .product-card__action-btn svg {
      width: 18px;
      height: 18px;
    }
    
    /**/
    .product-card__image-wrapper:hover .quick-view-btn {
      transition-delay: 0s;
    }
    
    .product-card__image-wrapper:hover .product-card__action-btn:nth-child(1) {
      transition-delay: 0.1s;
    }
    
    .product-card__image-wrapper:hover .product-card__action-btn:nth-child(2) {
      transition-delay: 0.15s;
    }
    
    /* ===== ===== */
    .product-card--compact {
      border: 1px solid rgba(212, 175, 55, 0.1);
      background: var(--color-charcoal);
      transition: border-color 0.2s ease;
    }
    
    .product-card--compact:hover {
      border-color: var(--color-gold);
    }
    
    .product-card--compact .product-card__image-wrapper {
      aspect-ratio: 1/1;
      overflow: hidden;
      position: relative;
    }
    
    /**/
    .product-card--compact .product-card__image {
      aspect-ratio: 1 / 1;
      overflow: hidden;
    }
    
    .product-card--compact .product-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: none;
    }
    
    .product-card--compact:hover .product-card__image img {
      transform: none;
    }
    
    .product-card--compact .product-card__info {
      padding: 0.75rem;
    }
    
    .product-card--compact .product-card__title {
      font-size: 0.8rem;
      margin-bottom: 0.4rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .product-card--compact .product-card__price {
      font-size: 0.75rem;
      color: var(--color-gold);
      font-weight: 600;
    }
    
    .product-card--compact .product-card__info {
      padding: 0.75rem;
    }
    
    .product-card--compact .product-card__title {
      font-size: 0.85rem;
      margin-bottom: 0.4rem;
    }
    
    .product-card--compact .product-card__price {
      font-size: 0.8rem;
    }
    
    /* ===== ===== */
    .quick-view-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    
    .quick-view-modal.open {
      opacity: 1;
      visibility: visible;
    }
    
    .quick-view-modal__content {
      background: var(--color-charcoal);
      border: 1px solid rgba(212, 175, 55, 0.3);
      max-width: 900px;
      width: 90%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      transform: scale(0.9) translateY(20px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .quick-view-modal.open .quick-view-modal__content {
      transform: scale(1) translateY(0);
    }
    
    .quick-view-modal__close {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 40px;
      height: 40px;
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid var(--color-gold);
      border-radius: 50%;
      color: var(--color-gold);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 10;
    }
    
    .quick-view-modal__close:hover {
      background: var(--color-gold);
      color: var(--color-black);
      transform: rotate(90deg);
    }
    
    .quick-view-modal__close svg {
      width: 20px;
      height: 20px;
    }
    
    .quick-view__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }
    
    .quick-view__image {
      background: var(--color-graphite);
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    
    .quick-view__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .quick-view__info {
      padding: 3rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .quick-view__title {
      font-size: 2rem;
      color: var(--color-gold);
      margin-bottom: 0.5rem;
    }
    
    .quick-view__price {
      font-size: 1.5rem;
      color: var(--color-gold);
      font-weight: 700;
    }
    
    .quick-view__price .compare-price {
      font-size: 1.25rem;
      color: var(--color-off-white);
      text-decoration: line-through;
      margin-left: 10px;
      opacity: 0.6;
    }
    
    .quick-view__description {
      color: var(--color-off-white);
      line-height: 1.8;
      font-size: 0.95rem;
    }
    
    .quick-view__actions {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }
    
    .quick-view__add-to-cart {
      flex: 1;
      padding: 16px 30px;
      background: var(--gradient-gold);
      color: var(--color-black);
      border: none;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .quick-view__add-to-cart:hover {
      background: linear-gradient(135deg, #F4CF57 0%, #E8D68A 100%);
      box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
      transform: translateY(-2px);
    }
    
    .quick-view__wishlist {
      width: 50px;
      height: 50px;
      background: transparent;
      border: 1px solid var(--color-gold);
      color: var(--color-gold);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    
    .quick-view__wishlist:hover {
      background: var(--color-gold);
      color: var(--color-black);
    }
    
    .quick-view__wishlist svg {
      width: 22px;
      height: 22px;
    }
    
    .quick-view__features {
      margin-top: 1rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    /* Quick View gallery styles */
    .quick-view__grid {
      grid-template-columns: 2fr 3fr !important;
    }
    .quick-view__image {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1rem;
    }
    .quick-view__main-image {
      position: relative;
      width: 100%;
      max-width: 450px;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border-radius: 8px;
      background: rgba(255,255,255,0.03);
    }
    .quick-view__main-image img {
      width: 100%;
      height: 100%;
      display: block;
      transition: opacity 0.3s ease;
    }
    .quick-view__nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(0,0,0,0.5);
      color: #fff;
      border: none;
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 2;
      transition: background 0.2s;
    }
    .quick-view__nav:hover { background: rgba(0,0,0,0.8); }
    .quick-view__nav svg { width: 18px; height: 18px; }
    .quick-view__nav--prev { left: 8px; }
    .quick-view__nav--next { right: 8px; }
    .quick-view__thumbs {
      display: none;
      gap: 8px;
      margin-top: 12px;
      padding: 0.5rem 0;
      max-width: 100%;
      overflow-x: auto;
      justify-content: center;
    }
    .quick-view__thumb {
      width: 56px;
      height: 56px;
      border-radius: 6px;
      overflow: hidden;
      cursor: pointer;
      border: 2px solid transparent;
      opacity: 0.6;
      transition: all 0.2s ease;
      flex-shrink: 0;
    }
    .quick-view__thumb:hover {
      opacity: 0.9;
      border-color: rgba(212, 175, 55, 0.5);
    }
    .quick-view__thumb.active {
      opacity: 1;
      border-color: var(--color-gold);
    }
    .quick-view__thumb img { width: 100%; height: 100%; object-fit: cover; }
    
    
    .quick-view__features h4 {
      font-size: 0.9rem;
      color: var(--color-gold);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 1rem;
    }
    
    .quick-view__features ul {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
    }
    
    .quick-view__features li {
      color: var(--color-off-white);
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .quick-view__features li svg {
      width: 16px;
      height: 16px;
      color: var(--color-gold);
      flex-shrink: 0;
    }
    
    /* ===== ===== */
    .trust-badges {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-top: 3rem;
      flex-wrap: wrap;
    }
    
    .trust-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 150px;
    }
    
    .trust-badge svg {
      width: 40px;
      height: 40px;
      color: var(--color-gold);
      margin-bottom: 0.5rem;
    }
    
    .trust-badge__title {
      font-size: 13px;
      font-weight: 600;
      color: var(--color-gold);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.25rem;
    }
    
    .trust-badge__text {
      font-size: 12px;
      color: var(--color-off-white);
      opacity: 0.7;
    }
    
    /* ===== ===== */
    .product-filter-btn:hover {
      background: var(--color-gold);
      color: var(--color-black);
      border-color: var(--color-gold);
    }
    
    /* ===== ===== */
    .features {
      padding: 2rem 0;
      background: var(--color-black);
    }
    
    .features__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    
    .feature-card {
      text-align: center;
      padding: 1.5rem 1rem;
      background: var(--color-charcoal);
      border: 1px solid rgba(212, 175, 55, 0.1);
      transition: border-color 0.3s ease;
      overflow: hidden;
    }
    
    .feature-card h3 {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .feature-card:hover {
      border-color: var(--color-gold);
    }
    
    .feature-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 1rem;
      color: var(--color-gold);
    }
    
    .feature-icon svg {
      width: 100%;
      height: 100%;
    }
    
    .feature-card h3 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      color: var(--color-gold);
    }
    
    .feature-card p {
      font-size: 0.85rem;
      color: var(--color-off-white);
      opacity: 0.8;
      line-height: 1.5;
    }
    
    /* ===== ===== */
    .category-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--color-gold);
    }
    

    

    

    

    
    /* ===== ===== */
    .mobile-menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      z-index: 998;
      display: none;
    }
    
    .mobile-menu-overlay.open {
      display: block;
    }
    
    /* ===== ===== */
    .page-loader {
      transition: opacity 0.3s ease;
    }
  
    
    /* ===== ===== */
    .collection-page {
      padding: 3rem 0 4rem;
      min-height: 60vh;
    }
    
    .breadcrumb {
      margin-bottom: 2rem;
      font-size: 0.9rem;
      color: var(--color-off-white);
      opacity: 0.7;
    }
    
    .breadcrumb a {
      color: var(--color-gold);
      text-decoration: none;
      transition: opacity 0.3s ease;
    }
    
    .breadcrumb a:hover {
      opacity: 1;
    }
    
    .breadcrumb span {
      margin: 0 8px;
    }
    
    .collection-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }
    
    .collection-title {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      color: var(--color-gold);
      font-weight: 600;
      letter-spacing: 2px;
      margin-bottom: 1rem;
    }
    
    .collection-description {
      max-width: 600px;
      margin: 0 auto;
      color: var(--color-off-white);
      opacity: 0.8;
      font-size: 1rem;
      line-height: 1.6;
    }
    
    .collection-filters {
      margin-bottom: 2rem;
      padding: 1.5rem 0;
      border-top: 1px solid rgba(212, 175, 55, 0.1);
      border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .filter-links {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
      align-items: center;
    }
    
    .filter-link {
      color: var(--color-off-white);
      text-decoration: none;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      opacity: 0.7;
      position: relative;
      padding: 0.5rem 0;
    }
    
    .filter-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient-gold);
      transition: width 0.3s ease;
    }
    
    .filter-link:hover {
      color: var(--color-gold);
      opacity: 1;
    }
    
    .filter-link:hover::after {
      width: 100%;
    }
    
    .filter-link.active {
      color: var(--color-gold);
      opacity: 1;
      font-weight: 600;
    }
    
    .filter-link.active::after {
      width: 100%;
    }
    
    .filter-link .count {
      font-size: 0.85rem;
      opacity: 0.6;
      margin-left: 4px;
    }
    
    .filter-link:hover .count,
    .filter-link.active .count {
      opacity: 1;
      color: var(--color-gold);
    }
    
    .collection-toolbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .product-count {
      color: var(--color-off-white);
      font-size: 0.95rem;
      opacity: 0.8;
    }
    
    .sort-controls {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    .sort-label {
      color: var(--color-off-white);
      font-size: 0.95rem;
      opacity: 0.8;
    }
    
    .sort-select {
      background: var(--color-black);
      border: 1px solid rgba(212, 175, 55, 0.3);
      color: var(--color-gold);
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .sort-select:hover {
      border-color: var(--color-gold);
    }
    
    .sort-select:focus {
      outline: none;
      border-color: var(--color-gold);
      box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    }
    
    /**/
    .product-grid--4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }
    
    @media (max-width: 1024px) {
      .product-grid--4 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
      }
    }
    
    @media (max-width: 768px) {
      .product-grid--4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .product-grid--4 {
        grid-template-columns: 1fr;
      }
    }
    
    /* Product Cards */
    .product-card--compact {
      border: 1px solid rgba(212, 175, 55, 0.1);
      background: var(--color-charcoal);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
    }
    
    .product-card--compact:hover {
      border-color: var(--color-gold);
      box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
      transform: translateY(-5px);
    }
    
    .product-card__image-wrapper {
      position: relative;
      aspect-ratio: 1/1;
      overflow: hidden;
      background: var(--color-graphite);
    }
    
    .product-card__placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-gold);
      opacity: 0.3;
    }
    
    .product-card__placeholder svg {
      width: 60px;
      height: 60px;
    }
    
    .product-card__info {
      padding: 1.25rem;
      text-align: center;
    }
    
    .product-card__title {
      font-size: 0.95rem;
      color: var(--color-off-white);
      margin-bottom: 0.75rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .product-card__price {
      color: var(--color-gold);
      font-weight: 600;
      font-size: 1rem;
    }
    
    .price-original {
      text-decoration: line-through;
      opacity: 0.6;
      margin-left: 8px;
      font-size: 0.6rem;
    }
    
    /**/
    .product-card__overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(5px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 15px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 10;
    }
    
    .product-card__image-wrapper:hover .product-card__overlay {
      opacity: 1;
      visibility: visible;
    }
    
    .quick-view-btn {
      padding: 12px 24px;
      background: var(--gradient-gold);
      color: var(--color-black);
      border: none;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
      border-radius: 4px;
    }
    
    .product-card__image-wrapper:hover .quick-view-btn {
      transform: translateY(0);
      opacity: 1;
    }
    
    .quick-view-btn:hover {
      background: linear-gradient(135deg, #F4CF57 0%, #E8D68A 100%);
      box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
      transform: translateY(-2px);
    }
    
    .product-card__actions {
      display: flex;
      gap: 10px;
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.4s ease 0.2s;
    }
    
    .product-card__image-wrapper:hover .product-card__actions {
      transform: translateY(0);
      opacity: 1;
    }
    
    .product-card__action-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--color-black);
      border: 1px solid var(--color-gold);
      color: var(--color-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .product-card__action-btn:hover {
      background: var(--color-gold);
      color: var(--color-black);
      transform: scale(1.1);
    }
    
    .product-card__action-btn svg {
      width: 18px;
      height: 18px;
    }
    
    /* Pagination */
    .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .pagination-btn {
      padding: 0.5rem 1.5rem;
      border: 1px solid var(--color-gold);
      color: var(--color-gold);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .pagination-btn:hover {
      background: var(--color-gold);
      color: var(--color-black);
    }
    
    .pagination-numbers {
      display: flex;
      gap: 0.5rem;
    }
    
    .pagination-link {
      padding: 0.5rem 1rem;
      border: 1px solid rgba(212, 175, 55, 0.3);
      color: var(--color-off-white);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .pagination-link:hover {
      border-color: var(--color-gold);
      color: var(--color-gold);
    }
    
    .pagination-current {
      padding: 0.5rem 1rem;
      background: var(--color-gold);
      color: var(--color-black);
      font-weight: 600;
    }
    
    /**/
    .empty-state {
      text-align: center;
      padding: 4rem 2rem;
    }
    
    .empty-state h3 {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      color: var(--color-gold);
      margin: 1.5rem 0 1rem;
    }
    
    .empty-state p {
      color: var(--color-off-white);
      opacity: 0.7;
      margin-bottom: 2rem;
    }
    
    @media (max-width: 768px) {
      .quick-view__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      
      .quick-view__features {
        grid-template-columns: 1fr;
      }
    }

/**/

/**/
.hero__title {
  background: linear-gradient(135deg, #D4AF37 0%, #F4CF57 50%, #B48F17 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 80px rgba(212, 175, 55, 0.3);
}

/**/
.hero__subtitle {
  color: #D4AF37 !important;
  letter-spacing: 6px;
}

/**/
.btn-primary {
  background: linear-gradient(135deg, #D4AF37 0%, #F4CF57 50%, #B48F17 100%);
  color: #000;
  border: none;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}
.btn-outline {
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #D4AF37;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #D4AF37;
  transform: translateY(-2px);
}

/**/
.product-card {
  transition: all 0.4s ease;
  background: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.1);
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: #D4AF37;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}
.product-card img {
  transition: transform 0.6s ease;
}
.product-card:hover img {
  transform: scale(1.08);
}

/**/
.star {
  color: #D4AF37;
  font-size: 14px;
}
.rating-num {
  color: #D4AF37;
  font-size: 12px;
  margin-left: 4px;
}

/**/
.header {
  transition: background 0.3s ease;
}
.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/**/
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  margin: 20px auto;
}

/**/
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/**/
.section-title {
  color: #D4AF37;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/**/
.price, .product-price, .product-card__price {
  color: #D4AF37 !important;
  font-weight: 700;
}

/**/
.compare-price, .product-card__compare-price {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  font-size: 0.65em;
}

/**/
.footer {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.footer a {
  transition: color 0.3s ease;
}
.footer a:hover {
  color: #D4AF37;
}

/**/
@media (max-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* === Extracted from theme.liquid (block 1) === */
/**/
    @media (min-width: 769px) {
      .mobile-menu,
      .mobile-menu-overlay,
      .mobile-menu-toggle {
        display: none !important;
      }
    }
  /**/

/**/
.hero__title {
  background: linear-gradient(135deg, #D4AF37 0%, #F4CF57 50%, #B48F17 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 80px rgba(212, 175, 55, 0.3);
}

/**/
.hero__subtitle {
  color: #D4AF37 !important;
  letter-spacing: 6px;
}

/**/
.btn-primary {
  background: linear-gradient(135deg, #D4AF37 0%, #F4CF57 50%, #B48F17 100%);
  color: #000;
  border: none;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}
.btn-outline {
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #D4AF37;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #D4AF37;
  transform: translateY(-2px);
}

/**/
.product-card {
  transition: all 0.4s ease;
  background: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.1);
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: #D4AF37;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}
.product-card img {
  transition: transform 0.6s ease;
}
.product-card:hover img {
  transform: scale(1.08);
}

/**/
.star {
  color: #D4AF37;
  font-size: 14px;
}
.rating-num {
  color: #D4AF37;
  font-size: 12px;
  margin-left: 4px;
}

/**/
.header {
  transition: background 0.3s ease;
}
.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/**/
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  margin: 20px auto;
}

/**/
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/**/
.section-title {
  color: #D4AF37;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/**/
.price, .product-price, .product-card__price {
  color: #D4AF37 !important;
  font-weight: 700;
}

/**/
.compare-price, .product-card__compare-price {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  font-size: 0.65em;
}

/**/
.footer {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.footer a {
  transition: color 0.3s ease;
}
.footer a:hover {
  color: #D4AF37;
}

/**/
@media (max-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === Extracted from theme.liquid (block 2) === */
.factory-popup-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}
.factory-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}
.factory-popup {
  background: #111;
  border: 1px solid rgba(212,175,55,0.3);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 40px rgba(212,175,55,0.1);
}
.factory-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 8px;
  z-index: 2;
  transition: color 0.2s;
}
.factory-popup__close:hover { color: #D4AF37; }
.factory-popup__content {
  padding: 40px 32px 32px;
  text-align: center;
}
.factory-popup__icon { margin-bottom: 16px; }
.factory-popup__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: #D4AF37;
  margin: 0 0 12px;
  letter-spacing: 2px;
}
.factory-popup__desc {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  margin: 0 0 20px;
}
.factory-popup__desc b { color: #D4AF37; }
.factory-popup__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  text-align: left;
}
.factory-popup__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #aaa;
}
.factory-popup__input, .factory-popup__textarea {
  width: 100%;
  padding: 12px 16px;
  background: #1a1a1a;
  border: 1px solid rgba(212,175,55,0.2);
  color: #fff;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.factory-popup__input:focus, .factory-popup__textarea:focus {
  border-color: #D4AF37;
}
.factory-popup__textarea {
  margin-top: 10px;
  resize: vertical;
  min-height: 60px;
}
.factory-popup__btn {
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  background: linear-gradient(135deg, #D4AF37, #F4CF57, #B48F17);
  border: none;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
}
.factory-popup__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.3);
}
.factory-popup__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.factory-popup__footer {
  font-size: 11px;
  color: #666;
  margin: 16px 0 0;
}
.factory-popup__success {
  display: none;
  padding: 20px;
  color: #D4AF37;
  font-size: 14px;
}
.factory-popup__success.show { display: block; }

/* === Variant Button Selector === */
.variant-options {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  margin-top: 8px !important;
}

.variant-options input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}

.variant-options label {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 12px !important;
  border: 2px solid var(--color-border, #374151) !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  background: var(--color-surface, var(--color-background-secondary)) !important;
  color: var(--color-text) !important;
  text-align: center !important;
  min-height: 40px !important;
  line-height: 1.3 !important;
  user-select: none !important;
  margin: 0 !important;
}

.variant-options input[type="radio"]:checked + label {
  border-color: var(--color-accent, #f59e0b) !important;
  background: rgba(245, 158, 11, 0.12) !important;
  color: var(--color-accent, #f59e0b) !important;
  font-weight: 700 !important;
}

.variant-options label:hover {
  border-color: var(--color-accent, #f59e0b) !important;
  background: var(--color-surface-raised, var(--color-background-hover)) !important;
}

.variant-options input[type="radio"]:disabled + label {
  opacity: 0.35 !important;
  cursor: not-allowed !important;
  text-decoration: line-through !important;
}

.variant-label {
  display: block !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: var(--color-text-secondary) !important;
  margin-bottom: 4px !important;
}

@media (max-width: 768px) {
  .variant-options {
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
  }
  .variant-options label {
    padding: 8px 8px !important;
    font-size: 0.8rem !important;
    min-height: 36px !important;
  }
}


/* ===== Extracted from product.liquid ===== */
/* ===== 产品页面样式 ===== */
  .product-page {
    padding: 2rem 0 4rem;
  }
  
  /* Breadcrumb */
  .breadcrumb {
    padding: 1rem 0;
    font-size: 14px;
    color: var(--color-text);
    opacity: 0.7;
  }
  
  .breadcrumb a {
    color: var(--color-gold);
    transition: var(--transition-smooth);
  }
  
  .breadcrumb a:hover {
    color: var(--color-gold-light);
  }
  
  .breadcrumb span {
    margin: 0 0.5rem;
    opacity: 0.5;
  }
  
  /* Product Detail */
  .product-detail {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    padding: 2rem 0;
  }
  
  /* Product Gallery */
  .product-gallery {
    position: sticky;
    top: 100px;
  }
  
  .product-main-image {
    background: var(--color-dark-gray);
    border: 1px solid var(--color-gray);
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    transition: var(--transition-smooth);
  }
  
  
  
  .product-main-image {
    overflow: hidden;
  }
  
  .product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
  }
  
  .product-image-placeholder {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    opacity: 0.3;
  }
  
  .product-image-placeholder svg {
    width: 100px;
    height: 100px;
  }
  
  .image-zoom-hint {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-off-white);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: var(--transition-smooth);
  }
  
  .product-main-image:hover .image-zoom-hint {
    opacity: 1;
  }
  
  .image-zoom-hint svg {
    width: 16px;
    height: 16px;
  }
  
  .product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }
  
  .thumbnail {
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    overflow: hidden;
    background: var(--color-dark-gray);
  }
  
  .thumbnail:hover,
  .thumbnail.active {
    border-color: var(--color-gold);
  }
  
  .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
  }
  
  .thumbnail:hover img {
    transform: scale(1.1);
  }
  
  .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: var(--color-gold);
    padding: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
  }
  
  .gallery-nav:hover {
    background: var(--color-gold);
    color: var(--color-black);
  }
  
  .gallery-nav--prev {
    left: 1rem;
  }
  
  .gallery-nav--next {
    right: 1rem;
  }
  
  .gallery-nav svg {
    width: 24px;
    height: 24px;
  }
  
  /* Product Info */
  .product-info {
    padding: 2rem 0;
  }
  
  .product-title {
    font-size: 36px;
    margin-bottom: 1rem;
    color: var(--color-gold);
  }
  
  .product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .rating-stars {
    color: var(--color-gold);
    letter-spacing: 2px;
  }
  
  .rating-count {
    font-size: 14px;
    color: var(--color-off-white);
    opacity: 0.7;
  }
  
  .product-price {
    font-size: 32px;
    color: var(--color-text);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .price-sale {
    color: var(--color-gold);
    font-weight: 700;
  }
  
  .price-original {
    color: var(--color-text);
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 0.65em;
  }
  
  .price-badge {
    background: var(--color-gold);
    color: var(--color-black);
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
  }
  
  .product-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  /* Product Highlights */
  .product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .highlight-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--color-off-white);
    background: var(--color-charcoal);
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
  }
  
  .highlight-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
  }
  
  /* Variants */
  .product-variants {
    margin-bottom: 2rem;
  }
  
  .variant-group {
    margin-bottom: 1.5rem;
  }
  
  .variant-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .variant-option input[type="radio"] {
    display: none;
  }
  
  .variant-option label {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--color-gray);
    cursor: pointer;
    transition: var(--transition-smooth);
    background: var(--color-charcoal);
    color: var(--color-off-white);
    font-weight: 500;
  }
  
  .variant-option label:hover {
    border-color: var(--color-gold);
  }
  
  .variant-option input[type="radio"]:checked + label {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: var(--color-black);
  }
  
  .variant-option input[type="radio"]:disabled + label {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: var(--color-gray);
  }
  
  .out-of-stock {
    color: #ff4444;
    font-size: 12px;
    margin-left: 0.5rem;
  }
  
  /* Actions */
  .product-actions {
    margin-bottom: 2rem;
  }
  
  .quantity-selector {
    margin-bottom: 1.5rem;
  }
  
  .quantity-selector label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
  }
  
  .quantity-control {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 2px solid var(--color-gray);
  }
  
  .qty-btn {
    width: 44px;
    height: 44px;
    background: var(--color-charcoal);
    border: none;
    color: var(--color-gold);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
  }
  
  .qty-btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
  }
  
  .quantity-input {
    width: 60px;
    height: 44px;
    border: none;
    border-left: 1px solid var(--color-gray);
    border-right: 1px solid var(--color-gray);
    background: var(--color-dark-gray);
    color: var(--color-text);
    font-size: 16px;
    text-align: center;
    font-weight: 600;
  }
  
  .quantity-input:focus {
    outline: none;
  }
  
  .btn-add-to-cart {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1rem;
  }
  
  .btn-add-to-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .btn-notify-me {
    width: 100%;
    padding: 16px;
  }
  
  /* Quick Actions */
  .product-quick-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .quick-action-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--color-gray);
    background: var(--color-charcoal);
    color: var(--color-gold);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .quick-action-btn:hover {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: var(--color-black);
  }
  
  .quick-action-btn svg {
    width: 20px;
    height: 20px;
  }
  
  /* Social Share */
  .social-share {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-gray);
    border-bottom: 1px solid var(--color-gray);
  }
  
  .share-label {
    display: block;
    font-size: 13px;
    color: var(--color-text);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  
  .share-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-gray);
    background: var(--color-charcoal);
    color: var(--color-off-white);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  
  .share-btn:hover {
    transform: translateY(-3px);
  }
  
  .share-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .share-facebook:hover {
    border-color: #1877F2;
    background: #1877F2;
    color: white;
  }
  
  .share-twitter:hover {
    border-color: #1DA1F2;
    background: #1DA1F2;
    color: white;
  }
  
  .share-pinterest:hover {
    border-color: #E60023;
    background: #E60023;
    color: white;
  }
  
  .share-whatsapp:hover {
    border-color: #25D366;
    background: #25D366;
    color: white;
  }
  
  .share-copy:hover {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: var(--color-black);
  }
  
  /* Product Meta */
  .product-meta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    font-size: 14px;
    color: var(--color-text);
    opacity: 0.8;
  }
  
  .meta-item {
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.5rem;
  }
  
  .meta-item strong {
    color: var(--color-gold);
    min-width: 60px;
  }
  
  .meta-item a {
    color: var(--color-off-white);
    opacity: 0.8;
  }
  
  .meta-item a:hover {
    color: var(--color-gold);
  }
  
  /* Shipping Info */
  .shipping-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--color-charcoal);
    border: 1px solid rgba(212, 175, 55, 0.2);
  }
  
  .shipping-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .shipping-item:last-child {
    margin-bottom: 0;
  }
  
  .shipping-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
  }
  
  .shipping-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .shipping-item strong {
    color: var(--color-gold);
    font-size: 14px;
  }
  
  .shipping-item span {
    color: var(--color-off-white);
    font-size: 13px;
    opacity: 0.8;
  }
  
  /* Product Tabs */
  .product-tabs {
    margin-top: 4rem;
  }
  
  .tab-headers {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--color-gray);
  }
  
  .tab-header {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: var(--color-off-white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    opacity: 0.6;
  }
  
  .tab-header:hover {
    opacity: 1;
  }
  
  .tab-header.active {
    opacity: 1;
    color: var(--color-gold);
  }
  
  .tab-header.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
  }
  
  .tab-content {
    display: none;
    padding: 2rem 0;
  }
  
  .tab-content.active {
    display: block;
  }
  
  .tab-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
  }
  
  .specs-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .specs-table tr {
    border-bottom: 1px solid var(--color-gray);
  }
  
  .specs-table td {
    padding: 1rem;
  }
  
  .specs-table td:first-child {
    font-weight: 600;
    color: var(--color-gold);
    width: 200px;
  }
  
  .shipping-details h4 {
    font-size: 18px;
    color: var(--color-gold);
    margin-bottom: 1rem;
  }
  
  .shipping-details ul {
    list-style: none;
    padding-left: 0;
  }
  
  .shipping-details li {
    margin-bottom: 0.75rem;
    color: var(--color-text);
  }
  
  .shipping-details strong {
    color: var(--color-gold);
  }
  
  /* Related Products */
  .related-products {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid var(--color-gray);
  }
  
  .related-products .section-header {
    margin-bottom: 3rem;
  }
  
  .related-products .section-subtitle {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
  }
  
  .related-products .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
  }
  
  .related-products .gold-line {
    width: 80px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 0 auto;
  }
  
  /* Image Modal */
  .image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
  }
  
  .image-modal.open {
    opacity: 1;
    visibility: visible;
  }
  
  .image-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
  }
  
  .image-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: cover;
  }
  
  .image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--color-off-white);
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition-smooth);
  }
  
  .image-modal-close:hover {
    color: var(--color-gold);
  }
  
  .image-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: var(--color-gold);
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
  }
  
  .image-modal-nav:hover {
    background: var(--color-gold);
    color: var(--color-black);
  }
  
  .image-modal-prev {
    left: -60px;
  }
  
  .image-modal-next {
    right: -60px;
  }
  
  .image-modal-nav svg {
    width: 24px;
    height: 24px;
  }
  
  /* Notify Modal */
  .notify-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
  }
  
  .notify-modal.open {
    opacity: 1;
    visibility: visible;
  }
  
  .notify-modal-content {
    background: var(--color-charcoal);
    padding: 3rem;
    border: 1px solid var(--color-gold);
    max-width: 400px;
    width: 90%;
    position: relative;
    text-align: center;
  }
  
  .notify-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--color-off-white);
    font-size: 28px;
    cursor: pointer;
  }
  
  .notify-modal-content h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
  }
  
  .notify-modal-content p {
    color: var(--color-off-white);
    margin-bottom: 2rem;
    opacity: 0.8;
  }
  
  .notify-modal-content input[type="email"] {
    width: 100%;
    padding: 14px;
    margin-bottom: 1rem;
    background: var(--color-black);
    border: 1px solid var(--color-gray);
    color: var(--color-off-white);
    font-family: var(--font-body);
  }
  
  .notify-modal-content input[type="email"]:focus {
    outline: none;
    border-color: var(--color-gold);
  }
  
  .notify-modal-content .btn {
    width: 100%;
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .product-detail {
      gap: 3rem;
    }
  }
  @media (max-width: 768px) {
    .product-detail {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .product-gallery {
      position: static;
    }
    .product-thumbnails {
      justify-content: center;
    }
    .thumbnail {
      width: 55px;
      height: 55px;
    }
  }
    
    .product-gallery {
      top: 80px;
    }
    
    .related-products .section-title {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .product-page {
      padding: 1rem 0 3rem;
    }
    
    .product-detail {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .product-title {
      font-size: 28px;
    }
    
    .product-price {
      font-size: 24px;
    }
    
    .product-thumbnails {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .product-main-image img {
      object-fit: cover;
    }
    
    .product-image-placeholder {
      height: 400px;
    }
    
    .gallery-nav {
      display: none;
    }
    
    .variant-options {
      gap: 0.5rem;
    }
    
    .variant-option label {
      padding: 10px 16px;
      font-size: 14px;
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .tab-headers {
      overflow-x: auto;
      white-space: nowrap;
    }
    
    .tab-header {
      padding: 1rem 1.5rem;
      min-height: 44px;
    }
    
    .image-modal-nav {
      display: none;
    }
    
    .share-buttons {
      gap: 0.5rem;
    }
    
    .share-btn {
      min-width: 44px;
      min-height: 44px;
      width: 44px;
      height: 44px;
    }
    
    .related-products {
      margin-top: 4rem;
      padding-top: 3rem;
    }
    
    .related-products .section-subtitle {
      font-size: 11px;
      letter-spacing: 3px;
    }
    
    .related-products .section-title {
      font-size: 1.75rem;
      margin-bottom: 1rem;
    }
    
    .related-products .gold-line {
      width: 60px;
    }
    
    .related-products .product-grid--4 {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
    }
    
    /* ===== 产品详情页移动端优化 ===== */
    .product-actions .btn {
      min-height: 48px;
      padding: 14px 20px;
    }
    
    .quantity-selector label {
      font-size: 13px;
    }
    
    .qty-btn {
      min-width: 44px;
      min-height: 44px;
    }
    
    .quantity-input {
      height: 44px;
    }
    
    .quick-action-btn {
      min-width: 44px;
      min-height: 44px;
    }
    
    .product-highlights {
      gap: 0.5rem;
    }
    
    .highlight-item {
      padding: 6px 10px;
      font-size: 13px;
    }
    
    .highlight-item svg {
      width: 16px;
      height: 16px;
    }
    
    .shipping-item {
      gap: 0.75rem;
    }
    
    .shipping-item svg {
      width: 20px;
      height: 20px;
    }
    
    .product-meta {
      font-size: 13px;
    }
    
    .breadcrumb {
      font-size: 13px;
    }
  }
  
  @media (max-width: 480px) {
    .related-products .section-subtitle {
      font-size: 10px;
      letter-spacing: 2px;
    }
    
    .related-products .section-title {
      font-size: 1.5rem;
    }
    
    .related-products .product-grid--4 {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem;
    }
    
    .product-main-image img {
      object-fit: cover;
    }
    
    .product-image-placeholder {
      height: 300px;
    }
    
    /* ===== 小屏幕进一步优�?===== */
    .product-title {
      font-size: 1.5rem;
    }
    
    .product-price {
      font-size: 1.25rem;
    }
    
    .product-description {
      font-size: 14px;
    }
    
    .product-rating {
      font-size: 14px;
    }
    
    .variant-option label {
      padding: 8px 12px;
      font-size: 13px;
    }
    
    .tab-body {
      font-size: 14px;
    }
    
    .specs-table td {
      padding: 0.75rem 0.5rem;
      font-size: 13px;
    }
    
    .shipping-info {
      padding: 1rem;
    }
  }

/* Gallery fixes */
.product-main-image {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(212,175,55,0.1);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-main-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
}
.product-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.thumbnail {
  width: 70px;
  height: 70px;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s;
  background: #111;
}
.thumbnail.active, .thumbnail:hover {
  border-color: #D4AF37;
}
.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-zoom-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  pointer-events: none;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(212,175,55,0.3);
  color: #D4AF37;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s;
}
.gallery-nav:hover { background: rgba(212,175,55,0.2); }
.gallery-nav--prev { left: 10px; }
.gallery-nav--next { right: 10px; }

/* === Customer Reviews === */
.customer-reviews-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.review-card {
  background: var(--color-card-bg, #1f2937);
  border: 1px solid rgba(245, 158, 11, 0.12);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.review-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.06);
}

.review-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.review-date {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}

.review-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.review-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin-bottom: 16px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  display: block;
  margin-bottom: 2px;
}

.review-badge.verified {
  font-size: 11px;
  color: #34d399;
}

.reviews-footer {
  text-align: center;
  margin-top: 40px;
}

.load-more-btn {
  padding: 12px 40px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50px;
  background: transparent;
  color: #f59e0b;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.load-more-btn:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: #f59e0b;
}

@media (max-width: 768px) {
  .customer-reviews-section {
    padding: 40px 16px 30px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .review-card {
    padding: 18px;
  }
}




  /* ===== Mobile Sticky Buy Bar ===== */
  .mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px env(safe-area-inset-bottom, 10px) 10px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
  }
  .mobile-sticky-bar.is-hidden {
    transform: translateY(100%);
  }
  .mobile-sticky-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
  }
  .mobile-sticky-bar__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
  }
  .mobile-sticky-bar__title {
    font-size: 13px;
    color: var(--color-off-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mobile-sticky-bar__price {
    font-size: 15px;
    color: var(--color-gold);
    font-weight: 700;
  }
  .mobile-sticky-bar__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }
  .mobile-sticky-bar__qty {
    display: flex;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    overflow: hidden;
  }
  .sticky-qty-btn {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .sticky-qty-btn:active {
    background: rgba(212, 175, 55, 0.1);
  }
  .sticky-qty-input {
    width: 32px;
    height: 36px;
    background: none;
    border: none;
    border-left: 1px solid rgba(212, 175, 55, 0.15);
    border-right: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--color-off-white);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    -moz-appearance: textfield;
  }
  .sticky-qty-input::-webkit-inner-spin-button,
  .sticky-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .mobile-sticky-bar__add {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--color-gold), #e8c84a);
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-sticky-bar__add:active {
    transform: scale(0.97);
    opacity: 0.9;
  }
  .mobile-sticky-bar__add svg {
    flex-shrink: 0;
  }
  @media (min-width: 769px) {
    .mobile-sticky-bar { display: none !important; }
  }
  @media (max-width: 768px) {
    body.has-sticky-bar {
      padding-bottom: 64px;
    }
  }


/* ===== Extracted from index.liquid ===== */
.hero__video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0 !important;
}
.hero__bg {
  overflow: hidden !important;
}
.hero__bg-overlay {
  z-index: 1 !important;
}
.hero__glow,
.hero__line,
.hero__watermark {
  z-index: 2 !important;
}
.hero__content {
  z-index: 3 !important;
}
.hero__scroll-indicator {
  z-index: 3 !important;
}
@media (max-width: 768px) {
  .hero__video {
    object-fit: cover !important;
  }
}
.quick-view__thumb.active {
  border-color: var(--color-gold, #D4AF37);
}
.quick-view__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; object-position: center;
}
.quick-view__thumb:hover {
  border-color: rgba(212, 175, 55, 0.5);
}
.quick-view__image img { max-height: 70vh !important; object-fit: contain !important; width: 100% !important; border-radius: 8px; }
.quick-view-modal__content { max-width: 1000px !important; padding: 30px !important; }
.quick-view__grid { gap: 0 !important; overflow: hidden !important; }
.quick-view__title { font-size: 24px !important; margin-bottom: 12px !important; }
.quick-view__price { font-size: 20px !important; margin-bottom: 16px !important; }
.quick-view__description { max-height: 180px !important; overflow-y: auto !important; padding-right: 8px !important; margin-bottom: 16px !important; }
.quick-view__description::-webkit-scrollbar { width: 4px; }
.quick-view__description::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 2px; }
.quick-view__actions { margin-bottom: 20px !important; }
.quick-view__actions a:hover {
  background: var(--color-gold) !important;
  color: #000 !important;
}
.quick-view__add-to-cart:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.quick-view__add-to-cart { padding: 14px 24px !important; font-size: 14px !important; letter-spacing: 1.5px !important; white-space: nowrap !important; min-width: 200px !important; }
@media (max-width: 768px) { .quick-view__grid { grid-template-columns: 1fr !important; } .quick-view__image img { max-height: 40vh !important; } .quick-view-modal__content { padding: 20px !important; max-width: 95vw !important; } .quick-view__image-thumbs { gap: 6px; } .quick-view__thumb { flex: 0 0 56px; height: 56px; } }

.quick-view__image {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quick-view__image-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.quick-view__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.1s ease;
  will-change: transform;
}
.quick-view__image-main.zoomed img {
  transform: scale(2);
  transition: transform 0.05s ease;
}
.quick-view__image-thumbs {
  display: flex;
  flex-direction: row;
  gap: 8px;
  overflow-x: auto;
  padding-top: 16px;
  padding-bottom: 4px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.quick-view__image-thumbs::-webkit-scrollbar {
  display: none;
}
.quick-view__thumb {
  flex: 0 0 70px;
  height: 70px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}

.quick-view__thumbs-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.quick-view__thumb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(212,175,55,0.9);
  color: #000;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
}
.quick-view__thumbs-wrapper:hover .quick-view__thumb-arrow {
  opacity: 1;
}
.quick-view__thumb-arrow--left {
  left: 4px;
}
.quick-view__thumb-arrow--right {
  right: 4px;
}
.quick-view__thumb-arrow:hover {
  background: rgba(212,175,55,1);
  transform: translateY(-50%) scale(1.1);
}


/* ===== Extracted from 404.liquid ===== */
.custom-page { background:#000;padding:4rem 2rem;min-height:60vh; }
  .custom-page .container { max-width:800px;margin:0 auto;text-align:center; }
  .custom-page h1 { font-family:'Cormorant Garamond',serif;font-size:3rem;color:#D4AF37;margin-bottom:1rem; }
  .gold-line { width:60px;height:2px;background:linear-gradient(135deg,#D4AF37,#B48F17);margin:0 auto 2rem; }
  .feature-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:3rem; }
  .feature-card { background:#1a1a1a;border:1px solid rgba(212,175,55,0.15);border-radius:8px;padding:2rem;text-align:center; }
  .feature-card h3 { color:#D4AF37;margin:1rem 0 0.5rem; }
  .feature-card p { color:rgba(255,255,255,0.5);font-size:0.85rem; }
  .contact-grid { display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin-top:2rem; }
  .contact-card { background:#1a1a1a;border:1px solid rgba(212,175,55,0.15);border-radius:8px;padding:2rem;text-align:center; }
  .contact-card h3 { color:#D4AF37;margin:0.5rem 0; }
  .contact-card p { color:rgba(255,255,255,0.6); }
  .faq-item { border-bottom:1px solid rgba(212,175,55,0.1);padding:1.5rem 0;text-align:left; }
  .faq-item h3 { color:#D4AF37;margin-bottom:0.5rem; }
  .faq-item p { color:rgba(255,255,255,0.6); }
  #page-default { display:block; }
  #page-about, #page-faq, #page-contact { display:none; }
  @media(max-width:768px){ .feature-grid,.contact-grid { grid-template-columns:1fr; } }


/* ===== Extracted from about.liquid ===== */
.about-hero {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 2px solid #D4AF37;
  }
  .page-title {
    font-size: 48px;
    color: #D4AF37;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    font-family: 'Cormorant Garamond', serif;
  }
  .page-subtitle {
    font-size: 18px;
    color: #ccc;
    letter-spacing: 1px;
  }
  .about-content { padding: 0; }
  
  .story-section, .values-section, .features-section, .contact-section {
    padding: 4rem 2rem;
    border-bottom: 1px solid rgba(212,175,55,0.15);
  }
  
  .content-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .content-block strong { color: #D4AF37; }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .value-card {
    background: #1a1a1a;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(212,175,55,0.1);
    transition: all 0.3s ease;
  }
  .value-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
  }
  .value-icon { font-size: 36px; color: #D4AF37; margin-bottom: 1.5rem; }
  .value-card h3 { font-size: 22px; color: #D4AF37; margin-bottom: 1rem; }
  .value-card p { font-size: 15px; color: #ccc; line-height: 1.6; }
  
  .capabilities-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
  }
  .cap-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #1a1a1a;
    border: 1px solid rgba(212,175,55,0.1);
  }
  .cap-label { color: #D4AF37; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
  .cap-value { color: #ccc; font-size: 14px; text-align: right; }
  
  .contact-intro {
    text-align: center;
    font-size: 18px;
    color: #ccc;
    margin-bottom: 3rem;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
  }
  .contact-item {
    padding: 1.5rem;
    background: #1a1a1a;
    border: 1px solid rgba(212,175,55,0.1);
    margin-bottom: 1rem;
  }
  .contact-label { display: block; font-size: 11px; color: #D4AF37; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px; }
  .contact-value { color: #ccc; font-size: 16px; }
  .contact-value a { color: #D4AF37; text-decoration: none; }
  .contact-value a:hover { text-decoration: underline; }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .form-input {
    width: 100%;
    padding: 12px 16px;
    background: #1a1a1a;
    border: 1px solid rgba(212,175,55,0.2);
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
  }
  .form-input:focus { border-color: #D4AF37; }
  .form-textarea { resize: vertical; min-height: 80px; }
  select.form-input option { background: #1a1a1a; color: #fff; }
  
  @media (max-width: 768px) {
    .page-title { font-size: 32px; }
    .page-subtitle { font-size: 14px; }
    .content-block p { font-size: 16px; }
    .values-grid, .contact-grid { grid-template-columns: 1fr; }
    .cap-item { flex-direction: column; align-items: flex-start; gap: 4px; }
    .cap-value { text-align: left; }
  }


/* ===== Extracted from cart.liquid ===== */
/* ===== Cart页面Related Products ===== */
  .cart-recommendations .product-card:hover .product-card__image img {
    transform: scale(1.05);
  }
  
  .cart-recommendations .product-card__link {
    text-decoration: none;
    color: inherit;
  }
  
  /* ===== Cart页面移动端优�?===== */
  @media (max-width: 768px) {
    .cart-page {
      padding: 2rem 1rem !important;
    }
    
    .cart-items {
      gap: 1rem !important;
    }
    
    .cart-item {
      grid-template-columns: 100px 1fr !important;
      padding: 1rem !important;
    }
    
    .cart-item__image {
      width: 100px !important;
      height: 100px !important;
    }
    
    .cart-item__actions {
      grid-column: 1 / -1 !important;
      flex-direction: row !important;
      justify-content: space-between !important;
      align-items: center !important;
      margin-top: 1rem !important;
    }
    
    .cart-item__quantity {
      display: flex !important;
      align-items: center !important;
    }
    
    .cart-item__quantity .qty-btn {
      min-width: 40px !important;
      min-height: 40px !important;
      width: 40px !important;
      height: 40px !important;
    }
    
    .cart-item__quantity input {
      height: 40px !important;
      width: 50px !important;
    }
    
    .cart-item__remove {
      font-size: 13px !important;
      padding: 8px 12px !important;
      min-height: 40px !important;
      min-width: 44px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }
    
    .cart-footer {
      grid-template-columns: 1fr !important;
      gap: 1.5rem !important;
      padding: 1.5rem !important;
    }
    
    .cart-footer__actions {
      justify-content: center !important;
    }
    
    .cart-footer__summary {
      align-items: center !important;
    }
    
    .cart-footer .btn-primary {
      min-width: 100% !important;
      min-height: 48px !important;
    }
    
    .cart-subtotal {
      font-size: 1.1rem !important;
      justify-content: center !important;
      gap: 1rem !important;
    }
    
    .section-title {
      font-size: 1.75rem !important;
    }
  }
  
  @media (max-width: 480px) {
    .cart-page {
      padding: 1.5rem 0.75rem !important;
    }
    
    .cart-item {
      grid-template-columns: 80px 1fr !important;
      padding: 0.75rem !important;
    }
    
    .cart-item__image {
      width: 80px !important;
      height: 80px !important;
    }
    
    .cart-item__title {
      font-size: 0.95rem !important;
    }
    
    .cart-item__variant {
      font-size: 0.8rem !important;
    }
    
    .cart-item__price {
      font-size: 0.95rem !important;
    }
    
    .cart-item__quantity .qty-btn {
      min-width: 36px !important;
      min-height: 36px !important;
      width: 36px !important;
      height: 36px !important;
      font-size: 1rem !important;
    }
    
    .cart-item__quantity input {
      height: 36px !important;
      width: 45px !important;
      font-size: 14px !important;
    }
    
    .cart-item__remove {
      font-size: 12px !important;
      padding: 6px 10px !important;
    }
    
    .cart-footer {
      padding: 1rem !important;
    }
    
    .cart-subtotal {
      font-size: 1rem !important;
    }
    
    .cart-footer .btn-primary {
      padding: 14px 20px !important;
      font-size: 14px !important;
    }
    
    .cart-empty__icon svg {
      width: 60px !important;
      height: 60px !important;
    }
    
    .cart-empty__title {
      font-size: 1.25rem !important;
    }
    
    .cart-empty__text {
      font-size: 14px !important;
    }
    
    .cart-empty {
      padding: 3rem 1rem !important;
    }
    
    .cart-recommendations .product-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 1rem !important;
    }
  }
  
  @media (max-width: 480px) {
    .cart-recommendations {
      margin-top: 3rem !important;
    }
    
    .cart-recommendations .section-title {
      font-size: 1.25rem !important;
    }
    
    .cart-recommendations .product-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 0.75rem !important;
    }
    
    .cart-recommendations .product-card__price span {
      font-size: 0.85rem !important;
    }
  }


/* ===== Extracted from contact.liquid ===== */
.contact-hero {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 2px solid #D4AF37;
  }
  .page-title { font-size: 48px; color: #D4AF37; margin-bottom: 1rem; letter-spacing: 4px; font-family: 'Cormorant Garamond', serif; }
  .page-subtitle { font-size: 18px; color: #ccc; letter-spacing: 1px; }
  .contact-content { padding: 4rem 2rem; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1200px; margin: 0 auto; }
  .contact-item { display: flex; gap: 1.5rem; padding: 2rem; background: #1a1a1a; border: 1px solid rgba(212,175,55,0.1); margin-bottom: 1.5rem; transition: all 0.3s ease; }
  .contact-item:hover { border-color: #D4AF37; }
  .contact-icon { font-size: 28px; color: #D4AF37; }
  .contact-details h3 { font-size: 18px; color: #D4AF37; margin-bottom: 0.5rem; }
  .contact-details p { font-size: 16px; color: #ccc; margin-bottom: 0.3rem; }
  .contact-note { font-size: 13px; color: #999; }
  .contact-form-wrapper { background: #1a1a1a; padding: 2.5rem; border: 1px solid rgba(212,175,55,0.1); }
  .form-group { margin-bottom: 1.5rem; }
  .form-group label { display: block; font-size: 13px; color: #D4AF37; margin-bottom: 0.5rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
  .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px; font-size: 14px; font-family: 'Montserrat', sans-serif; background: #000; border: 1px solid rgba(212,175,55,0.2); color: #fff; outline: none; box-sizing: border-box; transition: border-color 0.2s; }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: #D4AF37; }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-group select option { background: #1a1a1a; color: #fff; }
  .form-success { margin-top: 1.5rem; padding: 1rem; background: rgba(212,175,55,0.08); border: 1px solid #D4AF37; color: #D4AF37; text-align: center; }
  .faq-preview { background: #0a0a0a; padding: 4rem 2rem; border-top: 1px solid rgba(212,175,55,0.15); border-bottom: 1px solid rgba(212,175,55,0.15); }
  .faq-intro { text-align: center; font-size: 16px; color: #ccc; margin-bottom: 3rem; }
  .faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto 3rem; }
  .faq-item { background: #1a1a1a; padding: 2rem; border-left: 3px solid #D4AF37; }
  .faq-item h3 { font-size: 18px; color: #D4AF37; margin-bottom: 1rem; }
  .faq-item p { font-size: 15px; color: #ccc; line-height: 1.6; }
  @media (max-width: 768px) { .page-title { font-size: 32px; } .contact-grid { grid-template-columns: 1fr; gap: 2rem; } .faq-grid { grid-template-columns: 1fr; } }


/* ===== Extracted from faq.liquid ===== */
/* FAQ Hero */
  .faq-hero {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 2px solid var(--color-gold);
  }
  
  /* FAQ Content */
  .faq-content {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .faq-section {
    margin-bottom: 4rem;
  }
  
  .faq-category {
    font-size: 28px;
    color: var(--color-gold);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-gray);
  }
  
  /* FAQ Item */
  .faq-item {
    background: var(--color-dark-gray);
    border: 1px solid var(--color-gray);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
  }
  
  .faq-item:hover {
    border-color: var(--color-gold);
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
  }
  
  .faq-question h3 {
    font-size: 18px;
    color: var(--color-text);
    margin: 0;
    font-family: var(--font-body);
    font-weight: 500;
  }
  
  .faq-toggle {
    background: none;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
  }
  
  .faq-toggle:hover {
    background: var(--color-gold);
    color: var(--color-black);
  }
  
  .faq-item.active .faq-toggle {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px;
  }
  
  .faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text);
    line-height: 1.8;
    font-size: 16px;
    opacity: 0.9;
  }
  
  .faq-answer ul,
  .faq-answer ol {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text);
    line-height: 1.8;
    font-size: 16px;
    opacity: 0.9;
  }
  
  .faq-answer li {
    margin-bottom: 0.5rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .faq-question {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    
    .faq-toggle {
      align-self: flex-start;
    }
  }


/* ===== Extracted from list-collections.liquid ===== */
.list-collections-page {
    min-height: 60vh;
    padding: 4rem 0;
    background: var(--color-black);
  }
  
  .collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .collection-card {
    display: block;
    background: var(--color-black-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
  }
  
  .collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
  }
  
  .collection-card:hover::before {
    opacity: 1;
  }
  
  .collection-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(212, 175, 55, 0.15);
  }
  
  .collection-card__image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--color-graphite);
  }
  
  .collection-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .collection-card:hover .collection-card__image img {
    transform: scale(1.08);
  }
  
  .collection-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-graphite);
  }
  
  .collection-card__placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--color-gold);
    opacity: 0.3;
  }
  
  .collection-card__content {
    padding: 1.75rem;
    position: relative;
    z-index: 2;
  }
  
  .collection-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-gold);
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  
  .collection-card__description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0 0 1rem 0;
  }
  
  .collection-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  }
  
  .collection-card__count {
    font-size: 0.85rem;
    color: var(--color-off-white);
    opacity: 0.7;
    font-family: var(--font-body);
  }
  
  .collection-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .collection-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
  }
  
  .collection-card:hover .collection-link svg {
    transform: translateX(4px);
  }
  
  .collection-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
  }
  
  .collection-card:hover .collection-link::after {
    width: 100%;
  }
  
  /* 响应式设�?*/
  @media (max-width: 768px) {
    .collections-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .list-collections-page {
      padding: 3rem 0;
    }
    
    .collection-card__image {
      height: 200px;
    }
    
    .collection-card__content {
      padding: 1.5rem;
    }
    
    .collection-card__title {
      font-size: 1.25rem;
    }
  }
  
  @media (max-width: 480px) {
    .section-header {
      padding: 0 1rem;
    }
    
    .collection-card__description {
      font-size: 0.9rem;
    }
  }
  
  /* 动画效果 */
  .collection-card.animate-on-scroll-init {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .collection-card.animate-on-scroll-init.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .collection-card.animate-delay-1 {
    transition-delay: 0.1s;
  }
  
  .collection-card.animate-delay-2 {
    transition-delay: 0.2s;
  }
  
  .collection-card.animate-delay-3 {
    transition-delay: 0.3s;
  }


/* ===== Extracted from page.about-1.liquid ===== */
.about-hero {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 2px solid #D4AF37;
  }
  .page-title {
    font-size: 48px;
    color: #D4AF37;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    font-family: 'Cormorant Garamond', serif;
  }
  .page-subtitle {
    font-size: 18px;
    color: #ccc;
    letter-spacing: 1px;
  }
  .about-content { padding: 0; }
  
  .story-section, .values-section, .features-section, .contact-section {
    padding: 4rem 2rem;
    border-bottom: 1px solid rgba(212,175,55,0.15);
  }
  
  .content-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .content-block strong { color: #D4AF37; }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .value-card {
    background: #1a1a1a;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(212,175,55,0.1);
    transition: all 0.3s ease;
  }
  .value-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
  }
  .value-icon { font-size: 36px; color: #D4AF37; margin-bottom: 1.5rem; }
  .value-card h3 { font-size: 22px; color: #D4AF37; margin-bottom: 1rem; }
  .value-card p { font-size: 15px; color: #ccc; line-height: 1.6; }
  
  .capabilities-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
  }
  .cap-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #1a1a1a;
    border: 1px solid rgba(212,175,55,0.1);
  }
  .cap-label { color: #D4AF37; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
  .cap-value { color: #ccc; font-size: 14px; text-align: right; }
  
  .contact-intro {
    text-align: center;
    font-size: 18px;
    color: #ccc;
    margin-bottom: 3rem;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
  }
  .contact-item {
    padding: 1.5rem;
    background: #1a1a1a;
    border: 1px solid rgba(212,175,55,0.1);
    margin-bottom: 1rem;
  }
  .contact-label { display: block; font-size: 11px; color: #D4AF37; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px; }
  .contact-value { color: #ccc; font-size: 16px; }
  .contact-value a { color: #D4AF37; text-decoration: none; }
  .contact-value a:hover { text-decoration: underline; }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .form-input {
    width: 100%;
    padding: 12px 16px;
    background: #1a1a1a;
    border: 1px solid rgba(212,175,55,0.2);
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
  }
  .form-input:focus { border-color: #D4AF37; }
  .form-textarea { resize: vertical; min-height: 80px; }
  select.form-input option { background: #1a1a1a; color: #fff; }
  
  @media (max-width: 768px) {
    .page-title { font-size: 32px; }
    .page-subtitle { font-size: 14px; }
    .content-block p { font-size: 16px; }
    .values-grid, .contact-grid { grid-template-columns: 1fr; }
    .cap-item { flex-direction: column; align-items: flex-start; gap: 4px; }
    .cap-value { text-align: left; }
  }


/* ===== Extracted from page.brand-story.liquid ===== */
.brand-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary-dark, #1d4ed8), var(--color-primary, #3b82f6));
    color: white;
  }

  .brand-hero__content {
    max-width: 700px;
    padding: var(--space-16) 0;
  }

  .brand-hero__tagline { opacity: 0.8; margin-bottom: var(--space-3); }
  .brand-hero__title { font-size: var(--text-5xl); font-weight: 800; margin-bottom: var(--space-4); }
  .brand-hero__description { opacity: 0.9; }

  .brand-value-card__icon { font-size: 2.5rem; }

  .team-member__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    background: var(--color-background-secondary);
  }

  @media (max-width: 767px) {
    .brand-hero__title { font-size: var(--text-3xl); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
  }


/* ===== Extracted from page.contact.liquid ===== */
.contact-hero {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 2px solid #D4AF37;
  }
  .page-title { font-size: 48px; color: #D4AF37; margin-bottom: 1rem; letter-spacing: 4px; font-family: 'Cormorant Garamond', serif; }
  .page-subtitle { font-size: 18px; color: #ccc; letter-spacing: 1px; }
  .contact-content { padding: 4rem 2rem; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1200px; margin: 0 auto; }
  .contact-item { display: flex; gap: 1.5rem; padding: 2rem; background: #1a1a1a; border: 1px solid rgba(212,175,55,0.1); margin-bottom: 1.5rem; transition: all 0.3s ease; }
  .contact-item:hover { border-color: #D4AF37; }
  .contact-icon { font-size: 28px; color: #D4AF37; }
  .contact-details h3 { font-size: 18px; color: #D4AF37; margin-bottom: 0.5rem; }
  .contact-details p { font-size: 16px; color: #ccc; margin-bottom: 0.3rem; }
  .contact-note { font-size: 13px; color: #999; }
  .contact-form-wrapper { background: #1a1a1a; padding: 2.5rem; border: 1px solid rgba(212,175,55,0.1); }
  .form-group { margin-bottom: 1.5rem; }
  .form-group label { display: block; font-size: 13px; color: #D4AF37; margin-bottom: 0.5rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
  .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px; font-size: 14px; font-family: 'Montserrat', sans-serif; background: #000; border: 1px solid rgba(212,175,55,0.2); color: #fff; outline: none; box-sizing: border-box; transition: border-color 0.2s; }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: #D4AF37; }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-group select option { background: #1a1a1a; color: #fff; }
  .form-success { margin-top: 1.5rem; padding: 1rem; background: rgba(212,175,55,0.08); border: 1px solid #D4AF37; color: #D4AF37; text-align: center; }
  .faq-preview { background: #0a0a0a; padding: 4rem 2rem; border-top: 1px solid rgba(212,175,55,0.15); border-bottom: 1px solid rgba(212,175,55,0.15); }
  .faq-intro { text-align: center; font-size: 16px; color: #ccc; margin-bottom: 3rem; }
  .faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto 3rem; }
  .faq-item { background: #1a1a1a; padding: 2rem; border-left: 3px solid #D4AF37; }
  .faq-item h3 { font-size: 18px; color: #D4AF37; margin-bottom: 1rem; }
  .faq-item p { font-size: 15px; color: #ccc; line-height: 1.6; }
  @media (max-width: 768px) { .page-title { font-size: 32px; } .contact-grid { grid-template-columns: 1fr; gap: 2rem; } .faq-grid { grid-template-columns: 1fr; } }


/* ===== Extracted from page.liquid ===== */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    padding: 8rem 2rem;
    text-align: center;
    border-bottom: 2px solid #D4AF37;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-title { font-size: 48px; color: #D4AF37; margin-bottom: 1rem; letter-spacing: 3px; font-family: 'Cormorant Garamond', serif; }
  .page-subtitle { font-size: 18px; color: #ccc; letter-spacing: 1px; }
  .about-content { padding: 0; }
  .story-section, .values-section, .features-section, .contact-section { padding: 4rem 2rem; border-bottom: 1px solid rgba(212,175,55,0.15); }
  .content-block p { font-size: 18px; line-height: 1.8; color: #ccc; margin-bottom: 1.5rem; max-width: 900px; margin-left: auto; margin-right: auto; text-align: center; }
  .content-block strong { color: #D4AF37; }
  .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
  .value-card { background: #1a1a1a; padding: 2.5rem 2rem; text-align: center; border: 1px solid rgba(212,175,55,0.1); transition: all 0.3s ease; }
  .value-card:hover { border-color: #D4AF37; transform: translateY(-5px); }
  .value-icon { font-size: 36px; color: #D4AF37; margin-bottom: 1.5rem; }
  .value-card h3 { font-size: 22px; color: #D4AF37; margin-bottom: 1rem; }
  .value-card p { font-size: 15px; color: #ccc; line-height: 1.6; }
  .capabilities-grid { display: grid; gap: 1rem; max-width: 800px; margin: 0 auto; }
  .cap-item { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; background: #1a1a1a; border: 1px solid rgba(212,175,55,0.1); }
  .cap-label { color: #D4AF37; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
  .cap-value { color: #ccc; font-size: 14px; text-align: right; }
  .contact-intro { text-align: center; font-size: 18px; color: #ccc; margin-bottom: 3rem; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 900px; margin: 0 auto; }
  .contact-item { padding: 1.5rem; background: #1a1a1a; border: 1px solid rgba(212,175,55,0.1); margin-bottom: 1rem; }
  .contact-label { display: block; font-size: 11px; color: #D4AF37; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px; }
  .contact-value { color: #ccc; font-size: 16px; }
  .contact-value a { color: #D4AF37; text-decoration: none; }
  .contact-value a:hover { text-decoration: underline; }
  .contact-form { display: flex; flex-direction: column; gap: 1rem; }
  .form-input { width: 100%; padding: 12px 16px; background: #1a1a1a; border: 1px solid rgba(212,175,55,0.2); color: #fff; font-size: 14px; font-family: 'Montserrat', sans-serif; outline: none; box-sizing: border-box; transition: border-color 0.2s; }
  .form-input:focus { border-color: #D4AF37; }
  .form-textarea { resize: vertical; min-height: 80px; }
  select.form-input option { background: #1a1a1a; color: #fff; }
  @media (max-width: 768px) { .page-title { font-size: 32px; } .page-subtitle { font-size: 14px; } .content-block p { font-size: 16px; } .values-grid, .contact-grid { grid-template-columns: 1fr; } .cap-item { flex-direction: column; align-items: flex-start; gap: 4px; } .cap-value { text-align: left; } }
  .gallery-section { padding: 4rem 2rem; border-bottom: 1px solid rgba(212,175,55,0.15); text-align: center; }
  .gallery-intro { color: #ccc; font-size: 16px; margin-bottom: 2rem; }
  .product-showcase { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
  .gallery-item { overflow: hidden; border: 1px solid rgba(212,175,55,0.1); background: #1a1a1a; aspect-ratio: 1/1; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
  .gallery-item:hover img { transform: scale(1.05); }
  @media (max-width: 768px) { .product-showcase { grid-template-columns: repeat(2, 1fr); } }  .video-section { padding: 4rem 2rem; border-bottom: 1px solid rgba(212,175,55,0.15); text-align: center; }
  .video-wrapper { max-width: 800px; margin: 0 auto; }
  .video-wrapper video { width: 100%; border-radius: 4px; }


/* ===== Extracted from page.shipping-info.liquid ===== */
.shipping-options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
  .shipping-option-card { position: relative; }
  .shipping-option-card--popular { border-color: var(--color-primary); border-width: 2px; }
  .shipping-option-card__badge {
    position: absolute; top: -12px; right: var(--space-4);
    padding: 2px 12px; background: var(--color-primary); color: white;
    font-size: var(--text-xs); font-weight: 600; border-radius: var(--radius-full);
  }
  .shipping-option-card__header { display: flex; justify-content: space-between; align-items: center; }
  .shipping-option-card__features { list-style: none; padding: 0; font-size: var(--text-sm); }
  .shipping-option-card__features li { padding: 2px 0; color: var(--color-text-secondary); }
  .shipping-option-card__note {
    padding: var(--space-2) var(--space-3); background: var(--color-success-bg);
    border-radius: var(--radius-sm); font-size: var(--text-xs); color: var(--color-success-dark);
  }

  .processing-timeline { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3); }
  .processing-step { display: flex; align-items: center; gap: var(--space-3); }
  .processing-step__icon { font-size: 1.5rem; }
  .processing-step__arrow { color: var(--color-text-tertiary); font-size: var(--text-lg); }

  @media (max-width: 767px) {
    .shipping-options-grid { grid-template-columns: 1fr; }
    .processing-timeline { flex-direction: column; align-items: flex-start; }
    .processing-step__arrow { transform: rotate(90deg); margin-left: var(--space-4); }
  }


/* ===== Extracted from page.size-guide.liquid ===== */
.measure-step__number {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--color-primary); color: var(--color-primary-contrast);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; margin: 0 auto var(--space-3);
  }

  .unit-toggle {
    display: inline-flex; border: 1px solid var(--color-border);
    border-radius: var(--radius-md); overflow: hidden;
  }

  .unit-toggle__btn {
    padding: var(--space-2) var(--space-4);
    border: none; background: none;
    font-weight: 600; font-size: var(--text-sm);
    cursor: pointer; transition: all 0.2s ease;
  }

  .unit-toggle__btn.is-active {
    background: var(--color-primary);
    color: var(--color-primary-contrast);
  }

  .size-table-wrapper { overflow-x: auto; }

  .size-table {
    width: 100%; border-collapse: collapse;
    font-size: var(--text-sm);
  }

  .size-table th, .size-table td {
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--color-border);
    text-align: center;
  }

  .size-table th {
    background: var(--color-background-secondary);
    font-weight: 600;
  }

  .size-table tbody tr:hover {
    background: var(--color-background-hover);
  }

  .tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  @media (max-width: 767px) {
    .tips-grid, .grid-3 { grid-template-columns: 1fr; }
  }


/* ===== Extracted from page.wholesale.liquid ===== */
.benefit-card__icon { font-size: 2rem; }

  .tier-card { position: relative; }
  .tier-card--featured {
    background: var(--color-primary); color: white;
    border: none; transform: scale(1.05);
  }
  .tier-card__badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    padding: 2px 16px; background: var(--color-accent); color: #000;
    font-size: var(--text-xs); font-weight: 700; border-radius: var(--radius-full); white-space: nowrap;
  }
  .tier-card__features {
    list-style: none; padding: 0; text-align: left;
    font-size: var(--text-sm);
  }
  .tier-card__features li {
    padding: var(--space-1) 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .tier-card--featured .tier-card__features li {
    border-color: rgba(255,255,255,0.15);
  }

  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .form-group--full { grid-column: span 2; }
  .form-group label { display: block; font-weight: 500; font-size: var(--text-sm); margin-bottom: var(--space-1); }
  .form-input {
    width: 100%; padding: var(--space-3); border: 1px solid var(--color-input-border);
    border-radius: var(--radius-md); font-size: var(--text-base);
    background: var(--color-input-bg); color: var(--color-input-text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .form-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.15);
    outline: none;
  }

  @media (max-width: 767px) {
    .form-grid { grid-template-columns: 1fr; }
    .form-group--full { grid-column: span 1; }
    .tier-card--featured { transform: scale(1); }
  }


/* ===== Extracted from page.wishlist.liquid ===== */
.wishlist-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-16) var(--space-4);
  }

  .wishlist-empty h3 {
    margin-top: var(--space-4);
    font-size: var(--text-xl);
  }

  .wishlist-empty p {
    color: var(--color-text-secondary);
    margin: var(--space-2) 0 var(--space-6);
  }

  .wishlist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-6);
    grid-column: 1 / -1;
  }

  .wishlist-item {
    position: relative;
  }

  .wishlist-item__remove {
    position: absolute;
    top: var(--space-2);
    right: var(--space-2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
  }

  .wishlist-item__remove:hover {
    background: var(--color-danger);
    color: white;
    border-color: var(--color-danger);
  }

  .wishlist-item__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-top: var(--space-3);
  }

  .wishlist-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }


/* ===== Extracted from policy.liquid ===== */
/* Policy Hero */
  .policy-hero {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 2px solid var(--color-gold);
  }
  
  .page-title {
    font-size: 42px;
    color: var(--color-gold);
    letter-spacing: 2px;
  }
  
  /* Policy Content */
  .policy-content {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .policy-text {
    background: var(--color-dark-gray);
    padding: 3rem;
    border: 1px solid var(--color-gray);
  }
  
  .policy-text h2 {
    font-size: 24px;
    color: var(--color-gold);
    margin: 2rem 0 1rem;
  }
  
  .policy-text h3 {
    font-size: 20px;
    color: var(--color-gold);
    margin: 1.5rem 0 1rem;
  }
  
  .policy-text p {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.9;
  }
  
  .policy-text ul,
  .policy-text ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--color-text);
    line-height: 1.8;
  }
  
  .policy-text li {
    margin-bottom: 0.5rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .policy-text {
      padding: 2rem;
    }
    
    .page-title {
      font-size: 32px;
    }
  }


/* ===== Extracted from sections ===== */

/* ===== collection-banner.liquid ===== */
.collection-banner {
    position: relative;
    height: {{ section.settings.height | default: 200 }}px;
    max-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: {{ section.settings.text_color }};
  }

  .collection-banner__media {
    position: absolute;
    inset: 0;
  }

  .collection-banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .collection-banner__overlay {
    position: absolute;
    inset: 0;
  }

  .collection-banner__content {
    position: relative;
    z-index: 1;
    padding: 2rem 1rem;
    max-width: 1200px;
  }

  .collection-banner__title {
    color: inherit;
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .collection-banner__desc {
    color: inherit;
    opacity: 0.9;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
  }

  .collection-banner .breadcrumb,
  .collection-banner .breadcrumb a,
  .collection-banner .breadcrumb__current {
    color: inherit;
    opacity: 0.8;
    font-size: 0.9rem;
  }

  @media (max-width: 767px) {
    .collection-banner {
      height: 120px !important;
      max-height: 120px !important;
    }
    
    .collection-banner__title {
      font-size: 1.3rem;
    }
    
    .collection-banner__desc {
      font-size: 0.85rem;
      display: none;
    }
    
    .collection-banner__image {
      object-position: center;
    }
  }
  
  @media (max-width: 480px) {
    .collection-banner {
      height: 100px !important;
      max-height: 100px !important;
    }
    
    .collection-banner__title {
      font-size: 1.1rem;
    }
  }

/* ===== collection-tabs.liquid ===== */
.collection-tabs__nav {
    margin-bottom: var(--space-8);
  }

  .collection-tabs__nav .tabs {
    border-bottom: none;
    gap: var(--space-2);
    flex-wrap: wrap;
  }

  .collection-tabs__nav .tab-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    background: var(--color-background);
    font-weight: 600;
    transition: all 0.2s ease;
  }

  .collection-tabs__nav .tab-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
  }

  .collection-tabs__nav .tab-btn.is-active {
    background: var(--color-primary);
    color: var(--color-primary-contrast);
    border-color: var(--color-primary);
  }

  .tab-btn__icon {
    font-size: 1.1em;
  }

/* ===== customer-reviews.liquid ===== */
.reviews-summary { margin-top: var(--space-4); }
  .reviews-summary__stars { display: flex; justify-content: center; gap: 2px; margin-bottom: var(--space-2); }
  .reviews-summary__text { color: var(--color-text-secondary); }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-8);
  }

  .review-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .review-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-3); }
  .review-card__stars { display: flex; gap: 2px; }
  .review-card__verified { display: flex; align-items: center; gap: 4px; font-size: var(--text-xs); color: var(--color-success); font-weight: 500; }
  .review-card__verified-inline { color: var(--color-success); font-size: var(--text-xs); font-weight: 500; }
  .review-card__title { font-size: var(--text-base); font-weight: 600; margin-bottom: var(--space-2); }
  .review-card__text { font-size: var(--text-sm); line-height: var(--leading-relaxed); color: var(--color-text-secondary); flex: 1; }
  .review-card__image img { max-width: 100px; height: auto; }

  .review-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border-light);
  }

  .review-card__avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }

  .review-card__avatar-placeholder {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-primary-contrast);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: var(--text-sm);
    flex-shrink: 0;
  }

  .review-card__date, .review-card__location { display: block; font-size: var(--text-xs); color: var(--color-text-tertiary); }
  .review-card__product { margin-top: var(--space-3); font-size: var(--text-xs); color: var(--color-text-tertiary); }
  .review-card__product a { color: var(--color-primary); text-decoration: none; }
  .review-card__helpful { margin-top: var(--space-3); font-size: var(--text-xs); color: var(--color-text-tertiary); }

  /* Carousel */
  .reviews-carousel { position: relative; overflow: hidden; margin-top: var(--space-8); }
  .reviews-carousel__track { display: flex; gap: var(--space-6); transition: transform 0.4s ease; }
  .reviews-carousel__slide { min-width: calc(33.333% - var(--space-4)); flex-shrink: 0; }
  .reviews-carousel__nav { display: flex; justify-content: center; gap: var(--space-4); margin-top: var(--space-6); }
  .reviews-carousel__prev, .reviews-carousel__next {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--color-background); border: 1px solid var(--color-border);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s ease;
  }
  .reviews-carousel__prev:hover, .reviews-carousel__next:hover {
    background: var(--color-primary); color: var(--color-primary-contrast); border-color: var(--color-primary);
  }

  @media (max-width: 767px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-carousel__slide { min-width: calc(100% - var(--space-4)); }
  }
  @media (min-width: 768px) and (max-width: 991px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-carousel__slide { min-width: calc(50% - var(--space-3)); }
  }

/* ===== faq-accordion.liquid ===== */
.faq-category {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-primary);
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-2);
    border-bottom: 2px solid var(--color-primary);
  }

  .faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-3);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .faq-item:hover {
    border-color: var(--color-border-dark);
  }

  .faq-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-5);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text);
    gap: var(--space-4);
    transition: background-color 0.2s ease;
  }

  .faq-item__trigger:hover {
    background-color: var(--color-background-secondary);
  }

  .faq-item__trigger[aria-expanded="true"] {
    background-color: var(--color-background-secondary);
  }

  .faq-item__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .faq-item__trigger[aria-expanded="true"] .faq-item__icon {
    transform: rotate(180deg);
  }

  .faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .faq-item__answer.is-expanded {
    max-height: 1000px;
  }

  .faq-item__answer-inner {
    padding: 0 var(--space-5) var(--space-5);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    color: var(--color-text-secondary);
  }

  .faq-item__answer-inner a {
    color: var(--color-primary);
    text-decoration: underline;
  }

  .faq-item__answer-inner ul,
  .faq-item__answer-inner ol {
    padding-left: var(--space-5);
    margin-top: var(--space-2);
  }

  .faq-item__answer-inner li {
    margin-bottom: var(--space-1);
  }

  .faq-contact {
    padding: var(--space-8);
    background: var(--color-background-secondary);
    border-radius: var(--radius-lg);
  }

  /* Schema.org structured data for FAQ */
  .faq-list[itemscope] { display: block; }

/* ===== image-with-text.liquid ===== */
.image-with-text__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
  }

  .image-with-text--reversed .image-with-text__media {
    order: 2;
  }

  .image-with-text__image {
    width: 100%;
    height: auto;
    box-shadow: var(--shadow-lg);
  }

  .image-with-text__placeholder {
    aspect-ratio: 4/3;
    background: var(--color-background-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .image-with-text__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .feature-item__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .feature-item__title {
    display: block;
    font-size: var(--text-base);
    margin-bottom: 2px;
  }

  @media (max-width: 767px) {
    .image-with-text__grid {
      grid-template-columns: 1fr;
      gap: var(--space-6);
    }

    .image-with-text--reversed .image-with-text__media {
      order: 0;
    }
  }

/* ===== instagram-wall.liquid ===== */
.instagram-wall__handle {
    display: inline-block;
    margin-top: var(--space-2);
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: var(--text-lg);
  }

  .instagram-wall__handle:hover { text-decoration: underline; }

  .instagram-wall__grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 4), 1fr);
    gap: var(--space-3);
    margin-top: var(--space-8);
  }

  .instagram-wall__item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
  }

  .instagram-wall__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .instagram-wall__item:hover .instagram-wall__image {
    transform: scale(1.05);
  }

  .instagram-wall__placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-background-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .instagram-wall__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
  }

  .instagram-wall__item:hover .instagram-wall__overlay {
    background: rgba(0, 0, 0, 0.4);
  }

  .instagram-wall__overlay-content {
    display: flex;
    gap: var(--space-4);
    color: white;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .instagram-wall__item:hover .instagram-wall__overlay-content {
    opacity: 1;
    transform: translateY(0);
  }

  .instagram-wall__stat {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-weight: 600;
    font-size: var(--text-sm);
  }

  .instagram-wall__link {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .instagram-wall__caption {
    display: none;
  }

  @media (max-width: 767px) {
    .instagram-wall__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-2);
    }
  }

  @media (min-width: 768px) and (max-width: 991px) {
    .instagram-wall__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

/* ===== logo-cloud.liquid ===== */
.logo-cloud__grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 5), 1fr);
    gap: var(--space-6);
    align-items: center;
    justify-items: center;
  }

  .logo-cloud__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2);
  }

  .logo-cloud__item img {
    filter: grayscale({{ section.settings.grayscale | default: 1 }});
    transition: filter 0.3s ease, opacity 0.3s ease;
  }

  .logo-cloud__item:hover img {
    filter: grayscale(0);
    opacity: 1 !important;
  }

  .logo-cloud__placeholder {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-tertiary);
    padding: var(--space-4);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-md);
  }

  .logo-cloud__marquee .logo-cloud__item {
    flex-shrink: 0;
    padding: 0 var(--space-8);
  }

  @media (max-width: 767px) {
    .logo-cloud__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-4);
    }
  }

/* ===== marquee-bar.liquid ===== */
.marquee { overflow: hidden; }
  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0 var(--space-8);
    font-size: {{ section.settings.font_size }}px;
    font-weight: 500;
  }
  .marquee-item a { text-decoration: underline; }
  .marquee-item__icon { font-size: 1.1em; }

/* ===== newsletter-popup.liquid ===== */
.newsletter-popup .modal-content {
    max-width: 560px;
    width: 95%;
    border-radius: var(--radius-xl);
    overflow: hidden;
  }

  .newsletter-popup__close {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
  }

  .newsletter-popup__close:hover {
    background: var(--color-danger);
    color: white;
  }

  .newsletter-popup__body {
    display: flex;
    flex-direction: column;
  }

  .newsletter-popup__image {
    max-height: 200px;
    overflow: hidden;
  }

  .newsletter-popup__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .newsletter-popup__form-section {
    padding: var(--space-8) var(--space-6);
    text-align: center;
  }

  .newsletter-popup__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-3);
  }

  .newsletter-popup__heading {
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-2);
  }

  .newsletter-popup__desc {
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
    line-height: var(--leading-relaxed);
  }

  .newsletter-popup__offer {
    display: inline-flex;
    flex-direction: column;
    background: var(--color-primary);
    color: white;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-6);
  }

  .newsletter-popup__discount {
    font-size: var(--text-xl);
    font-weight: 800;
  }

  .newsletter-popup__code {
    font-size: var(--text-sm);
    opacity: 0.9;
  }

  .newsletter-popup__input-group {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
  }

  .newsletter-popup__input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: border-color 0.2s ease;
  }

  .newsletter-popup__input:focus {
    border-color: var(--color-primary);
    outline: none;
  }

  .newsletter-popup__submit {
    white-space: nowrap;
    padding: var(--space-3) var(--space-6);
  }

  .newsletter-popup__privacy {
    font-size: 11px;
    color: var(--color-text-tertiary);
    line-height: 1.4;
  }

  .newsletter-popup__privacy a {
    color: var(--color-primary);
    text-decoration: underline;
  }

  .newsletter-popup__success {
    padding: var(--space-4);
  }

  .newsletter-popup__success h3 {
    margin-top: var(--space-3);
    font-size: var(--text-xl);
  }

  .newsletter-popup__success p {
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
  }

  .newsletter-popup__no-thanks {
    background: none;
    border: none;
    color: var(--color-text-tertiary);
    font-size: var(--text-xs);
    cursor: pointer;
    margin-top: var(--space-4);
    text-decoration: underline;
    padding: 0;
  }

  @media (max-width: 480px) {
    .newsletter-popup__input-group {
      flex-direction: column;
    }
  }

/* ===== product-compare.liquid ===== */
.compare-section__intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-8);
    color: var(--color-text-secondary);
  }

  .compare-empty-state {
    text-align: center;
    padding: var(--space-16) var(--space-4);
  }

  .compare-empty-state h3 {
    margin-top: var(--space-4);
    font-size: var(--text-xl);
  }

  .compare-empty-state p {
    color: var(--color-text-secondary);
    margin: var(--space-2) 0 var(--space-6);
  }

  .product-card__compare-btn {
    position: absolute;
    top: var(--space-2);
    right: var(--space-2);
    display: flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-2);
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease, background-color 0.2s ease;
    backdrop-filter: blur(4px);
  }

  .product-card:hover .product-card__compare-btn {
    opacity: 1;
  }

  .product-card__compare-btn.is-active {
    background: var(--color-primary);
    color: var(--color-primary-contrast);
    border-color: var(--color-primary);
    opacity: 1;
  }

  /* Compare Drawer */
  .compare-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-background);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 998;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: var(--space-3) var(--space-4);
  }

  .compare-drawer.is-visible {
    transform: translateY(0);
  }

  .compare-drawer__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    max-width: var(--container-max-xl);
    margin: 0 auto;
  }

  .compare-drawer__products {
    display: flex;
    gap: var(--space-2);
  }

  .compare-drawer__product {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--color-border);
  }

  .compare-drawer__product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .compare-drawer__remove {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-danger);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .compare-drawer__actions {
    display: flex;
    gap: var(--space-2);
  }

  /* Compare Modal */
  .compare-modal__content {
    max-width: 1000px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
  }

  .compare-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    background: var(--color-background);
    z-index: 1;
  }

  .compare-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-secondary);
    padding: var(--space-1);
  }

  .compare-modal__body {
    padding: var(--space-4);
  }

  .compare-table-wrapper {
    overflow-x: auto;
  }

  .compare-table {
    width: 100%;
    border-collapse: collapse;
  }

  .compare-table th,
  .compare-table td {
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
    min-width: 180px;
    vertical-align: top;
  }

  .compare-table__label {
    text-align: left;
    font-weight: 600;
    color: var(--color-text-secondary);
    background: var(--color-background-secondary);
    min-width: 120px;
  }

  .compare-table__product-header {
    padding: var(--space-4);
  }

  .compare-table__product-link {
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
  }

  .compare-table__product-link:hover {
    color: var(--color-primary);
  }

  .compare-table__image {
    max-width: 150px;
    margin: 0 auto;
  }

  .compare-table__image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
  }

  .compare-table__price {
    font-weight: 600;
    font-size: var(--text-lg);
  }

  .compare-table__compare-price {
    text-decoration: line-through;
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    margin-left: var(--space-2);
  }

  .compare-table__remove-btn {
    background: none;
    border: none;
    color: var(--color-danger);
    font-size: var(--text-xs);
    cursor: pointer;
    margin-top: var(--space-2);
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  /* Compare Notification */
  .compare-notification {
    position: fixed;
    top: var(--space-4);
    right: var(--space-4);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-md);
    color: white;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
  }

  .compare-notification.is-visible {
    transform: translateX(0);
  }

  .compare-notification--success { background: var(--color-success); }
  .compare-notification--warning { background: var(--color-warning); color: var(--color-warning-contrast, #000); }
  .compare-notification--info { background: var(--color-info); }

  @media (max-width: 767px) {
    .compare-drawer__bar {
      flex-wrap: wrap;
      gap: var(--space-2);
    }

    .compare-table th,
    .compare-table td {
      min-width: 140px;
      padding: var(--space-2);
      font-size: var(--text-sm);
    }
  }

/* ===== trust-bar.liquid ===== */
.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 4), 1fr);
    gap: var(--space-6);
  }

  .trust-bar__item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-align: left;
  }

  .trust-bar__icon {
    flex-shrink: 0;
  }

  .trust-bar__emoji {
    font-size: 1.75rem;
    display: block;
  }

  .trust-bar__title {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-text);
  }

  .trust-bar__desc {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-text-secondary);
    margin-top: 1px;
  }

  @media (max-width: 767px) {
    .trust-bar__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-4);
    }
  }

/* ===== video-showcase.liquid ===== */
.video-showcase__wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000;
  }

  .video-showcase--full {
    border-radius: 0;
  }

  .video-showcase__wrapper[style*="--aspect: 16:9"] { aspect-ratio: 16/9; }
  .video-showcase__wrapper[style*="--aspect: 4:3"] { aspect-ratio: 4/3; }
  .video-showcase__wrapper[style*="--aspect: 21:9"] { aspect-ratio: 21/9; }
  .video-showcase__wrapper[style*="--aspect: 1:1"] { aspect-ratio: 1; }

  .video-showcase__player {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }

  .video-showcase__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .video-showcase__player:hover .video-showcase__cover {
    transform: scale(1.02);
  }

  .video-showcase__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 2;
  }

  .video-showcase__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
  }

  .video-showcase__play-btn svg circle {
    transition: fill 0.3s ease;
  }

  .video-showcase__play-btn:hover svg circle {
    fill: rgba(0,0,0,0.8);
  }

  .video-showcase__video,
  .video-showcase__player iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
  }

  .video-showcase__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), transparent);
    display: flex;
    align-items: center;
    z-index: 1;
    pointer-events: none;
  }

  .video-showcase__overlay-content {
    padding: var(--space-12);
    max-width: 600px;
    pointer-events: auto;
  }

  .video-showcase__placeholder {
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    background: var(--color-background-secondary);
    color: var(--color-text-secondary);
  }


/* ===== From theme-optimized.css (deduplicated) ===== */
/**
* Bandimu Theme - Optimized CSS
* 第四阶段性能优化 + 第五阶段���验优化
*
* 优化内容:
* - Critical CSS 内联
* - CSS 变量用于深色模式
* - 骨架屏样�?
* - 可访问性优�?
* - 营销组件样式
*/
/* ===== CSS 变量 - 支持深色/浅色模式 ===== */
/* 品牌色彩 - 浅色模式 */
--color-bg-primary: #FFFFFF;
--color-bg-secondary: #F5F5F5;
--color-bg-tertiary: #E8E8E8;
--color-text-primary: #0A0A0A;
--color-text-secondary: #1A1A1A;
--color-text-tertiary: #666666;
/* 品牌色彩 - 金色 */
/* 渐变 */
--gradient-gold-reverse: linear-gradient(135deg, #B48F17 0%, #F4CF57 50%, #D4AF37 100%);
/* 字体 */
--font-heading: 'Cormorant Garamond', Georgia, serif;
--font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
/* 间距 */
/* 阴影 */
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
--shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
--shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.16);
/* 过渡 */
--transition-fast: 0.15s ease;
--transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--transition-elegant: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
/* 边框半径 */
--radius-sm: 4px;
--radius-md: 8px;
--radius-lg: 12px;
--radius-full: 9999px;
/* 断点 */
--breakpoint-sm: 640px;
--breakpoint-md: 768px;
--breakpoint-lg: 1024px;
--breakpoint-xl: 1280px;
/* 深色模式变量 */
[data-theme="dark"] {
--color-bg-primary: #0A0A0A;
--color-bg-secondary: #1A1A1A;
--color-bg-tertiary: #2A2A2A;
--color-text-primary: #FFFFFF;
--color-text-secondary: #F5F5F5;
--color-text-tertiary: #CCCCCC;
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
--shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
--shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
/* ===== 基础重置 ===== */
*, *::before, *::after {
-webkit-text-size-adjust: 100%;
background-color: var(--color-bg-primary);
color: var(--color-text-primary);
transition: background-color 0.3s ease, color 0.3s ease;
/* ===== 可访问�?- 焦点样式 ===== */
:focus {
outline: 2px solid var(--color-gold);
outline-offset: 2px;
:focus:not(:focus-visible) {
:focus-visible {
outline: 2px solid var(--color-gold);
outline-offset: 2px;
/* 跳过链接 (可访问�? */
.skip-link {
color: var(--color-bg-primary);
padding: 8px 16px;
transition: top 0.3s ease;
.skip-link:focus {
/* ===== 排版 ===== */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
transition: color var(--transition-fast);
/* ===== 按钮 ===== */
padding: 14px 32px;
transition: all var(--transition-smooth);
min-width: 48px;
color: var(--color-bg-primary);
box-shadow: var(--shadow-gold);
.btn:active {
color: var(--color-bg-primary);
background: var(--gradient-gold-reverse);
padding: 18px 48px;
min-height: 56px;
.btn-sm {
/* ===== 深色模式切换�?===== */
.theme-switcher {
bottom: 24px;
right: 24px;
background: var(--color-bg-tertiary);
transition: all var(--transition-smooth);
box-shadow: var(--shadow-md);
.theme-switcher:hover {
box-shadow: var(--shadow-gold);
.theme-switcher svg {
.theme-switcher .sun-icon {
[data-theme="dark"] .theme-switcher .moon-icon {
[data-theme="dark"] .theme-switcher .sun-icon {
/* ===== 骨架屏加�?===== */
.skeleton {
background: linear-gradient(
90deg,
var(--color-bg-secondary) 25%,
var(--color-bg-tertiary) 50%,
var(--color-bg-secondary) 75%
background-size: 200% 100%;
animation: skeleton-loading 1.5s ease-in-out infinite;
@keyframes skeleton-loading {
0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
.skeleton-text {
.skeleton-title {
width: 60%;
margin-bottom: 12px;
.skeleton-image {
aspect-ratio: 4/5;
.skeleton-product {
/* ===== 产品卡片 ===== */
background: var(--color-bg-secondary);
transition: all var(--transition-smooth);
box-shadow: var(--shadow-md);
transform: translateY(-4px);
aspect-ratio: 4/5;
background: var(--color-bg-tertiary);
.product-card__image {
transition: transform var(--transition-elegant);
.product-card:hover .product-card__image {
padding: var(--spacing-sm);
color: var(--color-text-primary);
.price-compare {
/* ===== 产品徽章 ===== */
padding: 6px 12px;
color: var(--color-bg-primary);
background: var(--color-bg-tertiary);
.product-badge--new {
color: var(--color-bg-primary);
/* ===== 倒计时器 ===== */
.countdown-timer {
padding: var(--spacing-md);
color: var(--color-bg-primary);
margin: var(--spacing-md) 0;
.countdown-item {
.countdown-number {
.countdown-label {
margin-top: 4px;
/* ===== 进度�?===== */
.progress-bar {
height: 8px;
background: var(--color-bg-tertiary);
margin: var(--spacing-sm) 0;
.progress-bar__fill {
transition: width var(--transition-smooth);
.progress-bar__fill::after {
background: linear-gradient(
90deg,
rgba(255, 255, 255, 0.3),
transparent
animation: progress-shine 2s infinite;
@keyframes progress-shine {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
/* ===== 信任标识 ===== */
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
padding: var(--spacing-lg) 0;
.trust-badge__icon {
/* ===== 社会证明 ===== */
.social-proof {
background: var(--color-bg-secondary);
padding: var(--spacing-md);
margin: var(--spacing-md) 0;
.social-proof__text {
margin-bottom: 12px;
.social-proof__count {
/* ===== 邮件弹窗 ===== */
.email-popup {
transition: all var(--transition-smooth);
.email-popup.open {
.email-popup__content {
background: var(--color-bg-primary);
padding: var(--spacing-lg);
transition: all var(--transition-elegant);
.email-popup.open .email-popup__content {
.email-popup__close {
top: 16px;
right: 16px;
background: var(--color-bg-tertiary);
transition: all var(--transition-fast);
.email-popup__close:hover {
color: var(--color-bg-primary);
.email-popup__title {
.email-popup__description {
.email-popup__form {
.email-popup__input {
padding: 14px 16px;
background: var(--color-bg-primary);
color: var(--color-text-primary);
.email-popup__input:focus {
box-shadow: var(--shadow-gold);
.email-popup__discount {
/* ===== 捆绑销�?===== */
.bundle-deal {
background: var(--color-bg-secondary);
padding: var(--spacing-md);
margin: var(--spacing-md) 0;
.bundle-deal__header {
.bundle-deal__title {
.bundle-deal__savings {
color: var(--color-bg-primary);
padding: 6px 16px;
.bundle-products {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
.bundle-product {
padding: var(--spacing-sm);
.bundle-product__image {
background: var(--color-bg-tertiary);
.bundle-product__image img {
.bundle-product__title {
.bundle-total {
padding: var(--spacing-md);
background: var(--color-bg-primary);
.bundle-total__original {
margin-right: 12px;
.bundle-total__price {
/* ===== 可访问�?- 减少动画 ===== */
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
/* ===== 响应式设�?===== */
--spacing-lg: 3rem;
--spacing-xl: 4rem;
.countdown-timer {
padding: var(--spacing-sm);
.countdown-number {
.email-popup__content {
padding: var(--spacing-md);
.bundle-products {
.theme-switcher {
bottom: 16px;
right: 16px;
.variant-modal{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.85);z-index:20000;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:opacity 0.3s ease,visibility 0.3s ease;padding:20px;}
.variant-modal.is-open{opacity:1;visibility:visible;}
.variant-modal__content{background:#1a1a1a;border:1px solid #333;border-radius:12px;padding:24px;max-width:380px;width:100%;position:relative;color:#fff;max-height:90vh;overflow-y:auto;}
.variant-modal__close{position:absolute;top:8px;right:12px;background:none;border:none;color:#999;font-size:28px;cursor:pointer;padding:0;line-height:1;}
.variant-modal__close:hover{color:#fff;}
.variant-modal__image{width:100%;margin-bottom:16px;border-radius:8px;overflow:hidden;background:#111;}
.variant-modal__image img{width:100%;display:block;max-height:200px;object-fit:contain;}
.variant-modal__title{font-size:16px;font-weight:600;margin:0 0 8px;color:#fff;}
.variant-modal__price{font-size:18px;font-weight:700;color:#d4a853;margin-bottom:16px;}
.variant-modal__compare-price{text-decoration:line-through;color:#666;font-weight:400;margin-right:8px;font-size:14px;}
.variant-modal__option-group{margin-bottom:14px;}
.variant-modal__option-group label{display:block;font-size:12px;text-transform:uppercase;color:#999;margin-bottom:6px;letter-spacing:0.5px;}
.variant-modal__options-row{display:flex;flex-wrap:wrap;gap:8px;}
.variant-modal__option-btn{padding:8px 16px;border:1px solid #444;background:#222;color:#ccc;border-radius:6px;cursor:pointer;font-size:13px;transition:all 0.2s;}
.variant-modal__option-btn:hover{border-color:#888;color:#fff;}
.variant-modal__option-btn.is-selected{border-color:#d4a853;background:rgba(212,168,83,0.15);color:#d4a853;}
.variant-modal__add-to-cart{width:100%;padding:14px;background:linear-gradient(135deg,#d4a853,#b8943a);border:none;color:#000;font-weight:700;font-size:15px;border-radius:8px;cursor:pointer;transition:all 0.2s;margin-top:8px;}
.variant-modal__add-to-cart:hover{opacity:0.9;transform:translateY(-1px);}
.variant-modal__add-to-cart:disabled{opacity:0.4;cursor:not-allowed;transform:none;}


/* ===== Search Overlay ===== */
.search-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.search-overlay.is-open {
  pointer-events: auto;
  opacity: 1;
}
.search-overlay__backdrop {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
}
.search-overlay__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  margin-top: 120px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 0;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}
.search-overlay.is-open .search-overlay__inner {
  transform: translateY(0);
}
.search-overlay__form {
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--color-bg,#111);
  border: 1px solid var(--color-gold,#c8a44e);
  border-radius: 8px;
  overflow: hidden;
}
.search-overlay__input {
  flex: 1;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--color-white,#fff);
  font-size: 18px;
  outline: none;
}
.search-overlay__input::placeholder {
  color: var(--color-text-tertiary,#555);
}
.search-overlay__submit {
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--color-gold,#c8a44e);
  cursor: pointer;
  display: flex;
  align-items: center;
}
.search-overlay__submit:hover {
  opacity: 0.8;
}
.search-overlay__close {
  padding: 16px;
  background: transparent;
  border: none;
  color: var(--color-white,#fff);
  cursor: pointer;
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.search-overlay__close:hover {
  opacity: 1;
}

@media (max-width: 480px) {
  .search-overlay__inner {
    margin-top: 80px;
    padding: 0 16px;
  }
  .search-overlay__input {
    padding: 14px 16px;
    font-size: 16px;
  }
  .search-overlay__submit {
    padding: 14px 16px;
  }
}

/* ===== Collection Price Filter ===== */
.collection-price-filter {
  margin: 10px 0;
  display: flex;
  align-items: center;
}
.price-filter-form {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.price-filter-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text,#ccc);
  white-space: nowrap;
}
.price-filter-inputs {
  display: flex;
  align-items: center;
  gap: 4px;
}
.price-filter-input {
  width: 70px;
  padding: 5px 8px;
  border: 1px solid var(--color-border,#333);
  border-radius: 4px;
  background: var(--color-bg-secondary,#1a1a1a);
  color: var(--color-white,#fff);
  font-size: 13px;
  outline: none;
}
.price-filter-input:focus {
  border-color: var(--color-gold,#c8a44e);
}
.price-filter-sep {
  color: var(--color-text-tertiary,#666);
  font-size: 13px;
}
.price-filter-clear {
  padding: 4px 10px;
  font-size: 11px;
  background: transparent;
  color: var(--color-gold,#c8a44e);
  border: 1px solid var(--color-gold,#c8a44e);
  border-radius: 4px;
  cursor: pointer;
}
.price-filter-clear:hover {
  background: var(--color-gold,#c8a44e);
  color: var(--color-black,#000);
}

@media (max-width: 480px) {
  .collection-price-filter { margin: 6px 0; }
  .price-filter-input { width: 60px; }
  .header__search-input { width: 160px; }
  .header__search-form { right: 0; }
}

/* ===== Product price inline fix - keep sale+original on one line ===== */
.rv-card__price {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}
.product-card__price {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  flex-wrap: nowrap !important;
}

/* ===== Product page activity highlight border ===== */
.pp-activity-box {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}
.pp-activity-box--active {
  position: relative;
  border: 2px solid #D4AF37;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15), inset 0 0 20px rgba(212, 175, 55, 0.05);
}
/* Activity badge corner tag */
.pp-activity-box--active::before {
  content: "FLASH SALE";
  position: absolute;
  top: -1px;
  right: 20px;
  background: #D4AF37;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 12px;
  border-radius: 0 0 6px 6px;
  text-transform: uppercase;
  z-index: 2;
}


/* Product activity highlight border (inline fallback) */
.pp-activity-box--active {
  position: relative !important;
  border: 2px solid #D4AF37 !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02)) !important;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15), inset 0 0 20px rgba(212, 175, 55, 0.05) !important;
}
.pp-activity-box--active::before {
  content: "FLASH SALE";
  position: absolute;
  top: -1px;
  right: 20px;
  background: #D4AF37;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 12px;
  border-radius: 0 0 6px 6px;
  text-transform: uppercase;
  z-index: 2;
}
