  /* --- NEW: GOLDEN LOGO FRAME --- */
.logo-frame {
  width: 48px !important;
  height: 48px !important;
  border: 2px solid var(--gold); /* Uses your defined gold color */
  border-radius: 12px;
  padding: 4px;
  background: rgba(196, 154, 95, 0.05); /* Match your --gold variable */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo:hover .logo-frame {
  box-shadow: 0 0 12px rgba(196, 154, 95, 0.4);
  transform: translateY(-1px);
}

/* --- NEW: SOCIAL VIDEO GALLERY --- */
.video-card {
  text-decoration: none;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  display: block;
  border: 1px solid var(--border);
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(196, 154, 95, 0.4);
}

.video-thumb {
  position: relative;
  height: 200px;
  background: var(--dark);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.video-info {
  padding: 1.25rem;
}

.video-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 5px;
}

.video-info span {
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold: #C49A5F;
      --gold-light: #D4AF37;
      --gold-dark: #8B6F47;
      --gold-pale: #F5EDD8;
      --cream: #FAF7F2;
      --dark: #1A1510;
      --dark-mid: #2C2418;
      --charcoal: #3D3328;
      --text: #4A3F2F;
      --text-muted: #8B7D6B;
      --white: #FFFFFF;
      --border: rgba(196,154,95,0.2);
      --shadow-gold: 0 8px 40px rgba(196,154,95,0.15);
      --shadow-card: 0 4px 24px rgba(26,21,16,0.08);
      --radius: 16px;
      --radius-sm: 8px;
      --font-display: 'Cormorant Garamond', serif;
      --font-body: 'DM Sans', sans-serif;
    }

    body { font-family: var(--font-body); background: var(--cream); color: var(--text); line-height: 1.6; overflow-x: hidden; }

    /* NAV */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(250,247,242,0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo-mark { width: 40px; height: 40px; background: linear-gradient(135deg, var(--gold-dark), var(--gold-light)); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
    .logo-mark svg { width: 22px; height: 22px; color: white; }
    .logo-text { display: flex; flex-direction: column; }
    .logo-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; background: linear-gradient(135deg, var(--gold-dark), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.1; }
    .logo-sub { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a { text-decoration: none; font-size: 0.875rem; font-weight: 500; color: var(--text); transition: color 0.2s; letter-spacing: 0.02em; }
    .nav-links a:hover { color: var(--gold); }
    .nav-actions { display: flex; align-items: center; gap: 12px; }
    .cart-btn { position: relative; background: none; border: 1.5px solid var(--border); border-radius: 50%; width: 44px; height: 44px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; color: var(--text); }
    .cart-btn:hover { border-color: var(--gold); color: var(--gold); }
    .cart-badge { position: absolute; top: -4px; right: -4px; background: var(--gold); color: white; border-radius: 50%; width: 18px; height: 18px; font-size: 0.65rem; font-weight: 600; display: flex; align-items: center; justify-content: center; display: none; }
    .btn-cta { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: white; border: none; padding: 0.6rem 1.4rem; border-radius: 50px; font-size: 0.875rem; font-weight: 500; cursor: pointer; font-family: var(--font-body); transition: all 0.2s; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
    .btn-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,154,95,0.4); }
    .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--text); }

    /* HERO */
    .hero {
      min-height: 92vh; display: flex; align-items: center;
      background: linear-gradient(160deg, var(--dark) 0%, var(--dark-mid) 50%, #2A1F0F 100%);
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(196,154,95,0.12) 0%, transparent 70%);
    }
    .hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(196,154,95,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(196,154,95,0.04) 1px, transparent 1px); background-size: 60px 60px; }
    .hero-inner { max-width: 1280px; margin: 0 auto; padding: 6rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; width: 100%; }
    .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(196,154,95,0.15); border: 1px solid rgba(196,154,95,0.3); border-radius: 50px; padding: 0.4rem 1rem; margin-bottom: 2rem; }
    .hero-badge-dot { width: 6px; height: 6px; background: var(--gold-light); border-radius: 50%; animation: pulse 2s infinite; }
    .hero-badge span { font-size: 0.75rem; color: rgba(212,175,55,0.9); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
    .hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 600; line-height: 1.1; color: var(--white); margin-bottom: 1.5rem; }
    .hero h1 em { font-style: normal; background: linear-gradient(135deg, #D4AF37, #C49A5F, #F0D080); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .hero p { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 520px; margin-bottom: 2.5rem; line-height: 1.75; }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
    .btn-hero-primary { background: linear-gradient(135deg, #D4AF37, #C49A5F); color: var(--dark); padding: 0.9rem 2rem; border-radius: 50px; font-weight: 600; font-size: 0.9rem; cursor: pointer; border: none; font-family: var(--font-body); transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
    .btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(212,175,55,0.35); }
    .btn-hero-secondary { background: transparent; color: rgba(255,255,255,0.8); padding: 0.9rem 2rem; border-radius: 50px; font-weight: 500; font-size: 0.9rem; cursor: pointer; border: 1.5px solid rgba(255,255,255,0.2); font-family: var(--font-body); transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
    .btn-hero-secondary:hover { border-color: rgba(196,154,95,0.5); color: white; }
    .hero-stats { display: flex; gap: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(196,154,95,0.2); }
    .stat-item { display: flex; flex-direction: column; gap: 2px; }
    .stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--white); line-height: 1; }
    .stat-label { font-size: 0.75rem; color: rgba(212,175,55,0.7); text-transform: uppercase; letter-spacing: 0.08em; }
    .hero-visual { display: flex; align-items: center; justify-content: center; }
    .hero-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(196,154,95,0.2); border-radius: 24px; padding: 2.5rem; backdrop-filter: blur(10px); width: 100%; max-width: 420px; }
    .hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 2rem; }
    .hero-card-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
    .hero-card-title { font-family: var(--font-display); font-size: 1.2rem; color: white; font-weight: 600; }
    .hero-card-subtitle { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
    .hero-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .hero-mini-card { background: rgba(196,154,95,0.1); border: 1px solid rgba(196,154,95,0.15); border-radius: 12px; padding: 1rem; }
    .hero-mini-label { font-size: 0.7rem; color: rgba(212,175,55,0.6); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
    .hero-mini-value { font-family: var(--font-display); font-size: 1.4rem; color: white; font-weight: 600; }
    .hero-mini-tag { font-size: 0.68rem; color: rgba(212,175,55,0.8); margin-top: 2px; }

    /* TRUST STRIP */
    .trust-strip { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .trust-inner { max-width: 1280px; margin: 0 auto; padding: 1.5rem 2rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
    .trust-item { display: flex; align-items: center; gap: 12px; padding: 0.75rem 1rem; border-radius: 10px; transition: background 0.2s; }
    .trust-item:hover { background: var(--gold-pale); }
    .trust-icon { width: 36px; height: 36px; background: linear-gradient(135deg, rgba(196,154,95,0.15), rgba(212,175,55,0.1)); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
    .trust-title { font-size: 0.875rem; font-weight: 600; color: var(--charcoal); }
    .trust-sub { font-size: 0.75rem; color: var(--text-muted); }

    /* SECTION COMMON */
    section { padding: 6rem 2rem; }
    .section-inner { max-width: 1280px; margin: 0 auto; }
    .section-tag { display: inline-block; background: var(--gold-pale); color: var(--gold-dark); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 50px; margin-bottom: 1rem; border: 1px solid rgba(196,154,95,0.25); }
    .section-title { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; color: var(--charcoal); margin-bottom: 0.75rem; line-height: 1.15; }
    .section-desc { font-size: 1rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; }
    .section-head { margin-bottom: 3.5rem; }
    .section-head.center { text-align: center; }
    .section-head.center .section-desc { margin: 0 auto; }

    /* PRODUCTS */
    .products-bg { background: var(--cream); }
    .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
    .product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.3s; cursor: pointer; }
    .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); border-color: rgba(196,154,95,0.4); }
    .product-img { min-height: 240px; height:auto; display:flex; align-items:center; justify-content:center; padding:12px; background: linear-gradient(135deg, #F5EDD8, #EDE0C4); position: relative; overflow: hidden; }
    .product-img img { width: 100%; max-height: 260px; object-fit: contain; transition: transform 0.4s; }
    .product-card:hover .product-img img { transform: scale(1.06); }
    .product-cat { position: absolute; top: 12px; left: 12px; background: rgba(26,21,16,0.7); color: rgba(212,175,55,0.9); font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.3rem 0.7rem; border-radius: 50px; backdrop-filter: blur(4px); }
    .product-body { padding: 1.25rem; }
    .product-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.4rem; }
    .product-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.2rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .product-footer { display: flex; align-items: center; justify-content: space-between; }
    .product-price { display: flex; align-items: baseline; gap: 4px; }
    .product-price-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold-dark); }
    .product-price-unit { font-size: 0.75rem; color: var(--text-muted); }
    .btn-add { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: white; border: none; padding: 0.55rem 1.2rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: all 0.2s; }
    .btn-add:hover { transform: scale(1.04); box-shadow: 0 4px 15px rgba(196,154,95,0.4); }

    /* BIO SECTION */
    .bio-bg { background: var(--white); }
    .bio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
    .bio-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: all 0.3s; }
    .bio-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); border-color: rgba(196,154,95,0.35); background: var(--white); }
    .bio-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
    .bio-size-tag { display: inline-block; background: var(--gold-pale); color: var(--gold-dark); font-size: 0.7rem; font-weight: 600; padding: 0.25rem 0.7rem; border-radius: 50px; margin-bottom: 0.75rem; border: 1px solid rgba(196,154,95,0.2); }
    .bio-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.5rem; }
    .bio-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.5rem; }
    .bio-footer { display: flex; align-items: center; justify-content: space-between; }
    .bio-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold-dark); }

    /* ABOUT */
    .about-bg { background: var(--dark); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .about-content .section-title { color: var(--white); }
    .about-content .section-desc { color: rgba(255,255,255,0.6); max-width: 100%; }
    .about-body { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.8; margin-top: 1.5rem; }
    .about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
    .about-stat { background: rgba(196,154,95,0.08); border: 1px solid rgba(196,154,95,0.15); border-radius: 12px; padding: 1.25rem; }
    .about-stat-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 4px; }
    .about-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
    .about-visual { position: relative; }
    .about-img-box { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); border-radius: 24px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
    .about-float { position: absolute; bottom: -20px; left: -24px; background: var(--white); border-radius: 14px; padding: 1rem 1.25rem; display: flex; align-items: center; gap: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); }
    .about-float-icon { width: 40px; height: 40px; background: var(--gold-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
    .about-float-title { font-size: 0.875rem; font-weight: 600; color: var(--charcoal); }
    .about-float-sub { font-size: 0.75rem; color: var(--text-muted); }

    /* CONTACT */
    .contact-bg { background: var(--cream); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
    .contact-info-items { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
    .contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
    .contact-info-icon { width: 44px; height: 44px; background: var(--gold-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; border: 1px solid rgba(196,154,95,0.2); }
    .contact-info-label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 3px; }
    .contact-info-value { font-size: 0.95rem; color: var(--charcoal); font-weight: 500; }
    .contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow-card); }
    .contact-form-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--charcoal); margin-bottom: 1.75rem; font-weight: 600; }
    .form-group { margin-bottom: 1.1rem; }
    .form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.4rem; letter-spacing: 0.03em; }
    .form-group input, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid rgba(196,154,95,0.2); border-radius: 10px; font-size: 0.9rem; font-family: var(--font-body); color: var(--charcoal); background: var(--cream); outline: none; transition: border-color 0.2s; }
    .form-group input:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); }
    .form-group textarea { resize: none; }
    .btn-submit { width: 100%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: white; border: none; padding: 0.9rem; border-radius: 50px; font-size: 0.9rem; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: all 0.25s; margin-top: 0.5rem; }
    .btn-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 25px rgba(196,154,95,0.4); }
    .form-success { display: none; background: #F0FDF4; border: 1px solid #86EFAC; border-radius: 10px; padding: 1rem; text-align: center; color: #166534; font-size: 0.9rem; margin-top: 1rem; font-weight: 500; }

    /* FOOTER */
    footer { background: var(--dark); color: rgba(255,255,255,0.55); padding: 4rem 2rem 2rem; }
    .footer-inner { max-width: 1280px; margin: 0 auto; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-brand { }
    .footer-brand-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; background: linear-gradient(135deg, var(--gold-dark), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.75rem; }
    .footer-brand-desc { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
    .footer-col-title { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); margin-bottom: 1.25rem; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-links a { text-decoration: none; font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold-light); }
    .footer-social { display: flex; gap: 10px; margin-top: 0.75rem; }
    .social-btn { width: 38px; height: 38px; background: rgba(255,255,255,0.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all 0.2s; text-decoration: none; border: 1px solid rgba(255,255,255,0.08); }
    .social-btn:hover { background: var(--gold); color: white; border-color: var(--gold); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }

    /* CART SIDEBAR */
    .cart-sidebar { position: fixed; top: 0; bottom: 0; right: 0; width: 420px; max-width: 100vw; background: var(--white); z-index: 200; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(0,0,0,0.12); }
    .cart-sidebar.open { transform: translateX(0); }
    .cart-header { padding: 1.5rem 1.75rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
    .cart-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--charcoal); }
    .cart-close { background: none; border: 1.5px solid var(--border); border-radius: 8px; width: 36px; height: 36px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text); transition: all 0.2s; }
    .cart-close:hover { border-color: var(--gold); color: var(--gold); }
    .cart-items { flex: 1; overflow-y: auto; padding: 1.25rem 1.75rem; }
    .cart-empty { text-align: center; padding: 3rem 1rem; color: var(--text-muted); }
    .cart-empty svg { width: 48px; height: 48px; margin: 0 auto 1rem; display: block; opacity: 0.3; }
    .cart-empty p { font-size: 0.9rem; }
    .cart-item { display: flex; gap: 14px; padding: 1rem 0; border-bottom: 1px solid var(--border); }
    .cart-item-img { width: 64px; height: 64px; border-radius: 10px; background: var(--gold-pale); object-fit: cover; flex-shrink: 0; }
    .cart-item-info { flex: 1; }
    .cart-item-name { font-weight: 600; font-size: 0.9rem; color: var(--charcoal); margin-bottom: 3px; }
    .cart-item-price { font-size: 0.8rem; color: var(--gold); font-weight: 500; }
    .cart-item-controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
    .qty-btn { width: 28px; height: 28px; background: var(--cream); border: 1px solid var(--border); border-radius: 6px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--charcoal); transition: all 0.15s; }
    .qty-btn:hover { background: var(--gold-pale); border-color: var(--gold); }
    .qty-input { width: 60px; height: 28px; text-align: center; border: 1px solid var(--border); border-radius: 6px; font-size: 0.85rem; font-family: var(--font-body); color: var(--charcoal); background: var(--cream); outline: none; }
    .qty-input:focus { border-color: var(--gold); background: var(--white); }
    .cart-item-total { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--charcoal); text-align: right; }
    .remove-btn { font-size: 0.75rem; color: #E24B4A; cursor: pointer; background: none; border: none; font-family: var(--font-body); font-weight: 600; padding: 0; transition: opacity 0.2s; }
    .remove-btn:hover { opacity: 0.7; }
    .cart-footer { padding: 1.5rem 1.75rem; border-top: 1px solid var(--border); }
    .cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
    .cart-total-label { font-size: 0.9rem; color: var(--text-muted); }
    .cart-total-amount { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--gold-dark); }
    .btn-checkout { width: 100%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: white; border: none; padding: 1rem; border-radius: 50px; font-size: 0.95rem; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: all 0.25s; }
    .btn-checkout:hover { transform: translateY(-1px); box-shadow: 0 8px 25px rgba(196,154,95,0.4); }
    .cart-overlay { position: fixed; inset: 0; background: rgba(26,21,16,0.5); z-index: 199; opacity: 0; pointer-events: none; transition: opacity 0.35s; backdrop-filter: blur(2px); }
    .cart-overlay.open { opacity: 1; pointer-events: all; }

    /* MODALS */
    .modal-wrap { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: 1rem; }

    .product-page-view { position: fixed; inset: 0; z-index: 500; background: var(--cream); overflow-y: auto; display: none; }
    .product-page-view.open { display: block; }
    .pd-nav { position: sticky; top: 0; z-index: 10; background: rgba(250,247,242,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
    .pd-nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; height: 64px; display: flex; align-items: center; justify-content: space-between; }
    .pd-back { background: none; border: 1.5px solid var(--border); border-radius: 50px; padding: 0.5rem 1.1rem; font-size: 0.85rem; font-weight: 600; color: var(--charcoal); cursor: pointer; display: flex; align-items: center; gap: 6px; font-family: var(--font-body); transition: all 0.2s; }
    .pd-back:hover { border-color: var(--gold); color: var(--gold-dark); }
    .pd-breadcrumb { font-size: 0.82rem; color: var(--text-muted); }
    .pd-wrap { max-width: 1100px; margin: 0 auto; padding: 2.5rem 2rem 5rem; }
    @media (max-width: 760px) {
      .pd-wrap > div:first-child { grid-template-columns: 1fr !important; }
    }
    .modal-wrap.open { display: flex; }
    .modal-bg { position: absolute; inset: 0; background: rgba(26,21,16,0.6); backdrop-filter: blur(6px); }
    .modal-box { position: relative; background: var(--white); border-radius: 24px; width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 80px rgba(0,0,0,0.2); }
    .modal-header { padding: 1.75rem 2rem 1.25rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
    .modal-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--charcoal); }
    .modal-close { background: none; border: 1.5px solid var(--border); border-radius: 8px; width: 36px; height: 36px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text); transition: all 0.2s; }
    .modal-close:hover { border-color: var(--gold); color: var(--gold); }
    .modal-body { padding: 1.75rem 2rem; }
    .modal-field { margin-bottom: 1rem; }
    .modal-field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.4rem; }
    .modal-field input, .modal-field textarea { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid rgba(196,154,95,0.2); border-radius: 10px; font-size: 0.9rem; font-family: var(--font-body); color: var(--charcoal); background: var(--cream); outline: none; transition: border-color 0.2s; }
    .modal-field input:focus, .modal-field textarea:focus { border-color: var(--gold); background: var(--white); }
    .btn-modal-primary { width: 100%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: white; border: none; padding: 0.9rem; border-radius: 50px; font-size: 0.9rem; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: all 0.25s; margin-top: 0.5rem; }
    .btn-modal-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 25px rgba(196,154,95,0.4); }

    /* PAYMENT MODAL */
    .order-summary { background: var(--cream); border-radius: 14px; padding: 1.25rem; margin-bottom: 1.5rem; border: 1px solid var(--border); }
    .order-summary h4 { font-family: var(--font-display); font-size: 1rem; color: var(--charcoal); margin-bottom: 0.75rem; font-weight: 600; }
    .order-item-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text); padding: 0.3rem 0; }
    .order-total-row { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 0.75rem; margin-top: 0.5rem; }
    .order-total-label { font-weight: 600; font-size: 0.9rem; color: var(--charcoal); }
    .order-total-amount { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold-dark); }
    .payment-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 1.5rem; }
    .payment-method { background: var(--cream); border: 1.5px solid var(--border); border-radius: 12px; padding: 0.9rem; text-align: center; cursor: pointer; transition: all 0.2s; }
    .payment-method.active { border-color: var(--gold); background: var(--gold-pale); }
    .payment-method-icon { font-size: 1.4rem; margin-bottom: 4px; }
    .payment-method-name { font-size: 0.78rem; font-weight: 600; color: var(--charcoal); }
    .payment-form { }
    .upi-input { width: 100%; padding: 0.85rem 1rem; border: 1.5px solid rgba(196,154,95,0.2); border-radius: 10px; font-size: 0.9rem; font-family: var(--font-body); color: var(--charcoal); background: var(--cream); outline: none; transition: border-color 0.2s; margin-bottom: 1rem; }
    .upi-input:focus { border-color: var(--gold); background: var(--white); }
    .note-box { background: #EFF6FF; border: 1px solid #BFDBFE; border-radius: 10px; padding: 1rem; font-size: 0.82rem; color: #1E40AF; line-height: 1.6; margin-top: 1rem; }
    .note-box strong { font-weight: 600; }
    .btn-whatsapp { width: 100%; background: linear-gradient(135deg, #1DA851, #25D366); color: white; border: none; padding: 0.9rem; border-radius: 50px; font-size: 0.9rem; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: all 0.25s; display: flex; align-items: center; justify-content: center; gap: 8px; }
    .btn-whatsapp:hover { transform: translateY(-1px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }

    /* SUCCESS MODAL */
    .success-icon { width: 72px; height: 72px; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
    .success-text { text-align: center; margin-bottom: 2rem; }
    .success-text h3 { font-family: var(--font-display); font-size: 1.75rem; color: var(--charcoal); margin-bottom: 0.5rem; font-weight: 600; }
    .success-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
    .order-id-badge { background: var(--gold-pale); border: 1px solid rgba(196,154,95,0.3); border-radius: 8px; padding: 0.5rem 1rem; display: inline-block; font-size: 0.85rem; font-weight: 600; color: var(--gold-dark); margin-top: 0.5rem; }

    /* TOAST */
    .toast { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 400; background: var(--charcoal); color: white; padding: 0.9rem 1.4rem; border-radius: 12px; display: flex; align-items: center; gap: 10px; font-size: 0.875rem; font-weight: 500; box-shadow: 0 8px 30px rgba(0,0,0,0.2); transform: translateY(100px); opacity: 0; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); }
    .toast.show { transform: translateY(0); opacity: 1; }
    .toast-dot { width: 8px; height: 8px; background: #4ADE80; border-radius: 50%; flex-shrink: 0; }

    /* WHATSAPP FLOAT */
    .wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 150; width: 56px; height: 56px; background: linear-gradient(135deg, #1DA851, #25D366); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 6px 20px rgba(37,211,102,0.4); transition: all 0.25s; text-decoration: none; animation: waHeartbeat 1.8s ease-in-out infinite; }
    .wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,0.5); animation-play-state: paused; }
    @keyframes waHeartbeat {
      0%, 100% { transform: scale(1); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
      15% { transform: scale(1.15); box-shadow: 0 6px 26px rgba(37,211,102,0.55); }
      30% { transform: scale(1); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
      45% { transform: scale(1.12); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
      60% { transform: scale(1); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
    }
    .wa-tooltip { position: absolute; right: 68px; background: white; color: var(--charcoal); padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.8rem; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s; box-shadow: var(--shadow-card); }
    .wa-float:hover .wa-tooltip { opacity: 1; }
    .wa-float i { animation: wa-heartbeat 1.4s ease-in-out infinite; }
    .wa-float:hover i { animation-play-state: paused; }
    @keyframes wa-heartbeat {
      0%, 100% { transform: scale(1); }
      15% { transform: scale(1.18); }
      30% { transform: scale(1); }
      45% { transform: scale(1.12); }
      60% { transform: scale(1); }
    }

    /* MOBILE */
    @media (max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .about-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links, .btn-cta { display: none; }
      .hamburger { display: block; }
      .hero-inner { grid-template-columns: 1fr; text-align: center; }
      .hero-visual { display: none; }
      .trust-inner { grid-template-columns: 1fr 1fr; }
      .hero-stats { justify-content: center; }
      .hero-actions { justify-content: center; }
      .payment-methods { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    }
    @media (max-width: 480px) {
      .trust-inner { grid-template-columns: 1fr; }
      section { padding: 4rem 1.25rem; }
      nav .nav-inner { padding: 0 1.25rem; }
    }

    /* MOBILE NAV DRAWER */
    .mobile-nav-overlay { position: fixed; inset: 0; background: rgba(26,21,16,0.55); backdrop-filter: blur(2px); z-index: 199; opacity: 0; visibility: hidden; transition: opacity 0.25s ease; }
    .mobile-nav-overlay.open { opacity: 1; visibility: visible; }
    .mobile-nav { position: fixed; top: 0; right: 0; height: 100%; width: min(78vw, 320px); background: var(--cream); z-index: 200; transform: translateX(100%); transition: transform 0.3s ease; box-shadow: -10px 0 40px rgba(26,21,16,0.2); display: flex; flex-direction: column; }
    .mobile-nav.open { transform: translateX(0); }
    .mobile-nav-head { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); }
    .mobile-nav-head span { font-family: var(--font-display); font-weight: 700; color: var(--charcoal); font-size: 1.1rem; }
    .mobile-nav-close { background: none; border: none; cursor: pointer; color: var(--text); padding: 4px; }
    .mobile-nav-links { list-style: none; padding: 1.5rem; display: flex; flex-direction: column; gap: 0.25rem; }
    .mobile-nav-links a { display: block; text-decoration: none; color: var(--charcoal); font-size: 1.05rem; font-weight: 500; padding: 0.9rem 0.5rem; border-bottom: 1px solid var(--border); transition: color 0.2s; }
    .mobile-nav-links a:hover, .mobile-nav-links a:active { color: var(--gold-dark); }
    .mobile-nav-cta { margin: auto 1.5rem 2rem; }

    /* SCROLL REVEAL */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.in-view { opacity: 1; transform: translateY(0); }
    .reveal-stagger.in-view > * { animation: none; }
    @media (prefers-reduced-motion: reduce) {
      .reveal, .reveal.in-view { opacity: 1; transform: none; transition: none; }
    }

    /* FAQ ACCORDION */
    .faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
    .faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.2s; }
    .faq-item.open { border-color: rgba(196,154,95,0.5); }
    .faq-q { width: 100%; background: none; border: none; text-align: left; padding: 1.1rem 1.4rem; font-family: var(--font-body); font-size: 0.98rem; font-weight: 600; color: var(--charcoal); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
    .faq-q .faq-icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-pale); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; transition: transform 0.3s; font-size: 0.9rem; }
    .faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
    .faq-a p { padding: 0 1.4rem 1.25rem; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
    .faq-item.open .faq-a { max-height: 300px; }

    /* TESTIMONIALS */
    .testimonials-bg { background: var(--cream); }
    .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
    .testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.85rem; transition: all 0.3s; }
    .testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); border-color: rgba(196,154,95,0.4); }
    .testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.9rem; letter-spacing: 2px; }
    .testimonial-quote { font-size: 0.92rem; color: var(--text); line-height: 1.75; margin-bottom: 1.25rem; }
    .testimonial-person { display: flex; align-items: center; gap: 12px; }
    .testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
    .testimonial-name { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); }
    .testimonial-loc { font-size: 0.75rem; color: var(--text-muted); }

    /* BACK TO TOP */
    .back-to-top { position: fixed; bottom: 24px; left: 24px; width: 46px; height: 46px; border-radius: 50%; background: var(--dark); color: var(--gold-light); border: 1px solid rgba(196,154,95,0.4); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s; z-index: 90; }
    .back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
    .back-to-top:hover { background: var(--gold-dark); color: white; }

/* Active nav state (multi-page routing) */
.nav-links a.active-nav, .mobile-nav-links a.active-nav { color: var(--gold-dark); font-weight: 700; }
