/* ═══════════════════════════════════════════
   AHARA STORE — main.css
   All colours explicitly set — no inheritance
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,700;1,500&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --ah-forest:      #1E3A2F;
  --ah-forest-dk:   #162D24;
  --ah-forest-md:   #2D5240;
  --ah-sage:        #4A7C59;
  --ah-amber:       #C8861A;
  --ah-amber-lt:    #E8A832;
  --ah-amber-dk:    #B8770E;
  --ah-cream:       #F7F2E8;
  --ah-warm-white:  #FEFCF7;
  --ah-text-dark:   #1A1A14;
  --ah-text-mid:    #4A4535;
  --ah-text-muted:  #9A9580;
  --ah-border:      rgba(30,58,47,0.12);
}

/* ── Global reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ah-warm-white);
  color: var(--ah-text-dark);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
#ahara-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
}

/* Top Bar */
.ah-topbar {
  background: var(--ah-forest);
  padding: 7px 32px;
  font-size: 11px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ah-topbar,
.ah-topbar span,
.ah-topbar a {
  color: rgba(247,242,232,0.82) !important;
}
.ah-topbar a:hover { color: #F7F2E8 !important; }
.ah-topbar-left  { display: flex; align-items: center; gap: 16px; }
.ah-topbar-right { display: flex; align-items: center; gap: 14px; }
.ah-tp-div { width: 1px; height: 10px; background: rgba(255,255,255,0.18); display: inline-block; }
.ah-tp-dot { width: 3px; height: 3px; background: rgba(200,134,26,0.7); border-radius: 50%; display: inline-block; }

/* Main Nav */
.ah-nav-main {
  background: var(--ah-cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 72px;
  border-bottom: 1px solid var(--ah-border);
}

/* Logo */
.ah-logo { display: flex; align-items: center; gap: 13px; }
.ah-logo-emblem {
  width: 46px; height: 46px;
  background: var(--ah-forest);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.ah-logo-emblem::after {
  content: '';
  position: absolute; inset: 3px;
  border-radius: 50%;
  border: 1px solid rgba(200,134,26,0.4);
}
.ah-logo-emblem svg,
.ah-logo-emblem img {
  width: 22px; height: 22px;
  object-fit: contain;
  position: relative; z-index: 1;
}
.ah-logo-img { filter: brightness(0) invert(1); }
.ah-logo-text { line-height: 1; }
.ah-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700;
  color: var(--ah-forest) !important;
  display: block;
}
.ah-logo-sub { display: flex; align-items: center; gap: 5px; margin-top: 3px; }
.ah-logo-sub span { font-size: 9px; letter-spacing: 0.11em; color: var(--ah-sage) !important; text-transform: uppercase; }
.ah-logo-subdot { width: 3px; height: 3px; background: var(--ah-amber); border-radius: 50%; }

/* Nav links */
.ah-nav-links { display: flex; align-items: center; }
.ah-nav-links li a {
  color: var(--ah-text-mid) !important;
  font-size: 13px;
  padding: 0 15px;
  height: 72px;
  display: flex; align-items: center; gap: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
}
.ah-nav-links li a:hover { color: var(--ah-forest) !important; border-bottom-color: var(--ah-amber); }
.ah-nav-links li a.active { color: var(--ah-forest) !important; font-weight: 500; border-bottom-color: var(--ah-forest); }
.ah-arr { font-size: 8px; opacity: 0.4; }
.ah-new-badge {
  background: #FFF0D4; color: #8A5A00 !important;
  font-size: 8px; padding: 2px 5px; border-radius: 4px;
  font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
}

/* Nav right */
.ah-nav-right { display: flex; align-items: center; gap: 8px; }
.ah-search-wrap {
  display: flex; align-items: center; gap: 8px;
  background: white;
  border: 1px solid var(--ah-border);
  border-radius: 22px;
  padding: 0 14px; height: 38px; width: 190px;
  transition: border-color 0.15s;
}
.ah-search-wrap:focus-within { border-color: var(--ah-sage); }
.ah-search-wrap input {
  background: transparent; border: none; outline: none;
  color: var(--ah-text-dark) !important;
  font-size: 12px; width: 100%;
  font-family: 'DM Sans', sans-serif;
}
.ah-search-wrap input::placeholder { color: var(--ah-text-muted); }
.ah-icon-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--ah-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ah-text-mid) !important;
  font-size: 15px; background: white;
  transition: all 0.15s; position: relative;
}
.ah-icon-btn:hover { background: var(--ah-forest) !important; color: white !important; border-color: var(--ah-forest); }
.ah-icon-btn svg { stroke: currentColor; }
.ah-badge-dot {
  position: absolute; top: -2px; right: -2px;
  background: var(--ah-amber); color: white !important;
  font-size: 8px; width: 15px; height: 15px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 500; border: 1.5px solid var(--ah-cream);
}
.ah-cart-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--ah-forest);
  padding: 0 16px; height: 40px; border-radius: 22px;
  border: none; cursor: pointer;
  transition: background 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.ah-cart-pill:hover { background: var(--ah-forest-md); }
