*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black:    #0a0805;
    --deep:     #120e09;
    --surface:  #1a1208;
    --gold:     #c9a84c;
    --gold-lt:  #e8c96a;
    --gold-dk:  #8b6914;
    --crimson:  #6b1a1a;
    --ruby:     #8b0000;
    --ruby-lt:  #a81010;
    --cream:    #f5ead6;
    --text:     #d4b896;
    --muted:    #7a6545;
    --white:    #fff8ef;
  }

  html { scroll-behavior: smooth; }

  img { max-width: 100%; display: block; }

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10,8,5,0.96);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 72px;
    backdrop-filter: blur(12px);
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo-icon {
    /* width: 44px; height: 44px; */
    /* border: 1.5px solid var(--gold); */
    /* border-radius: 50%; */
    /* display: flex; align-items: center; justify-content: center; */
    /* font-size: 18px; */
  }
  .nav-logo-icon img{
    width: 50px;
  }
  .nav-logo-text { text-align: center; }
  .nav-logo-text .brand { font-family: 'Cinzel', serif; font-size: 13px; color: var(--gold); letter-spacing: 3px; font-weight: 600; }
  .nav-logo-text .sub { font-family: 'Raleway', sans-serif; font-size: 8px; color: var(--muted); letter-spacing: 4px; text-transform: uppercase; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2.5px; font-weight: 500;
    color: var(--text); text-decoration: none; text-transform: uppercase;
    transition: color .3s; position: relative; padding-bottom: 4px;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: var(--gold); transform: scaleX(0); transition: transform .3s;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
  .nav-actions { display: flex; gap: 20px; align-items: center; }
  .nav-actions button {
    background: none; border: none; cursor: pointer; color: var(--text);
    font-size: 18px; transition: color .3s; position: relative;
  }
  .nav-actions button:hover { color: var(--gold); }
  .cart-badge {
    position: absolute; top: -6px; right: -6px;
    background: var(--gold); color: var(--black);
    font-size: 9px; font-weight: 700; width: 16px; height: 16px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
  }
  .nav-toggle {
    display: none;
    font-size: 24px;
  }
  .nav-toggle.active i::before { content: "\f659"; } /* bi-x */


  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: radial-gradient(ellipse at 70% 50%, #2a1a08 0%, #160d04 40%, #0a0805 100%);
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; padding: 72px 0 0;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.06) 0%, transparent 60%);
    pointer-events: none;
  }
  /* Bokeh particles */
  .hero-particles { position: absolute; inset: 0; pointer-events: none; }
  .particle {
    position: absolute; border-radius: 50%;
    background: var(--gold); opacity: 0;
    animation: float-particle linear infinite;
  }
  @keyframes float-particle {
    0%   { opacity: 0; transform: translateY(0) scale(0); }
    20%  { opacity: 0.6; }
    80%  { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-80px) scale(1.5); }
  }

  .hero-left { padding: 80px 60px 80px 80px; z-index: 2; }
  .hero-crown { color: var(--gold); font-size: 36px; margin-bottom: 12px; display: block; }
  .hero-brand {
    font-family: 'Cinzel', serif; font-size: 64px; font-weight: 700;
    color: var(--gold); letter-spacing: 6px; line-height: 1;
    text-shadow: 0 0 60px rgba(201,168,76,0.3);
  }
  .hero-sub {
    font-family: 'Cinzel', serif; font-size: 16px; font-weight: 400;
    color: var(--gold-lt); letter-spacing: 10px; margin: 8px 0 4px;
    opacity: 0.8;
  }
  .hero-divider {
    display: flex; align-items: center; gap: 12px; margin: 20px 0;
  }
  .hero-divider::before, .hero-divider::after {
    content: ''; flex: 1; max-width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold));
  }
  .hero-divider::after { background: linear-gradient(90deg, var(--gold), transparent); }
  .hero-divider span { color: var(--gold); font-size: 14px; }
  .hero-tagline {
    font-family: 'Cormorant Garamond', serif; font-size: 26px; font-style: italic;
    color: var(--gold-lt); font-weight: 400; margin-bottom: 12px;
  }
  .hero-desc {
    font-size: 14px; color: var(--text); line-height: 1.8;
    max-width: 380px; opacity: 0.85; margin-bottom: 40px;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1.5px solid var(--gold);
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
    color: var(--gold); font-family: 'Cinzel', serif;
    font-size: 11px; letter-spacing: 3px; font-weight: 600;
    padding: 16px 36px; cursor: pointer; text-decoration: none;
    transition: all .4s; text-transform: uppercase;
  }
  .btn-primary:hover {
    background: linear-gradient(135deg, rgba(201,168,76,0.35), rgba(201,168,76,0.15));
    box-shadow: 0 0 30px rgba(201,168,76,0.2);
    transform: translateY(-1px);
  }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--ruby), var(--crimson));
    color: var(--gold); font-family: 'Cinzel', serif;
    font-size: 11px; letter-spacing: 3px; font-weight: 600;
    padding: 16px 36px; cursor: pointer; text-decoration: none;
    transition: all .4s; text-transform: uppercase; border: none;
    box-shadow: 0 4px 20px rgba(139,0,0,0.4);
  }
  .btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(139,0,0,0.5);
  }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

  .hero-right {
    position: relative; height: 100%; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
  }
  .bottle-tray {
    width: 90%; max-width: 560px;
    background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.15) 0%, transparent 60%);
    border-radius: 50% 50% 0 0 / 10%;
    display: flex; align-items: flex-end; justify-content: center; gap: 0;
    padding: 40px 20px 20px;
    position: relative;
  }
  .bottle-tray .imgwrap{
    width: 100%;
    /* max-width: 320px; */
    height: auto;
    border-radius: 20px 15px 10px 20px;
  }
  .tray-base {
    position: absolute; bottom: 0; left: 10%; right: 10%; height: 18px;
    background: linear-gradient(90deg, #8b6914, #e8c96a, #c9a84c, #e8c96a, #8b6914);
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(201,168,76,0.4);
  }

  /* SVG Bottles */
  .bottle-wrap {
    display: flex; flex-direction: column; align-items: center;
    cursor: pointer; transition: transform .4s;
  }
  .bottle-wrap:hover { transform: translateY(-12px); }
  .bottle-wrap svg { filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6)); }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: linear-gradient(135deg, #110c07, #1d1409);
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    display: grid; grid-template-columns: repeat(4, 1fr);
  }
  .trust-item {
    display: flex; flex-direction: column; align-items: center;
    padding: 32px 20px; gap: 10px; text-align: center;
    border-right: 1px solid rgba(201,168,76,0.1);
  }
  .trust-item:last-child { border-right: none; }
  .trust-icon { font-size: 26px; color: var(--gold); }
  .trust-title {
    font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2.5px;
    color: var(--gold); text-transform: uppercase; font-weight: 600;
  }
  .trust-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

  /* ── SECTION HEADER ── */
  section { padding: 100px 80px; }
  .section-eyebrow {
    font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 5px;
    color: var(--gold); text-transform: uppercase; margin-bottom: 12px;
    display: block;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 600;
    color: var(--white); line-height: 1.15; margin-bottom: 16px;
  }
  .section-title em { color: var(--gold); font-style: italic; }
  .section-sub {
    font-size: 14px; color: var(--muted); line-height: 1.8; max-width: 480px;
  }
  .section-header { margin-bottom: 60px; }
  .section-header.center { text-align: center; }
  .section-header.center .section-sub { margin: 0 auto; }

  /* ── GOLD DIVIDER ── */
  .gold-rule {
    display: flex; align-items: center; gap: 16px;
    margin: 16px auto 0; justify-content: center;
  }
  .gold-rule::before, .gold-rule::after {
    content: ''; width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
  }
  .gold-rule::after { background: linear-gradient(90deg, var(--gold), transparent); }
  .gold-rule span { color: var(--gold); font-size: 12px; }

  /* ── COLLECTIONS GRID ── */
  .collections { background: var(--deep); }
  .collections-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  }
  .collection-card {
    position: relative; overflow: hidden;
    background: var(--surface); cursor: pointer;
    transition: transform .4s;
  }
  .collection-card:hover { transform: scale(1.01); z-index: 2; }
  .collection-card:first-child {
    grid-column: span 2; grid-row: span 2;
  }
  .collection-bg {
    height: 320px; position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .collection-card:first-child .collection-bg { height: 640px; }

  .col-visual {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
  }
  .col-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .collection-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,8,5,0.9) 0%, rgba(10,8,5,0.2) 60%);
    transition: opacity .4s;
  }
  .collection-card:hover .collection-overlay { opacity: 0.7; }
  .collection-info {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 32px;
  }
  .col-tag {
    font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 3px;
    color: var(--gold); text-transform: uppercase; margin-bottom: 6px; display: block;
  }
  .col-name {
    font-family: 'Cormorant Garamond', serif; font-size: 28px;
    color: var(--white); font-weight: 600; margin-bottom: 8px;
  }
  .collection-card:first-child .col-name { font-size: 42px; }
  .col-count { font-size: 12px; color: var(--muted); }
  .col-arrow {
    position: absolute; top: 32px; right: 32px;
    width: 40px; height: 40px; border: 1px solid rgba(201,168,76,0.4);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 16px; opacity: 0;
    transition: opacity .3s, background .3s;
  }
  .collection-card:hover .col-arrow {
    opacity: 1; background: rgba(201,168,76,0.1);
  }

  /* ── BEST SELLERS ── */
  .bestsellers { background: var(--black); }
  .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .product-card {
    background: var(--surface);
    border: 1px solid rgba(201,168,76,0.08);
    cursor: pointer; transition: border-color .3s, transform .3s;
    position: relative; overflow: hidden;
  }
  .product-card:hover {
    border-color: rgba(201,168,76,0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  }
  .product-img {
    height: 260px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    background: radial-gradient(ellipse at 50% 80%, rgba(139,0,0,0.2) 0%, transparent 70%);
    position: relative; 
    overflow: hidden;
  }
  .product-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .product-badge {
    position: absolute; top: 16px; left: 16px;
    background: linear-gradient(135deg, var(--ruby), var(--crimson));
    color: var(--gold); font-family: 'Cinzel', serif; font-size: 8px;
    letter-spacing: 2px; padding: 4px 10px; text-transform: uppercase;
  }
  .product-actions {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 8px;
    opacity: 0; transition: opacity .3s;
  }
  .product-card:hover .product-actions { opacity: 1; }
  .action-btn {
    width: 36px; height: 36px; background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; cursor: pointer; transition: background .2s;
  }
  .action-btn:hover { background: rgba(201,168,76,0.3); }
  .product-info { padding: 20px; }
  .product-brand {
    font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: 3px;
    color: var(--gold); text-transform: uppercase; margin-bottom: 6px;
  }
  .product-name {
    font-family: 'Cormorant Garamond', serif; font-size: 20px;
    color: var(--white); font-weight: 600; margin-bottom: 4px; line-height: 1.2;
  }
  .product-size { font-size: 11px; color: var(--muted); margin-bottom: 12px; }
  .product-bottom { display: flex; align-items: center; justify-content: space-between; }
  .product-price {
    font-family: 'Cormorant Garamond', serif; font-size: 22px;
    color: var(--gold); font-weight: 600;
  }
  .product-price span { font-size: 13px; font-weight: 400; }
  .add-cart {
    background: linear-gradient(135deg, var(--ruby), var(--crimson));
    border: none; color: var(--gold); font-family: 'Cinzel', serif;
    font-size: 9px; letter-spacing: 2px; padding: 10px 14px;
    cursor: pointer; text-transform: uppercase; transition: all .3s;
  }
  .add-cart:hover { background: linear-gradient(135deg, var(--ruby-lt), var(--ruby)); }
  .product-stars { display: flex; gap: 2px; margin-bottom: 10px; }
  .star { color: var(--gold); font-size: 11px; }
  .star.empty { color: var(--muted); }

  /* ── MARQUEE ── */
  .marquee-section {
    background: linear-gradient(135deg, var(--ruby), var(--crimson));
    padding: 20px 0; overflow: hidden;
    border-top: 1px solid rgba(201,168,76,0.3);
    border-bottom: 1px solid rgba(201,168,76,0.3);
  }
  .marquee-track {
    display: flex; gap: 60px; animation: marquee 20s linear infinite;
    white-space: nowrap;
  }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .marquee-item {
    font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 4px;
    color: var(--gold); text-transform: uppercase; display: flex; align-items: center; gap: 20px;
  }
  .marquee-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

  /* ── STORY / ABOUT ── */
  .about { background: var(--deep); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-visual {
    position: relative; height: 520px;
    display: flex; align-items: center; justify-content: center;
  }
  .about-frame {
    position: absolute; inset: 0;
    border: 1px solid rgba(201,168,76,0.2);
    top: 24px; left: 24px;
  }
  .about-visual-inner {
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at 50% 60%, rgba(139,0,0,0.3) 0%, #1a0f08 60%, #0f0904 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
    overflow: hidden;
  }
  .about-visual-inner img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .about-stats {
    position: absolute; bottom: -24px; right: -24px; z-index: 2;
    background: linear-gradient(135deg, var(--ruby), var(--crimson));
    padding: 28px 36px; border: 1px solid rgba(201,168,76,0.3);
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif; font-size: 48px;
    color: var(--gold); font-weight: 700; line-height: 1;
  }
  .stat-label {
    font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 3px;
    color: var(--gold-lt); text-transform: uppercase; margin-top: 4px;
  }
  .about-text .section-sub { max-width: 100%; }
  .about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
  .about-feat {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px; border: 1px solid rgba(201,168,76,0.1);
    background: rgba(201,168,76,0.03); transition: border-color .3s;
  }
  .about-feat:hover { border-color: rgba(201,168,76,0.25); }
  .feat-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 16px;
  }
  .feat-title {
    font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px;
    color: var(--gold); text-transform: uppercase; margin-bottom: 4px;
  }
  .feat-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--black); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testimonial-card {
    background: var(--surface); padding: 32px;
    border: 1px solid rgba(201,168,76,0.08);
    transition: border-color .3s;
  }
  .testimonial-card:hover { border-color: rgba(201,168,76,0.25); }
  .testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
  .testi-quote {
    font-family: 'Cormorant Garamond', serif; font-size: 17px; font-style: italic;
    color: var(--text); line-height: 1.7; margin-bottom: 24px;
  }
  .testi-quote::before { content: '\201C'; color: var(--gold); font-size: 32px; line-height: 0; vertical-align: -12px; margin-right: 4px; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--ruby), var(--gold-dk));
    border: 1.5px solid rgba(201,168,76,0.4);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cinzel', serif; font-size: 14px; color: var(--gold); font-weight: 600;
  }
  .testi-name {
    font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 1px;
    color: var(--white); font-weight: 600;
  }
  .testi-loc { font-size: 11px; color: var(--muted); margin-top: 2px; }

  /* ── NEWSLETTER ── */
  .newsletter {
    background: linear-gradient(135deg, #1a0d07 0%, #0f0804 50%, #1a0d07 100%);
    text-align: center; padding: 100px 80px;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .newsletter-form {
    display: flex; max-width: 500px; margin: 40px auto 0; gap: 0;
    border: 1px solid rgba(201,168,76,0.35);
  }
  .newsletter-form input {
    flex: 1; background: transparent; border: none; outline: none;
    color: var(--text); font-family: 'Raleway', sans-serif; font-size: 13px;
    padding: 16px 20px;
  }
  .newsletter-form input::placeholder { color: var(--muted); }
  .newsletter-form button {
    background: linear-gradient(135deg, var(--gold-dk), var(--gold));
    border: none; color: var(--black); font-family: 'Cinzel', serif;
    font-size: 10px; letter-spacing: 2px; padding: 16px 24px;
    cursor: pointer; text-transform: uppercase; font-weight: 700;
    transition: opacity .3s;
  }
  .newsletter-form button:hover { opacity: 0.85; }

  /* ── FOOTER ── */
  footer {
    background: var(--deep);
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; padding: 80px;
  }
  .footer-brand { }
  .footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
  .footer-logo-icon {
    /* width: 48px; height: 48px; border: 1.5px solid var(--gold);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 20px; */
  }

  .footer-logo-icon img{
    width: 50px;
  }
  .footer-brand-name {
    font-family: 'Cinzel', serif; font-size: 14px; color: var(--gold);
    letter-spacing: 3px; font-weight: 600;
  }
  .footer-brand-sub { font-size: 9px; color: var(--muted); letter-spacing: 4px; text-transform: uppercase; }
  .footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.8; max-width: 280px; margin-bottom: 24px; }
  .footer-socials { display: flex; gap: 10px; }
  .social-btn {
    width: 36px; height: 36px; border: 1px solid rgba(201,168,76,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); font-size: 14px; cursor: pointer;
    transition: border-color .3s, color .3s;
    text-decoration: none;
  }
  .social-btn:hover { border-color: var(--gold); color: var(--gold); }
  .footer-col h4 {
    font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 3px;
    color: var(--gold); text-transform: uppercase; margin-bottom: 20px; font-weight: 600;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a {
    font-size: 13px; color: var(--muted); text-decoration: none;
    transition: color .3s;
  }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 24px 80px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-bottom p { font-size: 12px; color: var(--muted); }
  .footer-bottom-links { display: flex; gap: 24px; }
  .footer-bottom-links a { font-size: 12px; color: var(--muted); text-decoration: none; transition: color .3s; }
  .footer-bottom-links a:hover { color: var(--gold); }

  /* ── CART SIDEBAR ── */
  .cart-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s;
  }
  .cart-overlay.open { opacity: 1; pointer-events: all; }
  .cart-sidebar {
    position: fixed; top: 0; right: 0; bottom: 0; width: 400px;
    background: var(--deep); border-left: 1px solid rgba(201,168,76,0.2);
    z-index: 201; transform: translateX(100%); transition: transform .4s;
    display: flex; flex-direction: column;
  }
  .cart-overlay.open .cart-sidebar { transform: translateX(0); }
  .cart-header {
    padding: 28px; border-bottom: 1px solid rgba(201,168,76,0.15);
    display: flex; align-items: center; justify-content: space-between;
  }
  .cart-title {
    font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 3px;
    color: var(--gold); text-transform: uppercase;
  }
  .cart-close {
    background: none; border: none; color: var(--muted); font-size: 20px;
    cursor: pointer; transition: color .3s;
  }
  .cart-close:hover { color: var(--gold); }
  .cart-items { flex: 1; overflow-y: auto; padding: 20px; }
  .cart-empty {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; height: 100%; gap: 12px; color: var(--muted);
  }
  .cart-empty-icon { font-size: 40px; opacity: 0.4; }
  .cart-empty p { font-size: 13px; font-family: 'Cinzel', serif; letter-spacing: 1px; }
  .cart-item {
    display: flex; gap: 14px; padding: 16px 0;
    border-bottom: 1px solid rgba(201,168,76,0.08);
  }
  .cart-item-img {
    width: 70px; height: 80px; background: radial-gradient(ellipse, rgba(139,0,0,0.3), #1a0f08);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .cart-item-info { flex: 1; }
  .cart-item-name {
    font-family: 'Cormorant Garamond', serif; font-size: 16px;
    color: var(--white); font-weight: 600; margin-bottom: 4px;
  }
  .cart-item-size { font-size: 11px; color: var(--muted); margin-bottom: 10px; }
  .cart-item-row { display: flex; align-items: center; justify-content: space-between; }
  .cart-item-price { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--gold); font-weight: 600; }
  .qty-ctrl { display: flex; align-items: center; gap: 8px; }
  .qty-btn {
    width: 24px; height: 24px; border: 1px solid rgba(201,168,76,0.3);
    background: none; color: var(--gold); font-size: 14px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: background .2s;
  }
  .qty-btn:hover { background: rgba(201,168,76,0.1); }
  .qty-num { font-size: 13px; color: var(--text); width: 20px; text-align: center; }
  .cart-remove { background: none; border: none; color: var(--muted); font-size: 16px; cursor: pointer; }
  .cart-remove:hover { color: #e05050; }
  .cart-footer { padding: 20px; border-top: 1px solid rgba(201,168,76,0.15); }
  .cart-total-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px;
  }
  .cart-total-label { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
  .cart-total-amount { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--gold); font-weight: 700; }
  .btn-checkout {
    width: 100%; padding: 18px;
    background: linear-gradient(135deg, var(--ruby), var(--crimson));
    border: none; color: var(--gold); font-family: 'Cinzel', serif;
    font-size: 11px; letter-spacing: 3px; cursor: pointer;
    text-transform: uppercase; transition: all .3s;
  }
  .btn-checkout:hover { box-shadow: 0 8px 24px rgba(139,0,0,0.5); }

  /* Scroll-in animation */
  .fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* Scrollbar */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 3px; }

  @media (max-width: 1024px) {
    nav { padding: 0 24px; }
    .nav-links { gap: 20px; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { height: 400px; min-height: 400px; }
    .hero-left { padding: 60px 40px; }
    section { padding: 70px 32px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .collections-grid { grid-template-columns: 1fr; }
    .collection-card:first-child { grid-column: span 1; grid-row: span 1; }
    .trust-bar { grid-template-columns: repeat(2, 1fr); }
  }

  /* ── TABLET / MOBILE NAV ── */
  @media (max-width: 900px) {
    nav { padding: 0 16px; height: 64px; }
    .hero, section[id] { padding-top: 64px; }
    .nav-logo-text .brand { font-size: 11px; letter-spacing: 2px; }
    .nav-logo-text .sub { font-size: 7px; letter-spacing: 2px; }
    .nav-logo-icon img { width: 38px; }

    .nav-links {
      position: fixed; top: 64px; left: 0; right: 0;
      flex-direction: column; gap: 0;
      background: rgba(10,8,5,0.98);
      border-bottom: 1px solid rgba(201,168,76,0.2);
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease;
      z-index: 99;
    }
    .nav-links.open { max-height: 400px; }
    .nav-links li { width: 100%; }
    .nav-links a {
      display: block; padding: 16px 24px;
      border-bottom: 1px solid rgba(201,168,76,0.08);
      letter-spacing: 1.5px;
    }
    .nav-links a::after { display: none; }

    .nav-actions { gap: 14px; }
    .nav-toggle { display: block; }
  }

  /* ── GENERAL MOBILE ── */
  @media (max-width: 768px) {
    section { padding: 56px 20px; }

    /* Hero */
    .hero { min-height: auto; padding-bottom: 40px; }
    .hero-left { padding: 40px 20px 20px; text-align: center; }
    .hero-brand { font-size: 40px; letter-spacing: 4px; }
    .hero-sub { font-size: 12px; letter-spacing: 6px; }
    .hero-tagline { font-size: 20px; }
    .hero-desc { font-size: 13px; max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-divider { justify-content: center; }
    .hero-btns { justify-content: center; }
    .btn-primary, .btn-secondary { font-size: 10px; padding: 14px 24px; }
    .hero-right { min-height: 320px; height: 320px; }
    .bottle-tray { padding: 20px 10px; }

    /* Trust bar */
    .trust-bar { grid-template-columns: repeat(2, 1fr); }
    .trust-item { padding: 24px 12px; }
    .trust-title { font-size: 10px; letter-spacing: 1.5px; }
    .trust-desc { font-size: 11px; }

    /* Section headers */
    .section-title { font-size: 32px; }
    .section-eyebrow { font-size: 9px; letter-spacing: 3px; }
    .section-sub { font-size: 13px; max-width: 100%; }

    /* Collections */
    .collection-card:first-child .collection-bg,
    .collection-bg { height: 280px; }
    .collection-card:first-child .col-name { font-size: 30px; }
    .col-name { font-size: 22px; }
    .col-arrow { width: 32px; height: 32px; top: 16px; right: 16px; font-size: 14px; }
    .collection-info { padding: 20px; }

    /* Products */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .product-img { height: 180px; }
    .product-info { padding: 14px; }
    .product-name { font-size: 16px; }
    .product-price { font-size: 18px; }
    .add-cart { font-size: 8px; padding: 8px 10px; }
    .product-actions { opacity: 1; right: 8px; gap: 6px; }
    .action-btn { width: 28px; height: 28px; font-size: 12px; }

    /* About */
    .about-grid { gap: 40px; }
    .about-visual { height: 320px; }
    .about-stats { padding: 18px 24px; right: 0; bottom: -16px; }
    .stat-num { font-size: 32px; }
    .about-features { gap: 14px; }
    .about-feat { padding: 14px; }

    /* Testimonials */
    .testimonial-card { padding: 24px; }
    .testi-quote { font-size: 15px; }

    /* Newsletter */
    .newsletter { padding: 60px 20px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input, .newsletter-form button { width: 100%; padding: 14px 16px; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 48px 20px; text-align: left; }
    .footer-bottom { flex-direction: column; gap: 12px; padding: 20px; text-align: center; }
    .footer-brand p { max-width: 100%; }

    /* Cart sidebar */
    .cart-sidebar { width: 100%; }

    /* Marquee */
    .marquee-item { font-size: 9px; letter-spacing: 2px; }
    .marquee-track { gap: 32px; }
  }

  /* ── SMALL PHONES ── */
  @media (max-width: 420px) {
    .hero-brand { font-size: 32px; letter-spacing: 2px; }
    .hero-sub { font-size: 10px; letter-spacing: 4px; }
    .hero-tagline { font-size: 17px; }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns a { justify-content: center; width: 100%; }

    .trust-bar { grid-template-columns: 1fr; }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); }
    .trust-item:last-child { border-bottom: none; }

    .products-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .section-title { font-size: 26px; }

    .nav-logo-text { display: none; }
  }