/* Yalla Kunafa — shared site stylesheet (multi-page architecture) */
:root{
  --maroon:#A81C1A;
  --maroon-dark:#6E1210;
  --crimson:#C41616;
  --gold:#C9962B;
  --gold-bright:#E9B923;
  --gold-tint:#F7E9C8;
  --cream:#FBF6EC;
  --paper:#FFFDF8;
  --ink:#1E1613;
  --charcoal:#3A2E29;
  --grey:#6E5F53;
  --line:rgba(30,22,19,.12);
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important;}
}
a,button{touch-action:manipulation;}
:focus-visible{outline:3px solid var(--gold-bright);outline-offset:2px;border-radius:4px;}
.skip-link{
  position:absolute;left:12px;top:-60px;background:var(--maroon);color:var(--cream);
  padding:12px 20px;border-radius:8px;font-family:'Montserrat',sans-serif;font-weight:700;
  font-size:14px;z-index:1000;transition:top .2s ease;
}
.skip-link:focus{top:12px;}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
.reveal{opacity:1;transform:none;}
html.reveal-ready .reveal{opacity:0;transform:translateY(22px);transition:opacity .6s ease-out,transform .6s ease-out;}
html.reveal-ready .reveal.is-visible{opacity:1;transform:translateY(0);}
.products-grid .product-card:nth-child(2),.why-grid .why-card:nth-child(2),.partner-grid .partner-card:nth-child(2),.blog-grid .blog-card:nth-child(2){transition-delay:.05s;}
.products-grid .product-card:nth-child(3),.why-grid .why-card:nth-child(3),.partner-grid .partner-card:nth-child(3),.blog-grid .blog-card:nth-child(3){transition-delay:.1s;}
.products-grid .product-card:nth-child(4),.why-grid .why-card:nth-child(4),.partner-grid .partner-card:nth-child(4){transition-delay:.15s;}
body{
  font-family:'Lato',sans-serif;
  background:var(--cream);
  color:var(--ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,.brand-font{font-family:'Montserrat',sans-serif;}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
.container{max-width:1180px;margin:0 auto;padding:0 24px;}
[hidden]{display:none!important;}

/* BREADCRUMBS */
.breadcrumbs{padding:16px 0 0;font-size:13px;color:var(--grey);}
.breadcrumbs ol{display:flex;flex-wrap:wrap;gap:6px;list-style:none;}
.breadcrumbs li{display:flex;align-items:center;gap:6px;}
.breadcrumbs li:not(:last-child)::after{content:"/";color:var(--line);margin-left:6px;}
.breadcrumbs a{color:var(--grey);font-weight:600;}
.breadcrumbs a:hover{color:var(--maroon);}
.breadcrumbs li[aria-current]{color:var(--maroon);font-weight:700;}

/* HEADER */
header{
  position:sticky;top:0;z-index:100;
  background:rgba(251,246,236,.94);
  backdrop-filter:saturate(160%) blur(8px);
  border-bottom:1px solid var(--line);
}
.nav-wrap{display:flex;align-items:center;justify-content:space-between;padding:14px 24px;gap:16px;}
.logo-mark{display:flex;align-items:center;gap:10px;flex-shrink:0;}
.logo-mark img{height:38px;width:auto;}
nav.main-nav{display:flex;align-items:center;gap:22px;flex-wrap:wrap;}
nav.main-nav a{
  font-family:'Montserrat',sans-serif;font-weight:600;font-size:14px;
  color:var(--charcoal);letter-spacing:.02em;
  transition:color .2s;
}
nav.main-nav a:hover,nav.main-nav a[aria-current]{color:var(--maroon);}
/* display:flex so the dropdown trigger sits on the same baseline as the plain
   nav links next to it (an inline-block wrapper was sitting a couple of px low). */
.has-dropdown{position:relative;display:flex;align-items:center;}
.has-dropdown .dropdown{
  position:absolute;top:calc(100% + 14px);left:50%;transform:translate(-50%,6px);
  background:var(--paper);border:1px solid var(--line);border-radius:12px;padding:8px;min-width:230px;
  box-shadow:0 20px 40px -16px rgba(30,22,19,.25);opacity:0;visibility:hidden;
  transition:opacity .15s ease,transform .15s ease;z-index:50;
}
.has-dropdown:hover .dropdown,.has-dropdown:focus-within .dropdown{opacity:1;visibility:visible;transform:translate(-50%,0);}
.has-dropdown .dropdown a{display:block;padding:10px 12px;border-radius:8px;font-size:13.5px;color:var(--charcoal);}
.has-dropdown .dropdown a:hover{background:var(--gold-tint);color:var(--maroon);}
.mobile-nav .submenu{display:flex;flex-direction:column;padding-left:14px;}
.mobile-nav .submenu a{font-weight:500;font-size:14px;padding:11px 4px;}
.mobile-nav .submenu-label{font-family:'Montserrat',sans-serif;font-weight:700;font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--grey);padding:14px 4px 2px;}
.header-actions{display:flex;align-items:center;gap:14px;flex-shrink:0;}
.lang-switch{
  display:flex;border:1.5px solid var(--maroon);border-radius:20px;overflow:hidden;
  font-family:'Montserrat',sans-serif;font-weight:700;font-size:12px;
}
.lang-switch a{
  padding:9px 14px;min-height:38px;display:flex;align-items:center;color:var(--maroon);
}
.lang-switch a.active{background:var(--maroon);color:var(--cream);}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-family:'Montserrat',sans-serif;font-weight:700;font-size:14px;
  padding:12px 26px;border-radius:30px;cursor:pointer;border:2px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{background:var(--maroon);color:var(--cream);box-shadow:0 6px 18px rgba(168,28,26,.28);}
.btn-primary:hover{background:var(--maroon-dark);}
.btn-gold{background:var(--gold);color:var(--ink);box-shadow:0 6px 18px rgba(201,150,43,.3);}
.btn-outline{border-color:var(--maroon);color:var(--maroon);background:transparent;}
.btn-outline:hover{background:var(--maroon);color:var(--cream);}
.btn-sm{padding:11px 20px;font-size:13px;min-height:40px;}
.menu-toggle{
  display:none;background:none;border:none;color:var(--maroon);cursor:pointer;
  width:44px;height:44px;align-items:center;justify-content:center;border-radius:8px;flex-shrink:0;
}
.menu-toggle svg{width:26px;height:26px;}
.mobile-nav{
  display:none;flex-direction:column;gap:2px;background:var(--paper);
  border-top:1px solid var(--line);padding:8px 24px 16px;
}
.mobile-nav.open{display:flex;}
.mobile-nav a{
  font-family:'Montserrat',sans-serif;font-weight:600;font-size:15px;color:var(--charcoal);
  padding:13px 4px;border-bottom:1px solid var(--line);min-height:44px;display:flex;align-items:center;
}
.mobile-nav a:last-child{border-bottom:none;}

/* HERO BANNER IMAGE (homepage EN only) — a single full-width static image that
   already contains its own top bar, nav, headline and CTA baked in, used in
   place of the coded header + .hero section for this page only. */
.hero-banner-section{line-height:0;}
.hero-banner-section img{width:100%;height:auto;display:block;}

/* HOME INTRO — real, indexable H1 + keyword text under the banner image (so the
   important headline and keywords live in the DOM as HTML, not only inside the
   banner picture). */
.home-intro{text-align:center;padding-top:48px;padding-bottom:8px;}
.home-intro h1{font-size:clamp(28px,4vw,44px);font-weight:800;color:var(--maroon);line-height:1.12;margin-bottom:18px;letter-spacing:-.01em;}
.home-intro .lead{font-size:18px;color:var(--charcoal);max-width:760px;margin:0 auto 16px;}
.home-intro p{font-size:16px;color:var(--charcoal);max-width:760px;margin:0 auto 16px;}
.home-intro p a{color:var(--maroon);text-decoration:underline;}
.home-intro .hero-ctas{justify-content:center;margin-top:26px;}

/* HERO (homepage) */
.hero{
  position:relative;padding:64px 0 80px;
  background:radial-gradient(circle at 85% 20%, var(--gold-tint) 0%, transparent 45%),
             linear-gradient(180deg, var(--cream) 0%, #F6EEDD 100%);
  overflow:hidden;
}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:48px;align-items:center;}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'Montserrat',sans-serif;font-weight:700;font-size:12px;letter-spacing:.12em;
  color:var(--maroon);background:var(--gold-tint);padding:7px 16px;border-radius:20px;
  margin-bottom:18px;text-transform:uppercase;
}
.hero h1{font-size:clamp(34px,5vw,58px);font-weight:800;color:var(--maroon);line-height:1.08;margin-bottom:18px;letter-spacing:-.01em;}
.hero p.lead{font-size:18px;color:var(--charcoal);max-width:540px;margin-bottom:30px;}
.hero-ctas{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:36px;}
.trust-chips{display:flex;flex-wrap:wrap;gap:10px;}
.chip{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--paper);border:1px solid var(--line);border-radius:20px;
  padding:8px 14px;font-size:13px;font-weight:600;color:var(--charcoal);
  font-family:'Montserrat',sans-serif;
}
.chip .star{color:var(--gold);}
.hero-visual{position:relative;display:flex;justify-content:center;}
.hero-visual .ring{
  position:absolute;width:420px;height:420px;border-radius:50%;
  background:radial-gradient(circle, rgba(201,150,43,.22) 0%, transparent 70%);
  top:50%;left:50%;transform:translate(-50%,-50%);
}
.hero-visual .seal-panel{
  position:relative;width:340px;max-width:100%;aspect-ratio:1/1;border-radius:50%;
  background:radial-gradient(circle at 35% 30%, #fff 0%, var(--gold-tint) 45%, var(--cream) 100%);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 30px 60px -20px rgba(30,22,19,.35), inset 0 0 0 8px var(--paper), inset 0 0 0 10px var(--gold);
}
.hero-visual .seal-panel img{max-width:68%;height:auto;}
.hero-pill{
  position:absolute;bottom:6px;left:50%;transform:translateX(-50%);
  background:var(--maroon);color:var(--cream);border-radius:30px;padding:10px 22px;
  font-family:'Montserrat',sans-serif;font-weight:700;font-size:13px;white-space:nowrap;
  box-shadow:0 10px 24px rgba(168,28,26,.4);border:2px solid var(--gold);
}

/* PAGE HERO (inner pages: products/wholesale/export/contact/blog) */
.page-hero{
  padding:34px 0 54px;
  background:radial-gradient(circle at 88% 10%, var(--gold-tint) 0%, transparent 45%),
             linear-gradient(180deg, var(--cream) 0%, #F6EEDD 100%);
  border-bottom:1px solid var(--line);
}
.page-hero .inner{display:grid;grid-template-columns:1.2fr .8fr;gap:40px;align-items:center;}
.page-hero h1{font-size:clamp(30px,4.4vw,46px);font-weight:800;color:var(--maroon);line-height:1.1;margin-bottom:14px;}
.page-hero p.lead{font-size:17px;color:var(--charcoal);max-width:560px;margin-bottom:22px;}
.page-hero .media{
  border-radius:18px;overflow:hidden;aspect-ratio:4/3;box-shadow:0 24px 50px -18px rgba(30,22,19,.3);
  background:var(--gold-tint);
}
.page-hero .media img{width:100%;height:100%;object-fit:cover;}
.media.icon-media{display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg, var(--gold-tint), var(--cream));}
.media.icon-media svg{width:110px;height:110px;color:var(--maroon);}
.page-hero-ctas{display:flex;gap:14px;flex-wrap:wrap;}

/* SIZE TAG */
.size-tag{
  display:inline-flex;align-items:center;gap:6px;background:var(--gold-tint);color:var(--maroon-dark);
  font-family:'Montserrat',sans-serif;font-weight:700;font-size:12px;padding:6px 12px;border-radius:16px;
  margin-bottom:12px;
}

/* TRUST STRIP + EXPORT BAND */
.trust-strip{background:var(--paper);border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:30px 0;}
.trust-strip-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:34px;margin-bottom:26px;}
.trust-badge{display:flex;align-items:center;gap:10px;}
.trust-badge .ic{width:38px;height:38px;border-radius:50%;background:var(--gold-tint);color:var(--maroon);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.trust-badge .ic svg{width:19px;height:19px;}
.trust-badge span{font-family:'Montserrat',sans-serif;font-weight:700;font-size:13px;color:var(--charcoal);white-space:nowrap;}
.export-row{display:flex;align-items:center;justify-content:center;gap:18px;flex-wrap:wrap;padding-top:22px;border-top:1px solid var(--line);}
.export-label{font-family:'Montserrat',sans-serif;font-weight:800;font-size:12px;letter-spacing:.14em;color:var(--maroon);text-transform:uppercase;white-space:nowrap;}
.export-flags{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:16px 22px;}
.export-flag{display:flex;align-items:center;gap:8px;font-family:'Montserrat',sans-serif;font-weight:600;font-size:13px;color:var(--charcoal);}
.export-flag a.export-flag{color:var(--charcoal);}
.export-flag a.export-flag:hover{color:var(--maroon);}
.export-flag .flag{width:26px;height:18px;flex-shrink:0;border-radius:3px;overflow:hidden;box-shadow:0 0 0 1px var(--line);display:inline-block;}
.export-flag .flag svg{display:block;width:100%;height:100%;}

/* PARTNER / B2B BAND */
.partner-band{
  background:linear-gradient(135deg, var(--charcoal) 0%, var(--ink) 100%);
  border-radius:28px;padding:56px 48px;color:var(--cream);position:relative;overflow:hidden;
}
.partner-band::after{content:"";position:absolute;width:360px;height:360px;border-radius:50%;background:radial-gradient(circle, rgba(201,150,43,.22), transparent 70%);bottom:-140px;left:-100px;}
.partner-head{max-width:640px;margin:0 auto 40px;text-align:center;position:relative;z-index:1;}
.partner-head h2{color:var(--cream);font-size:clamp(26px,3.4vw,36px);font-weight:800;margin-bottom:12px;}
.partner-head p{color:#D8CBC0;font-size:16px;}
.partner-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;position:relative;z-index:1;margin-bottom:36px;}
.partner-card{text-align:center;padding:8px;}
.partner-card .ic{width:56px;height:56px;border-radius:50%;background:rgba(251,246,236,.1);color:var(--gold-bright);display:flex;align-items:center;justify-content:center;margin:0 auto 16px;border:1px solid rgba(251,246,236,.2);}
.partner-card .ic svg{width:26px;height:26px;}
.partner-card h3{font-size:15px;font-weight:800;margin-bottom:8px;color:var(--paper);}
.partner-card p{font-size:13px;color:#C9BDB2;}
.partner-cta{display:flex;justify-content:center;position:relative;z-index:1;}

/* SECTION HEADINGS */
.section{padding:80px 0;}
.section-sm{padding:56px 0;}
.section-alt{background:var(--paper);}
.section-head{max-width:680px;margin:0 auto 44px;text-align:center;}
.section-head.left{margin:0 0 32px;text-align:left;max-width:none;}
.section-head .eyebrow{margin-bottom:14px;}
.section-head h2{font-size:clamp(26px,3.4vw,38px);font-weight:800;color:var(--maroon);margin-bottom:14px;}
.section-head p{color:var(--grey);font-size:16px;}

/* ABOUT */
.about-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:56px;align-items:center;}
.about-grid h2{font-size:clamp(26px,3.2vw,36px);font-weight:800;color:var(--maroon);margin-bottom:18px;}
.about-grid p{color:var(--charcoal);font-size:16px;margin-bottom:16px;}
.about-stats{display:flex;gap:32px;margin-top:28px;flex-wrap:wrap;}
.stat b{display:block;font-family:'Montserrat',sans-serif;font-size:30px;font-weight:800;color:var(--maroon);}
.stat span{font-size:13px;color:var(--grey);font-weight:600;}
.about-photo{position:relative;}
.about-visual{
  width:100%;aspect-ratio:3/4;border-radius:18px;box-shadow:0 24px 50px -18px rgba(30,22,19,.3);
  background:linear-gradient(160deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;
}
.about-visual::before{content:"";position:absolute;inset:14px;border:1.5px solid rgba(251,246,236,.28);border-radius:12px;z-index:1;pointer-events:none;}
.about-visual svg{width:56%;height:56%;position:relative;z-index:1;}
.about-visual img{width:100%;height:100%;object-fit:cover;}

/* PRODUCTS GRID (homepage / wholesale) */
.products-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
.product-card{background:var(--paper);border:1px solid var(--line);border-radius:18px;overflow:hidden;display:flex;flex-direction:column;transition:transform .2s, box-shadow .2s;}
.product-card:hover{transform:translateY(-6px);box-shadow:0 20px 40px -16px rgba(30,22,19,.22);}
.product-card .media{height:180px;background:var(--gold-tint);display:flex;align-items:center;justify-content:center;overflow:hidden;position:relative;}
.product-card .media img{width:100%;height:100%;object-fit:cover;}
.product-card .media.icon-media{background:linear-gradient(135deg, var(--gold-tint), var(--cream));}
.product-card .media.icon-media svg{width:64px;height:64px;color:var(--maroon);}
.product-card .body{padding:22px;flex:1;display:flex;flex-direction:column;}
.product-card h3{font-size:18px;font-weight:800;color:var(--maroon);margin-bottom:10px;}
.product-card h3 a{color:inherit;}
.product-card h3 a:hover{text-decoration:underline;}
.product-card p{font-size:14px;color:var(--charcoal);flex:1;margin-bottom:16px;}
.product-card .cta-row{display:flex;gap:8px;flex-wrap:wrap;margin-top:auto;}
.product-card .cta-row .btn{flex:1 1 auto;padding:10px 14px;font-size:12.5px;white-space:nowrap;}
.product-card .media img{transition:opacity .22s ease;}

/* KUNAFA DOUGH FLAVOR SWATCHES — hover-reveal mini previews under the Kunafa
   Dough card only. Same visual language as the header nav dropdown: an
   absolutely-positioned panel that fades/slides in, so it never pushes the
   products grid layout around. On touch devices (no real hover) the panel
   is shown small and always-on beneath the card instead. */
/* .flavor-host wraps the Kunafa Dough card + its swatch panel together (see
   render.py). It — not the card itself — is what gets position:relative and
   the :hover trigger, because the card has overflow:hidden (for its rounded
   product photo) which would otherwise clip the panel below it. */
.flavor-host{position:relative;}
.flavor-swatches{
  position:absolute;left:10px;right:10px;top:100%;margin-top:8px;
  display:flex;gap:6px;flex-wrap:wrap;justify-content:center;
  background:var(--paper);border:1px solid var(--line);border-radius:14px;
  padding:10px 8px;box-shadow:0 20px 40px -16px rgba(30,22,19,.25);
  opacity:0;visibility:hidden;transform:translateY(6px);
  transition:opacity .25s ease,transform .25s ease,visibility .25s;
  z-index:40;
}
@media (hover:hover) and (pointer:fine){
  .flavor-host:hover .flavor-swatches,
  .flavor-host:focus-within .flavor-swatches{
    opacity:1;visibility:visible;transform:translateY(0);
  }
}
@media (hover:none),(pointer:coarse){
  .flavor-swatches{
    position:static;opacity:1;visibility:visible;transform:none;margin:14px 0 0;
    box-shadow:none;border:none;border-top:1px solid var(--line);border-radius:0;
    padding:12px 0 0;gap:10px;
  }
}
.flavor-swatch{
  display:flex;flex-direction:column;align-items:center;gap:4px;
  background:none;border:2px solid transparent;border-radius:10px;padding:3px;
  cursor:pointer;transition:border-color .2s ease,transform .2s ease;position:relative;
}
.flavor-swatch img{width:40px;height:40px;border-radius:8px;object-fit:cover;display:block;}
.flavor-swatch:hover,.flavor-swatch:focus-visible{transform:translateY(-2px);}
.flavor-swatch.active{border-color:var(--gold);}
.flavor-swatch .swatch-label{
  position:absolute;bottom:calc(100% + 6px);left:50%;transform:translateX(-50%);
  background:var(--maroon);color:var(--cream);font-family:'Montserrat',sans-serif;font-weight:700;
  font-size:11px;line-height:1;white-space:nowrap;padding:5px 9px;border-radius:6px;
  opacity:0;visibility:hidden;transition:opacity .15s ease;pointer-events:none;z-index:5;
}
.flavor-swatch:hover .swatch-label,.flavor-swatch:focus-visible .swatch-label{opacity:1;visibility:visible;}
@media (hover:none),(pointer:coarse){
  .flavor-swatch{padding:4px;gap:5px;}
  .flavor-swatch img{width:46px;height:46px;}
  .flavor-swatch .swatch-label{
    position:static;opacity:1;visibility:visible;background:none;color:var(--charcoal);
    font-size:10.5px;font-weight:600;padding:0;white-space:nowrap;text-align:center;line-height:1.2;max-width:none;
  }
}

/* WHY US */
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.why-card{text-align:center;padding:32px 20px;}
.why-card .ic{width:64px;height:64px;border-radius:50%;background:var(--gold-tint);color:var(--maroon);display:flex;align-items:center;justify-content:center;margin:0 auto 18px;}
.why-card .ic svg{width:30px;height:30px;}
.why-card h3{font-size:16px;font-weight:800;color:var(--ink);margin-bottom:8px;}
.why-card p{font-size:14px;color:var(--grey);}

/* PROCESS / HOW IT'S MADE */
.process-wrap{position:relative;}
.process-line{position:absolute;top:34px;left:60px;right:60px;height:2px;background:linear-gradient(90deg, var(--gold) 0%, var(--maroon) 100%);transform:scaleX(0);transform-origin:left;}
html.reveal-ready .process-line{transition:transform 1s ease-out .1s;}
html.reveal-ready .process-line.is-visible{transform:scaleX(1);}
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;position:relative;z-index:1;}
.process-step{text-align:center;padding:0 10px;}
.process-step .num{width:68px;height:68px;border-radius:50%;background:var(--paper);border:2px solid var(--gold);color:var(--maroon);font-family:'Montserrat',sans-serif;font-weight:800;font-size:14px;display:flex;align-items:center;justify-content:center;margin:0 auto 18px;position:relative;box-shadow:0 10px 24px -10px rgba(30,22,19,.25);}
.process-step .num svg{width:26px;height:26px;}
.process-step h3{font-size:16px;font-weight:800;color:var(--ink);margin-bottom:8px;}
.process-step p{font-size:13.5px;color:var(--grey);}
.process-grid .process-step:nth-child(2){transition-delay:.08s;}
.process-grid .process-step:nth-child(3){transition-delay:.16s;}
.process-grid .process-step:nth-child(4){transition-delay:.24s;}
.process-note{max-width:640px;margin:34px auto 0;text-align:center;font-size:13px;color:var(--grey);background:var(--gold-tint);border-radius:14px;padding:14px 20px;}

/* FAQ */
.faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:14px;}
.faq-item{background:var(--paper);border:1px solid var(--line);border-radius:16px;overflow:hidden;}
.faq-q{width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:20px 24px;background:none;border:none;cursor:pointer;text-align:left;font-family:'Montserrat',sans-serif;font-weight:700;font-size:15.5px;color:var(--ink);}
.faq-q .chev{flex-shrink:0;width:22px;height:22px;color:var(--maroon);transition:transform .25s ease;}
.faq-item.open .faq-q .chev{transform:rotate(180deg);}
.faq-a-wrap{display:grid;grid-template-rows:0fr;transition:grid-template-rows .3s ease;overflow:hidden;}
.faq-item.open .faq-a-wrap{grid-template-rows:1fr;}
.faq-a-inner{overflow:hidden;}
.faq-a{padding:0 24px 20px;font-size:14.5px;color:var(--charcoal);line-height:1.65;}

