/* ============================================================
   HARIWANT NATURALS — MAIN CSS
   Matching reference design: premium Ayurvedic D2C brand
   ============================================================ */

/* ── 1. CSS Custom Properties ── */
:root {
  --hn-green:        #355B2E;
  --hn-green-light:  #6F8D52;
  --hn-gold:         #D7B56D;
  --hn-gold-dark:    #b8973e;
  --hn-cream:        #F6F1E7;
  --hn-cream-dark:   #ede7d6;
  --hn-dark:         #2B2B2B;
  --hn-text:         #444444;
  --hn-muted:        #777777;
  --hn-white:        #ffffff;
  --hn-border:       #e5dfd0;
  --hn-shadow-sm:    0 2px 8px rgba(53,91,46,.08);
  --hn-shadow:       0 4px 20px rgba(53,91,46,.12);
  --hn-shadow-lg:    0 8px 40px rgba(53,91,46,.18);
  --hn-radius:       12px;
  --hn-radius-sm:    8px;
  --hn-radius-full:  999px;
  --hn-header-h:     72px;
  --hn-topbar-h:     38px;
  --hn-transition:   0.25s ease;
  --font-heading:    'Cormorant Garamond', Georgia, serif;
  --font-body:       'Poppins', system-ui, sans-serif;
}

/* ── 2. Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--hn-text);
  background: var(--hn-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--hn-green); text-decoration: none; transition: color var(--hn-transition); }
a:hover { color: var(--hn-gold-dark); }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ── 3. Layout Utilities ── */
.hn-container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}

.hn-page-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.hn-site-content { flex: 1; padding-top: calc(var(--hn-topbar-h) + var(--hn-header-h)); }
.hn-homepage .hn-site-content { padding-top: 0; }

.hn-section {
  padding-block: 70px;
}

.hn-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.hn-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--hn-dark);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.hn-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-block: 10px 14px;
  color: var(--hn-green-light);
  font-size: 1.1rem;
}
.hn-section-divider::before,
.hn-section-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hn-gold), transparent);
}

.hn-section-subtitle {
  font-size: 0.95rem;
  color: var(--hn-muted);
  max-width: 560px;
  margin-inline: auto;
}

.hn-section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── 4. Buttons ── */
.hn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--hn-radius-full);
  transition: all var(--hn-transition);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
}

.hn-btn--primary {
  background: var(--hn-green);
  color: var(--hn-white);
  border-color: var(--hn-green);
}
.hn-btn--primary:hover {
  background: var(--hn-green-light);
  border-color: var(--hn-green-light);
  color: var(--hn-white);
  transform: translateY(-2px);
  box-shadow: var(--hn-shadow);
}

.hn-btn--gold {
  background: var(--hn-gold);
  color: var(--hn-dark);
  border-color: var(--hn-gold);
}
.hn-btn--gold:hover {
  background: var(--hn-gold-dark);
  border-color: var(--hn-gold-dark);
  color: var(--hn-white);
  transform: translateY(-2px);
}

.hn-btn--outline-light {
  background: transparent;
  color: var(--hn-white);
  border-color: var(--hn-white);
}
.hn-btn--outline-light:hover {
  background: var(--hn-white);
  color: var(--hn-green);
}

.hn-btn--outline-dark {
  background: transparent;
  color: var(--hn-green);
  border-color: var(--hn-green);
}
.hn-btn--outline-dark:hover {
  background: var(--hn-green);
  color: var(--hn-white);
}

.hn-btn--lg { padding: 14px 32px; font-size: 0.95rem; }
.hn-btn--sm { padding: 8px 16px; font-size: 0.8rem; }

.hn-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ── 5. Top Bar ── */
.hn-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--hn-topbar-h);
  background: var(--hn-green);
  color: var(--hn-white);
  font-size: 0.78rem;
}

.hn-topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hn-topbar__left,
.hn-topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hn-topbar__item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.9);
  font-size: 0.78rem;
}
.hn-topbar__item--highlight { color: var(--hn-gold); font-weight: 600; }
.hn-topbar__item a { color: inherit; }
.hn-topbar__item a:hover { color: var(--hn-gold); }

.hn-lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,.7);
}
.hn-lang { color: rgba(255,255,255,.8); font-size: 0.75rem; }
.hn-lang.active { color: var(--hn-gold); font-weight: 600; }

