/* ================================================================
   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);
    --c-sale:         #A8462F;
    --c-sale-soft:    #F3E0D7;

    --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: #EBF2DF;
    color: #2A4118;
  }
  .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: #5F8040; font-weight: 600; }
  .announcement .icon { width: 14px; height: 14px; color: #5F8040; 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; }
  .main-nav li.is-active a,
  .mobile-nav li.is-active a { color: var(--c-olive); font-weight: 600; }
  .main-nav li.is-active a::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);
    position: relative;
  }
  .icon-btn:hover { background: var(--c-cream-soft); }
  .icon-btn .icon { width: 21px; height: 21px; }

  /* Live cart-item count, shown/hidden by cart.js's refreshCartBadges()
     whenever the shared localStorage cart changes — same badge on
     index.html, products.html, and checkout.html. */
  .cart-badge {
    position: absolute;
    top: 1px;
    right: 1px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: var(--radius-pill);
    background: var(--c-sale, #B3434B);
    color: var(--c-cream);
    font-size: 0.64rem;
    font-weight: 700;
    line-height: 17px;
    text-align: center;
    box-shadow: 0 0 0 2px var(--c-cream);
  }
  .cart-badge[hidden] { display: none; }

  .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%; }

  /* Uploaded product photo — fills the media area, scales to contain so
     it's never cropped. Falls back to the SVG icon via onerror in the template. */
  .product-media .product-img {
    max-width: 100%; max-height: 190px;
    width: auto; height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
  }

  .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: #5F8040;
    color: #FFFFFF;
    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 { display: flex; align-items: baseline; gap: 8px; font-family: var(--font-display); font-size: 1.32rem; font-weight: 600; color: var(--c-olive); }

  /* Groups "Buy Now" + the icon-only "Add to Cart" button together
     on the right of the footer, so .product-footer keeps its two-end
     space-between layout regardless of how many action buttons it has. */
  .product-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

  /* Icon-only "Add to Cart" button — a secondary action next to the
     primary "Buy Now" CTA. Adds the item to the shared cart (cart.js)
     without navigating away from the page. */
  .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--c-line);
    color: var(--c-olive);
    background: transparent;
    transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
  }
  .btn-icon:hover { border-color: var(--c-forest); background: rgba(84,105,63,0.06); }
  .btn-icon .icon { width: 18px; height: 18px; }
  .btn-icon .icon-cart-added { display: none; }
  /* Brief "added!" confirmation state, toggled for ~0.9s by script.js
     after a successful add-to-cart click. */
  .add-to-cart-btn.is-added {
    border-color: var(--c-forest);
    background: var(--c-forest);
    color: var(--c-cream);
  }
  .add-to-cart-btn.is-added .icon-cart-default { display: none; }
  .add-to-cart-btn.is-added .icon-cart-added { display: inline-flex; }

  /* On-sale pricing: original price shown struck through next to the
     active sale price. Toggled per size by script.js (reads
     data-original / data-price on the pressed .size-pill). Hidden by
     default — only appears when a pill carries data-original. */
  .price-original {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--c-ink-soft);
    text-decoration: line-through;
  }
  .price-original[hidden] { display: none; }
  .price-value.is-sale { color: var(--c-sale); }

  /* "Sale" product badge — same shape as .product-badge, sale palette. */
  .product-badge.is-sale { background: var(--c-sale); color: var(--c-cream); }

  /* "See All Products" link under the homepage's featured/sale grid —
     keeps the full catalog one click away without crowding the section. */
  .products-more {
    margin-top: 44px;
    text-align: center;
  }

  /* ============================================================
     8B. PAGE BANNER (sub-pages, e.g. products.html)
     Compact hero used at the top of pages that aren't the homepage.
     Light cream theme — matches the homepage hero so branding stays
     consistent across the whole site (no dark "forked theme" look).
  ============================================================ */
  .page-banner {
    position: relative;
    background: var(--c-cream);
    overflow: hidden;
    padding: 64px 0 56px;
    text-align: center;
  }
  .page-banner::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;
  }
  .page-banner .container { position: relative; }
  .page-banner .eyebrow { justify-content: center; color: var(--c-honey); }
  .page-banner h1 {
    color: var(--c-ink);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 10px;
  }
  .page-banner p {
    color: var(--c-ink-soft);
    max-width: 56ch;
    margin: 0 auto;
  }
  .page-banner-crumb {
    margin-top: 18px;
    font-size: 0.85rem;
  }
  .page-banner-crumb a { color: var(--c-forest); font-weight: 600; }
  .page-banner-crumb a:hover { text-decoration: underline; }
  .page-banner-crumb span { color: var(--c-ink-soft); opacity: 0.6; padding: 0 6px; }

  /* Simple category filter pills at the top of the full catalog page. */
  .catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 44px;
  }
  .catalog-filter {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--c-line);
    color: var(--c-ink-soft);
    background: var(--c-cream);
    transition: all .2s var(--ease);
  }
  .catalog-filter:hover { border-color: var(--c-moss); }
  .catalog-filter.is-active {
    background: var(--c-forest);
    border-color: var(--c-forest);
    color: var(--c-cream);
  }

  /* ============================================================
     9. WHY AJWA ORGANICS (dark band)
  ============================================================ */
  .promise {
    background: #E4EFCF;
    color: #1C300E;
    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(95,128,64,0.12), 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: #5F8040; }
  .promise-intro h2 {
    color: #1C300E;
    font-size: clamp(1.9rem, 1.6vw + 1.4rem, 2.5rem);
    margin-bottom: 18px;
  }
  .promise-intro p {
    color: rgba(28,48,14,0.70);
    font-size: 1.02rem;
    max-width: 46ch;
    margin-bottom: 28px;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(54,65,41,0.12);
    border: 1px solid rgba(54,65,41,0.12);
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  @media (min-width: 560px) {
    .feature-grid { grid-template-columns: 1fr 1fr; }
  }
  .feature-item {
    background: #D0E6BA;
    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: #5F8040; margin-bottom: 4px; }
  .feature-item h3 { 
    color: #1C300E; 
    font-size: 1.15rem; 
    font-weight: 500; 
    line-height: 1.3;
    min-height: 1.5rem;
  }
  .feature-item p { 
    color: rgba(28,48,14,0.65); 
    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: #5F8040; color: var(--c-cream); }
  .cta-band .btn--primary:hover { background: #4A6830; }

  /* ============================================================
     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; }
    .product-actions { width: 100%; }
    .product-actions .buy-now-btn { flex: 1; }
  }

/* ============================================================
   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; }

/* ============================================================
   15. SHARED TOAST (cart.js — index.html / products.html)
   ------------------------------------------------------------
   checkout.html has its own #co-toast in checkout.css; this is
   the equivalent for every other page, created on demand by
   cart.js's showCartToast() so no markup change was needed here.
   ============================================================ */
.site-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 16px);
  background: var(--c-olive-dark);
  color: var(--c-cream-ink);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  max-width: calc(100vw - 48px);
  text-align: center;
}
.site-toast.is-visible { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }

/* ============================================================
   16. POLICY / LEGAL PAGES
   ------------------------------------------------------------
   Used by: shipping-delivery.html, terms-conditions.html, and
   any future legal page (privacy-policy.html, returns-refunds.html).
   Reuses .page-banner for the header; this section styles the
   long-form body text + the contact callout beneath it.
   ============================================================ */
.policy-section { padding: 80px 0 96px; }
@media (max-width: 768px) { .policy-section { padding: 56px 0 72px; } }

.policy-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .policy-layout { grid-template-columns: 1fr; gap: 32px; }
}

.policy-toc {
  position: sticky;
  top: 110px;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 22px 22px 24px;
}
@media (max-width: 900px) { .policy-toc { position: static; } }
.policy-toc h2 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-moss);
  margin-bottom: 14px;
}
.policy-toc ol { list-style: none; counter-reset: toc; display: flex; flex-direction: column; gap: 10px; }
.policy-toc li { counter-increment: toc; }
.policy-toc a {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--c-ink-soft);
  line-height: 1.4;
  transition: color .2s var(--ease);
}
.policy-toc a::before {
  content: counter(toc);
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-cream-soft);
  color: var(--c-forest);
  font-size: 0.74rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.policy-toc a:hover { color: var(--c-forest); }