.ah-cart-pill svg { flex-shrink: 0; }
.ah-cart-divider { width: 1px; height: 22px; background: rgba(247,242,232,0.2); }
.ah-cart-info { display: flex; flex-direction: column; align-items: flex-start; }
.ah-cart-label { font-size: 9px; letter-spacing: 0.07em; text-transform: uppercase; line-height: 1; color: rgba(247,242,232,0.6) !important; }
.ah-cart-val { font-size: 13px; font-weight: 500; line-height: 1.4; color: #F7F2E8 !important; }

/* Category Strip */
.ah-cat-strip {
  background: white;
  display: flex; align-items: center;
  padding: 0 32px; height: 40px;
  border-bottom: 2px solid var(--ah-forest);
  overflow: hidden;
}
.ah-cat-link {
  display: flex; align-items: center; gap: 6px;
  padding: 0 14px; height: 40px;
  font-size: 11.5px;
  color: var(--ah-text-mid) !important;
  border-right: 1px solid rgba(30,58,47,0.07);
  transition: all 0.15s; white-space: nowrap;
}
.ah-cat-link:first-child { padding-left: 0; }
.ah-cat-link:hover { color: var(--ah-forest) !important; background: rgba(30,58,47,0.03); }
.ah-cat-link.hot { color: var(--ah-amber) !important; font-weight: 500; }
.ah-cat-link.hot:hover { background: rgba(200,134,26,0.05); }
.ah-cat-emoji { font-size: 13px; }
.ah-strip-right {
  margin-left: auto;
  display: flex; align-items: center; gap: 8px;
  padding-left: 14px;
  border-left: 1px solid rgba(30,58,47,0.07);
  flex-shrink: 0;
}
.ah-strip-badge { font-size: 9.5px; padding: 3px 9px; border-radius: 10px; font-weight: 500; white-space: nowrap; }
.ah-strip-badge.green { background: #E8F2DE; color: #3A6B1A !important; }
.ah-strip-badge.amber { background: #FFF0D4; color: #8A5A00 !important; }

/* Mobile Nav */
.ah-mobile-nav {
  display: none;
  background: var(--ah-cream);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--ah-forest);
}
.ah-mobile-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  color: var(--ah-forest) !important;
}
.ah-mobile-right { display: flex; align-items: center; gap: 8px; }
.ah-hamburger {
  width: 36px; height: 36px;
  background: var(--ah-forest); color: white !important;
  border: none; border-radius: 8px; cursor: pointer;
  font-size: 16px; display: flex; align-items: center; justify-content: center;
}
.ah-mobile-cart {
  width: 36px; height: 36px;
  background: var(--ah-amber); color: white !important;
  border: none; border-radius: 50%; cursor: pointer;
  font-size: 15px; display: flex; align-items: center; justify-content: center;
  position: relative;
  text-decoration: none;
}
.ah-mobile-drawer {
  display: none;
  background: var(--ah-cream);
  border-bottom: 1px solid var(--ah-border);
  padding: 16px 20px 20px;
}
.ah-mobile-drawer.open { display: block; }
.ah-mobile-search {
  display: flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--ah-border);
  border-radius: 22px; padding: 0 14px; height: 40px; margin-bottom: 16px;
}
.ah-mobile-search input {
  background: transparent; border: none; outline: none;
  font-size: 13px; width: 100%; font-family: 'DM Sans', sans-serif;
  color: var(--ah-text-dark) !important;
}
.ah-mobile-links { display: flex; flex-direction: column; }
.ah-mobile-links a {
  color: var(--ah-text-mid) !important;
  font-size: 14px; padding: 11px 0;
  border-bottom: 1px solid rgba(30,58,47,0.07);
  display: flex; align-items: center; justify-content: space-between;
}
.ah-mobile-links a:hover { color: var(--ah-forest) !important; }
.ah-mobile-cats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; margin-top: 16px;
}
.ah-mobile-cat {
  background: white; border-radius: 10px;
  padding: 10px 12px; font-size: 12px;
  color: var(--ah-text-mid) !important;
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--ah-border);
  transition: all 0.15s;
}
.ah-mobile-cat:hover { border-color: var(--ah-sage); color: var(--ah-forest) !important; }