/* ── 6. Header ── */
.hn-header {
  position: fixed;
  top: var(--hn-topbar-h);
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--hn-header-h);
  background: var(--hn-white);
  border-bottom: 1px solid var(--hn-border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: all var(--hn-transition);
}

.hn-header.hn-header--scrolled {
  box-shadow: var(--hn-shadow);
}

.hn-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hn-header__logo a {
  display: flex;
  align-items: center;
}
.hn-header__logo img { height: 50px; width: auto; }

.hn-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.hn-logo-text__main {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--hn-gold);
  letter-spacing: -0.02em;
}
.hn-logo-text__sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hn-green);
}
.hn-logo-text--light .hn-logo-text__main { color: var(--hn-gold); }
.hn-logo-text--light .hn-logo-text__sub  { color: rgba(255,255,255,.7); }

/* Nav */
.hn-header__nav { flex: 1; }
.hn-nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.hn-nav-menu li { position: relative; }
.hn-nav-menu > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hn-dark);
  border-radius: var(--hn-radius-sm);
  transition: all var(--hn-transition);
}
.hn-nav-menu > li > a:hover,
.hn-nav-menu > li.current-menu-item > a,
.hn-nav-menu > li.current_page_item > a {
  color: var(--hn-green);
  background: var(--hn-cream);
}

/* Dropdown */
.hn-nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--hn-white);
  border: 1px solid var(--hn-border);
  border-radius: var(--hn-radius);
  box-shadow: var(--hn-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--hn-transition);
  z-index: 100;
}
.hn-nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hn-nav-menu .sub-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--hn-text);
  border-bottom: 1px solid var(--hn-border);
}
.hn-nav-menu .sub-menu li:last-child a { border-bottom: none; }
.hn-nav-menu .sub-menu a:hover { color: var(--hn-green); background: var(--hn-cream); }

/* Header Actions */
.hn-header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hn-header__action-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  border-radius: var(--hn-radius-sm);
  color: var(--hn-dark);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all var(--hn-transition);
}
.hn-header__action-btn:hover { color: var(--hn-green); background: var(--hn-cream); }

.hn-cart-count,
.hn-wishlist-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  background: var(--hn-gold);
  color: var(--hn-white);
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}
.hn-cart-count.empty,
.hn-wishlist-count:empty { display: none; }

.hn-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  padding: 0;
}
.hn-hamburger span {
  display: block;
  height: 2px;
  background: var(--hn-dark);
  border-radius: 2px;
  transition: all var(--hn-transition);
}
.hn-hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hn-hamburger.active span:nth-child(2) { opacity: 0; }
.hn-hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Search Bar */
.hn-search-bar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--hn-white);
  border-top: 1px solid var(--hn-border);
  padding: 16px 0;
  box-shadow: var(--hn-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--hn-transition);
  z-index: 998;
}
.hn-search-bar.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hn-search-form {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--hn-cream);
  border: 1.5px solid var(--hn-border);
  border-radius: var(--hn-radius-full);
  padding: 0 16px;
}
.hn-search-input {
  flex: 1;
  padding: 12px 8px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  color: var(--hn-dark);
}
.hn-search-submit {
  color: var(--hn-green);
  padding: 8px;
}
.hn-search-close {
  margin-left: 12px;
  padding: 8px;
  color: var(--hn-muted);
}
.hn-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--hn-white);
  border: 1px solid var(--hn-border);
  border-radius: var(--hn-radius);
  box-shadow: var(--hn-shadow-lg);
  max-height: 360px;
  overflow-y: auto;
  z-index: 999;
  display: none;
}
.hn-search-results.open { display: block; }
.hn-search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--hn-border);
  transition: background var(--hn-transition);
}
.hn-search-result-item:last-child { border-bottom: none; }
.hn-search-result-item:hover { background: var(--hn-cream); }
.hn-search-result-item img { width: 44px; height: 44px; object-fit: cover; border-radius: var(--hn-radius-sm); }
.hn-search-result-item__name { font-size: 0.85rem; font-weight: 500; color: var(--hn-dark); }
.hn-search-result-item__price { font-size: 0.8rem; color: var(--hn-green); }

/* ── 7. Mobile Menu ── */
.hn-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}
.hn-mobile-menu.open { pointer-events: all; }

