/* ── Design Tokens ── */
    :root {
      --cream:   #faf8f3;
      --white:   #ffffff;
      --ink:     #1a1410;
      --muted:   #6b5e52;
      --line:    rgba(26,20,16,.1);
      --br-900:  #1a0f0a;
      --br-800:  #2b1811;
      --br-700:  #3a2218;
      --br-600:  #5a3524;
      --br-500:  #7a4a31;
      --gold:    #c7a36b;
      --gold-lt: #e8d5aa;
      --orange:  #c4622d;
      --green:   #1f5331;
       --black: #1a1a1a;

      --serif:   "Playfair Display", "Cormorant Garamond", Georgia, serif;
      --script:  "Cormorant Garamond", Georgia, serif;
      --sans:    "DM Sans", system-ui, sans-serif;

      --shadow-sm: 0 4px 24px rgba(26,20,16,.08);
      --shadow-md: 0 12px 48px rgba(26,20,16,.13);
      --shadow-lg: 0 24px 80px rgba(26,20,16,.18);
      --r: 18px;
    }
    

    /* ── Reset ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--sans);
      color: var(--ink);
      background: var(--white);
      overflow-x: hidden;
      padding-top: 72px;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    button, input, select { font: inherit; }

    .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
    @media (max-width: 640px) { .wrap { padding: 0 20px; } }

    /* ── Navbar ── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: 72px;
      background: rgba(255,255,255,.97);
      border-bottom: 1px solid var(--line);
      z-index: 1000;
      transition: box-shadow .3s ease;
    }
    .nav.scrolled { box-shadow: 0 8px 32px rgba(26,20,16,.10); }
    .nav-inner {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    /* Brand */
    .brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .brand-logo {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }
    .brand-name {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 700;
      letter-spacing: .08em;
      color: var(--ink);
    }
    .brand-sub {
      font-size: 9px;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 1px;
    }
    .brand-star {
      color: var(--gold);
      font-size: 13px;
      margin-left: 3px;
    }
    /* Logo image placeholder */
    .brand-logo-img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #e8ddd0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      color: var(--muted);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .1em;
      overflow: hidden;
      flex-shrink: 0;
    }
    .brand-logo-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Nav links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .nav-links a {
      position: relative;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: .04em;
      color: rgba(26,20,16,.72);
      padding: 4px 0;
    }
    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0; right: 0; bottom: -2px;
      height: 1.5px;
      background: var(--ink);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .24s ease;
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-links a.active { color: var(--ink); font-weight: 600; }
    .nav-links a.active::after { transform: scaleX(1); }

    /* Nav actions */
    .nav-actions { display: flex; align-items: center; gap: 8px; }
    .icon-btn {
      width: 40px; height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(26,20,16,.14);
      background: transparent;
      display: grid;
      place-items: center;
      cursor: pointer;
      position: relative;
      transition: border-color .2s ease, background .2s ease;
    }
    .icon-btn:hover { border-color: rgba(26,20,16,.3); background: rgba(26,20,16,.03); }
    .icon-btn svg { width: 17px; height: 17px; stroke: var(--ink); fill: none; stroke-width: 1.6; }
    .badge {
      position: absolute;
      top: -5px; right: -5px;
      min-width: 17px; height: 17px;
      border-radius: 50%;
      background: var(--br-800);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      display: none;
      place-items: center;
      border: 2px solid #fff;
    }

    /* Mobile hamburger  three horizontal lines, positioned on the right */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(26,20,16,.14);
      background: transparent;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      margin-left: auto;
      order: 2;
    }
    .hamburger span {
      display: block;
      width: 16px;
      height: 1.5px;
      background: var(--ink);
      border-radius: 2px;
      transition: all .22s ease;
    }
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .brand { order: 0; }
      .nav-actions { order: 1; }
      .nav-inner { gap: 8px; }
    }
    @media (min-width: 901px) {
      .hamburger { display: none !important; }
    }

    /* Mobile panel  slides in from the right */
    .mobile-panel {
      position: fixed;
      top: 72px;
      right: 0;
      width: 280px;
      max-width: 80vw;
      background: rgba(255,255,255,.98);
      border-bottom: 1px solid var(--line);
      border-left: 1px solid var(--line);
      box-shadow: -20px 20px 40px rgba(26,20,16,.10);
      z-index: 999;
      transform: translateX(100%);
      opacity: 0;
      pointer-events: none;
      transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .25s ease;
      padding: 8px 0;
    }
    .mobile-panel.open {
      transform: translateX(0);
      opacity: 1;
      pointer-events: auto;
    }
    .mobile-panel a {
      display: block;
      padding: 14px 24px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: .04em;
      color: rgba(26,20,16,.75);
      border-bottom: 1px solid rgba(26,20,16,.06);
      transition: background .15s ease, color .15s ease;
    }
    .mobile-panel a:last-child {
      border-bottom: none;
    }
    .mobile-panel a:hover {
      color: var(--ink);
      background: rgba(26,20,16,.03);
    }
    .mobile-panel a.active {
      color: var(--green);
      font-weight: 600;
    }

    /* Overlay for mobile menu */
    .mobile-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.3);
      z-index: 998;
      opacity: 0;
      pointer-events: none;
      transition: opacity .25s ease;
    }
    .mobile-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    .hero-bg {
    /* Use the same warm cream tones as the hero image to blend seamlessly */
    background-image: url('/images/hero.avif');
    background-repeat: no-repeat, no-repeat;
    background-position: 100% center, center;
    background-size:65% auto, cover;
    background-blend-mode: multiply, normal;
    padding-top: 72px; /* Matches the navbar height exactly */
    position: relative;
    min-height: clamp(480px, 58vw, 670px);
    display: flex;
    align-items: center;
    }


    /* Soft cream wash behind the copy so it stays legible over the bags */
    .hero-bg::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        /* horizontal cream wash, strongest where the headline sits, fading toward the product photo */
        linear-gradient(90deg,
          rgba(250,248,243,.94) 0%,
          rgba(250,248,243,.88) 28%,
          rgba(228, 225, 220, 0.55) 48%,
          rgba(250,248,243,0) 66%),
        /* gentle vertical lift so the headline area always reads slightly lighter */
        linear-gradient(180deg,
          rgba(250,248,243,.18) 0%,
          rgba(250,248,243,.05) 35%,
          rgba(250,248,243,0) 70%,
          rgba(250,248,243,.12) 100%);
      pointer-events: none;
      z-index: 1;
    }

    .hero-bg > .max-w-7xl { position: relative; z-index: 2; }

    /* ── Hero text reveal animations (desktop + mobile share these) ── */
    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes heroFadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes heroBadgeIn {
      from { opacity: 0; transform: rotate(8deg) translateY(-10px) scale(.9); }
      to   { opacity: 1; transform: rotate(-4deg) translateY(0) scale(1); }
    }
    @keyframes heroImageSettle {
      from { transform: scale(1.018); }
      to   { transform: scale(1); }
    }
    .hero-bg {
      animation: heroImageSettle 1.2s cubic-bezier(.22,1,.36,1) both;
      transform-origin: center;
    }
    .hero-bg .w-full {
      animation: heroFadeIn .4s ease both;
    }
    .hero-bg h2.font-script {
      animation: heroFadeUp .55s cubic-bezier(.22,1,.36,1) .05s both;
      text-shadow: 0 2px 18px rgba(250,248,243,.85), 0 1px 2px rgba(250,248,243,.6);
    }
    .hero-bg h1.font-serif {
      animation: heroFadeUp .55s cubic-bezier(.22,1,.36,1) .15s both;
      text-shadow: 0 2px 22px rgba(250,248,243,.9), 0 1px 3px rgba(250,248,243,.7);
    }
    .hero-bg p.text-lg {
      animation: heroFadeIn .5s ease .28s both;
      text-shadow: 0 1px 14px rgba(250,248,243,.85);
    }
    .hero-bg a[href="/shop"] {
      animation: heroFadeIn .5s ease .4s both;
      transition: transform .25s cubic-bezier(.22,1,.36,1), background .22s ease, box-shadow .25s ease;
    }
    .hero-bg a[href="/shop"]:hover {
      transform: translateY(-3px) scale(1.015);
      box-shadow: 0 14px 36px rgba(26,20,16,.22);
    }
    .hero-bg a[href="/shop"]:active {
      transform: translateY(-1px) scale(.99);
    }
    .hero-badge {
      animation: heroBadgeIn .6s cubic-bezier(.22,1,.36,1) .45s both;
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-bg, .hero-bg .w-full, .hero-bg h2.font-script, .hero-bg h1.font-serif,
      .hero-bg p.text-lg, .hero-bg a[href="/shop"], .hero-badge {
        animation: none;
      }
    }

    .mix-multiply {
            mix-blend-mode: multiply;
        }

    /* Small decorative Amharic stamp, top-right corner of the hero section */
    .hero-badge {
      position: absolute;
      top: 96px;
      right: 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
      color: var(--green);
      transform: rotate(-4deg);
      pointer-events: none;
      z-index: 2;
    }
    .hero-badge .badge-amharic {
      font-family: var(--serif);
      font-size: 24px;
      font-weight: 700;
      line-height: 1;
      white-space: nowrap;
    }
    .hero-badge .badge-line { width: 28px; height: 1.5px; background: var(--green); opacity: .65; }
    .hero-badge .badge-sub {
      font-size: 9px;
      letter-spacing: .14em;
      text-transform: uppercase;
      font-weight: 600;
      white-space: nowrap;
    }
    /* ════════════════════════════════════════
       FEATURED PRODUCTS    refined with larger images & rounded corners
       ════════════════════════════════════════ */

    /* Section wrapper: white bg, generous padding */
    .featured-section {
      background: #fafffb;
      padding: 36px 0 48px;
    }

    /* Header row: "Featured Products" label left + "View All →" right */
    .featured-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 22px;
    }
    .featured-label {
      font-family: "DM Sans", system-ui, sans-serif;
      font-size: 18px;
      font-weight: 500;
      color: #1c1a18;
      letter-spacing: .01em;
    }
    .featured-viewall {
      font-family: "DM Sans", system-ui, sans-serif;
      font-size: 15px;
      font-weight: 500;
      color: #1c1a18;
      letter-spacing: .01em;
      display: flex;
      align-items: center;
      gap: 4px;
      border-bottom: 1px solid #1c1a18;
      padding-bottom: 1px;
      transition: opacity .2s;
    }
    .featured-viewall:hover { opacity: .55; }

    /* 4-column grid */
    .featured-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    @media (max-width: 900px)  { .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
    @media (max-width: 480px)  { .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

    /* Individual card  more rounded, with full image like shop cards */
    .fp-card {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      position: relative;
      transition: transform .35s ease, box-shadow .35s ease;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(26,20,16,.06);
      border: 1px solid rgba(26,20,16,.05);
    }
    .fp-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(26,20,16,.12);
    }

    /* Image area  full width, no padding, like shop cards */
    .fp-img-area {
      position: relative;
      background: #fafaf8;
      aspect-ratio: 1 / 1.05;
      overflow: hidden;
    }
    .fp-img {
      width: 100%;
      height: 100%;
      background: center / cover no-repeat transparent;
      transition: transform .5s cubic-bezier(.25,.46,.45,.94);
    }
    .fp-card:hover .fp-img { transform: scale(1.05); }

    /* Heart icon  bottom-right of image area, always visible */
    .fp-heart {
      position: absolute;
      bottom: 12px;
      right: 12px;
      background: rgba(255,255,255,.9);
      border: none;
      padding: 6px 8px;
      border-radius: 30px;
      cursor: pointer;
      line-height: 1;
      transition: transform .2s, background .2s;
      backdrop-filter: blur(4px);
      box-shadow: 0 2px 8px rgba(26,20,16,.08);
    }
    .fp-heart:hover { 
      transform: scale(1.15);
      background: #fff;
    }
    .fp-heart-icon {
      font-size: 18px;
      color: #cc3333;
    }
    .fp-heart-outline {
      font-size: 18px;
      color: #555;
      opacity: .8;
    }

    /* Text area  white strip at card bottom */
    .fp-body {
      background: #ffffff;
      padding: 14px 16px 18px;
    }
    .fp-name {
      font-family: "DM Sans", system-ui, sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: #1c1a18;
      line-height: 1.3;
      margin: 0 0 3px;
    }
    .fp-price {
      font-family: "DM Sans", system-ui, sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: #1c1a18;
      margin: 0;
    }

    /* ── Featured Products ── */
    .section { padding: 80px 0; }
    @media (max-width: 640px) { .section { padding: 56px 0; } }

    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 36px;
      gap: 16px;
      flex-wrap: wrap;
    }
    .section-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
    }
    .section-title {
      font-family: var(--serif);
      font-size: clamp(24px, 3.2vw, 38px);
      font-weight: 600;
      line-height: 1.15;
      color: var(--ink);
    }
    .view-all-link {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--ink);
      flex-shrink: 0;
      border-bottom: 1px solid var(--ink);
      padding-bottom: 2px;
      transition: opacity .2s ease;
    }
    .view-all-link:hover { opacity: .6; }

    /* Product grid */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    @media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 760px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
    @media (max-width: 440px)  { .product-grid { grid-template-columns: 1fr; } }

    .product-card {
      background: var(--white);
      border-radius: var(--r);
      overflow: hidden;
      border: 1px solid rgba(26,20,16,.07);
      box-shadow: var(--shadow-sm);
      transition: transform .3s ease, box-shadow .3s ease;
      cursor: pointer;
    }
    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }
    .pc-img-wrap {
      position: relative;
      overflow: hidden;
      background: #f2ebe0;
      aspect-ratio: 3/3.4;
    }
    .pc-img {
      width: 100%; height: 100%;
      background: center/cover no-repeat #f2ebe0;
      transition: transform .5s ease;
    }
    .product-card:hover .pc-img { transform: scale(1.06); }

    .pc-wish {
      position: absolute;
      top: 12px; right: 12px;
      width: 34px; height: 34px;
      border-radius: 50%;
      background: rgba(255,255,255,.9);
      border: none;
      display: grid;
      place-items: center;
      cursor: pointer;
      opacity: 0;
      transition: opacity .2s ease, transform .2s ease;
      box-shadow: 0 2px 8px rgba(26,20,16,.12);
    }
    .pc-wish svg { width: 15px; height: 15px; fill: none; stroke: #c0392b; stroke-width: 1.8; }
    .pc-wish.wished svg { fill: #c0392b; }
    .product-card:hover .pc-wish { opacity: 1; }

    .pc-body { padding: 14px 16px 18px; }
    .pc-name {
      font-family: var(--serif);
      font-size: 15px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 4px;
      line-height: 1.3;
    }
    .pc-price {
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      margin-top: 2px;
    }

    /* ── Section divider ── */
    .divider {
      border: none;
      border-top: 1px solid var(--line);
      margin: 0;
    }

    /* ── About section  card-collage layout ── */
    .about-section {
      padding: 80px 0;
      background: var(--cream);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    @media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

    /* Left side: image collage */
    .about-collage {
      position: relative;
      height: 420px;
    }
    @media (max-width: 900px) { .about-collage { height: 340px; } }

    .about-img-main {
      position: absolute;
      bottom: 0; left: 0;
      width: 52%;
      aspect-ratio: 3/4;
      border-radius: 20px;
      background: center/cover no-repeat #c4a882;
      background-image: url('/images/brown.avif');
      box-shadow: var(--shadow-md);
    }
    .about-img-secondary {
      position: absolute;
      top: 0; right: 0;
      width: 56%;
      aspect-ratio: 4/5;
      border-radius: 20px;
      background: center/cover no-repeat #8b6a4e;
      background-image: url('/images/hexagon.png');
      box-shadow: var(--shadow-md);
    }

    /* Floating stats card */
    .about-stats-card {
      position: absolute;
      top: 16px;
      left: 28px;
      background: #fff;
      border-radius: 16px;
      padding: 14px 18px;
      box-shadow: 0 8px 32px rgba(26,20,16,.14);
      z-index: 10;
      min-width: 180px;
    }
    .about-stats-number {
      font-family: var(--serif);
      font-size: 26px;
      font-weight: 700;
      color: var(--ink);
      line-height: 1;
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .about-stats-number svg { width: 18px; height: 18px; stroke: #2d9c5a; fill: none; stroke-width: 2; }
    .about-stats-label { font-size: 11px; color: var(--muted); line-height: 1.4; margin-bottom: 10px; }
    .about-avatars { display: flex; gap: -4px; }
    .about-avatar {
      width: 26px; height: 26px;
      border-radius: 50%;
      border: 2px solid #fff;
      margin-left: -6px;
      background: center/cover no-repeat;
      margin-left: 0;
    }
    .about-avatar:first-child { margin-left: 0; }
    .about-avatar-1 { background-color: #c4a882; }
    .about-avatar-2 { background-color: #8b6a4e; }
    .about-avatar-3 { background-color: #5a3524; }
    .about-avatar-4 { background-color: #3a2218; }
    .about-avatar-5 { background-color: #7a4a31; }

    /* Floating ratings badge */
    .about-ratings-card {
      position: absolute;
      bottom: 18px;
      left: 48%;
      transform: translateX(-50%);
      background: #fff;
      border-radius: 14px;
      padding: 10px 16px;
      box-shadow: 0 8px 24px rgba(26,20,16,.13);
      z-index: 10;
      white-space: nowrap;
      text-align: center;
    }
    .about-ratings-label { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
    .about-ratings-emojis { font-size: 17px; letter-spacing: 3px; color: var(--gold); }

    /* Right side: copy */
    .about-copy .about-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .about-title {
      font-family: var(--serif);
      font-size: clamp(28px, 3.6vw, 44px);
      font-weight: 700;
      line-height: 1.12;
      color: var(--ink);
      margin-bottom: 20px;
    }
    .about-body {
      font-size: 15px;
      line-height: 1.85;
      color: var(--muted);
      margin-bottom: 32px;
    }
    .about-explore-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgb(4, 46, 4);
      color: #fff;
      padding: 14px 30px;
      border-radius: 10px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      transition: background .22s ease, transform .22s ease;
      cursor: pointer;
      border: none;
    }
    .about-explore-btn:hover { background: var(--green); transform: translateY(-2px); }

    /* ══════════════════════════════════════════════
       WHO WE ARE  Sandstorm Heritage-style Slider
       White/cream background, image + card layout
       ══════════════════════════════════════════════ */

    .wwa-section {
      background: #ffffff;
      padding: 0;
      overflow: hidden;
    }

    /* ─── Section header ─── */
    .wwa-header {
      padding: 60px 72px 40px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
    }
    .wwa-label-top {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }
    .wwa-h2 {
      font-family: var(--serif);
      font-size: clamp(28px, 3.2vw, 44px);
      font-weight: 600;
      color: var(--ink);
      line-height: 1.06;
      letter-spacing: -.015em;
    }
    .wwa-count {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .1em;
      color: rgba(26,20,16,.3);
      white-space: nowrap;
      padding-bottom: 8px;
      flex-shrink: 0;
    }
    .wwa-count strong {
      color: var(--ink);
      font-size: 16px;
    }

    /* ─── Wrap holds both the stage and the side arrows, so the arrows
         are never clipped by the stage's overflow and never scroll away
         with the stage's horizontal-scroll content on mobile ─── */
    .wwa-stage-wrap {
      position: relative;
      margin: 0 72px;
    }
    /* ─── Slide stage: stacks slides absolutely ─── */
    .wwa-stage {
      position: relative;
      height: 420px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(26,20,16,.06);
    }

    /* ─── Individual slide ─── */
    .wwa-slide {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: 48% 1fr;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(26,20,16,.06);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition:
        opacity 600ms cubic-bezier(.4,0,.2,1),
        visibility 0ms linear 600ms;
    }
    .wwa-slide.is-active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition:
        opacity 600ms cubic-bezier(.4,0,.2,1),
        visibility 0ms linear 0ms;
    }

    /* Image pane */
    .wwa-slide-photo {
      position: relative;
      overflow: hidden;
      background: #e8ddd0;
    }
    .wwa-slide-photo-inner {
      position: absolute;
      inset: 0;
      background: center/cover no-repeat #d4c4b0;
      transform: scale(1.06);
      transition: transform 850ms cubic-bezier(.25,.46,.45,.94);
    }
    .wwa-slide.is-active .wwa-slide-photo-inner {
      transform: scale(1);
    }

    /* Text card pane  white with cream accents, thinner padding */
    .wwa-slide-card {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 36px 42px 40px;
      background: #faf8f4;
      position: relative;
      border-left: 1px solid rgba(26,20,16,.05);
    }
    /* Ghost number behind card text  smaller for thinner slide */
    .wwa-slide-card::before {
      content: attr(data-n);
      position: absolute;
      bottom: 12px;
      right: 20px;
      font-family: var(--serif);
      font-size: 80px;
      font-weight: 700;
      color: rgba(26,20,16,.04);
      line-height: 1;
      pointer-events: none;
      user-select: none;
      letter-spacing: -.04em;
    }

    /* Staggered fade-up on text children */
    .wwa-slide-card > * {
      opacity: 0;
      transform: translateY(16px);
    }
    .wwa-slide.is-active .wwa-slide-card > *:nth-child(1) {
      animation: wwaUp 500ms cubic-bezier(.25,.46,.45,.94) 120ms forwards;
    }
    .wwa-slide.is-active .wwa-slide-card > *:nth-child(2) {
      animation: wwaUp 500ms cubic-bezier(.25,.46,.45,.94) 200ms forwards;
    }
    .wwa-slide.is-active .wwa-slide-card > *:nth-child(3) {
      animation: wwaUp 500ms cubic-bezier(.25,.46,.45,.94) 280ms forwards;
    }
    .wwa-slide.is-active .wwa-slide-card > *:nth-child(4) {
      animation: wwaUp 500ms cubic-bezier(.25,.46,.45,.94) 360ms forwards;
    }
    @keyframes wwaUp {
      to { opacity: 1; transform: translateY(0); }
    }

    .wwa-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .24em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 14px;
    }
    .wwa-chip::before {
      content: "";
      display: block;
      width: 20px;
      height: 1.5px;
      background: var(--gold);
      flex-shrink: 0;
    }
    .wwa-slide-title {
      font-family: var(--serif);
      font-size: clamp(20px, 2.2vw, 28px);
      font-weight: 600;
      color: var(--ink);
      line-height: 1.15;
      margin-bottom: 14px;
      letter-spacing: -.01em;
    }
    .wwa-slide-body {
      font-size: 13.5px;
      line-height: 1.75;
      color: var(--muted);
      max-width: 360px;
      margin-bottom: 22px;
    }
    .wwa-slide-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--ink);
      border-bottom: 1.5px solid var(--ink);
      padding-bottom: 2px;
      transition: color .22s ease, border-color .22s ease, gap .22s ease;
      width: fit-content;
    }
    .wwa-slide-link:hover { color: var(--br-600); border-color: var(--br-600); gap: 10px; }
    .wwa-slide-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    /* ─── Side arrows  sit on the stage-wrap edges, work on desktop and mobile ─── */
    .wwa-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 20;
      width: 44px; height: 44px;
      border-radius: 50%;
      border: 1.5px solid rgba(26,20,16,.12);
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(6px);
      display: grid;
      place-items: center;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(26,20,16,.08);
      transition: border-color .25s, background .25s, transform .3s, box-shadow .25s;
    }
    .wwa-arrow:hover {
      border-color: var(--ink);
      background: var(--ink);
      box-shadow: 0 8px 24px rgba(26,20,16,.18);
      transform: translateY(-50%) scale(1.05);
    }
    .wwa-arrow:active { transform: translateY(-50%) scale(.92); }
    .wwa-arrow:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 2px;
    }
    /* Positioned on the wrap, so they're never clipped by the stage's overflow */
    .wwa-arrow-prev { left: -12px; }
    .wwa-arrow-next { right: -12px; }
    .wwa-arrow svg {
      width: 15px; height: 15px;
      stroke: var(--ink);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: stroke .25s;
    }
    .wwa-arrow:hover svg { stroke: #fff; }
    .wwa-stage:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 4px;
    }

    /* Tablet / smaller desktop: shrink the wrap margins so the side
       arrows never crowd or overlap the slide-card copy */
    @media (min-width: 901px) and (max-width: 1180px) {
      .wwa-stage-wrap { margin: 0 40px; }
      .wwa-stage { height: 380px; }
      .wwa-arrow { width: 38px; height: 38px; }
      .wwa-slide-card { padding: 28px 30px 32px; }
    }

    /* ─── Progress indicator row (arrows removed  only the bars remain) ─── */
    .wwa-nav {
      display: flex;
      align-items: center;
      padding: 24px 72px 56px;
    }
    .wwa-progress-group {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .wwa-bars {
      display: flex;
      gap: 6px;
    }
    .wwa-bar {
      flex: 1;
      height: 2px;
      border-radius: 2px;
      background: rgba(26,20,16,.1);
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: background .3s;
    }
    .wwa-bar::after {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--ink);
      transform: scaleX(0);
      transform-origin: left;
    }
    .wwa-bar.active::after {
      transform: scaleX(1);
      transition: transform 600ms cubic-bezier(.4,0,.2,1);
    }
    .wwa-bar:hover { background: rgba(26,20,16,.18); }

    /* ─── Mobile: native horizontal scroll snap ─── */
    @media (max-width: 900px) {
      .wwa-header {
        padding: 40px 24px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
      }
      .wwa-count { padding-bottom: 0; }

      /* Stage becomes a horizontal scroll container */
      .wwa-stage {
        margin: 0;
        height: auto;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
        padding: 0 24px 4px;
        border-radius: 0;
        box-shadow: none;
      }
      .wwa-stage::-webkit-scrollbar { display: none; }

      /* Each slide is a self-contained scrollable card */
      .wwa-slide {
        position: relative;
        flex: 0 0 85%;
        min-width: 85%;
        grid-template-columns: 1fr;
        grid-template-rows: 200px 1fr;
        border-radius: 16px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: none;
        inset: unset;
        scroll-snap-align: start;
        box-shadow: 0 4px 20px rgba(26,20,16,.08);
      }
      .wwa-slide-photo { height: 100%; }
      .wwa-slide-photo-inner { transform: scale(1) !important; }
      .wwa-slide-card {
        padding: 24px 22px 28px;
        border-left: none;
        border-top: 1px solid rgba(26,20,16,.06);
      }
      .wwa-slide-card::before { font-size: 60px; bottom: 6px; right: 12px; }
      .wwa-slide-card > * {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
      }
      .wwa-slide-body { max-width: 100%; margin-bottom: 18px; }

      /* Side arrows stay visible on mobile too  smaller, tucked closer
         to the edges of the viewport so they don't crowd the cards */
      .wwa-stage-wrap { margin: 0 6px; }
      .wwa-arrow {
        width: 38px; height: 38px;
        box-shadow: 0 2px 12px rgba(26,20,16,.1);
      }
      .wwa-arrow-prev { left: 2px; }
      .wwa-arrow-next { right: 2px; }
      .wwa-arrow svg { width: 13px; height: 13px; }

      /* Progress bars: full-width, centered */
      .wwa-nav {
        padding: 16px 24px 40px;
      }
    }

    @media (max-width: 480px) {
      .wwa-slide { flex: 0 0 92%; min-width: 92%; }
      .wwa-slide-card { padding: 18px 18px 24px; }
      .wwa-slide-title { font-size: 18px; }
      .wwa-nav { padding: 12px 16px 36px; }
      .wwa-arrow { width: 34px; height: 34px; }
    }
    /* ── Testimonials ── */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    @media (max-width: 880px) { 
      .testi-grid { 
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 14px !important;
        padding-bottom: 12px !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        grid-template-columns: unset !important;
        flex-wrap: nowrap !important;
      }
      .testi-grid::-webkit-scrollbar { display: none !important; }
      .testi-card {
        min-width: 80vw !important;
        scroll-snap-align: start !important;
        flex-shrink: 0 !important;
        padding: 22px 20px !important;
        margin-bottom: 0 !important;
      }
    }

    .testi-card {
      padding: 28px;
      border-radius: var(--r);
      background: var(--white);
      border: 1px solid rgba(26,20,16,.08);
      box-shadow: var(--shadow-sm);
    }
    .testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
    .testi-body { font-size: 14.5px; line-height: 1.8; color: var(--muted); margin-bottom: 16px; font-style: italic; }
    .testi-who { font-weight: 600; font-size: 14px; color: var(--ink); }
    .testi-where { font-size: 12px; color: var(--muted); margin-top: 2px; }

    /* ── Floating WhatsApp Button ── */
    .whatsapp-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(0,0,0,.25);
      z-index: 1200;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 32px rgba(0,0,0,.3); }
    .whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
    @media (max-width: 640px) {
      .whatsapp-float { right: 16px; bottom: 16px; width: 50px; height: 50px; }
      .whatsapp-float svg { width: 26px; height: 26px; }
    }

    /* ── Contact ── */
    .contact-section {
      background: linear-gradient(135deg, var(--green) 0%, var(--green) 60%, var(--green) 100%);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    .contact-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }
    .contact-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    @media (max-width: 820px) { .contact-inner { grid-template-columns: 1fr; gap: 40px; } }

    .contact-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }
    .contact-title {
      font-family: var(--serif);
      font-size: clamp(26px, 3.4vw, 44px);
      font-weight: 700;
      line-height: 1.12;
      color: #fff;
      margin-bottom: 16px;
    }
    .contact-lead {
      font-size: 15px;
      line-height: 1.85;
      color: rgba(255,255,255,.62);
      margin-bottom: 32px;
    }
    .contact-btns { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-cream {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--gold);
      color: var(--br-900);
      padding: 14px 28px;
      border-radius: 10px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: background .2s ease, transform .2s ease;
    }
    .btn-cream:hover { background: var(--gold-lt); transform: translateY(-2px); }
    .btn-ghost-light {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent;
      color: rgba(255,255,255,.85);
      padding: 13px 28px;
      border-radius: 10px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      border: 1.5px solid rgba(255,255,255,.28);
      cursor: pointer;
      transition: border-color .2s ease, color .2s ease, transform .2s ease;
    }
    .btn-ghost-light:hover { border-color: rgba(255,255,255,.6); color: #fff; transform: translateY(-2px); }

    /* Contact card */
    .contact-card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 22px;
      padding: 36px;
      backdrop-filter: blur(10px);
    }
    .contact-card-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }
    .contact-card-value {
      font-size: 15px;
      line-height: 1.9;
      color: rgba(255,255,255,.75);
    }
    .contact-card-value a { color: rgba(255,255,255,.9); border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 1px; transition: border-color .2s; }
    .contact-card-value a:hover { border-color: var(--gold); }
    .contact-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 22px 0; }

    /* Social icons  light version */
    .social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
    .social a {
      width: 40px; height: 40px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.06);
      transition: border-color .2s ease, transform .2s ease, background .2s ease;
    }
    .social a:hover { border-color: var(--gold); background: rgba(199,163,107,.15); transform: translateY(-3px); }
    .social a svg { width: 16px; height: 16px; fill: rgba(255,255,255,.75); }
    .social a:hover svg { fill: var(--gold); }

    /* ── Shop section ── */
    .shop-section { background: var(--white); }
    .shop-shell {
      padding: 28px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(250,248,243,.8));
      border: 1px solid rgba(26,20,16,.08);
      box-shadow: var(--shadow-md);
    }
    .shop-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    .tabs { display: flex; flex-wrap: wrap; gap: 8px; }
    .tab {
      border-radius: 999px;
      border: 1px solid rgba(26,20,16,.15);
      background: transparent;
      padding: 8px 14px;
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      cursor: pointer;
      color: var(--muted);
      transition: all .2s ease;
    }
    .tab:hover { border-color: rgba(26,20,16,.3); color: var(--ink); }
    .tab.active {
      background: var(--ink);
      border-color: var(--ink);
      color: #fff;
    }

    /* Product grid (shop) */
    .shop-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    @media (max-width: 980px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 540px) { .shop-grid { grid-template-columns: 1fr; } }

    .shop-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(26,20,16,.08);
      box-shadow: var(--shadow-sm);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .sc-img-wrap {
      position: relative;
      overflow: hidden;
      background: #f2ebe0;
    }
    .sc-img {
      height: 210px;
      background: center/cover no-repeat #f2ebe0;
      transition: transform .4s ease;
    }
    .shop-card:hover .sc-img { transform: scale(1.05); }
    .sc-body { padding: 14px; }
    .sc-meta {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }
    .sc-name { font-family: var(--serif); font-size: 17px; font-weight: 600; margin-bottom: 6px; }
    .sc-desc { font-size: 13px; line-height: 1.7; color: var(--muted); margin-bottom: 12px; }
    .sc-foot { display: flex; gap: 8px; flex-wrap: wrap; }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 4px;
      padding: 10px 18px;
      border: 1px solid transparent;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .2s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-dark {
      background: var(--ink);
      color: #fff;
      box-shadow: 0 6px 20px rgba(26,20,16,.18);
    }
    .btn-dark:hover { background: var(--br-700); }
    .btn-outline {
      background: transparent;
      border-color: rgba(26,20,16,.2);
      color: var(--ink);
    }
    .btn-outline:hover { border-color: rgba(26,20,16,.4); }

    /* ── Footer ── */
    footer {
      background: var(--br-900);
      padding: 60px 0 0;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    @media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }

    .footer-brand-name {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
      letter-spacing: .04em;
    }
    .footer-fine {
      font-size: 13px;
      line-height: 1.85;
      color: rgba(255,255,255,.45);
      max-width: 300px;
      margin-bottom: 22px;
    }
    .footer-social { display: flex; gap: 10px; }
    .footer-social a {
      width: 36px; height: 36px;
      border-radius: 50%;
      display: grid; place-items: center;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      transition: all .2s ease;
    }
    .footer-social a:hover { border-color: var(--gold); background: rgba(199,163,107,.12); transform: translateY(-2px); }
    .footer-social a svg { width: 15px; height: 15px; fill: rgba(255,255,255,.65); }
    .footer-social a:hover svg { fill: var(--gold); }

    .footer-col-title {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-size: 13.5px;
      color: rgba(255,255,255,.5);
      transition: color .2s ease;
      line-height: 1;
    }
    .footer-links a:hover { color: #fff; }

    .footer-bottom {
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .footer-copy {
      font-size: 12px;
      color: rgba(255,255,255,.3);
    }
    .footer-copy-links { display: flex; gap: 18px; }
    .footer-copy-links a { font-size: 12px; color: rgba(255,255,255,.3); transition: color .2s; }
    .footer-copy-links a:hover { color: rgba(255,255,255,.65); }

    /* ── Overlays: cart drawer ── */
    .drawer-overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,.44);
      opacity: 0; pointer-events: none;
      transition: opacity .2s ease;
      z-index: 1090;
    }
    .drawer-overlay.on { opacity: 1; pointer-events: auto; }

    .drawer {
      position: fixed;
      top: 0; right: 0;
      width: min(440px, 94vw); height: 100%;
      background: #fff;
      border-left: 1px solid var(--line);
      box-shadow: -20px 0 60px rgba(0,0,0,.14);
      transform: translateX(16px);
      opacity: 0; pointer-events: none;
      transition: transform .22s ease, opacity .22s ease;
      display: flex; flex-direction: column;
      z-index: 1100;
    }
    .drawer.on { transform: none; opacity: 1; pointer-events: auto; }
    .drawer-head {
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--line);
    }
    .drawer-title { font-family: var(--serif); font-size: 20px; font-weight: 600; }
    .drawer-body { padding: 16px 20px; overflow: auto; flex: 1; }
    .drawer-foot { padding: 16px 20px; border-top: 1px solid var(--line); }

    .cart-item {
      display: grid;
      grid-template-columns: 76px 1fr;
      gap: 12px;
      padding: 14px 0;
      border-bottom: 1px dashed rgba(26,20,16,.12);
    }
    .cart-thumb {
      width: 76px; height: 76px;
      border-radius: 12px;
      background: center/cover no-repeat #f0e8dc;
    }
    .cart-name { font-weight: 700; font-size: 14px; }
    .cart-meta { font-size: 12px; color: var(--muted); margin-top: 4px; }
    .qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
    .qty button {
      width: 30px; height: 30px;
      border-radius: 8px;
      border: 1px solid rgba(26,20,16,.15);
      background: #fff;
      cursor: pointer;
      font-size: 16px;
    }
    .qty span { min-width: 24px; text-align: center; font-weight: 700; font-size: 13px; }
    .link-btn {
      padding: 0; border: 0; background: transparent;
      color: var(--muted); text-decoration: underline;
      cursor: pointer; font-size: 12px;
    }

    .checkout-form {
      margin-top: 18px;
      padding: 20px;
      border-radius: 14px;
      background: rgba(250,248,243,.8);
      border: 1px solid rgba(26,20,16,.10);
    }
    .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    @media (max-width: 480px) { .row-2 { grid-template-columns: 1fr; } }
    .field { display: grid; gap: 5px; margin-top: 10px; }
    .field label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
    .field input, .field select {
      height: 42px;
      border-radius: 10px;
      border: 1px solid rgba(26,20,16,.15);
      background: #fff;
      padding: 0 12px;
      width: 100%;
    }

    /* ── Product modal ── */
    .modal {
      position: fixed; inset: 0;
      display: grid; place-items: center;
      background: rgba(0,0,0,.52);
      opacity: 0; pointer-events: none;
      transition: opacity .2s ease;
      z-index: 1200;
    }
    .modal.on { opacity: 1; pointer-events: auto; }
    .modal-card {
      width: min(920px, 94vw);
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      display: grid;
      grid-template-columns: 1fr 1fr;
      box-shadow: 0 40px 100px rgba(0,0,0,.24);
    }
    @media (max-width: 780px) { .modal-card { grid-template-columns: 1fr; } }
    .modal-img { min-height: 320px; background: center/cover no-repeat #f0e8dc; }
    .modal-body { padding: 32px; }
    .modal-body h3 { font-family: var(--serif); font-size: 28px; font-weight: 600; margin-top: 8px; }
    .modal-close {
      position: absolute;
      top: 14px; right: 14px;
      width: 40px; height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(26,20,16,.14);
      background: rgba(255,255,255,.95);
      cursor: pointer;
      font-size: 16px;
    }

    /* ── Reveal animation ── */
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.in { opacity: 1; transform: none; }


    /* ═══════════════════════════════════════════════
       MOBILE REDESIGN  @media max-width: 767px
       Premium feel inspired by Sandstorm Kenya
       ═══════════════════════════════════════════════ */
    @media (max-width: 767px) {

      /* ── Hero section ── */
      .hero-bg {
        /* Flush the hero right under the fixed navbar  no gap above it */
        margin-top: -72px !important;
        min-height: 64vh !important;
        max-height: 560px;
        padding-top: 96px !important;
        padding-bottom: 32px !important;
        background-position: 70% 38%, center 32% !important;
        background-size: 145% auto, cover !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        border-radius: 0 0 28px 28px;
        overflow: hidden;
      }

      /* Dedicated mobile overlay: clear cream wash from the top-left,
         where the headline now lives, fading out toward the lower-right
         where the busiest part of the photo sits */
      .hero-bg::before {
        display: block;
        background:
          linear-gradient(180deg,
            rgba(250,248,243,.97) 0%,
            rgba(250,248,243,.93) 32%,
            rgba(250,248,243,.55) 58%,
            rgba(250,248,243,.15) 80%,
            rgba(250,248,243,0) 100%),
          linear-gradient(100deg,
            rgba(250,248,243,.5) 0%,
            rgba(250,248,243,.18) 45%,
            rgba(250,248,243,0) 70%);
      }

      /* Remove the desktop text-shadow recipe and use a stronger one tuned
         for the top-anchored mobile layout */
      .hero-bg h2.font-script,
      .hero-bg h1.font-serif,
      .hero-bg p.text-lg {
        text-shadow: 0 2px 16px rgba(250,248,243,.92), 0 1px 2px rgba(250,248,243,.7);
      }

      .hero-bg > .max-w-7xl {
        padding: 0 24px 0;
        width: 100%;
      }

      /* Hero text content */
      .hero-bg .w-full {
        width: 100% !important;
        text-align: left;
      }

      /* Hero heading sizes */
      .hero-bg h2.font-script {
        font-size: 3rem !important;
        margin-bottom: -6px !important;
        animation: heroFadeUp .65s cubic-bezier(.22,1,.36,1) .08s both;
      }
      .hero-bg h1.font-serif {
        font-size: 2.35rem !important;
        line-height: 1.08 !important;
        margin-bottom: 14px !important;
        animation: heroFadeUp .65s cubic-bezier(.22,1,.36,1) .22s both;
      }
      .hero-bg p.text-lg {
        font-size: .95rem !important;
        margin-bottom: 26px !important;
        letter-spacing: .12em !important;
        animation: heroFadeIn .55s ease .38s both;
      }
      .hero-bg a[href="/shop"],
      .hero-bg a[href*="shop"] {
        padding: 15px 30px !important;
        font-size: 12px !important;
        letter-spacing: .1em;
        border-radius: 999px !important;
        animation: heroFadeIn .55s ease .5s both;
        transition: transform .22s ease, background .22s ease, box-shadow .22s ease !important;
        box-shadow: 0 8px 28px rgba(26,20,16,.22);
      }
      .hero-bg a[href="/shop"]:active,
      .hero-bg a[href*="shop"]:active {
        transform: scale(.97);
      }

      /* Hero badge  hide on small screens, feels cramped */
      .hero-badge {
        display: none;
      }
      .nav-inner {
        position: relative;
        justify-content: space-between;
        gap: 8px;
      }
      .brand {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
      }
      .brand-logo {
        display: flex;
        flex-direction: column;
        line-height: 1;
      }
      .brand-logo-img {
        width: 36px;
        height: 36px;
      }
      .brand-name {
        font-size: 16px;
      }
      .brand-sub {
        font-size: 7px;
      }
      /* Hamburger moves to right slot */
      .hamburger {
        order: 2;
        margin-left: 0;
      }
      .nav-actions {
        order: 1;
        gap: 4px;
      }
      .nav-actions .icon-btn:first-child {
        display: none;
      }

      /* ── Featured Products ── */
      .featured-section {
        padding: 36px 0 40px;
      }
      .featured-header {
        margin-bottom: 16px;
      }
      .featured-label {
        font-size: 16px;
      }
      .featured-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
      }
      .fp-card {
        border-radius: 14px;
      }
      .fp-img-area {
        aspect-ratio: 1 / 1.08 !important;
      }
      .fp-body {
        padding: 10px 12px 12px;
      }
      .fp-name {
        font-size: 12px;
        line-height: 1.35;
        margin-bottom: 2px;
      }
      .fp-price {
        font-size: 13px;
      }
      .fp-heart {
        bottom: 8px;
        right: 8px;
      }
      .fp-heart-icon,
      .fp-heart-outline {
        font-size: 16px;
      }

      /* ── About section ── */
      .about-section {
        padding: 56px 0 48px;
      }
      /* Reflow: image above, text below */
      .about-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
      }
      .about-collage {
        height: 280px !important;
        margin-bottom: 32px;
        border-radius: 20px;
        overflow: hidden;
      }

      /* On mobile, main image fills as a single elegant full-width composition */
      .about-img-main {
        position: absolute;
        bottom: 0; left: 0;
        width: 46%;
        border-radius: 16px;
        box-shadow: 0 12px 40px rgba(26,20,16,.16);
      }
      .about-img-secondary {
        position: absolute;
        top: 0; right: 0;
        width: 52%;
        border-radius: 16px;
        box-shadow: 0 12px 40px rgba(26,20,16,.16);
      }

      /* Stats card: smaller, better positioned */
      .about-stats-card {
        top: 10px;
        left: 12px;
        min-width: 140px;
        padding: 10px 13px;
        border-radius: 12px;
      }
      .about-stats-number {
        font-size: 20px;
        margin-bottom: 2px;
      }
      .about-stats-label {
        font-size: 10px;
        margin-bottom: 8px;
      }
      .about-avatar {
        width: 22px; height: 22px;
      }

      /* Ratings card: reposition */
      .about-ratings-card {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        padding: 8px 14px;
        border-radius: 12px;
      }
      .about-ratings-label { font-size: 9px; }
      .about-ratings-emojis { font-size: 15px; }

      /* About copy  more breathing room */
      .about-copy .about-eyebrow {
        margin-bottom: 6px;
        font-size: 10px;
        letter-spacing: .2em;
      }
      .about-title {
        font-size: clamp(26px, 7vw, 34px) !important;
        margin-bottom: 14px;
        line-height: 1.1;
      }
      .about-body {
        font-size: 14.5px;
        line-height: 1.82;
        margin-bottom: 24px;
      }
      .about-explore-btn {
        padding: 13px 26px;
        border-radius: 12px;
        font-size: 12px;
        letter-spacing: .1em;
      }

      /* ── Why Choose Us ── */
      .section {
        padding: 48px 0 !important;
      }
      .why-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
      }
      .why-card {
        padding: 24px 20px;
      }
      .section-title {
        font-size: clamp(21px, 6.5vw, 28px) !important;
      }

      /* ── Testimonials ── */
      .testi-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 14px !important;
        padding-bottom: 12px !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        grid-template-columns: unset !important;
        flex-wrap: nowrap !important;
      }
      .testi-grid::-webkit-scrollbar { display: none !important; }
      .testi-card {
        min-width: 80vw !important;
        scroll-snap-align: start !important;
        flex-shrink: 0 !important;
        padding: 22px 20px !important;
        margin-bottom: 0 !important;
      }

      /* ── Contact ── */
      .contact-section {
        padding: 56px 0;
      }
      .contact-inner {
        gap: 32px !important;
      }
      .contact-title {
        font-size: clamp(22px, 6.5vw, 30px) !important;
        margin-bottom: 12px;
      }
      .contact-lead {
        font-size: 14px;
        margin-bottom: 24px;
      }
      .contact-btns {
        gap: 10px;
      }
      .btn-cream, .btn-ghost-light {
        padding: 13px 22px;
        font-size: 11.5px;
        border-radius: 12px;
      }
      .contact-card {
        padding: 24px 20px;
        border-radius: 18px;
      }

      /* ── Buttons  more rounded, premium tap feel ── */
      .btn {
        border-radius: 10px !important;
        padding: 11px 18px !important;
      }
      .btn:active { transform: scale(.97) !important; }

      /* ── General spacing ── */
      .section-header {
        margin-bottom: 28px;
      }
      .section-eyebrow {
        margin-bottom: 6px;
      }

      /* ── Shop grid on mobile ── */
      .shop-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
      }
      .sc-img { height: 160px !important; }
      .sc-body { padding: 10px 10px 12px !important; }
      .sc-name { font-size: 14px !important; }
      .sc-desc { font-size: 12px !important; }
      .sc-foot { gap: 6px !important; }
      .sc-foot .btn { padding: 9px 12px !important; font-size: 10px !important; }

      /* ── Footer ── */
      .footer-top {
        gap: 28px;
      }

    } /* end @media 767px */

    /* ── Why Choose Us  Flip Card Carousel ── */
    .why-carousel-section {
      background: var(--cream);
      padding: 100px 0 80px;
      overflow: hidden;
    }
    .why-carousel-header {
      margin-bottom: 52px;
    }
    .why-carousel-title {
      font-family: var(--serif);
      font-size: clamp(26px, 3.2vw, 42px);
      font-weight: 600;
      line-height: 1.12;
      color: var(--ink);
      margin-top: 8px;
    }
    .why-carousel-title em { font-style: italic; color: var(--br-600); }

    /* Arrow buttons */
    .why-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-top: 28px;
      padding: 0 20px;
    }
    .why-arrow {
      width: 48px; height: 48px;
      border-radius: 50%;
      border: 1.5px solid rgba(26,20,16,.2);
      background: #fff;
      display: grid; place-items: center;
      cursor: pointer;
      transition: border-color .2s, background .2s, transform .2s;
      flex-shrink: 0;
    }
    .why-arrow:hover { border-color: var(--ink); background: var(--ink); }
    .why-arrow:hover svg { stroke: #fff; }
    .why-arrow:active { transform: scale(.92); }
    .why-arrow svg { width: 18px; height: 18px; stroke: var(--ink); transition: stroke .2s; }
    .why-arrow:disabled { opacity: .28; cursor: default; pointer-events: none; }

    /* Track */
    .why-track-outer {
      overflow: hidden;
      padding: 0 32px 24px;
    }
    @media (max-width: 640px) { .why-track-outer { padding: 0 20px 20px; } }

    .why-track {
      display: flex;
      gap: 24px;
      transition: transform .52s cubic-bezier(.4,0,.2,1);
      will-change: transform;
      align-items: stretch;
    }

    /* Flip card shell */
    .why-flip-card {
      flex: 0 0 calc(33.333% - 16px);
      min-height: 320px;
      perspective: 900px;
      cursor: pointer;
    }
    @media (max-width: 900px) { .why-flip-card { flex: 0 0 calc(80vw - 20px); } }
    @media (max-width: 540px)  { .why-flip-card { flex: 0 0 calc(88vw - 20px); min-height: 280px; } }

    /* Inner  the thing that flips */
    .why-flip-inner {
      position: relative;
      width: 100%; height: 100%;
      min-height: inherit;
      transform-style: preserve-3d;
      transition: transform .6s cubic-bezier(.4,0,.2,1);
    }
    .why-flip-card.flipped .why-flip-inner {
      transform: rotateY(180deg);
    }

    /* Front & back share positioning */
    .why-flip-front,
    .why-flip-back {
      position: absolute;
      inset: 0;
      border-radius: 20px;
      padding: 40px 36px;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      min-height: inherit;
    }

    /* Front  dark ink card with big number */
    .why-flip-front {
      background: var(--ink);
      color: #fff;
    }
    .why-card-num {
      font-family: var(--serif);
      font-size: clamp(64px, 8vw, 100px);
      font-weight: 700;
      line-height: 1;
      color: rgba(255,255,255,.1);
      position: absolute;
      top: 28px; right: 32px;
      letter-spacing: -.02em;
      pointer-events: none;
      user-select: none;
    }
    .why-flip-front .why-card-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .why-flip-front .why-card-heading {
      font-family: var(--serif);
      font-size: clamp(20px, 2.2vw, 26px);
      font-weight: 600;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .why-card-hint {
      font-size: 11px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.4);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .why-card-hint::after {
      content: "↗";
      font-size: 13px;
      color: var(--gold);
    }

    /* Back  warm cream with text */
    .why-flip-back {
      background: #fff;
      border: 1px solid rgba(26,20,16,.08);
      box-shadow: var(--shadow-md);
      transform: rotateY(180deg);
      justify-content: center;
    }
    .why-flip-back .why-card-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .why-flip-back .why-card-heading {
      font-family: var(--serif);
      font-size: clamp(18px, 2vw, 24px);
      font-weight: 600;
      color: var(--ink);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .why-card-body {
      font-size: 14.5px;
      line-height: 1.85;
      color: var(--muted);
    }

    /* Dots */
    .why-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      flex: 1;
    }
    .why-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(26,20,16,.2);
      transition: background .25s, width .25s;
      cursor: pointer;
    }
    .why-dot.active {
      background: var(--ink);
      width: 20px;
      border-radius: 3px;
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    }
    @media (max-width: 767px) {
}