/* INTERNAL LINK CARDS (related pages) */
.link-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.link-card{display:block;background:var(--paper);border:1px solid var(--line);border-radius:16px;padding:24px;transition:transform .2s,box-shadow .2s;}
.link-card:hover{transform:translateY(-4px);box-shadow:0 16px 32px -16px rgba(30,22,19,.2);}
.link-card h3{font-size:16px;font-weight:800;color:var(--maroon);margin-bottom:8px;}
.link-card p{font-size:13.5px;color:var(--grey);margin-bottom:0;}

/* PROSE (blog articles, contact/legal-style text) */
.prose{max-width:720px;margin:0 auto;font-size:16px;color:var(--charcoal);}
.prose h2{font-size:24px;font-weight:800;color:var(--maroon);margin:36px 0 14px;}
.prose h2:first-child{margin-top:0;}
.prose h3{font-size:18px;font-weight:800;color:var(--ink);margin:26px 0 10px;}
.prose p{margin-bottom:16px;}
.prose ul,.prose ol{margin:0 0 16px 22px;}
.prose li{margin-bottom:8px;}
.prose a{color:var(--maroon);font-weight:700;text-decoration:underline;text-decoration-color:var(--gold);}
.prose strong{color:var(--ink);}
.article-meta{display:flex;gap:12px;align-items:center;color:var(--grey);font-size:13px;font-family:'Montserrat',sans-serif;font-weight:600;margin-bottom:8px;}
.article-header{max-width:720px;margin:0 auto 32px;}
.article-header h1{font-size:clamp(28px,4vw,40px);font-weight:800;color:var(--maroon);line-height:1.15;margin-bottom:10px;}

