
  :root{
    --cream: #FBF5E9;
    --cream-2: #F4E9D3;
    --ink: #2A1810;
    --ink-soft: #6B5544;
    --gold: #D9A234;
    --gold-deep: #B27B1B;
    --gold-pale: #F0D48F;
    --maroon: #6B1B2E;
    --maroon-deep: #3E0F1C;
    --rose: #C97B63;
    --sage: #6E7B4F;
    --white: #FFFDF8;
    --line: rgba(42,24,16,0.12);
    --shadow: 0 20px 50px -20px rgba(62,15,28,0.25);
    --radius: 20px;
    --maxw: 1240px;
  }

  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth; overflow-x:hidden;}
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{animation-duration:0.001ms !important; transition-duration:0.001ms !important;}
  }

  body{
    background:var(--cream);
    color:var(--ink);
    font-family:'Work Sans', sans-serif;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
    width: 100%;
  }

  h1,h2,h3,h4{
    font-family:'Fraunces', serif;
    font-weight:600;
    line-height:1.1;
    color:var(--ink);
    letter-spacing:-0.01em;
  }

  .devanagari{ font-family:'Yatra One', cursive; font-weight:400; }

  a{ color:inherit; text-decoration:none; }
  img{ max-width:100%; display:block; }
  ul{ list-style:none; }
  button{ font-family:inherit; cursor:pointer; }

  .wrap{ max-width:var(--maxw); margin:0 auto; padding:0 32px; }
  section{ position:relative; }

  .eyebrow{
    display:inline-flex; align-items:center; gap:10px;
    font-size:12.5px; font-weight:600; letter-spacing:0.14em; text-transform:uppercase;
    color:var(--maroon);
  }
  .eyebrow::before{
    content:''; width:22px; height:1px; background:var(--gold-deep);
  }

  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:15px 30px; border-radius:100px; font-size:14.5px; font-weight:600;
    letter-spacing:0.02em; border:1.5px solid transparent; transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    white-space:nowrap;
  }
  .btn-primary{ background:var(--maroon); color:var(--white); box-shadow:0 12px 24px -10px rgba(107,27,46,0.55); }
  .btn-primary:hover{ background:var(--maroon-deep); transform:translateY(-2px); box-shadow:0 16px 28px -10px rgba(107,27,46,0.6); }
  .btn-outline{ border-color:var(--ink); color:var(--ink); }
  .btn-outline:hover{ background:var(--ink); color:var(--white); transform:translateY(-2px); }
  .btn-gold{ background:var(--gold); color:var(--maroon-deep); }
  .btn-gold:hover{ background:var(--gold-deep); color:var(--white); transform:translateY(-2px); }

  /* ---------- rangoli dot motif (signature) ---------- */
  .rangoli-dots{ position:absolute; pointer-events:none; }
  .rangoli-divider{
    display:flex; align-items:center; justify-content:center; gap:9px; margin:0 auto;
  }
  .rangoli-divider span{
    width:6px; height:6px; border-radius:50%;
    background:var(--gold);
  }
  .rangoli-divider span:nth-child(3n+2){ background:var(--maroon); }
  .rangoli-divider span:nth-child(3n){ background:var(--rose); }
  .rangoli-divider span:nth-child(1),.rangoli-divider span:nth-child(9){ width:4px;height:4px; opacity:.6;}
  .rangoli-divider span:nth-child(4),.rangoli-divider span:nth-child(6){ width:8px;height:8px;}

  /* ================= SCROLL PROGRESS ================= */
  .scroll-progress{
    position:fixed; top:0; left:0; height:3px; width:0%; z-index:300;
    background:linear-gradient(90deg, var(--gold), var(--maroon));
    transition:width .1s linear; pointer-events:none;
  }

  /* ================= BACK TO TOP ================= */
  .back-to-top{
    position:fixed; right:24px; bottom:24px; z-index:150; width:48px; height:48px; border-radius:50%;
    background:var(--maroon); color:var(--white); border:none; display:flex; align-items:center; justify-content:center;
    box-shadow:0 14px 28px -10px rgba(62,15,28,0.5); opacity:0; visibility:hidden; transform:translateY(14px);
    transition:opacity .3s ease, transform .3s ease, visibility .3s ease, background .25s ease;
  }
  .back-to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
  .back-to-top:hover{ background:var(--maroon-deep); }
  .back-to-top svg{ width:19px; height:19px; }

  /* ================= HEADER ================= */
  header{
    position:sticky; top:0; z-index:100;
    background:rgba(251,245,233,0.9); backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
    transition:box-shadow .3s ease, padding .3s ease;
  }
  header.scrolled{ box-shadow:0 8px 24px -18px rgba(42,24,16,0.5); }
  header.scrolled .header-inner{ padding:10px 32px; }
  .header-inner{
    display:flex; align-items:center; justify-content:space-between; gap:24px;
    padding:14px 32px;
  }
  .brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
  .brand img{ height:52px; width:auto; }
  .logo-mark{ display:flex; align-items:center; gap:11px; }
  .logo-mark svg{ width:40px; height:40px; flex-shrink:0; }
  .logo-mark .logo-text{ display:flex; flex-direction:column; line-height:1.05; }
  .logo-mark .logo-text .l1{ font-family:'Fraunces',serif; font-weight:600; font-size:18.5px; color:var(--ink); letter-spacing:-0.01em; }
  .logo-mark .logo-text .l2{ font-family:'Yatra One',cursive; font-size:11px; color:var(--maroon); letter-spacing:0.02em; }
  footer .logo-mark .logo-text .l1{ color:var(--cream); }
  footer .logo-mark .logo-text .l2{ color:var(--gold); }

  nav.main-nav{ display:flex; align-items:center; gap:32px; }
  nav.main-nav a{
    font-size:14.5px; font-weight:500; color:var(--ink-soft);
    position:relative; padding:6px 0; transition:color .2s ease;
  }
  nav.main-nav a::after{
    content:''; position:absolute; left:0; bottom:0; width:0; height:1.5px; background:var(--maroon);
    transition:width .25s ease;
  }
  nav.main-nav a:hover{ color:var(--ink); }
  nav.main-nav a:hover::after{ width:100%; }

  .header-actions{ display:flex; align-items:center; gap:18px; }
  .icon-btn{
    display:flex; align-items:center; justify-content:center;
    width:38px; height:38px; border-radius:50%; color:var(--ink);
    transition:background .2s ease; position:relative;
  }
  .icon-btn:hover{ background:var(--cream-2); }
  .icon-btn svg{ width:19px; height:19px; }
  .cart-count{
    position:absolute; top:-2px; right:-2px; background:var(--maroon); color:var(--white);
    font-size:10px; font-weight:700; width:16px; height:16px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
  }
  .menu-toggle{ display:none; }

  /* ================= HERO ================= */
  .hero{ padding:76px 0 60px; overflow:hidden; }
  .hero .wrap{
    display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center;
  }
  .hero-eyebrow-hindi{ font-size:15px; color:var(--maroon); margin-bottom:18px; display:block; }
  .hero h1{ font-size:clamp(38px, 4.6vw, 62px); margin-bottom:22px; }
  .hero h1 em{ font-style:italic; color:var(--maroon); font-weight:500; }
  .hero p.lead{ font-size:17.5px; color:var(--ink-soft); max-width:460px; margin-bottom:34px; }
  .hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:44px; }
  .trust-row{ display:flex; gap:28px; flex-wrap:wrap; }
  .trust-item{ display:flex; align-items:center; gap:8px; font-size:13px; color:var(--ink-soft); font-weight:500; }
  .trust-item svg{ width:16px; height:16px; color:var(--gold-deep); flex-shrink:0; }

  .hero-visual{ position:relative; height:520px; }
  .hero-blob{
    position:absolute; inset:0; border-radius:44% 56% 62% 38% / 48% 42% 58% 52%;
    background:radial-gradient(circle at 30% 25%, #E8C77E, var(--gold) 55%, var(--gold-deep) 100%);
    box-shadow:var(--shadow);
  }
  .hero-dotring{
    position:absolute; top:50%; left:50%; width:560px; height:560px; margin:-280px 0 0 -280px;
    border-radius:50%; opacity:0.55;
  }
  .hero-card{
    position:absolute; background:var(--white); border-radius:18px; padding:16px 18px;
    box-shadow:0 18px 36px -14px rgba(62,15,28,0.28); display:flex; align-items:center; gap:12px;
    border:1px solid var(--line);
  }
  .hero-card .ic{
    width:42px; height:42px; border-radius:12px; display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }
  .hero-card .ic svg{ width:22px; height:22px; }
  .hero-card .t1{ font-size:13px; font-weight:600; color:var(--ink); }
  .hero-card .t2{ font-size:11.5px; color:var(--ink-soft); }

  .hc-1{ top:6%; left:2%; }
  .hc-1 .ic{ background:#F4E3C4; color:var(--gold-deep); }
  .hc-2{ bottom:10%; left:-4%; }
  .hc-2 .ic{ background:#F1D8DB; color:var(--maroon); }
  .hc-3{ top:44%; right:-6%; }
  .hc-3 .ic{ background:#E4E6D5; color:var(--sage); }

  .hero-mascot{ position:absolute; bottom:-6%; right:6%; width:44%; max-width:230px; z-index:2; filter:drop-shadow(0 16px 24px rgba(62,15,28,0.3)); animation:float-mascot 5s ease-in-out infinite; }
  @keyframes float-mascot{ 0%,100%{ transform:translateY(0) rotate(0deg); } 50%{ transform:translateY(-14px) rotate(-2deg); } }
  .hero-blob{ transition:transform .1s ease-out; }
  .hero-dotring{ animation:spin-slow 60s linear infinite; transform-origin:50% 50%; }
  @keyframes spin-slow{ from{ transform:rotate(0deg); } to{ transform:rotate(360deg); } }
  .hero-card{ transition:transform .1s ease-out, box-shadow .3s ease; animation:card-bob 4.5s ease-in-out infinite; }
  .hero-card:hover{ box-shadow:0 24px 44px -14px rgba(62,15,28,0.38); }
  .hc-1{ animation-delay:0s; }
  .hc-2{ animation-delay:1.2s; }
  .hc-3{ animation-delay:2.4s; }
  @keyframes card-bob{ 0%,100%{ margin-top:0; } 50%{ margin-top:-9px; } }
  @media (prefers-reduced-motion: reduce){
    .hero-mascot, .hero-dotring, .hero-card{ animation:none !important; }
  }

  /* ================= TRUST STRIP ================= */
  .trust-strip{
    background:var(--maroon); padding:22px 0;
  }
  .trust-strip .wrap{
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:18px 40px;
  }
  .trust-strip .item{
    display:flex; align-items:center; gap:10px; color:var(--cream); font-size:13.5px; font-weight:500;
  }
  .trust-strip .item svg{ width:18px; height:18px; color:var(--gold); flex-shrink:0; }

  /* ================= SECTION HEADS ================= */
  .section-head{ text-align:center; max-width:640px; margin:0 auto 56px; }
  .section-head .eyebrow{ justify-content:center; margin-bottom:14px; }
  .section-head .eyebrow::before{ display:none; }
  .section-head h2{ font-size:clamp(28px,3.4vw,42px); margin-bottom:14px; }
  .section-head p{ color:var(--ink-soft); font-size:16px; }

  .section-pad{ padding:100px 0; }

  /* ================= CATEGORIES ================= */
  .cat-grid{
    display:grid; grid-template-columns:repeat(6,1fr); gap:20px;
  }
  .cat-card{
    background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
    padding:28px 20px; text-align:center; transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .cat-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:transparent; }
  .cat-icon{
    width:60px; height:60px; border-radius:50%; margin:0 auto 16px;
    display:flex; align-items:center; justify-content:center;
  }
  .cat-icon svg{ width:28px; height:28px; }
  .cat-card h4{ font-size:15px; font-weight:600; margin-bottom:6px; font-family:'Work Sans'; }
  .cat-card p{ font-size:12px; color:var(--ink-soft); }

  .c1 .cat-icon{ background:#F4E3C4; color:var(--gold-deep); }
  .c2 .cat-icon{ background:#F1D8DB; color:var(--maroon); }
  .c3 .cat-icon{ background:#EAD9CF; color:var(--rose); }
  .c4 .cat-icon{ background:#E4E6D5; color:var(--sage); }
  .c5 .cat-icon{ background:#F4E3C4; color:var(--maroon-deep); }
  .c6 .cat-icon{ background:#EDE3D0; color:var(--gold-deep); }

  /* ================= PRODUCTS ================= */
  .prod-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
  .prod-card{
    background:var(--white); border-radius:var(--radius); overflow:hidden; border:1px solid var(--line);
    transition:transform .3s ease, box-shadow .3s ease;
  }
  .prod-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
  .prod-media{
    position:relative; aspect-ratio:1/0.95; display:flex; align-items:center; justify-content:center;
    overflow:hidden;
  }
  .prod-media svg{ width:64px; height:64px; position:relative; z-index:2; }
  .prod-media .dotbg{ position:absolute; inset:0; opacity:.35; }
  .badge{
    position:absolute; top:12px; left:12px; z-index:3; font-size:10.5px; font-weight:700;
    letter-spacing:0.05em; text-transform:uppercase; padding:5px 10px; border-radius:100px;
    background:var(--maroon); color:var(--white);
  }
  .badge.new{ background:var(--sage); }
  .fav-btn{
    position:absolute; top:10px; right:10px; z-index:3; width:32px; height:32px; border-radius:50%;
    background:rgba(255,253,248,0.85); display:flex; align-items:center; justify-content:center; border:none;
    transition:background .2s ease;
  }
  .fav-btn svg{ width:16px; height:16px; color:var(--maroon); }
  .fav-btn:hover{ background:var(--white); }
  .prod-body{ padding:18px 18px 20px; }
  .prod-cat{ font-size:11px; text-transform:uppercase; letter-spacing:0.08em; color:var(--ink-soft); font-weight:600; margin-bottom:6px; }
  .prod-name{ font-size:15.5px; font-weight:600; font-family:'Fraunces'; margin-bottom:8px; }
  .prod-rating{ display:flex; align-items:center; gap:5px; margin-bottom:12px; }
  .prod-rating svg{ width:12px; height:12px; color:var(--gold-deep); }
  .prod-rating span{ font-size:11.5px; color:var(--ink-soft); margin-left:4px; }
  .prod-footer{ display:flex; align-items:center; justify-content:space-between; }
  .prod-price{ font-size:16px; font-weight:700; font-family:'Fraunces'; }
  .prod-price .old{ font-size:12.5px; font-weight:400; color:var(--ink-soft); text-decoration:line-through; margin-right:6px; }
  .add-btn{
    width:38px; height:38px; border-radius:50%; background:var(--cream-2); border:none;
    display:flex; align-items:center; justify-content:center; transition:background .25s ease, transform .2s ease;
  }
  .add-btn svg{ width:17px; height:17px; color:var(--maroon); }
  .add-btn:hover{ background:var(--maroon); }
  .add-btn:hover svg{ color:var(--white); }
  .add-btn.added{ background:var(--sage); }
  .add-btn.added svg{ color:var(--white); }

  .center-cta{ text-align:center; margin-top:48px; }

  /* ================= EDITORIAL BANNER ================= */
  .editorial{
    background:var(--maroon-deep); color:var(--cream); padding:110px 0; text-align:center; position:relative; overflow:hidden;
  }
  .editorial h2{ color:var(--white); font-size:clamp(30px,4vw,50px); max-width:820px; margin:0 auto 24px; }
  .editorial h2 .accent{ color:var(--gold); font-style:italic; font-weight:500; }
  .editorial p{ max-width:560px; margin:0 auto 36px; color:rgba(251,245,233,0.75); font-size:16px; }
  .editorial .rangoli-divider{ margin-bottom:34px; }

  /* ================= HAMPERS ================= */
  .hamper-sec{ display:grid; grid-template-columns:0.95fr 1.05fr; gap:60px; align-items:center; }
  .hamper-copy .eyebrow{ margin-bottom:16px; }
  .hamper-copy h2{ font-size:clamp(28px,3.4vw,42px); margin-bottom:18px; }
  .hamper-copy p{ color:var(--ink-soft); margin-bottom:28px; max-width:440px; }
  .hamper-list{ display:flex; flex-direction:column; gap:14px; margin-bottom:32px; }
  .hamper-list li{ display:flex; align-items:center; gap:12px; font-size:14.5px; font-weight:500; }
  .hamper-list svg{ width:18px; height:18px; color:var(--sage); flex-shrink:0; }

  .hamper-visual{ position:relative; height:420px; }
  .hcard{
    position:absolute; width:230px; border-radius:18px; padding:22px; box-shadow:0 20px 40px -16px rgba(62,15,28,0.3);
    border:1px solid var(--line);
  }
  .hcard h5{ font-family:'Fraunces'; font-size:16px; margin-bottom:6px; }
  .hcard p{ font-size:12px; color:var(--ink-soft); }
  .hcard-1{ top:0; left:8%; background:var(--gold-pale); z-index:3; transform:rotate(-4deg); }
  .hcard-2{ top:26%; right:2%; background:var(--white); z-index:2; transform:rotate(3deg); }
  .hcard-3{ bottom:0; left:24%; background:#EAD9CF; z-index:1; transform:rotate(-2deg); }

  /* ================= TESTIMONIALS SLIDER ================= */
  .test-slider{ position:relative; }
  .test-track{
    display:flex; gap:26px; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth;
    padding:4px 4px 14px; margin:0 -4px; -webkit-overflow-scrolling:touch; scrollbar-width:none;
  }
  .test-track::-webkit-scrollbar{ display:none; }
  .test-card{
    background:var(--white); border:1px solid var(--line); border-radius:var(--radius); padding:32px 28px;
    scroll-snap-align:start; flex:0 0 calc((100% - 52px)/3); transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .test-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow); border-color:transparent; }
  .test-nav{ display:flex; align-items:center; justify-content:center; gap:18px; margin-top:32px; }
  .test-arrow{
    width:42px; height:42px; border-radius:50%; border:1.5px solid var(--line); background:var(--white);
    display:flex; align-items:center; justify-content:center; transition:background .2s ease, border-color .2s ease, transform .2s ease;
    flex-shrink:0;
  }
  .test-arrow svg{ width:17px; height:17px; color:var(--ink); }
  .test-arrow:hover{ background:var(--maroon); border-color:var(--maroon); transform:translateY(-2px); }
  .test-arrow:hover svg{ color:var(--white); }
  .test-dots{ display:flex; align-items:center; gap:8px; }
  .test-dot{ width:8px; height:8px; border-radius:50%; background:var(--line); border:none; transition:background .25s ease, transform .25s ease; }
  .test-dot.active{ background:var(--maroon); transform:scale(1.35); }
  @media (max-width:900px){ .test-card{ flex-basis:82%; } }
  .test-quote{ font-family:'Yatra One'; font-size:40px; color:var(--gold); line-height:0.6; margin-bottom:10px; display:block; }
  .test-card p{ font-size:14.5px; color:var(--ink-soft); margin-bottom:22px; min-height:96px; }
  .test-person{ display:flex; align-items:center; gap:12px; }
  .test-avatar{
    width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    font-family:'Fraunces'; font-weight:600; color:var(--white); font-size:15px;
  }
  .test-name{ font-size:13.5px; font-weight:600; }
  .test-loc{ font-size:12px; color:var(--ink-soft); }
  .test-stars{ display:flex; gap:3px; margin-top:4px; }
  .test-stars svg{ width:11px; height:11px; color:var(--gold-deep); }

  /* ================= NEWSLETTER ================= */
  .newsletter{ background:var(--cream-2); padding:80px 0; text-align:center; position:relative; }
  .newsletter h2{ font-size:clamp(26px,3vw,36px); margin-bottom:12px; }
  .newsletter p{ color:var(--ink-soft); margin-bottom:30px; }
  .nl-form{ display:flex; gap:12px; max-width:440px; margin:0 auto; }
  .nl-form input{
    flex:1; padding:15px 20px; border-radius:100px; border:1.5px solid var(--line); background:var(--white);
    font-family:inherit; font-size:14px; outline:none; transition:border-color .2s ease;
  }
  .nl-form input:focus{ border-color:var(--maroon); }
  .nl-note{ font-size:12px; color:var(--ink-soft); margin-top:16px; opacity:.8; }
  .nl-success{ color:var(--sage); font-weight:600; font-size:14px; margin-top:16px; display:none; }

  /* ================= FOOTER ================= */
  footer{ background:var(--maroon-deep); color:rgba(251,245,233,0.7); padding:76px 0 0; }
  .footer-grid{ display:grid; grid-template-columns:1.4fr repeat(3,1fr); gap:40px; padding-bottom:56px; border-bottom:1px solid rgba(251,245,233,0.12); }
  .footer-brand img{ height:48px; margin-bottom:16px; filter:brightness(0) invert(1) opacity(0.92); }
  .footer-brand p{ font-size:13.5px; max-width:260px; line-height:1.7; margin-bottom:20px; }
  .footer-socials{ display:flex; gap:10px; }
  .fs-btn{
    width:36px; height:36px; border-radius:50%; border:1px solid rgba(251,245,233,0.25);
    display:flex; align-items:center; justify-content:center; transition:background .2s ease, border-color .2s ease;
  }
  .fs-btn svg{ width:15px; height:15px; }
  .fs-btn:hover{ background:var(--gold); border-color:var(--gold); }
  .fs-btn:hover svg{ color:var(--maroon-deep); }
  .foot-col h5{ font-family:'Work Sans'; font-size:13px; text-transform:uppercase; letter-spacing:0.08em; color:var(--cream); margin-bottom:18px; font-weight:600; }
  .foot-col ul{ display:flex; flex-direction:column; gap:11px; }
  .foot-col a{ font-size:13.5px; transition:color .2s ease; }
  .foot-col a:hover{ color:var(--gold); }
  .foot-bottom{
    display:flex; justify-content:space-between; align-items:center; padding:26px 0; flex-wrap:wrap; gap:14px;
    font-size:12.5px;
  }
  .foot-bottom .devanagari{ color:var(--gold); font-size:15px; }

  /* ================= REVEAL ================= */
  .reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
  .reveal.in{ opacity:1; transform:translateY(0); }

  /* ================= RESPONSIVE ================= */
  @media (max-width:1080px){
    .cat-grid{ grid-template-columns:repeat(3,1fr); }
    .prod-grid{ grid-template-columns:repeat(2,1fr); }
    .hamper-sec{ grid-template-columns:1fr; }
    .hamper-visual{ height:360px; margin-top:20px; }
  }
  @media (max-width:900px){
    nav.main-nav{ display:none; }
    .menu-toggle{ display:flex; }
    .hero .wrap{ grid-template-columns:1fr; }
    .hero-visual{ height:380px; margin-top:20px; }
    .hero-mascot{ height:140px; }
  }
  @media (max-width:680px){
    .wrap{ padding:0 20px; }
    .section-pad{ padding:70px 0; }
    .cat-grid{ grid-template-columns:repeat(2,1fr); }
    .prod-grid{ grid-template-columns:1fr 1fr; gap:16px; }
    .footer-grid{ grid-template-columns:1fr 1fr; gap:32px; }
    .nl-form{ flex-direction:column; }
    .trust-row{ gap:16px 22px; }
    .hero-ctas .btn{ flex:1; }
    .foot-bottom{ flex-direction:column; text-align:center; }
    
    /* Header layout refinements on mobile to avoid stretching/overflow */
    .header-inner { padding: 10px 15px; gap: 12px; }
    .header-actions { gap: 8px; }
    .icon-btn { width: 34px; height: 34px; }
    .header-logout-btn, .header-profile-btn, .header-login-btn { display: none !important; }
    .brand img { height: 42px; }
  }
  @media (max-width:460px){
    .cat-grid{ grid-template-columns:1fr 1fr; }
    .prod-grid{ grid-template-columns:1fr 1fr; }
    .footer-grid{ grid-template-columns:1fr; }
  }

  /* mobile drawer */
  .mobile-nav{
    position:fixed; inset:0; background:var(--cream); z-index:200; padding:28px 28px;
    transform:translateX(100%); transition:transform .35s ease; display:flex; flex-direction:column;
    overflow-y:auto;
  }
  .mobile-nav.open{ transform:translateX(0); }
  .mobile-nav .close-btn{ align-self:flex-end; width:40px; height:40px; display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
  .mobile-nav a{ font-family:'Fraunces'; font-size:26px; padding:16px 0; border-bottom:1px solid var(--line); }
  .menu-toggle{ width:38px; height:38px; align-items:center; justify-content:center; border:none; background:none; }
  .menu-toggle svg{ width:22px; height:22px; }

  :focus-visible{ outline:2px solid var(--maroon); outline-offset:3px; }