.hn-mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  transition: opacity var(--hn-transition);
}
.hn-mobile-menu.open .hn-mobile-menu__overlay { opacity: 1; }

.hn-mobile-menu__drawer {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--hn-white);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.hn-mobile-menu.open .hn-mobile-menu__drawer { transform: translateX(0); }

.hn-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--hn-green);
}

.hn-mobile-close { color: var(--hn-white); padding: 4px; }

.hn-mobile-nav { padding: 8px 0; flex: 1; }
.hn-mobile-nav li a {
  display: block;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--hn-dark);
  border-bottom: 1px solid var(--hn-border);
  transition: all var(--hn-transition);
}
.hn-mobile-nav li a:hover { color: var(--hn-green); background: var(--hn-cream); padding-left: 26px; }

.hn-mobile-menu__footer {
  padding: 20px;
  border-top: 1px solid var(--hn-border);
}
.hn-mobile-contact {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hn-green);
}

/* ── 8. Cart Drawer ── */
.hn-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
}
.hn-cart-drawer.open { pointer-events: all; }

.hn-cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity var(--hn-transition);
}
.hn-cart-drawer.open .hn-cart-drawer__overlay { opacity: 1; }

.hn-cart-drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(400px, 92vw);
  background: var(--hn-white);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}
.hn-cart-drawer.open .hn-cart-drawer__panel { transform: translateX(0); }

.hn-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--hn-border);
  background: var(--hn-cream);
}
.hn-cart-drawer__header h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--hn-dark);
}
.hn-cart-close { color: var(--hn-muted); padding: 4px; }

.hn-mini-cart-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

/* ── 9. Hero ── */
.hn-hero {
  min-height: 580px;
  background: var(--hn-cream) no-repeat center/cover;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.hn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(246,241,231,.97) 40%, rgba(246,241,231,.6) 70%, transparent 100%);
}

.hn-hero__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hn-hero__content { max-width: 520px; }

.hn-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hn-green);
  background: rgba(53,91,46,.1);
  padding: 5px 12px;
  border-radius: var(--hn-radius-full);
  margin-bottom: 16px;
}

.hn-hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--hn-green);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hn-hero__tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--hn-gold-dark);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.hn-hero__desc {
  font-size: 0.95rem;
  color: var(--hn-text);
  max-width: 420px;
  margin-bottom: 8px;
  line-height: 1.7;
}

.hn-hero__hindi {
  font-size: 0.9rem;
  color: var(--hn-green-light);
  margin-bottom: 28px;
  font-weight: 500;
}

.hn-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero Side Badges */
.hn-hero__side-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hn-hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--hn-white);
  border: 1px solid var(--hn-border);
  border-radius: var(--hn-radius);
  padding: 10px 16px;
  min-width: 160px;
  box-shadow: var(--hn-shadow-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hn-dark);
}
.hn-hero__badge-icon { font-size: 1.3rem; }

/* ── 10. Trust Bar ── */
.hn-trust-bar {
  background: var(--hn-white);
  border-top: 1px solid var(--hn-border);
  border-bottom: 1px solid var(--hn-border);
  padding-block: 20px;
}

.hn-trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.hn-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hn-dark);
  padding: 4px 0;
}
.hn-trust-item__icon { font-size: 1.3rem; }

/* ── 11. Category Cards ── */
.hn-categories { background: var(--hn-white); }

.hn-categories__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.hn-cat-card {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--hn-border);
  border-radius: var(--hn-radius);
  overflow: hidden;
  transition: all var(--hn-transition);
  text-decoration: none;
  background: var(--hn-white);
}
.hn-cat-card:hover {
  border-color: var(--hn-green);
  box-shadow: var(--hn-shadow);
  transform: translateY(-4px);
}

.hn-cat-card__image-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--hn-cream);
}
.hn-cat-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hn-cat-card:hover .hn-cat-card__image-wrap img { transform: scale(1.06); }

.hn-cat-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hn-cream);
  font-size: 2.5rem;
}

.hn-cat-card__body {
  padding: 12px 10px;
  text-align: center;
}
.hn-cat-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hn-dark);
  margin-bottom: 2px;
  transition: color var(--hn-transition);
}
.hn-cat-card:hover .hn-cat-card__name { color: var(--hn-green); }
.hn-cat-card__count {
  font-size: 0.72rem;
  color: var(--hn-muted);
}

