/* ================================================================
   AJWA ORGANICS — STYLESHEET
   ------------------------------------------------------------
   Single shared stylesheet for the whole site, not just this
   page. Design tokens live in :root (section 1) — change a
   value once and it propagates everywhere, including pages that
   don't exist yet.

   Sections load in cascade order. Section 14 (bilingual/RTL) is
   appended last on purpose, so its rules can safely override
   the LTR component defaults above without specificity fights.

   Used by: index.html today, and every future page in the site
   (checkout.html, our-story.html, blog.html, blog articles,
   policy pages...). Don't fork this file per page — extend it
   here so the whole site stays visually consistent for free.
   ================================================================ */

  /* ============================================================
     0. RESET
  ============================================================ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  ul { list-style: none; }
  button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
  input { font: inherit; }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  }

  /* ============================================================
     1. DESIGN TOKENS — palette sourced from the approved swatches
        (deep olive / forest / sage / moss / stone / cream + honey accent)
  ============================================================ */
  :root {
    --c-cream:        #FAF6EA;
    --c-cream-soft:   #F2ECD9;
    --c-paper:        #FFFDF8;
    --c-stone:        #DCCFAA;
    --c-sand:         #E7DFB9;
    --c-moss-light:   #C3CD9B;
    --c-sage:         #93A874;
    --c-moss:         #7C9660;
    --c-forest:       #54693F;
    --c-forest-dark:  #435334;
    --c-olive:        #364129;
    --c-olive-dark:   #262E1D;
    --c-honey:        #B9863F;
    --c-honey-light:  #E9C98B;
    --c-honey-soft:   #F3E6C8;
    --c-ink:          #2B3322;
    --c-ink-soft:     #5B6552;
    --c-cream-ink:    #F4EFE2;
    --c-line:         rgba(54,65,41,0.14);
    --c-line-light:   rgba(250,246,234,0.18);

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --shadow-soft: 0 28px 54px -30px rgba(38,46,29,0.4);
    --shadow-tight: 0 12px 26px -16px rgba(38,46,29,0.32);
    --shadow-card: 0 1px 0 rgba(54,65,41,0.04), 0 16px 32px -22px rgba(38,46,29,0.28);

    --container-w: 1248px;
    --ease: cubic-bezier(.22,.61,.36,1);
  }

  /* ============================================================
     2. BASE TYPOGRAPHY
  ============================================================ */
  body {
    font-family: var(--font-body);
    background: var(--c-cream);
    color: var(--c-ink);
    line-height: 1.5; /* Baseline layout snap factor */
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--c-ink);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.01em;
  }

  p { color: var(--c-ink-soft); }

  a:focus-visible,
  button:focus-visible,
  input:focus-visible {
    outline: 2px solid var(--c-forest);
    outline-offset: 3px;
    border-radius: 4px;
  }

  .skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--c-olive);
    color: var(--c-cream);
    padding: 12px 20px;
    z-index: 999;
    border-radius: 0 0 8px 0;
  }
  .skip-link:focus { left: 0; }

  /* ============================================================
     3. LAYOUT UTILITIES
  ============================================================ */
  .container {
    width: 100%;
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 24px;
  }
  @media (min-width: 768px)  { .container { padding: 0 40px; } }
  @media (min-width: 1280px) { .container { padding: 0 60px; } }

  .section { padding: 96px 0; }
  .section--tight { padding: 72px 0; }
  @media (max-width: 768px) {
    .section { padding: 72px 0; }
    .section--tight { padding: 48px 0; }
  }

  .section-head {
    max-width: 640px;
    margin-bottom: 48px;
  }
  .section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-moss);
    margin-bottom: 12px;
  }
  .eyebrow .icon { width: 15px; height: 15px; color: var(--c-honey); flex-shrink: 0; }
  .section-head--center .eyebrow { justify-content: center; }

  .section-head h2 {
    font-size: clamp(1.9rem, 1.3vw + 1.5rem, 2.7rem);
    margin-bottom: 16px;
  }
  .section-head p { font-size: 1.05rem; max-width: 52ch; }
  .section-head--center p { margin-left: auto; margin-right: auto; }

  .icon { width: 22px; height: 22px; stroke: currentColor; }

  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
  }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }

  /* ============================================================
     4. BUTTONS
  ============================================================ */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    padding: 15px 30px;
    border-radius: var(--radius-sm);
    transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
    white-space: nowrap;
  }
  .btn .icon { 
    width: 17px; 
    height: 17px; 
    transform: translateY(-0.5px); /* Optical vertical alignment offset */
  }

  .btn--primary {
    background: var(--c-forest);
    color: var(--c-cream);
    box-shadow: var(--shadow-tight);
  }
  .btn--primary:hover { background: var(--c-forest-dark); transform: translateY(-2px); box-shadow: var(--shadow-soft); }

  .btn--outline {
    background: transparent;
    color: var(--c-olive);
    border: 1.5px solid var(--c-line);
  }
  .btn--outline:hover { border-color: var(--c-forest); background: rgba(84,105,63,0.06); }

  .btn--outline-light {
    background: transparent;
    color: var(--c-cream);
    border: 1.5px solid var(--c-line-light);
  }
  .btn--outline-light:hover { border-color: var(--c-honey-light); background: rgba(250,246,234,0.08); }

  .btn--whatsapp {
    background: var(--c-olive);
    color: var(--c-cream);
    border-radius: var(--radius-pill);
    padding: 11px 22px 11px 18px;
    font-size: 0.88rem;
  }
  .btn--whatsapp:hover { background: var(--c-olive-dark); transform: translateY(-1px); }
  .btn--whatsapp .icon { color: var(--c-honey-light); }
  .btn--whatsapp .wa-short { display: none; }

  .btn--block { width: 100%; }
  .btn--sm { padding: 11px 20px; font-size: 0.86rem; }

  /* ============================================================
     5. ANNOUNCEMENT BAR
  ============================================================ */
  .announcement {
    background: var(--c-olive);
    color: var(--c-cream-ink);
  }
  .announcement .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 4px;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    text-align: center;
  }
  .announcement strong { color: var(--c-honey-light); font-weight: 600; }
  .announcement .icon { width: 14px; height: 14px; color: var(--c-honey-light); flex-shrink: 0; }

  /* ============================================================
     6. HEADER
  ============================================================ */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250,246,234,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease);
  }
  .site-header.is-scrolled {
    background: var(--c-cream);
    border-bottom-color: var(--c-line);
    box-shadow: 0 8px 24px -20px rgba(38,46,29,0.4);
  }
  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 84px;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  .brand .icon { width: 28px; height: 28px; color: var(--c-forest); }
  .brand-word {
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--c-olive);
    text-transform: uppercase;
  }

  .main-nav { display: none; }
  .main-nav ul { display: flex; align-items: center; gap: 36px; }
  .main-nav a {
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--c-ink-soft);
    position: relative;
    padding: 6px 0;
    transition: color .2s var(--ease);
  }
  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 1.5px;
    background: var(--c-honey);
    transition: right .3s var(--ease);
  }
  .main-nav a:hover { color: var(--c-olive); }
  .main-nav a:hover::after { right: 0; }

  .header-actions { display: flex; align-items: center; gap: 18px; }
  .icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    color: var(--c-olive);
    border-radius: var(--radius-pill);
    transition: background .2s var(--ease);
  }
  .icon-btn:hover { background: var(--c-cream-soft); }
  .icon-btn .icon { width: 21px; height: 21px; }

  .nav-toggle {
    display: inline-flex;
    width: 38px; height: 38px;
    align-items: center; justify-content: center;
    color: var(--c-olive);
  }
  .nav-toggle .icon { width: 24px; height: 24px; }
  .nav-toggle .icon-close { display: none; }

  .mobile-nav {
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--c-cream);
    z-index: 99;
    padding: 28px 24px 40px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
    overflow-y: auto;
  }
  .mobile-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
  .mobile-nav a {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    padding: 14px 4px;
    border-bottom: 1px solid var(--c-line);
    color: var(--c-olive);
  }
  .mobile-nav .btn { margin-top: 28px; }

  body.nav-open .nav-toggle .icon-menu { display: none; }
  body.nav-open .nav-toggle .icon-close { display: block; }
  body.nav-open { overflow: hidden; }

  @media (min-width: 1024px) {
    .main-nav { display: block; }
    .mobile-nav, .nav-toggle { display: none; }
  }

  /* ============================================================
     7. HERO
  ============================================================ */
  .hero {
    position: relative;
    background: var(--c-cream);
    overflow: hidden;
    padding: 72px 0 96px;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--c-stone) 1.3px, transparent 1.3px);
    background-size: 28px 28px;
    opacity: 0.35;
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 75%);
    mask-image: linear-gradient(to bottom, black, transparent 75%);
    pointer-events: none;
  }
  .hero .container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
  }
  @media (min-width: 1024px) {
    .hero .container { grid-template-columns: 1.05fr 1fr; gap: 48px; }
  }

  .hero-copy {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy .eyebrow {
    margin-bottom: 12px;
  }

  .hero-title {
    display: flex;
    flex-direction: column;
    gap: 6px; /* Bypasses font baseline estimation to standardize inter-line rhythm gap */
    font-size: clamp(2.5rem, 3.3vw + 1.6rem, 4.1rem);
    line-height: 1; /* Locked baseline values */
    margin-bottom: 24px;
  }
  .hero-title span { display: block; }
  .hero-title .accent {
    font-style: italic;
    font-weight: 400;
    color: var(--c-honey);
  }
  .hero-title .weight { font-weight: 600; }

  .hero-sub {
    font-size: 1.08rem;
    line-height: 1.6;
    max-width: 46ch;
    margin-bottom: 36px;
  }

  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
  }

  .trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
  }
  .trust-point {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--c-ink-soft);
  }
  .trust-point .icon { width: 18px; height: 18px; color: var(--c-forest); flex-shrink: 0; }

  /* Hero visual collage */
  .hero-visual {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    grid-template-rows: minmax(184px, 1fr) minmax(184px, 1fr);
    gap: 16px;
    position: relative;
  }
  .visual-card {
    border-radius: var(--radius-lg);
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 14px;
    min-height: 180px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
  }
  .visual-card .icon-figure { width: 76px; height: 88px; }
  .visual-card .icon-figure .icon { width: 100%; height: 100%; }
  .visual-card-label {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 500;
  }
  .visual-card-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .visual-card--honey {
    grid-column: 1; grid-row: 1 / 3;
    background: linear-gradient(160deg, var(--c-honey-soft), var(--c-stone) 120%);
    color: var(--c-olive);
  }
  .visual-card--honey .visual-card-tag { color: var(--c-honey); }
  .visual-card--honey .visual-card-label { color: var(--c-olive); }
  .visual-card--honey .icon-figure { color: var(--c-forest); }

  .visual-card--coconut {
    grid-column: 2; grid-row: 1;
    background: linear-gradient(160deg, var(--c-moss-light), var(--c-sage) 130%);
    color: var(--c-olive);
    min-height: 184px;
  }
  .visual-card--coconut .visual-card-tag { color: var(--c-forest-dark); }
  .visual-card--coconut .visual-card-label { color: var(--c-olive); }
  .visual-card--coconut .icon-figure { color: var(--c-olive); width: 60px; height: 64px; }

  .visual-card--mustard {
    grid-column: 2; grid-row: 2;
    background: linear-gradient(160deg, var(--c-forest), var(--c-olive) 130%);
    color: var(--c-cream);
    min-height: 184px;
  }
  .visual-card--mustard .visual-card-tag { color: var(--c-honey-light); }
  .visual-card--mustard .visual-card-label { color: var(--c-cream); }
  .visual-card--mustard .icon-figure { color: var(--c-cream-ink); width: 58px; height: 62px; }

  /* ============================================================
     8. PRODUCTS
  ============================================================ */
  .products { background: var(--c-paper); }

  .product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  @media (min-width: 720px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1040px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

  .product-card {
    background: var(--c-cream);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  }
  .product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }

  .product-media {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-media .icon-figure { width: 108px; height: 122px; }
  .product-media .icon-figure .icon { width: 100%; height: 100%; }

  .product-media--honey   { background: linear-gradient(165deg, var(--c-honey-soft), var(--c-sand) 140%); }
  .product-media--honey .icon-figure { color: var(--c-forest); }
  .product-media--coconut { background: linear-gradient(165deg, var(--c-moss-light), var(--c-sage) 140%); }
  .product-media--coconut .icon-figure { color: var(--c-olive); }
  .product-media--mustard { background: linear-gradient(165deg, var(--c-forest), var(--c-olive) 140%); }
  .product-media--mustard .icon-figure { color: var(--c-honey-light); }
  .product-badge.is-mustard { background: var(--c-cream-ink); color: var(--c-olive-dark); }

  .product-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--c-olive);
    color: var(--c-cream-ink);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
  }
  .product-badge.is-honey { background: var(--c-honey); color: var(--c-olive-dark); }

  .product-body {
    padding: 26px 26px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  .product-body h3 { 
    font-size: 1.28rem; 
    line-height: 1.3;
    min-height: 3.4rem; /* Exactly matches 2 lines of text height */
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
  }
  .product-body p { 
    font-size: 0.92rem; 
    line-height: 1.5; 
    min-height: 4.5rem; /* Exactly matches 3 lines of text height */
    margin-bottom: 12px;
  }

  .size-pills { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 8px; 
    min-height: 38px; 
    margin-top: auto; 
    margin-bottom: 16px;
  }
  .size-pill {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--c-line);
    color: var(--c-ink-soft);
    transition: all .2s var(--ease);
  }
  .size-pill:hover { border-color: var(--c-moss); }
  .size-pill[aria-pressed="true"] {
    background: var(--c-forest);
    border-color: var(--c-forest);
    color: var(--c-cream);
  }

  .product-footer {
    padding-top: 16px;
    border-top: 1px solid var(--c-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .product-price { display: flex; flex-direction: column; }
  .product-price .label { font-size: 0.7rem; color: var(--c-ink-soft); text-transform: uppercase; letter-spacing: 0.08em; }
  .product-price .amount { font-family: var(--font-display); font-size: 1.32rem; font-weight: 600; color: var(--c-olive); }

  /* ============================================================
     9. WHY AJWA ORGANICS (dark band)
  ============================================================ */
  .promise {
    background: var(--c-olive);
    color: var(--c-cream-ink);
    position: relative;
    overflow: hidden;
  }
  .promise::after {
    content: "";
    position: absolute;
    right: -120px; top: -120px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185,134,63,0.18), transparent 70%);
    pointer-events: none;
  }
  .promise .container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  @media (min-width: 920px) {
    .promise .container { grid-template-columns: 0.85fr 1.15fr; align-items: center; }
  }

  .promise-intro .eyebrow { color: var(--c-honey-light); }
  .promise-intro h2 {
    color: var(--c-cream-ink);
    font-size: clamp(1.9rem, 1.6vw + 1.4rem, 2.5rem);
    margin-bottom: 18px;
  }
  .promise-intro p {
    color: rgba(244,239,226,0.78);
    font-size: 1.02rem;
    max-width: 46ch;
    margin-bottom: 28px;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--c-line-light);
    border: 1px solid var(--c-line-light);
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  @media (min-width: 560px) {
    .feature-grid { grid-template-columns: 1fr 1fr; }
  }
  .feature-item {
    background: var(--c-olive);
    padding: 32px; /* 8px baseline alignment grid */
    display: flex;
    flex-direction: column;
    gap: 16px; /* standard 16px baseline layout flow */
  }
  .feature-item .icon { width: 26px; height: 26px; color: var(--c-honey-light); margin-bottom: 4px; }
  .feature-item h3 { 
    color: var(--c-cream-ink); 
    font-size: 1.15rem; 
    font-weight: 500; 
    line-height: 1.3;
    min-height: 1.5rem;
  }
  .feature-item p { 
    color: rgba(244,239,226,0.72); 
    font-size: 0.9rem; 
    line-height: 1.5; 
    min-height: 3.1rem; /* Exactly 2 lines of text height inside columns */
  }

  /* ============================================================
     10. BLOG / PURITY GUIDE
  ============================================================ */
  .blog { background: var(--c-cream); }

  .blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  @media (min-width: 760px) { .blog-grid { grid-template-columns: 1fr 1fr; } }

  .blog-card {
    display: grid;
    grid-template-columns: 112px 1fr; /* aligned 8px baseline (14 * 8px) */
    gap: 24px; /* aligned rhythm gap */
    background: var(--c-paper);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: 24px; /* clean 24px symmetrical padding blocks */
    align-items: center;
    transition: box-shadow .3s var(--ease), transform .3s var(--ease);
  }
  .blog-card:hover { box-shadow: var(--shadow-tight); transform: translateY(-3px); }
  @media (max-width: 480px) {
    .blog-card { grid-template-columns: 1fr; }
  }

  .blog-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .blog-thumb.tone-a { background: linear-gradient(160deg, var(--c-honey-soft), var(--c-sand)); color: var(--c-forest); }
  .blog-thumb.tone-b { background: linear-gradient(160deg, var(--c-moss-light), var(--c-sage)); color: var(--c-olive); }
  .blog-thumb .icon { width: 38px; height: 38px; }

  .blog-content h3 { font-size: 1.12rem; margin-bottom: 8px; line-height: 1.3; min-height: 2.6em; /* = 2 lines at this line-height; em (not rem) so it tracks the h3's own font-size */ }
  .blog-content p { font-size: 0.88rem; margin-bottom: 12px; }
  .blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--c-forest);
  }
  .blog-link .icon { width: 14px; height: 14px; transition: transform .2s var(--ease); }
  .blog-link:hover .icon { transform: translateX(3px); }

  /* ============================================================
     11. FINAL CTA BAND
  ============================================================ */
  .cta-band {
    background: linear-gradient(135deg, var(--c-moss-light) 0%, var(--c-sage) 100%);
    color: var(--c-olive-dark);
    position: relative;
    overflow: hidden;
  }
  .cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(54,65,41,0.12) 1.4px, transparent 1.4px);
    background-size: 26px 26px;
    opacity: 0.5;
  }
  .cta-band .container {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 76px;
    padding-bottom: 76px;
  }
  .cta-band h2 {
    color: var(--c-olive-dark);
    font-size: clamp(1.9rem, 1.8vw + 1.3rem, 2.6rem);
    margin-bottom: 14px;
  }
  .cta-band p {
    color: rgba(38,46,29,0.78);
    font-size: 1.05rem;
    max-width: 46ch;
    margin-bottom: 32px;
  }
  .cta-band-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
  .cta-band .btn--outline { color: var(--c-olive-dark); border-color: rgba(38,46,29,0.3); }
  .cta-band .btn--outline:hover { background: rgba(38,46,29,0.08); border-color: var(--c-olive-dark); }
  .cta-band .btn--primary { background: var(--c-olive); color: var(--c-cream); }
  .cta-band .btn--primary:hover { background: var(--c-olive-dark); }

  /* ============================================================
     12. FOOTER
  ============================================================ */
  .site-footer { background: var(--c-olive-dark); color: rgba(244,239,226,0.82); }
  .footer-top { padding-top: 76px; padding-bottom: 48px; }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
    align-items: start; /* Standardizes all visual start heights vertically across columns */
  }
  @media (min-width: 700px)  { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
  @media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr 1fr; } }

  .footer-brand .brand { margin-bottom: 16px; }
  .footer-brand .brand .icon { color: var(--c-honey-light); }
  .footer-brand .brand-word { color: var(--c-cream-ink); max-width: none; overflow: visible; white-space: normal; }
  .footer-brand p { color: rgba(244,239,226,0.65); font-size: 0.9rem; max-width: 30ch; margin-bottom: 22px; }

  .social-row { display: flex; gap: 10px; }
  .social-link {
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--c-line-light);
    border-radius: var(--radius-pill);
    color: var(--c-cream-ink);
    transition: background .2s var(--ease), border-color .2s var(--ease);
  }
  .social-link .icon { width: 16px; height: 16px; }
  .social-link:hover { background: var(--c-forest); border-color: var(--c-forest); }

  .footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-honey-light);
    margin-bottom: 24px; /* standardized scale alignment */
    line-height: 1.3;
    min-height: 1.3em;
  }
  .footer-col ul { display: flex; flex-direction: column; gap: 12px; }
  .footer-col a { font-size: 0.9rem; color: rgba(244,239,226,0.72); line-height: 1.5; transition: color .2s var(--ease); }
  .footer-col a:hover { color: var(--c-cream-ink); }

  .footer-contact li { 
    display: grid; 
    grid-template-columns: auto 1fr; 
    align-items: start; 
    gap: 12px; 
    font-size: 0.9rem; 
    line-height: 1.5; 
    color: rgba(244,239,226,0.72); 
  }
  .footer-contact .icon { 
    width: 16px; 
    height: 16px; 
    color: var(--c-honey-light); 
    flex-shrink: 0; 
    margin-top: calc((1.5em - 16px) / 2); /* Centers icon with first line-height baseline regardless of scale */
  }
  .footer-contact a:hover { color: var(--c-cream-ink); }

  .footer-bottom {
    border-top: 1px solid var(--c-line-light);
    padding: 24px 0;
  }
  .footer-bottom .container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(244,239,226,0.55);
  }
  .footer-bottom a { color: var(--c-honey-light); font-weight: 600; }
  .footer-bottom a:hover { color: var(--c-cream-ink); }

  /* ============================================================
     13. MOBILE OPTIMIZATION
  ============================================================ */

  /* --- Header: stop overflow, keep the menu button on-screen --- */
  @media (max-width: 1023px) {
    .site-header .container { gap: 10px; }
    .header-actions { gap: 8px; }
    /* Cart shortcut is decorative (same destination as "Products" in
       the menu) — hide it on mobile so the WhatsApp button and the
       menu button always have room and are never pushed off-canvas. */
    .header-actions .icon-btn { display: none; }
    .btn--whatsapp { padding: 10px 16px 10px 13px; font-size: 0.82rem; gap: 7px; }
  }

  @media (max-width: 480px) {
    .brand-word { font-size: 1rem; max-width: 50vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .btn--whatsapp .wa-full { display: none; }
    .btn--whatsapp .wa-short { display: inline; }
    .btn--whatsapp { padding: 10px 14px; }
    .trust-points { flex-direction: column; gap: 12px; }
  }

  /* Safety net for the smallest real-world phones (iPhone SE etc.) */
  @media (max-width: 360px) {
    .site-header .container { gap: 8px; }
    .header-actions { gap: 6px; }
    .brand .icon { width: 24px; height: 24px; }
    .brand-word { font-size: 0.92rem; max-width: 32vw; }
    .btn--whatsapp { padding: 9px 12px; font-size: 0.78rem; }
    .nav-toggle { width: 34px; height: 34px; }
    .nav-toggle .icon { width: 22px; height: 22px; }
  }

  /* --- Hero collage: at ≤540px the honey card only filled the left
     column, leaving an empty, wasted cell beside it. Let it span the
     full width on top instead, with coconut + mustard below — same
     three cards, same colors, no dead space. --- */
  @media (max-width: 540px) {
    .hero-visual { grid-template-columns: 1fr 1fr; }
    .visual-card { min-height: 150px; padding: 20px; }
    .visual-card--honey { grid-column: 1 / 3; grid-row: 1; min-height: 130px; }
    .visual-card--coconut { grid-column: 1; grid-row: 2; }
    .visual-card--mustard { grid-column: 2; grid-row: 2; }
  }

  /* --- Full-width CTA buttons on small phones: easier to tap, and
     stacking reads cleaner than two half-width buttons squeezed
     side by side. Same button styles/colors, just full-width. --- */
  @media (max-width: 480px) {
    .hero-ctas, .cta-band-actions { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn, .cta-band-actions .btn { width: 100%; }
  }

  @media (max-width: 600px) {
    .footer-bottom .container { flex-direction: column; align-items: flex-start; }
  }

  @media (max-width: 360px) {
    .product-footer { flex-direction: column; align-items: stretch; }
    .product-footer .btn { width: 100%; justify-content: center; }
  }

/* ============================================================
   14. BILINGUAL / RTL SUPPORT (Urdu)
   ------------------------------------------------------------
   Two ways to use this, depending on how much of the page is
   Urdu:

   A) A SNIPPET OF URDU INSIDE AN ENGLISH PAGE — wrap just that
      part in .urdu-content:
        <p class="urdu-content">یہ خالص شہد ہے۔</p>
      Direction and typeface flip locally; the rest of the page
      is untouched.

   B) A FULL URDU PAGE — e.g. a future blog article published in
      Urdu — set direction at the document root instead, per the
      pattern already used for English at the top of index.html:
        <html lang="ur" dir="rtl">
      Most of the layout above is flexbox/grid, which mirrors
      automatically under dir="rtl" with zero extra CSS. The
      [dir="rtl"] rules below only patch the handful of spots
      that don't mirror for free: icon ordering, the nav
      underline's slide direction, and the skip-link's corner.
   ============================================================ */

.urdu-content {
  direction: rtl;
  text-align: right;
  font-family: 'Noto Nastaliq Urdu', serif;
  /* Nastaliq's diagonal, stacked strokes need far more vertical
     room than Latin text — 1.5-ish line-height makes ascenders
     from one line collide with descenders from the next. */
  line-height: 2.1;
  unicode-bidi: isolate;
}
.urdu-content h1,
.urdu-content h2,
.urdu-content h3,
.urdu-content h4 {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-weight: 500;
  line-height: 2;
}

/* Full-page RTL — active when an ancestor (normally <html>) has
   dir="rtl", e.g. a future Urdu blog article reusing this same
   component library. */
[dir="rtl"] body {
  font-family: 'Noto Nastaliq Urdu', serif;
}
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4 {
  font-family: 'Noto Nastaliq Urdu', serif;
  letter-spacing: 0;
}
[dir="rtl"] .eyebrow,
[dir="rtl"] .trust-point,
[dir="rtl"] .blog-link,
[dir="rtl"] .footer-contact li {
  flex-direction: row-reverse;
}
[dir="rtl"] .main-nav a::after {
  left: 100%;
  right: 0;
}
[dir="rtl"] .main-nav a:hover::after { left: 0; right: 0; }
[dir="rtl"] .blog-link:hover .icon { transform: translateX(-3px); }
[dir="rtl"] .skip-link {
  left: auto;
  right: -999px;
  border-radius: 0 0 0 8px;
}
[dir="rtl"] .skip-link:focus { left: auto; right: 0; }