.policy-body { max-width: 720px; }
.policy-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--c-ink-soft);
  background: var(--c-cream-soft);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  margin-bottom: 36px;
}

.policy-block { margin-bottom: 40px; }
.policy-block:last-child { margin-bottom: 0; }
.policy-block h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  scroll-margin-top: 110px;
}
.policy-block h3 {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--c-ink);
  margin: 18px 0 8px;
}
.policy-block p {
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.policy-block ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 14px;
}
.policy-block ul li {
  position: relative;
  padding-left: 22px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--c-ink-soft);
}
.policy-block ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-honey);
}
.policy-block a { color: var(--c-forest); font-weight: 600; text-decoration: underline; text-decoration-color: var(--c-line); }
.policy-block a:hover { text-decoration-color: var(--c-forest); }

.policy-contact-card {
  margin-top: 48px;
  background: var(--c-olive-dark);
  color: var(--c-cream-ink);
  border-radius: var(--radius-lg);
  padding: 32px clamp(24px, 5vw, 40px);
}
.policy-contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--c-cream-ink);
  margin-bottom: 14px;
}
.policy-contact-card ul { display: flex; flex-direction: column; gap: 10px; }
.policy-contact-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}
.policy-contact-card .icon { width: 17px; height: 17px; color: var(--c-honey-light); flex-shrink: 0; }
.policy-contact-card a { color: var(--c-cream-ink); }
.policy-contact-card a:hover { text-decoration: underline; }