/* ── 12. Product Cards ── */
.hn-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hn-product-card {
  border: 1.5px solid var(--hn-border);
  border-radius: var(--hn-radius);
  overflow: hidden;
  background: var(--hn-white);
  transition: all var(--hn-transition);
  display: flex;
  flex-direction: column;
}
.hn-product-card:hover {
  border-color: var(--hn-green-light);
  box-shadow: var(--hn-shadow);
  transform: translateY(-4px);
}

.hn-product-card__image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--hn-cream);
}
.hn-product-card__image-wrap img,
.hn-product-card__image-wrap .attachment-woocommerce_thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hn-product-card:hover .hn-product-card__image-wrap img { transform: scale(1.05); }

.hn-product-card__placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--hn-cream) 0%, var(--hn-cream-dark) 100%);
}

.hn-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--hn-radius-full);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hn-badge--sale    { background: #e53935; color: #fff; }
.hn-badge--featured { background: var(--hn-gold); color: var(--hn-dark); }
.hn-badge--new     { background: var(--hn-green); color: #fff; }

.hn-product-card__actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--hn-transition);
}
.hn-product-card:hover .hn-product-card__actions {
  opacity: 1;
  transform: translateX(0);
}

.hn-wishlist-btn,
.hn-quickview-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--hn-white);
  border: 1px solid var(--hn-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hn-muted);
  transition: all var(--hn-transition);
  cursor: pointer;
}
.hn-wishlist-btn:hover  { color: #e53935; border-color: #e53935; }
.hn-wishlist-btn.active { color: #e53935; }
.hn-quickview-btn:hover { color: var(--hn-green); border-color: var(--hn-green); }

.hn-product-card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.hn-product-card__category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hn-green-light);
  font-weight: 600;
}
.hn-product-card__category a { color: inherit; }

.hn-product-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hn-dark);
  line-height: 1.4;
}
.hn-product-card__title a { color: inherit; }
.hn-product-card__title a:hover { color: var(--hn-green); }

.hn-product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hn-review-count { font-size: 0.72rem; color: var(--hn-muted); }

.hn-product-card__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hn-green);
}
.hn-product-card__price del { color: var(--hn-muted); font-weight: 400; font-size: 0.82rem; }
.hn-product-card__price ins { text-decoration: none; }

.hn-product-card__footer { margin-top: auto; padding-top: 8px; }

/* ── 13. Product Slider ── */
.hn-products-slider {
  position: relative;
}
.hn-products-slider__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  overflow: hidden;
}

.hn-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--hn-white);
  border: 1.5px solid var(--hn-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hn-dark);
  box-shadow: var(--hn-shadow);
  transition: all var(--hn-transition);
}
.hn-slider-btn:hover {
  background: var(--hn-green);
  color: var(--hn-white);
  border-color: var(--hn-green);
}
.hn-slider-btn--prev { left: -20px; }
.hn-slider-btn--next { right: -20px; }

/* ── 14. Promo Banner ── */
.hn-promo-banner {
  background: var(--hn-cream) no-repeat center/cover;
  background-image: linear-gradient(100deg, rgba(246,241,231,.95) 45%, rgba(246,241,231,.6) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.hn-promo-banner::after {
  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='%23355B2E' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hn-promo-banner__inner { position: relative; z-index: 1; }

.hn-promo-banner__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--hn-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}
.hn-promo-banner__code {
  font-size: 1rem;
  color: var(--hn-text);
  margin-bottom: 24px;
}
.hn-promo-code {
  display: inline-block;
  background: var(--hn-green);
  color: var(--hn-white);
  padding: 3px 14px;
  border-radius: var(--hn-radius-sm);
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-left: 6px;
}

/* ── 15. Why Us ── */
.hn-why-us { background: var(--hn-cream); }
.hn-why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hn-why-card {
  background: var(--hn-white);
  border: 1.5px solid var(--hn-border);
  border-radius: var(--hn-radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--hn-transition);
}
.hn-why-card:hover {
  box-shadow: var(--hn-shadow);
  border-color: var(--hn-green-light);
  transform: translateY(-4px);
}
.hn-why-card__icon {
  color: var(--hn-green);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.hn-why-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--hn-dark);
  margin-bottom: 10px;
}
.hn-why-card__desc {
  font-size: 0.85rem;
  color: var(--hn-muted);
  line-height: 1.6;
}

/* ── 16. Benefits ── */
.hn-benefits { background: var(--hn-white); }
.hn-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hn-benefit-card {
  background: var(--hn-cream);
  border-radius: var(--hn-radius);
  padding: 28px 22px;
  text-align: center;
  border: 1.5px solid transparent;
  transition: all var(--hn-transition);
}
.hn-benefit-card:hover {
  border-color: var(--hn-green);
  background: var(--hn-white);
  box-shadow: var(--hn-shadow);
  transform: translateY(-4px);
}
.hn-benefit-card__icon { font-size: 2.2rem; margin-bottom: 12px; }
.hn-benefit-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--hn-dark);
  margin-bottom: 8px;
}
.hn-benefit-card__desc { font-size: 0.83rem; color: var(--hn-muted); line-height: 1.6; }