/* BLOG LISTING */
.blog-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;}
.blog-card{background:var(--paper);border:1px solid var(--line);border-radius:18px;padding:26px;display:flex;flex-direction:column;transition:transform .2s,box-shadow .2s;}
.blog-card:hover{transform:translateY(-4px);box-shadow:0 16px 32px -16px rgba(30,22,19,.2);}
.blog-card .tag{font-family:'Montserrat',sans-serif;font-weight:700;font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--maroon);margin-bottom:10px;}
.blog-card h3{font-size:19px;font-weight:800;color:var(--ink);margin-bottom:10px;line-height:1.3;}
.blog-card p{font-size:14px;color:var(--grey);flex:1;margin-bottom:16px;}
.blog-note{max-width:640px;margin:44px auto 0;text-align:center;font-size:13px;color:var(--grey);background:var(--gold-tint);border-radius:14px;padding:14px 20px;}

/* CONTACT / FOOTER */
.contact-band{
  background:linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  border-radius:28px;padding:60px 48px;color:var(--cream);
  display:grid;grid-template-columns:1.2fr .8fr;gap:40px;align-items:center;
  position:relative;overflow:hidden;
}
.contact-band::after{content:"";position:absolute;width:320px;height:320px;border-radius:50%;background:radial-gradient(circle, rgba(201,150,43,.25), transparent 70%);top:-100px;right:-80px;}
.contact-band h2{font-size:clamp(26px,3.4vw,36px);font-weight:800;margin-bottom:16px;}
.contact-band p{color:var(--gold-tint);font-size:16px;margin-bottom:0;max-width:460px;}
.contact-actions{display:flex;flex-direction:column;gap:14px;position:relative;z-index:1;}
.contact-row{display:flex;align-items:center;gap:12px;font-family:'Montserrat',sans-serif;font-weight:600;font-size:15px;}
.contact-row svg{width:20px;height:20px;flex-shrink:0;color:var(--gold);}
footer{padding:40px 0;text-align:center;color:var(--grey);font-size:13px;}
footer .foot-logo{height:26px;margin:0 auto 12px;opacity:.8;}
footer .foot-nav{display:flex;justify-content:center;gap:18px;flex-wrap:wrap;margin-bottom:16px;font-family:'Montserrat',sans-serif;font-weight:600;font-size:13px;}
footer .foot-address{font-style:normal;font-size:13px;line-height:1.7;margin-bottom:16px;opacity:.9;}
footer .foot-address a{text-decoration:none;}
footer .foot-address a:hover{text-decoration:underline;}
footer .foot-address span{margin:0 8px;opacity:.5;}
@media (max-width:560px){footer .foot-address span{display:block;height:0;margin:0;overflow:hidden;}}
footer .foot-nav a{color:var(--charcoal);}
footer .foot-nav a:hover{color:var(--maroon);}
.social-row{display:flex;justify-content:center;gap:12px;margin:0 0 18px;}
.social-row a{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%;background:rgba(30,22,19,.06);color:var(--charcoal);transition:background .2s ease,color .2s ease,transform .15s ease;}
.social-row a:hover{background:var(--maroon);color:var(--cream);transform:translateY(-2px);}
.social-row svg{width:19px;height:19px;}
footer .foot-links{margin-top:6px;}