/* ============================================================
   17. COMING SOON (used by blog.html; reusable for any
   not-yet-published page)
   ============================================================ */
.coming-soon { padding: 96px 0 110px; text-align: center; }
@media (max-width: 768px) { .coming-soon { padding: 64px 0 80px; } }
.coming-soon-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--c-cream-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.coming-soon-icon .icon { width: 32px; height: 32px; color: var(--c-forest); }
.coming-soon h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}
.coming-soon-lede {
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--c-ink-soft);
}
.coming-soon-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.coming-soon-topics {
  margin: 56px auto 0;
  max-width: 620px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.coming-soon-topics span {
  font-size: 0.85rem;
  color: var(--c-ink-soft);
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
}

/* ============================================================
   18. CONTACT PAGE
   ============================================================ */
.contact-section { padding: 80px 0 40px; }
@media (max-width: 768px) { .contact-section { padding: 56px 0 24px; } }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (min-width: 640px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .contact-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.contact-card {
  background: var(--c-paper);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .25s var(--ease);
}
.contact-card:hover { background: var(--c-cream-soft); }
.contact-card-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-cream-soft);
  display: flex; align-items: center; justify-content: center;
}
.contact-card-icon .icon { width: 20px; height: 20px; color: var(--c-forest); }
.contact-card h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-moss);
}
.contact-card p {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--c-ink);
  line-height: 1.4;
}
.contact-card a.contact-card-link {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-forest);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.contact-card a.contact-card-link .icon { width: 14px; height: 14px; }
.contact-card a.contact-card-link:hover { text-decoration: underline; }

.contact-extra {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 860px) { .contact-extra { grid-template-columns: 1.1fr 0.9fr; } }

.contact-hours {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-hours h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.contact-hours ul { display: flex; flex-direction: column; gap: 10px; }
.contact-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--c-ink-soft);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-line);
}
.contact-hours li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-hours li span:first-child { color: var(--c-ink); font-weight: 500; }

.contact-social-card {
  background: var(--c-forest);
  color: var(--c-cream-ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-social-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--c-cream-ink);
  margin-bottom: 8px;
}
.contact-social-card p { color: var(--c-cream-ink); opacity: 0.8; font-size: 0.95rem; margin-bottom: 20px; }
.contact-social-card .social-links { display: flex; gap: 12px; }
.contact-social-card .social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(250,246,234,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-cream-ink);
  transition: background .2s var(--ease);
}
.contact-social-card .social-link:hover { background: rgba(250,246,234,0.22); }
.contact-social-card .social-link .icon { width: 18px; height: 18px; }