/* ── 17. Testimonials ── */
.hn-testimonials { background: var(--hn-cream); }
.hn-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hn-testimonial-card {
  background: var(--hn-white);
  border-radius: var(--hn-radius);
  padding: 24px;
  border: 1.5px solid var(--hn-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--hn-transition);
}
.hn-testimonial-card:hover {
  box-shadow: var(--hn-shadow);
  transform: translateY(-4px);
  border-color: var(--hn-gold);
}
.hn-testimonial-card__stars { display: flex; gap: 3px; }
.hn-testimonial-card__text {
  font-size: 0.875rem;
  color: var(--hn-text);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.hn-testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hn-testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--hn-green);
  color: var(--hn-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hn-testimonial-card__meta { display: flex; flex-direction: column; }
.hn-testimonial-card__name { font-size: 0.85rem; font-weight: 600; color: var(--hn-dark); }
.hn-testimonial-card__location { font-size: 0.72rem; color: var(--hn-muted); }
.hn-testimonial-card__product { width: 100%; font-size: 0.7rem; color: var(--hn-green-light); margin-top: 4px; }

/* ── 18. Blog ── */
.hn-blog { background: var(--hn-white); }
.hn-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hn-blog-card {
  border: 1.5px solid var(--hn-border);
  border-radius: var(--hn-radius);
  overflow: hidden;
  background: var(--hn-white);
  transition: all var(--hn-transition);
}
.hn-blog-card:hover {
  box-shadow: var(--hn-shadow);
  transform: translateY(-4px);
  border-color: var(--hn-green-light);
}
.hn-blog-card__img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hn-blog-card:hover .hn-blog-card__img { transform: scale(1.04); }
.hn-blog-card__img-placeholder {
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hn-cream);
  font-size: 2.5rem;
}
.hn-blog-card__body { padding: 20px; }
.hn-blog-card__cat a {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--hn-green-light);
}
.hn-blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--hn-dark);
  margin: 6px 0 8px;
  line-height: 1.4;
}
.hn-blog-card__title a { color: inherit; }
.hn-blog-card__title a:hover { color: var(--hn-green); }
.hn-blog-card__excerpt { font-size: 0.83rem; color: var(--hn-muted); line-height: 1.6; margin-bottom: 14px; }
.hn-blog-card__footer { display: flex; align-items: center; justify-content: space-between; }
.hn-blog-card__date { font-size: 0.75rem; color: var(--hn-muted); }
.hn-blog-card__link { font-size: 0.8rem; font-weight: 600; color: var(--hn-green); }
.hn-blog-card__link:hover { color: var(--hn-gold-dark); }

/* ── 19. Footer Newsletter ── */
.hn-footer-newsletter {
  background: var(--hn-green);
  padding: 40px 0;
}
.hn-footer-newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.hn-footer-newsletter__text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--hn-white);
  margin-bottom: 4px;
}
.hn-footer-newsletter__text p { font-size: 0.85rem; color: rgba(255,255,255,.75); }