/* ══════════════════════════════════════════
   HOMEPAGE
══════════════════════════════════════════ */
.ahara-page { width: 100%; }

/* Hero */
.ah-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; overflow: hidden; }
.ah-hero-left {
  background: var(--ah-forest);
  padding: 52px 40px 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.ah-hero-left::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(200,134,26,0.12);
}
.ah-hero-left::after {
  content: ''; position: absolute; bottom: -30px; left: 20px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(74,124,89,0.25);
}
.ah-hero-badge {
  background: rgba(200,134,26,0.2);
  border: 1px solid rgba(200,134,26,0.4);
  color: #E8A832 !important;
  padding: 5px 14px; border-radius: 20px;
  font-size: 10.5px; letter-spacing: 0.08em;
  width: fit-content; text-transform: uppercase;
}
.ah-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--ah-cream) !important;
  line-height: 1.15; margin: 20px 0 14px;
  position: relative; z-index: 1;
}
.ah-hero-title em { color: #E8A832 !important; font-style: italic; }
.ah-hero-sub {
  color: rgba(247,242,232,0.75) !important;
  font-size: 13px; line-height: 1.7;
  max-width: 280px; position: relative; z-index: 1;
}
.ah-hero-ctas { display: flex; gap: 10px; margin-top: 24px; position: relative; z-index: 1; }
.ah-btn-primary {
  background: var(--ah-amber); color: white !important;
  padding: 11px 24px; border-radius: 24px; border: none;
  font-family: 'DM Sans', sans-serif; font-size: 12.5px; font-weight: 500;
  cursor: pointer; display: inline-block; transition: background 0.15s;
}
.ah-btn-primary:hover { background: var(--ah-amber-dk); color: white !important; }
.ah-btn-ghost {
  background: transparent; color: var(--ah-cream) !important;
  padding: 11px 20px; border-radius: 24px;
  border: 1px solid rgba(247,242,232,0.35);
  font-family: 'DM Sans', sans-serif; font-size: 12.5px;
  cursor: pointer; display: inline-block; transition: all 0.15s;
}
.ah-btn-ghost:hover { background: rgba(247,242,232,0.08); color: var(--ah-cream) !important; }
.ah-hero-stats { display: flex; gap: 20px; margin-top: 24px; position: relative; z-index: 1; }
.ah-stat-div { width: 1px; background: rgba(247,242,232,0.18); }
.ah-hero-stat strong { display: block; color: var(--ah-cream) !important; font-family: 'Playfair Display', serif; font-size: 18px; }
.ah-hero-stat span { color: rgba(247,242,232,0.55) !important; font-size: 10px; }
.ah-hero-right { display: grid; grid-template-columns: 1fr 1fr; }
.ah-hero-cell {
  position: relative; display: flex; align-items: center;
  justify-content: center; font-size: 52px; min-height: 210px;
  flex-direction: column; gap: 8px;
}
.ah-hc1 { background: linear-gradient(135deg,#8B6914,#C89640); }
.ah-hc2 { background: linear-gradient(135deg,#2D5A40,#4A7C59); }
.ah-hc3 { background: linear-gradient(135deg,#7A4F2D,#A0673D); }
.ah-hc4 { background: linear-gradient(135deg,#3D6E4A,#1E3A2F); }
.ah-cell-label {
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.85) !important; font-family: 'DM Sans', sans-serif;
  background: rgba(0,0,0,0.3); padding: 3px 10px; border-radius: 10px;
}

/* Trust Bar */
.ah-trust-bar {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid var(--ah-border);
  border-top: 1px solid var(--ah-border);
  background: var(--ah-warm-white);
}
.ah-trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px;
  border-right: 1px solid var(--ah-border);
}
.ah-trust-item:last-child { border-right: none; }
.ah-trust-icon {
  width: 32px; height: 32px;
  background: var(--ah-cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.ah-trust-text strong { display: block; font-size: 11.5px; font-weight: 500; color: var(--ah-forest) !important; }
.ah-trust-text span { font-size: 10.5px; color: var(--ah-text-mid) !important; }

/* Section shared */
.ah-section { padding: 36px 28px; }
.ah-section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
.ah-section-title { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--ah-forest) !important; }
.ah-section-link { font-size: 11.5px; color: var(--ah-sage) !important; border-bottom: 1px solid currentColor; }

/* Category grid */
.ah-cat-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; }
.ah-cat-card {
  background: var(--ah-cream); border-radius: 12px;
  padding: 16px 10px; text-align: center;
  border: 1.5px solid transparent; transition: all 0.2s; display: block;
}
.ah-cat-card:hover, .ah-cat-card.active { border-color: var(--ah-forest); background: white; }
.ah-cat-card .ah-cat-emoji { font-size: 26px; display: block; margin-bottom: 8px; }
.ah-cat-name { font-size: 11px; font-weight: 500; color: var(--ah-text-dark) !important; }
.ah-cat-count { font-size: 10px; color: var(--ah-text-muted) !important; margin-top: 2px; }

/* Products */
.ah-products-section { padding: 0 28px 36px; }
.ah-filter-row { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.ah-filter-pill {
  padding: 6px 16px; border-radius: 20px;
  border: 1px solid var(--ah-border);
  font-size: 11.5px; background: white;
  color: var(--ah-text-mid) !important; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.15s;
}
.ah-filter-pill:hover, .ah-filter-pill.active {
  background: var(--ah-forest); color: white !important; border-color: var(--ah-forest);
}
.ah-prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.ah-prod-card {
  background: white; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--ah-border); transition: all 0.2s;
}
.ah-prod-card:hover { border-color: var(--ah-sage); transform: translateY(-2px); }
.ah-prod-img-wrap { height: 140px; position: relative; background: #FDF3DC; overflow: hidden; }
.ah-prod-img-wrap img { width: 100%; height: 140px; object-fit: cover; }
.ah-prod-img-placeholder {
  height: 140px; display: flex; align-items: center;
  justify-content: center; font-size: 44px;
}
.ah-prod-badge {
  position: absolute; top: 8px; left: 8px;
  padding: 3px 9px; border-radius: 10px;
  font-size: 9.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.04em; z-index: 1;
}
.ah-badge-organic    { background: #E8F2DE; color: #3A6B1A !important; }
.ah-badge-new        { background: #FFF0D4; color: #8A5A00 !important; }
.ah-badge-bestseller { background: #F2E8DE; color: #7A3A0A !important; }
.ah-prod-body { padding: 12px; }
.ah-prod-name { font-size: 13px; font-weight: 500; color: var(--ah-text-dark) !important; line-height: 1.3; display: block; }
.ah-prod-name:hover { color: var(--ah-forest) !important; }
.ah-prod-origin { font-size: 10.5px; color: var(--ah-sage) !important; margin-top: 2px; }
.ah-prod-desc { font-size: 11px; color: var(--ah-text-mid) !important; margin-top: 4px; line-height: 1.5; }
.ah-prod-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.ah-prod-price { font-size: 15px !important; font-weight: 500 !important; color: var(--ah-forest) !important; }
.ah-prod-price del, .ah-prod-price .woocommerce-Price-amount + .woocommerce-Price-amount { color: var(--ah-text-muted) !important; font-size: 11px !important; }
.ah-add-btn {
  width: 28px; height: 28px; background: var(--ah-forest);
  color: white !important; border: none; border-radius: 50%;
  cursor: pointer; font-size: 18px; display: flex;
  align-items: center; justify-content: center; transition: background 0.15s;
}
.ah-add-btn:hover { background: var(--ah-sage); }

/* Festival Banner */
.ah-banner {
  margin: 0 28px 32px;
  background: var(--ah-forest);
  border-radius: 16px; padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  overflow: hidden; position: relative;
}
.ah-banner::before {
  content: ''; position: absolute; right: -20px; top: -20px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(200,134,26,0.18);
}
.ah-banner-content h2 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--ah-cream) !important; margin-bottom: 6px; }
.ah-banner-content p { font-size: 12.5px; color: rgba(247,242,232,0.75) !important; max-width: 320px; line-height: 1.6; }
.ah-banner-ctas { display: flex; gap: 10px; margin-top: 18px; }
.ah-banner-right { display: flex; align-items: center; z-index: 1; }
.ah-banner-discount { text-align: center; }
.ah-banner-discount .up-to { font-size: 10px; color: rgba(247,242,232,0.6) !important; text-transform: uppercase; letter-spacing: 0.08em; display: block; }
.ah-banner-discount .pct { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--ah-amber-lt) !important; display: block; }
.ah-banner-discount .lbl { font-size: 10px; color: rgba(247,242,232,0.6) !important; display: block; }

/* Artisan Section */
.ah-artisan-section {
  display: grid; grid-template-columns: 1fr 1fr;
  margin: 0 28px 36px; border-radius: 16px;
  overflow: hidden; border: 1px solid var(--ah-border);
}
.ah-artisan-visual {
  background: linear-gradient(145deg, #4A7C59, #1E3A2F);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 32px; gap: 12px;
}
.ah-artisan-emoji { font-size: 64px; }
.ah-artisan-quote {
  color: rgba(247,242,232,0.82) !important;
  font-size: 12px; font-style: italic; text-align: center;
  font-family: 'Playfair Display', serif; max-width: 200px; line-height: 1.7;
}
.ah-artisan-attr { font-size: 11px; color: rgba(247,242,232,0.5) !important; text-align: center; }
.ah-artisan-info { padding: 36px 32px; background: white; }
.ah-artisan-tag {
  background: var(--ah-cream); color: var(--ah-sage) !important;
  font-size: 10px; padding: 4px 12px; border-radius: 10px;
  width: fit-content; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 14px; display: inline-block;
}
.ah-artisan-info h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--ah-forest) !important; line-height: 1.3; margin-bottom: 12px; }
.ah-artisan-info p { font-size: 12.5px; color: var(--ah-text-mid) !important; line-height: 1.75; margin-bottom: 12px; }
.ah-artisan-link { color: var(--ah-sage) !important; font-size: 12.5px; border-bottom: 1px solid currentColor; }
.ah-artisan-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 20px; }
.ah-a-stat { text-align: center; background: var(--ah-cream); border-radius: 10px; padding: 12px 8px; }
.ah-a-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 20px; color: var(--ah-forest) !important; }
.ah-a-stat span { font-size: 10px; color: var(--ah-text-mid) !important; }

/* Reviews */
.ah-reviews-section { padding: 0 28px 36px; }
.ah-review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.ah-review-card { background: var(--ah-cream); border-radius: 14px; padding: 18px; }
.ah-review-stars { color: var(--ah-amber) !important; font-size: 12px; letter-spacing: 2px; margin-bottom: 8px; }
.ah-review-text { font-size: 12px; color: var(--ah-text-mid) !important; line-height: 1.65; font-style: italic; }
.ah-reviewer { display: flex; align-items: center; gap: 8px; margin-top: 14px; }
.ah-reviewer-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ah-forest); color: var(--ah-cream) !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 500; flex-shrink: 0;
}
.ah-reviewer-name { font-size: 11.5px; font-weight: 500; color: var(--ah-text-dark) !important; }
.ah-reviewer-loc { font-size: 10px; color: var(--ah-text-muted) !important; }
.ah-verified { font-size: 9px; color: var(--ah-sage) !important; margin-left: auto; }

/* Newsletter */
.ah-newsletter {
  margin: 0 28px 36px; background: var(--ah-cream);
  border-radius: 16px; padding: 32px; text-align: center;
  border: 1px solid var(--ah-border);
}
.ah-newsletter h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--ah-forest) !important; margin-bottom: 8px; }
.ah-newsletter p { font-size: 12.5px; color: var(--ah-text-mid) !important; margin-bottom: 20px; }
.ah-nl-form { display: flex; gap: 10px; max-width: 400px; margin: 0 auto; }
.ah-nl-form input {
  flex: 1; border: 1px solid var(--ah-border); border-radius: 24px;
  padding: 10px 18px; font-size: 12.5px;
  font-family: 'DM Sans', sans-serif; background: white; outline: none;
  color: var(--ah-text-dark) !important;
}
.ah-nl-form input:focus { border-color: var(--ah-sage); }
.ah-nl-form button {
  background: var(--ah-forest); color: white !important;
  padding: 10px 22px; border-radius: 24px; border: none;
  font-family: 'DM Sans', sans-serif; font-size: 12.5px; cursor: pointer;
}
.ah-nl-form button:hover { background: var(--ah-sage); }
.ah-nl-perk { font-size: 10.5px; color: var(--ah-sage) !important; margin-top: 10px; margin-bottom: 0 !important; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.ahara-footer {
  background: var(--ah-forest);
  padding: 36px 32px 20px;
}
.ahara-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 28px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  color: var(--ah-cream) !important; margin-bottom: 10px;
}
.footer-brand p { font-size: 12px; color: rgba(247,242,232,0.62) !important; line-height: 1.7; max-width: 220px; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: background 0.15s;
  color: rgba(247,242,232,0.7) !important;
}
.footer-social a:hover { background: rgba(255,255,255,0.15); }
.footer-col h4 {
  color: var(--ah-cream) !important;
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 12px; color: rgba(247,242,232,0.6) !important; transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--ah-cream) !important; }
.ahara-footer-bottom {
  border-top: 1px solid rgba(247,242,232,0.1);
  padding-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.ahara-footer-bottom span { font-size: 11px; color: rgba(247,242,232,0.4) !important; }
.footer-pay { display: flex; gap: 8px; }
.pay-pill {
  background: rgba(247,242,232,0.08);
  border-radius: 5px; padding: 3px 10px;
  font-size: 10px; color: rgba(247,242,232,0.55) !important;
  border: 1px solid rgba(247,242,232,0.12);
}

/* ══════════════════════════════════════════
   GENERAL CONTENT PAGES
══════════════════════════════════════════ */
.ahara-content-wrap {
  max-width: 900px; margin: 0 auto; padding: 48px 28px;
}
.ahara-post .entry-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px; color: var(--ah-forest) !important; margin-bottom: 20px;
}
.ahara-post .entry-content { color: var(--ah-text-mid) !important; line-height: 1.8; font-size: 15px; }