/* CONTACT PAGE */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;}
.contact-info-card{background:var(--paper);border:1px solid var(--line);border-radius:18px;padding:32px;}
.contact-info-card h2{font-size:20px;font-weight:800;color:var(--maroon);margin-bottom:16px;}
.contact-method{display:flex;align-items:center;gap:14px;padding:14px 0;border-bottom:1px solid var(--line);}
.contact-method:last-child{border-bottom:none;}
.contact-method .ic{width:42px;height:42px;border-radius:50%;background:var(--gold-tint);color:var(--maroon);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.contact-method .ic svg{width:20px;height:20px;}
.contact-method a,.contact-method span.val{font-weight:700;color:var(--ink);}

/* 404 */
.error-page{min-height:60vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:80px 24px;}
.error-page .code{font-family:'Montserrat',sans-serif;font-weight:800;font-size:clamp(60px,12vw,120px);color:var(--gold);line-height:1;}
.error-page h1{font-size:clamp(24px,4vw,32px);color:var(--maroon);margin:12px 0 14px;}
.error-page p{color:var(--grey);margin-bottom:26px;}
.error-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;}

/* WHATSAPP FAB */
.wa-fab{position:fixed;bottom:22px;right:22px;z-index:200;background:#25D366;color:#fff;width:58px;height:58px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 10px 24px rgba(37,211,102,.45);}
.wa-fab svg{width:28px;height:28px;}

/* CART */
.cart-toggle{position:relative;display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:10px;background:none;border:none;color:var(--maroon);cursor:pointer;flex-shrink:0;}
.cart-toggle svg{width:22px;height:22px;}
.cart-badge{position:absolute;top:0;right:0;background:var(--maroon);color:var(--cream);font-family:'Montserrat',sans-serif;font-weight:700;font-size:10px;line-height:1;min-width:17px;height:17px;border-radius:9px;display:flex;align-items:center;justify-content:center;padding:0 3px;border:2px solid var(--paper);}
.cart-backdrop{position:fixed;inset:0;background:rgba(30,22,19,.45);z-index:299;opacity:0;visibility:hidden;transition:opacity .2s ease;}
.cart-backdrop.open{opacity:1;visibility:visible;}
.cart-drawer{position:fixed;top:0;right:0;height:100%;width:min(380px,92vw);background:var(--paper);z-index:300;box-shadow:-20px 0 50px -20px rgba(30,22,19,.35);transform:translateX(100%);transition:transform .25s ease;display:flex;flex-direction:column;}
.cart-drawer.open{transform:translateX(0);}
.cart-drawer-head{display:flex;align-items:center;justify-content:space-between;padding:20px 22px;border-bottom:1px solid var(--line);flex-shrink:0;}
.cart-drawer-head h2{font-size:18px;color:var(--maroon);font-weight:800;}
.cart-close{background:none;border:none;color:var(--charcoal);cursor:pointer;width:36px;height:36px;display:flex;align-items:center;justify-content:center;border-radius:8px;flex-shrink:0;}
.cart-close svg{width:20px;height:20px;}
.cart-items{flex:1;overflow-y:auto;padding:6px 22px;}
.cart-empty{color:var(--grey);font-size:14px;padding:30px 0;text-align:center;}
.cart-item{display:flex;gap:12px;align-items:flex-start;padding:16px 0;border-bottom:1px solid var(--line);}
.cart-item .ci-name{font-family:'Montserrat',sans-serif;font-weight:700;font-size:14px;color:var(--charcoal);flex:1;}
.cart-item .ci-qty{display:flex;align-items:center;gap:10px;margin-top:8px;}
.cart-item .ci-qty button{width:26px;height:26px;border-radius:7px;border:1px solid var(--line);background:var(--cream);color:var(--maroon);font-weight:700;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:14px;}
.cart-item .ci-qty span{font-weight:700;font-size:13px;min-width:16px;text-align:center;}
.cart-item .ci-remove{background:none;border:none;color:var(--grey);cursor:pointer;font-size:12px;text-decoration:underline;padding:0;margin-top:8px;}
.cart-footer{padding:16px 22px 22px;border-top:1px solid var(--line);flex-shrink:0;}
.cart-note{font-size:12px;color:var(--grey);margin-bottom:14px;line-height:1.5;}
.cart-checkout{width:100%;}
body.cart-open{overflow:hidden;}

/* RESPONSIVE */
@media (max-width:980px){
  .hero-grid,.page-hero .inner,.about-grid,.contact-grid{grid-template-columns:1fr;}
  .hero-visual,.page-hero .media{order:-1;margin-bottom:12px;}
  .products-grid,.why-grid,.partner-grid,.blog-grid,.link-cards{grid-template-columns:repeat(2,1fr);}
  .partner-band{padding:40px 26px;}
  .contact-band{grid-template-columns:1fr;padding:40px 26px;text-align:center;}
  .contact-row{justify-content:center;}
  nav.main-nav{display:none;}
  .menu-toggle{display:flex;}
  .process-grid{grid-template-columns:repeat(2,1fr);row-gap:36px;}
  .process-line{display:none;}
  .trust-strip-grid{gap:22px;}
  .export-row{flex-direction:column;gap:12px;}
}
@media (max-width:520px){
  .products-grid,.why-grid,.partner-grid,.process-grid,.blog-grid,.link-cards{grid-template-columns:1fr;}
  .hero-ctas,.page-hero-ctas{flex-direction:column;align-items:stretch;}
  .hero-ctas .btn,.page-hero-ctas .btn{width:100%;}
  .faq-q{padding:16px 18px;font-size:14.5px;}
  .faq-a{padding:0 18px 16px;}
}
@media (max-width:600px){
  /* The floating WhatsApp button already covers this action, so the header
     text button is hidden here to make room for the cart icon and avoid
     horizontal overflow on narrow phones. */
  .header-actions > a.btn-primary{display:none;}
}