.hn-newsletter-form__fields {
  display: flex;
  gap: 10px;
}
.hn-newsletter-input {
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  border: none;
  border-radius: var(--hn-radius-full);
  outline: none;
  min-width: 260px;
  background: rgba(255,255,255,.15);
  color: var(--hn-white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.hn-newsletter-input::placeholder { color: rgba(255,255,255,.5); }
.hn-newsletter-input:focus { border-color: var(--hn-gold); background: rgba(255,255,255,.2); }

.hn-newsletter-msg {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--hn-gold);
}

/* ── 20. Footer Main ── */
.hn-footer-main {
  background: #1e3a1b;
  padding: 56px 0 40px;
}
.hn-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.hn-footer-col__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hn-gold);
  margin-bottom: 18px;
}
.hn-footer-about {
  font-size: 0.82rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 16px;
}
.hn-footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.hn-cert-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: var(--hn-radius-sm);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
}
.hn-footer-social { display: flex; gap: 10px; }
.hn-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--hn-transition);
}
.hn-social-link:hover { background: var(--hn-gold); color: var(--hn-dark); border-color: var(--hn-gold); }

.hn-footer-links li { margin-bottom: 8px; }
.hn-footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,.65);
  transition: color var(--hn-transition);
}
.hn-footer-links a:hover { color: var(--hn-gold); padding-left: 4px; }

.hn-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}
.hn-footer-contact-list svg { flex-shrink: 0; color: var(--hn-gold); margin-top: 2px; }
.hn-footer-contact-list a { color: rgba(255,255,255,.65); }
.hn-footer-contact-list a:hover { color: var(--hn-gold); }

/* ── 21. Footer Bottom ── */
.hn-footer-bottom {
  background: #111f0f;
  padding: 18px 0;
}
.hn-footer-bottom__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.hn-footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
}
.hn-footer-disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,.35);
  max-width: 700px;
  line-height: 1.5;
}
.hn-footer-payment {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}
.hn-footer-payment > span { font-size: 0.72rem; color: rgba(255,255,255,.4); }
.hn-payment-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--hn-radius-sm);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.15);
}

/* ── 22. Mobile Bottom Nav ── */
.hn-mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: var(--hn-white);
  border-top: 1px solid var(--hn-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.hn-mob-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 4px;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--hn-muted);
  text-decoration: none;
  transition: color var(--hn-transition);
  border: none;
  background: none;
  font-family: var(--font-body);
}
.hn-mob-nav-item.active,
.hn-mob-nav-item:hover { color: var(--hn-green); }

/* ── 23. Breadcrumbs ── */
.hn-breadcrumbs {
  background: var(--hn-cream);
  padding: 12px 0;
  border-bottom: 1px solid var(--hn-border);
}
.hn-breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--hn-muted);
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}
.hn-breadcrumbs a { color: var(--hn-green); }
.hn-breadcrumbs .current { color: var(--hn-text); }
.hn-bc-sep { color: var(--hn-muted); font-size: 0.7rem; }

/* ── 24. Notifications ── */
.hn-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--hn-dark);
  color: var(--hn-white);
  padding: 12px 24px;
  border-radius: var(--hn-radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 9999;
  box-shadow: var(--hn-shadow-lg);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hn-toast.show { transform: translateX(-50%) translateY(0); }
.hn-toast--success { background: var(--hn-green); }
.hn-toast--error   { background: #e53935; }

/* ── 25. Loading spinner ── */
.hn-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: var(--hn-white);
  border-radius: 50%;
  animation: hn-spin 0.7s linear infinite;
}
@keyframes hn-spin { to { transform: rotate(360deg); } }

/* ── 26. WooCommerce overrides ── */
.hn-woo-page .hn-site-content { padding-top: calc(var(--hn-topbar-h) + var(--hn-header-h)); }
.hn-shop-wrapper { display: flex; gap: 28px; max-width: 1240px; margin-inline: auto; padding: 32px 24px 60px; }
.hn-main { flex: 1; min-width: 0; }

/* WC price */
.woocommerce-Price-amount { color: var(--hn-green); font-weight: 700; }
del .woocommerce-Price-amount { color: var(--hn-muted); font-weight: 400; }

/* Fallback menu */
.hn-fallback-nav {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
}
.hn-fallback-nav a {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hn-dark);
  border-radius: var(--hn-radius-sm);
  transition: all var(--hn-transition);
}
.hn-fallback-nav a:hover { color: var(--hn-green); background: var(--hn-cream); }

/* ── 27. Accessibility ── */
.screen-reader-text {
  border: 0;
  clip: rect(0,0,0,0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}
*:focus-visible {
  outline: 2px solid var(--hn-green);
  outline-offset: 2px;
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--hn-green);
  color: var(--hn-white);
  border-radius: 0 0 var(--hn-radius-sm) var(--hn-radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