/* ── HERO RIGHT — Consistent Square Crops ───────────────────────────── */
.ah-hero-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;                    /* No gap between cells to keep tight fit */
    height: 100%;              /* Matches the left side height */
}

.ah-hero-cell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;       /* Forces perfect square on all images */
}

.ah-hero-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* Consistent cropping */
    object-position: center center;
    transition: transform 0.4s ease;
}

.ah-hero-cell:hover img {
    transform: scale(1.08);    /* Subtle zoom on hover */
}

/* Overlay for better text readability */
.ah-cell-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.15));
    z-index: 1;
    transition: background 0.3s ease;
}

.ah-hero-cell:hover .ah-cell-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.25));
}

/* Text positioning - improved for square layout */
.ah-cell-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    font-size: 15px;
    font-weight: 600;
    color: #fff !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    letter-spacing: 0.03em;
}

.ah-cell-sub {
    position: absolute;
    bottom: 8px;
    left: 24px;
    z-index: 2;
    font-size: 12.5px;
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Remove the old conflicting styles */
.ah-hero-cell {
    min-height: auto;          /* Override old min-height */
    flex-direction: unset;
    justify-content: unset;
    align-items: unset;
    font-size: inherit;
    background: none !important;   /* Remove old gradient backgrounds */
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .ah-nav-main, .ah-cat-strip, .ah-topbar { display: none; }
  .ah-mobile-nav { display: flex; }
}
@media (min-width: 901px) {
  .ah-mobile-nav, .ah-mobile-drawer { display: none !important; }
}
@media (max-width: 768px) {
  .ah-hero { grid-template-columns: 1fr; }
  .ah-hero-right { display: none; }
  .ah-hero-title { font-size: 28px; }
  .ah-trust-bar { grid-template-columns: repeat(2,1fr); }
  .ah-cat-grid { grid-template-columns: repeat(3,1fr); }
  .ah-prod-grid { grid-template-columns: repeat(2,1fr); }
  .ah-artisan-section { grid-template-columns: 1fr; }
  .ah-review-grid { grid-template-columns: 1fr; }
  .ah-banner { flex-direction: column; gap: 16px; }
  .ah-nl-form { flex-direction: column; }
  .ahara-footer-grid { grid-template-columns: 1fr 1fr; }
  .ahara-footer-bottom { flex-direction: column; gap: 10px; }
}
@media (max-width: 480px) {
  .ah-prod-grid { grid-template-columns: 1fr; }
  .ah-cat-grid { grid-template-columns: repeat(2,1fr); }
  .ah-trust-bar { grid-template-columns: 1fr; }
  .ahara-footer-grid { grid-template-columns: 1fr; }
}
