:root {
  --hb-forest: #14372b;
  --hb-forest-2: #0e2a21;
  --hb-leaf: #2d6a4f;
  --hb-leaf-soft: #6f927f;
  --hb-sage: #a8bfaf;
  --hb-mint: #e8efe9;
  --hb-cream: #f6f1e7;
  --hb-cream-2: #efe6d7;
  --hb-sand: #e3d6c4;
  --hb-white: #fff;
  --hb-ink: #18221d;
  --hb-muted: #68736c;
  --hb-border: rgba(20, 55, 43, .14);
  --hb-shadow: 0 24px 70px rgba(18, 49, 38, .10);
  --hb-radius-sm: 14px;
  --hb-radius: 22px;
  --hb-radius-lg: 34px;
  --hb-container: 1240px;
  --hb-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  --hb-display: "Cairo", var(--hb-system);
  --hb-body: "Tajawal", var(--hb-system);
}


/*
 * Typography rules:
 * Arabic headings use Cairo, Arabic body/UI text uses Tajawal.
 * The requested webfont subset contains Arabic glyphs only, so Latin text and
 * Western digits naturally fall back to the WordPress/system font stack.
 * Future French/English versions explicitly use the system stack everywhere.
 */
html[lang^="fr"] {
  --hb-display: var(--hb-system);
  --hb-body: var(--hb-system);
}
html[lang^="en"] {
  --hb-display: var(--hb-system);
  --hb-body: var(--hb-system);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fbfaf6;
  color: var(--hb-ink);
  font-family: var(--hb-body);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.admin-bar .hb-header { top: 32px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.hb-container { width: min(calc(100% - 40px), var(--hb-container)); margin-inline: auto; }
.hb-narrow { max-width: 850px; }
.hb-main { min-height: 55vh; }
.hb-section { padding: 96px 0; }
.hb-skip-link { position: fixed; inset-inline-start: 16px; top: -100px; z-index: 10000; background: var(--hb-forest); color: #fff; padding: 10px 16px; border-radius: 8px; }
.hb-skip-link:focus { top: 12px; }

/* Announcement + header */
.hb-announcement { background: var(--hb-forest-2); color: rgba(255,255,255,.88); font-size: 13px; }
.hb-announcement__inner { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 9px; letter-spacing: .01em; }
.hb-announcement__dot { width: 6px; height: 6px; border-radius: 50%; background: #a9d2b7; box-shadow: 0 0 0 4px rgba(169,210,183,.12); }
.hb-header { position: sticky; top: 0; z-index: 1000; background: rgba(251,250,246,.93); border-bottom: 1px solid rgba(20,55,43,.08); backdrop-filter: blur(15px); }
.hb-header__inner { min-height: 82px; display: grid; grid-template-columns: 220px 1fr 220px; align-items: center; gap: 24px; }
.hb-header__brand { display: inline-flex; align-items: center; width: max-content; }
.hb-logo, .hb-footer-logo { display: inline-flex; align-items: baseline; direction: ltr; font-family: var(--hb-display); font-weight: 700; letter-spacing: -.055em; line-height: 1; }
.hb-logo--text { font-size: 29px; color: var(--hb-forest); }
.hb-logo em { margin-left: 2px; color: var(--hb-leaf-soft); font-size: .52em; font-style: normal; letter-spacing: -.03em; }
.hb-logo__mark, .hb-footer-logo__mark { width: 30px; height: 30px; margin-inline-end: 8px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.hb-logo__mark svg, .hb-footer-logo__mark svg { width: 16px; height: 16px; stroke-width: 1.3; }
.hb-logo__image { max-height: 48px; width: auto; }
.hb-nav__list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; justify-content: center; gap: 34px; }
.hb-nav__list > li { position: relative; }
.hb-nav__list a { display: inline-flex; align-items: center; padding: 10px 0; color: #37463f; font-family: var(--hb-display); font-size: 14px; font-weight: 500; transition: color .2s ease; }
.hb-nav__list a:hover, .hb-nav__list .current-menu-item > a { color: var(--hb-leaf); }
.hb-nav__list .sub-menu { display: none; position: absolute; top: 100%; inset-inline-start: -24px; min-width: 220px; list-style: none; margin: 0; padding: 14px; background: #fff; border: 1px solid var(--hb-border); border-radius: 16px; box-shadow: var(--hb-shadow); }
.hb-nav__list li:hover > .sub-menu, .hb-nav__list li:focus-within > .sub-menu { display: block; }
.hb-nav__list .sub-menu a { padding: 8px 10px; width: 100%; }
.hb-header__actions { display: flex; justify-content: flex-end; }
.hb-header-action { display: inline-flex; align-items: center; gap: 10px; color: var(--hb-forest); font-family: var(--hb-display); font-size: 13px; font-weight: 600; }
.hb-header-action svg { transition: transform .2s ease; }
.hb-header-action:hover svg { transform: translateX(-3px); }
.hb-menu-toggle { display: none; width: 44px; height: 44px; border: 0; padding: 10px; background: transparent; cursor: pointer; }
.hb-menu-toggle > span:not(.screen-reader-text) { display: block; width: 22px; height: 1.5px; background: var(--hb-forest); margin: 5px auto; transition: .2s ease; }
.hb-mobile-panel { border-top: 1px solid var(--hb-border); background: #fbfaf6; padding: 12px 0 24px; }

/* Buttons and common */
.hb-button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 0 25px; border: 1px solid transparent; border-radius: 999px; font-family: var(--hb-display); font-size: 14px; font-weight: 600; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.hb-button:hover { transform: translateY(-2px); }
.hb-button--primary { background: var(--hb-forest); color: #fff; box-shadow: 0 12px 28px rgba(20,55,43,.18); }
.hb-button--primary:hover { background: var(--hb-leaf); box-shadow: 0 16px 34px rgba(20,55,43,.22); }
.hb-button--cream { background: var(--hb-cream); color: var(--hb-forest); }
.hb-button--wide { width: 100%; }
.hb-text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--hb-forest); font-family: var(--hb-display); font-size: 13px; font-weight: 600; }
.hb-text-link svg { width: 16px; }
.hb-eyebrow, .hb-section-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--hb-leaf); font-family: var(--hb-display); font-size: 12px; font-weight: 600; letter-spacing: .03em; }
.hb-eyebrow > span { width: 30px; height: 1px; background: currentColor; }
.hb-section-head { margin-bottom: 42px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.hb-section-head h2 { max-width: 700px; margin: 9px 0 0; color: var(--hb-forest); font-family: var(--hb-display); font-size: clamp(30px, 4vw, 48px); line-height: 1.35; letter-spacing: -.045em; }
.hb-section-head > p { max-width: 410px; margin: 0; color: var(--hb-muted); font-size: 15px; }
.hb-section-head--center { text-align: center; justify-content: center; }

/* Hero */
.hb-hero { position: relative; overflow: hidden; background: var(--hb-cream); }
.hb-hero::after { content: ""; position: absolute; width: 530px; height: 530px; inset-inline-start: -300px; bottom: -350px; border: 1px solid rgba(20,55,43,.13); border-radius: 50%; }
.hb-hero__grid { min-height: 690px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 76px; padding-top: 64px; padding-bottom: 64px; }
.hb-hero__copy { position: relative; z-index: 2; max-width: 620px; }
.hb-hero h1 { margin: 18px 0 22px; color: var(--hb-forest); font-family: var(--hb-display); font-size: clamp(47px, 6vw, 78px); line-height: 1.18; letter-spacing: -.06em; font-weight: 650; }
.hb-hero__copy > p { max-width: 560px; margin: 0 0 30px; color: #536159; font-size: 17px; line-height: 2; }
.hb-hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.hb-hero__proof { margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(20,55,43,.13); display: flex; gap: 44px; }
.hb-hero__proof > div { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 12px; max-width: 200px; }
.hb-hero__proof strong { color: var(--hb-forest); font-family: var(--hb-display); font-size: 20px; }
.hb-hero__proof span { color: var(--hb-muted); font-size: 11px; line-height: 1.6; }
.hb-hero__visual { position: relative; min-height: 560px; display: flex; align-items: center; justify-content: center; }
.hb-hero__frame { position: relative; z-index: 2; width: min(430px, 90%); aspect-ratio: .80; overflow: hidden; background: linear-gradient(145deg, #dde8df, #c7d7cc); border-radius: 220px 220px 36px 36px; box-shadow: 0 36px 70px rgba(20,55,43,.16); }
.hb-hero__frame::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.55); border-radius: inherit; pointer-events: none; }
.hb-hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hb-hero__placeholder { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--hb-forest); background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.75), transparent 42%), linear-gradient(145deg,#dce8df,#bdcfbf); }
.hb-hero__leaf { display: grid; place-items: center; width: 86px; height: 86px; margin-bottom: 24px; border: 1px solid rgba(20,55,43,.24); border-radius: 50%; }
.hb-hero__leaf svg { width: 44px; height: 44px; stroke-width: 1.1; }
.hb-hero__placeholder strong { font-family: var(--hb-display); font-size: 50px; letter-spacing: -.06em; }
.hb-hero__placeholder small { margin-top: 6px; font-size: 12px; }
.hb-hero__organic { position: absolute; border-radius: 50%; }
.hb-hero__organic--one { width: 420px; height: 420px; inset-inline-end: -100px; top: 40px; border: 1px solid rgba(20,55,43,.17); }
.hb-hero__organic--two { width: 170px; height: 170px; inset-inline-start: 8px; bottom: 12px; background: #c7d3bd; opacity: .55; filter: blur(2px); }
.hb-hero__stamp { position: absolute; z-index: 3; inset-inline-start: 5px; bottom: 55px; width: 112px; height: 112px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--hb-forest); color: #fff; border-radius: 50%; transform: rotate(-8deg); box-shadow: 0 12px 36px rgba(20,55,43,.25); }
.hb-hero__stamp span { font-family: var(--hb-display); font-size: 16px; font-weight: 700; }
.hb-hero__stamp small { margin-top: 2px; opacity: .72; font-size: 8px; letter-spacing: .12em; }

/* Trust strip */
.hb-trust-strip { background: var(--hb-forest); color: #fff; }
.hb-trust-strip__grid { min-height: 112px; display: grid; grid-template-columns: repeat(4,1fr); }
.hb-trust-strip__grid > div { display: flex; align-items: center; gap: 16px; padding: 22px 28px; border-inline-start: 1px solid rgba(255,255,255,.12); }
.hb-trust-strip__grid > div:last-child { border-inline-end: 1px solid rgba(255,255,255,.12); }
.hb-trust-strip svg { flex: 0 0 auto; width: 27px; height: 27px; color: #a9c8b4; stroke-width: 1.4; }
.hb-trust-strip span { display: flex; flex-direction: column; }
.hb-trust-strip strong { font-family: var(--hb-display); font-size: 13px; font-weight: 600; }
.hb-trust-strip small { margin-top: 2px; color: rgba(255,255,255,.55); font-size: 10px; }

/* Category grid */
.hb-categories { background: #fbfaf6; }
.hb-category-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.hb-category-card { position: relative; min-height: 260px; overflow: hidden; background: #dce6dd; border-radius: var(--hb-radius); isolation: isolate; }
.hb-category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hb-category-card:hover img { transform: scale(1.045); }
.hb-category-card__shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 20%, rgba(9,33,25,.72) 100%); }
.hb-category-card__index { position: absolute; z-index: 2; top: 18px; inset-inline-start: 20px; color: rgba(20,55,43,.5); font-family: var(--hb-display); font-size: 11px; }
.hb-category-card__content { position: absolute; z-index: 2; inset-inline: 24px; bottom: 22px; color: #fff; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.hb-category-card__content strong { font-family: var(--hb-display); font-size: 21px; font-weight: 600; }
.hb-category-card__content small { opacity: .7; font-size: 10px; white-space: nowrap; }
.hb-category-card:not(:has(img)) { background: linear-gradient(145deg, #e3ebe5, #cbdacb); }
.hb-category-card:not(:has(img)) .hb-category-card__shade { background: linear-gradient(180deg, transparent, rgba(20,55,43,.12)); }
.hb-category-card:not(:has(img)) .hb-category-card__content { color: var(--hb-forest); }

/* Product cards */
.hb-products-section { background: var(--hb-cream); }
.hb-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.hb-product-card { min-width: 0; }
.hb-product-card__media { position: relative; display: block; overflow: hidden; aspect-ratio: .86; background: #e8ece5; border-radius: var(--hb-radius); }
.hb-product-card__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(20,55,43,.06); border-radius: inherit; pointer-events: none; }
.hb-product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.hb-product-card:hover .hb-product-card__media img { transform: scale(1.035); }
.hb-product-card__badge { position: absolute; z-index: 2; top: 14px; inset-inline-start: 14px; padding: 7px 11px; background: rgba(246,241,231,.93); color: var(--hb-forest); border-radius: 999px; font-family: var(--hb-display); font-size: 9px; font-weight: 600; }
.hb-product-card__body { padding: 17px 4px 0; }
.hb-product-card__eyebrow { margin: 0 0 4px; color: var(--hb-leaf-soft); font-size: 10px; }
.hb-product-card h3 { margin: 0; font-family: var(--hb-display); font-size: 16px; line-height: 1.55; font-weight: 600; }
.hb-product-card__meta { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.hb-product-card__price { color: var(--hb-forest); font-family: var(--hb-display); font-size: 15px; font-weight: 650; }
.hb-product-card__price del { color: #8b958f; font-size: .8em; font-weight: 400; margin-inline-end: 5px; }
.hb-product-card__price ins { text-decoration: none; }
.hb-product-card__arrow { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--hb-border); border-radius: 50%; font-size: 13px; transition: .2s ease; }
.hb-product-card:hover .hb-product-card__arrow { background: var(--hb-forest); color: #fff; border-color: var(--hb-forest); }

/* Brand story */
.hb-brand-story { overflow: hidden; background: var(--hb-forest); color: #fff; }
.hb-brand-story__grid { min-height: 720px; display: grid; grid-template-columns: .9fr 1.1fr; }
.hb-brand-story__visual { position: relative; min-height: 720px; display: flex; align-items: center; justify-content: center; border-inline-end: 1px solid rgba(255,255,255,.11); }
.hb-brand-story__visual::before, .hb-brand-story__visual::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.hb-brand-story__visual::before { width: 520px; height: 520px; }
.hb-brand-story__visual::after { width: 360px; height: 360px; }
.hb-brand-story__mark { position: relative; z-index: 2; color: rgba(246,241,231,.92); font-family: var(--hb-display); font-size: clamp(180px, 28vw, 370px); font-weight: 500; line-height: 1; letter-spacing: -.15em; transform: translateX(-5%); }
.hb-brand-story__quote { position: absolute; z-index: 3; inset-inline-end: 32px; bottom: 56px; width: 260px; padding: 22px; background: var(--hb-cream); color: var(--hb-forest); border-radius: 18px; box-shadow: var(--hb-shadow); }
.hb-brand-story__quote svg { width: 24px; height: 24px; }
.hb-brand-story__quote p { margin: 10px 0 0; font-family: var(--hb-display); font-size: 13px; line-height: 1.8; font-weight: 600; }
.hb-brand-story__copy { display: flex; flex-direction: column; justify-content: center; padding: 80px 9%; }
.hb-brand-story .hb-section-kicker { color: #9fc3ad; }
.hb-brand-story__copy > h2 { max-width: 650px; margin: 14px 0 20px; color: #fff; font-family: var(--hb-display); font-size: clamp(34px, 4.7vw, 58px); line-height: 1.35; letter-spacing: -.05em; }
.hb-brand-story__copy > p { max-width: 650px; margin: 0; color: rgba(255,255,255,.65); font-size: 15px; }
.hb-values { margin-top: 42px; border-top: 1px solid rgba(255,255,255,.13); }
.hb-values article { display: grid; grid-template-columns: 42px 1fr; gap: 20px; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.hb-values article > span { color: #8eae9b; font-family: var(--hb-display); font-size: 10px; }
.hb-values h3 { margin: 0 0 4px; font-family: var(--hb-display); font-size: 14px; font-weight: 600; }
.hb-values p { margin: 0; color: rgba(255,255,255,.5); font-size: 12px; }

/* How */
.hb-how { background: #fbfaf6; }
.hb-how__grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--hb-border); border-bottom: 1px solid var(--hb-border); }
.hb-how__grid article { min-height: 210px; padding: 34px 30px; border-inline-start: 1px solid var(--hb-border); }
.hb-how__grid article:last-child { border-inline-end: 1px solid var(--hb-border); }
.hb-how__grid article > span { color: var(--hb-leaf-soft); font-family: var(--hb-display); font-size: 10px; }
.hb-how__grid h3 { margin: 34px 0 4px; color: var(--hb-forest); font-family: var(--hb-display); font-size: 24px; }
.hb-how__grid p { margin: 0; color: var(--hb-muted); font-size: 12px; }

/* Journal */
.hb-journal { background: #f0eadf; }
.hb-journal__grid, .hb-post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.hb-article-card { min-width: 0; }
.hb-article-card__media { display: block; aspect-ratio: 1.35; overflow: hidden; background: #dce4dc; border-radius: var(--hb-radius); }
.hb-article-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.hb-article-card:hover .hb-article-card__media img { transform: scale(1.03); }
.hb-article-card__placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: var(--hb-forest); background: linear-gradient(145deg,#dce8df,#c7d7cc); }
.hb-article-card__placeholder svg { width: 54px; height: 54px; stroke-width: 1; }
.hb-article-card__body { padding: 18px 3px 0; }
.hb-article-card time { color: var(--hb-leaf-soft); font-size: 10px; }
.hb-article-card h2, .hb-article-card h3 { margin: 6px 0 12px; color: var(--hb-forest); font-family: var(--hb-display); font-size: 18px; line-height: 1.65; }
.hb-article-card p { color: var(--hb-muted); font-size: 13px; }

/* CTA */
.hb-final-cta { padding: 0 0 88px; background: #fbfaf6; }
.hb-final-cta__inner { position: relative; overflow: hidden; min-height: 300px; padding: 54px 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; background: var(--hb-forest); color: #fff; border-radius: var(--hb-radius-lg); }
.hb-final-cta__inner::after { content: "H"; position: absolute; inset-inline-start: -30px; top: -80px; color: rgba(255,255,255,.035); font-family: var(--hb-display); font-size: 340px; font-weight: 700; line-height: 1; }
.hb-final-cta__inner > div { position: relative; z-index: 2; }
.hb-final-cta .hb-section-kicker { color: #9fc3ad; }
.hb-final-cta h2 { margin: 8px 0 5px; font-family: var(--hb-display); font-size: clamp(32px,4vw,48px); }
.hb-final-cta p { margin: 0; color: rgba(255,255,255,.6); font-size: 13px; }
.hb-final-cta .hb-button { position: relative; z-index: 2; flex: 0 0 auto; }
.hb-final-cta__leaf { position: absolute; inset-inline-end: 26%; top: 34px; color: rgba(255,255,255,.08); transform: rotate(-22deg); }
.hb-final-cta__leaf svg { width: 150px; height: 150px; stroke-width: .7; }

/* Footer */
.hb-footer { background: #0d261e; color: #fff; padding: 72px 0 24px; }
.hb-footer__top { display: grid; grid-template-columns: 1.5fr .7fr .85fr .9fr; gap: 70px; padding-bottom: 56px; }
.hb-footer-logo { color: #fff; font-size: 30px; }
.hb-footer-logo em { color: #91b39e; font-size: .52em; font-style: normal; margin-left: 2px; }
.hb-footer-logo__image { max-height: 48px; width: auto; filter: brightness(0) invert(1); }
.hb-footer__brand p { max-width: 360px; margin: 20px 0 0; color: rgba(255,255,255,.48); font-size: 12px; }
.hb-footer h3 { margin: 0 0 17px; font-family: var(--hb-display); font-size: 12px; font-weight: 600; color: #a8c0b2; }
.hb-footer__links { list-style: none; margin: 0; padding: 0; }
.hb-footer__links li { margin-bottom: 9px; }
.hb-footer__links a, .hb-footer__socials a { color: rgba(255,255,255,.72); font-size: 12px; transition: color .2s ease; }
.hb-footer__links a:hover, .hb-footer__socials a:hover { color: #fff; }
.hb-footer__socials { display: flex; gap: 14px; flex-wrap: wrap; }
.hb-footer__note { margin-top: 22px; color: rgba(255,255,255,.36); font-size: 10px; line-height: 1.8; }
.hb-footer__bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.4); font-size: 10px; }
.hb-footer__bottom p { margin: 0; }
.hb-footer__bottom > div { display: flex; gap: 20px; }

/* Shop */
.hb-shop-hero { background: var(--hb-cream); border-bottom: 1px solid var(--hb-border); }
.hb-shop-hero__inner { min-height: 315px; display: flex; align-items: center; justify-content: space-between; overflow: hidden; }
.hb-shop-hero h1 { margin: 8px 0 12px; color: var(--hb-forest); font-family: var(--hb-display); font-size: clamp(44px,7vw,82px); line-height: 1.2; letter-spacing: -.06em; }
.hb-shop-hero p, .hb-shop-hero__description { max-width: 580px; margin: 0; color: var(--hb-muted); font-size: 14px; }
.hb-shop-hero__mark { align-self: flex-end; margin-bottom: -55px; color: rgba(20,55,43,.055); font-family: var(--hb-display); font-size: 320px; font-weight: 700; line-height: .8; letter-spacing: -.16em; }
.hb-shop-content { background: #fbfaf6; }
.hb-shop-toolbar { margin-bottom: 28px; min-height: 50px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-bottom: 1px solid var(--hb-border); color: var(--hb-muted); font-size: 12px; }
.hb-shop-toolbar .woocommerce-result-count { margin: 0; }
.hb-shop-toolbar select { border: 0; background: transparent; color: var(--hb-forest); outline: 0; }
.hb-pagination { margin-top: 54px; }
.woocommerce nav.woocommerce-pagination ul { border: 0; display: flex; gap: 8px; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span { min-width: 40px; height: 40px; display: grid; place-items: center; padding: 0; border: 1px solid var(--hb-border); border-radius: 50%; color: var(--hb-forest); background: transparent; }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--hb-forest); color: #fff; }
.hb-empty-state { padding: 70px; text-align: center; background: var(--hb-cream); border-radius: var(--hb-radius); }

/* Product page */
.hb-product-page { background: #fbfaf6; }
.hb-breadcrumbs { padding: 23px 0; color: #89938d; font-size: 10px; }
.hb-breadcrumbs .woocommerce-breadcrumb { margin: 0; color: inherit; font-size: inherit; }
.hb-breadcrumbs span { margin: 0 8px; opacity: .5; }
.hb-product-hero { padding: 15px 0 82px; display: grid; grid-template-columns: minmax(0,1.02fr) minmax(420px,.98fr); gap: 72px; align-items: start; }
.hb-product-gallery { position: sticky; top: 116px; }
.hb-product-gallery__main { overflow: hidden; aspect-ratio: .92; background: #edf0e9; border-radius: var(--hb-radius-lg); }
.hb-product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.hb-product-gallery__thumbs { margin-top: 12px; display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; }
.hb-gallery-thumb { overflow: hidden; aspect-ratio: 1; border: 1px solid transparent; border-radius: 12px; background: #eee; padding: 0; cursor: pointer; opacity: .65; transition: .2s ease; }
.hb-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hb-gallery-thumb.is-active { opacity: 1; border-color: var(--hb-forest); }
.hb-product-hero__summary { padding-top: 18px; }
.hb-product-badge { display: inline-flex; margin-bottom: 15px; padding: 7px 11px; background: var(--hb-mint); color: var(--hb-leaf); border-radius: 999px; font-family: var(--hb-display); font-size: 9px; font-weight: 600; }
.hb-product-subtitle { margin: 0 0 4px; color: var(--hb-leaf-soft); font-size: 11px; }
.hb-product-hero h1 { margin: 0; color: var(--hb-forest); font-family: var(--hb-display); font-size: clamp(36px,5vw,58px); line-height: 1.3; letter-spacing: -.05em; }
.hb-product-rating-row { margin: 15px 0 12px; display: flex; align-items: center; gap: 12px; color: var(--hb-muted); font-size: 10px; }
.hb-stars .star-rating { margin: 0; color: #b49452; }
.hb-product-price { color: var(--hb-forest); font-family: var(--hb-display); font-size: 27px; font-weight: 650; }
.hb-product-price del { color: #9ba39e; font-size: .58em; font-weight: 400; margin-inline-end: 7px; }
.hb-product-price ins { text-decoration: none; }
.hb-product-intro { margin-top: 18px; color: #5a665f; font-size: 14px; }
.hb-product-intro p { margin: 0; }
.hb-product-benefits { margin: 24px 0 28px; padding: 22px; background: #f0f4ef; border-radius: 16px; }
.hb-check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.hb-check-list li { display: flex; align-items: flex-start; gap: 10px; color: #38483f; font-size: 12px; }
.hb-check-list li > span { flex: 0 0 auto; width: 21px; height: 21px; display: grid; place-items: center; background: var(--hb-forest); color: #fff; border-radius: 50%; font-size: 9px; margin-top: 2px; }
.hb-product-trust-mini { padding: 15px 0 22px; display: flex; flex-wrap: wrap; gap: 18px; border-top: 1px solid var(--hb-border); }
.hb-product-trust-mini span { display: inline-flex; align-items: center; gap: 7px; color: var(--hb-muted); font-size: 10px; }
.hb-product-trust-mini svg { width: 17px; height: 17px; color: var(--hb-leaf); }

/* Order box */
.hb-order-box { padding: 25px; background: #fff; border: 1px solid var(--hb-border); border-radius: var(--hb-radius); box-shadow: 0 18px 50px rgba(20,55,43,.08); }
.hb-order-box__head { margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.hb-order-box__head span { color: var(--hb-leaf-soft); font-size: 9px; }
.hb-order-box__head h2 { margin: 2px 0 0; color: var(--hb-forest); font-family: var(--hb-display); font-size: 18px; }
.hb-order-box__secure { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--hb-border); border-radius: 50%; color: var(--hb-leaf); }
.hb-order-box__secure svg { width: 19px; height: 19px; }
.hb-offers { margin: 0 0 18px; padding: 0; border: 0; }
.hb-offers legend { margin-bottom: 9px; color: #38463f; font-family: var(--hb-display); font-size: 11px; font-weight: 600; }
.hb-offers__grid { display: grid; gap: 8px; }
.hb-offer-card { position: relative; min-height: 58px; display: flex; align-items: center; gap: 12px; padding: 11px 13px; border: 1px solid var(--hb-border); border-radius: 13px; cursor: pointer; transition: .2s ease; }
.hb-offer-card:has(input:checked) { border-color: var(--hb-leaf); background: #f1f6f1; box-shadow: inset 0 0 0 1px var(--hb-leaf); }
.hb-offer-card input { position: absolute; opacity: 0; pointer-events: none; }
.hb-offer-card__check { flex: 0 0 auto; width: 18px; height: 18px; border: 1px solid #b1bbb5; border-radius: 50%; }
.hb-offer-card:has(input:checked) .hb-offer-card__check { border: 5px solid var(--hb-leaf); }
.hb-offer-card__content { flex: 1; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.hb-offer-card__content strong { font-family: var(--hb-display); font-size: 11px; }
.hb-offer-card__content > span { color: var(--hb-forest); font-family: var(--hb-display); font-size: 12px; font-weight: 650; }
.hb-order-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hb-field { display: grid; gap: 6px; }
.hb-field > span { color: #526058; font-size: 9px; font-weight: 600; }
.hb-field input, .hb-field select, .hb-field textarea { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid #d8dfda; background: #fbfcfa; border-radius: 11px; color: var(--hb-ink); outline: 0; font-size: 12px; transition: border-color .2s ease, box-shadow .2s ease; }
.hb-field input:focus, .hb-field select:focus, .hb-field textarea:focus { border-color: var(--hb-leaf); box-shadow: 0 0 0 3px rgba(45,106,79,.08); }
.hb-field--qty { margin: 10px 0 14px; }
.hb-order-form__microcopy { margin: 10px 0 0; color: #7e8983; text-align: center; font-size: 9px; }
.hb-order-form__status { min-height: 0; margin-top: 8px; color: #a13e35; font-size: 10px; text-align: center; }
.hb-order-form.is-loading .hb-button { opacity: .7; pointer-events: none; }

/* Product details */
.hb-product-details { padding: 92px 0; background: var(--hb-cream); }
.hb-product-details__intro { max-width: 720px; margin-bottom: 45px; }
.hb-product-details__intro h2 { margin: 10px 0 0; color: var(--hb-forest); font-family: var(--hb-display); font-size: clamp(32px,4.5vw,52px); line-height: 1.4; letter-spacing: -.05em; }
.hb-product-details__grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--hb-border); }
.hb-detail-block { min-height: 240px; padding: 35px 30px; display: grid; grid-template-columns: 45px 1fr; gap: 15px; border-bottom: 1px solid var(--hb-border); border-inline-start: 1px solid var(--hb-border); }
.hb-detail-block:nth-child(even) { border-inline-end: 1px solid var(--hb-border); }
.hb-detail-block--wide { grid-column: 1 / -1; min-height: auto; border-inline-end: 1px solid var(--hb-border); }
.hb-detail-block > span { color: var(--hb-leaf-soft); font-family: var(--hb-display); font-size: 10px; }
.hb-detail-block h3 { margin: 0 0 12px; color: var(--hb-forest); font-family: var(--hb-display); font-size: 18px; }
.hb-detail-block p, .hb-detail-block .hb-prose { margin: 0; color: #5c675f; font-size: 13px; }
.hb-detail-block--caution { background: rgba(255,255,255,.28); }
.hb-related-products { background: #fbfaf6; }
.hb-reviews-section { background: #fff; }
.hb-mobile-buybar { display: none; }

/* Comments / reviews */
.hb-comments { padding: 15px 0; }
.hb-comment-list { list-style: none; margin: 0 0 55px; padding: 0; display: grid; gap: 14px; }
.hb-comment-list .comment { padding: 22px; background: #fbfaf6; border: 1px solid var(--hb-border); border-radius: 18px; }
.hb-comment-list .comment-body { position: relative; }
.hb-comment-list .comment-author { display: flex; align-items: center; gap: 10px; font-family: var(--hb-display); font-size: 12px; }
.hb-comment-list .avatar { border-radius: 50%; }
.hb-comment-list .comment-meta { margin-top: 4px; color: var(--hb-muted); font-size: 9px; }
.hb-comment-list .comment-content { margin-top: 12px; color: #536159; font-size: 12px; }
.hb-comments .comment-respond { padding: 28px; background: var(--hb-cream); border-radius: 20px; }
.hb-comments .comment-reply-title { font-family: var(--hb-display); color: var(--hb-forest); }
.hb-comments input:not([type="checkbox"]), .hb-comments textarea { width: 100%; border: 1px solid var(--hb-border); border-radius: 10px; padding: 12px; background: #fff; }
.hb-comments .submit { min-height: 46px; padding: 0 22px; border: 0; background: var(--hb-forest); color: #fff; border-radius: 999px; cursor: pointer; }
.woocommerce #review_form #respond p.stars a { color: #b49452; }

/* Page / prose */
.hb-content-page { padding: 72px 0 100px; }
.hb-page-header { margin-bottom: 48px; }
.hb-page-header h1 { max-width: 900px; margin: 8px 0 0; color: var(--hb-forest); font-family: var(--hb-display); font-size: clamp(39px,6vw,68px); line-height: 1.35; letter-spacing: -.055em; }
.hb-prose { color: #455149; font-size: 15px; }
.hb-prose h2, .hb-prose h3, .hb-prose h4 { color: var(--hb-forest); font-family: var(--hb-display); line-height: 1.5; }
.hb-prose h2 { margin-top: 46px; font-size: 30px; }
.hb-prose h3 { margin-top: 34px; font-size: 22px; }
.hb-prose a { color: var(--hb-leaf); text-decoration: underline; text-underline-offset: 3px; }
.hb-prose img { border-radius: 20px; }
.hb-single-post__hero { margin-bottom: 42px; overflow: hidden; border-radius: var(--hb-radius-lg); }

/* Thank you */
.hb-thankyou { min-height: 70vh; display: grid; place-items: center; padding: 80px 0; background: var(--hb-cream); }
.hb-thankyou__inner { max-width: 760px; text-align: center; }
.hb-thankyou__icon { position: relative; width: 92px; height: 92px; margin: 0 auto 24px; display: grid; place-items: center; background: var(--hb-forest); color: #fff; border-radius: 50%; }
.hb-thankyou__icon svg { width: 45px; height: 45px; opacity: .22; }
.hb-thankyou__icon span { position: absolute; font-family: var(--hb-display); font-size: 26px; }
.hb-thankyou h1 { margin: 10px 0 15px; color: var(--hb-forest); font-family: var(--hb-display); font-size: clamp(38px,6vw,62px); line-height: 1.35; letter-spacing: -.05em; }
.hb-thankyou__inner > p { max-width: 570px; margin: 0 auto; color: var(--hb-muted); }
.hb-thankyou__summary { max-width: 520px; margin: 32px auto 0; display: grid; grid-template-columns: 1fr 1fr; background: #fff; border: 1px solid var(--hb-border); border-radius: 16px; }
.hb-thankyou__summary > div { padding: 18px; display: flex; flex-direction: column; }
.hb-thankyou__summary > div + div { border-inline-start: 1px solid var(--hb-border); }
.hb-thankyou__summary span { color: var(--hb-muted); font-size: 9px; }
.hb-thankyou__summary strong { margin-top: 4px; color: var(--hb-forest); font-family: var(--hb-display); font-size: 13px; }
.hb-thankyou__steps { margin: 35px 0; display: flex; justify-content: center; gap: 18px; }
.hb-thankyou__steps > div { min-width: 145px; display: flex; align-items: center; gap: 9px; color: #526058; font-size: 10px; }
.hb-thankyou__steps span { width: 25px; height: 25px; display: grid; place-items: center; flex: 0 0 auto; background: #dce8de; color: var(--hb-forest); border-radius: 50%; font-family: var(--hb-display); font-size: 9px; }

/* Error */
.hb-error-page { min-height: 68vh; display: grid; place-items: center; padding: 70px 0; background: var(--hb-cream); text-align: center; }
.hb-error-page__code { color: rgba(20,55,43,.11); font-family: var(--hb-display); font-size: clamp(120px,24vw,270px); font-weight: 700; line-height: .8; }
.hb-error-page h1 { margin: -5px 0 8px; color: var(--hb-forest); font-family: var(--hb-display); font-size: 36px; }
.hb-error-page p { margin: 0 0 25px; color: var(--hb-muted); }

/* Woo notices */
.woocommerce-notices-wrapper { width: min(calc(100% - 40px), var(--hb-container)); margin: 20px auto; }
.woocommerce-message, .woocommerce-info, .woocommerce-error { border-top: 0 !important; border: 1px solid var(--hb-border); border-radius: 12px; background: #fff; color: var(--hb-ink); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--hb-leaf); }

/* LTR future readiness */
.hb-ltr { direction: ltr; }
.hb-rtl .hb-button svg, .hb-rtl .hb-text-link svg, .hb-rtl .hb-header-action svg { transform: scaleX(-1); }
.hb-rtl .hb-header-action:hover svg { transform: scaleX(-1) translateX(-3px); }
.hb-ltr .hb-hero__stamp { transform: rotate(8deg); }

@media (max-width: 1060px) {
  .hb-header__inner { grid-template-columns: 52px 1fr 90px; min-height: 72px; }
  .hb-nav--desktop { display: none; }
  .hb-menu-toggle { display: block; }
  .hb-header__brand { justify-self: center; }
  .hb-header__actions { justify-self: end; }
  .hb-header-action--shop span { display: none; }
  .hb-mobile-panel .hb-nav__list { display: grid; gap: 0; justify-content: stretch; }
  .hb-mobile-panel .hb-nav__list a { width: 100%; padding: 13px 0; border-bottom: 1px solid var(--hb-border); font-size: 16px; }
  .hb-mobile-panel .sub-menu { display: block; position: static; box-shadow: none; border: 0; padding: 0 15px; background: transparent; }
  .hb-mobile-panel .hb-button { margin-top: 18px; }
  .hb-hero__grid { min-height: 610px; grid-template-columns: 1.05fr .95fr; gap: 35px; }
  .hb-hero h1 { font-size: clamp(44px,6vw,62px); }
  .hb-trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .hb-trust-strip__grid > div:nth-child(3), .hb-trust-strip__grid > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.12); }
  .hb-product-grid { grid-template-columns: repeat(3,1fr); }
  .hb-brand-story__grid { grid-template-columns: .8fr 1.2fr; }
  .hb-brand-story__copy { padding: 70px 7%; }
  .hb-product-hero { grid-template-columns: minmax(0,1fr) minmax(380px,.95fr); gap: 38px; }
  .hb-footer__top { grid-template-columns: 1.3fr 1fr 1fr; gap: 45px; }
  .hb-footer__column:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  body.admin-bar .hb-header { top: 46px; }
  .hb-container { width: min(calc(100% - 28px), var(--hb-container)); }
  .hb-section { padding: 68px 0; }
  .hb-hero__grid { grid-template-columns: 1fr; gap: 38px; padding-top: 50px; padding-bottom: 62px; }
  .hb-hero__copy { max-width: 680px; }
  .hb-hero__visual { min-height: 500px; }
  .hb-hero__frame { width: min(420px,82vw); }
  .hb-hero__stamp { inset-inline-start: calc(50% - 245px); }
  .hb-category-grid { grid-template-columns: 1fr 1fr; }
  .hb-product-grid { grid-template-columns: 1fr 1fr; }
  .hb-brand-story__grid { grid-template-columns: 1fr; }
  .hb-brand-story__visual { min-height: 520px; border-inline-end: 0; border-bottom: 1px solid rgba(255,255,255,.11); }
  .hb-brand-story__mark { font-size: 280px; }
  .hb-brand-story__copy { padding: 65px 25px; }
  .hb-how__grid { grid-template-columns: 1fr 1fr; }
  .hb-how__grid article:nth-child(3), .hb-how__grid article:nth-child(4) { border-top: 1px solid var(--hb-border); }
  .hb-journal__grid, .hb-post-grid { grid-template-columns: 1fr 1fr; }
  .hb-final-cta__inner { padding: 45px 35px; }
  .hb-product-hero { grid-template-columns: 1fr; }
  .hb-product-gallery { position: static; }
  .hb-product-hero__summary { max-width: 650px; }
  .hb-footer__top { grid-template-columns: 1fr 1fr; }
  .hb-footer__brand { grid-column: 1 / -1; }
  .hb-footer__column:last-child { grid-column: auto; }
}

@media (max-width: 600px) {
  .hb-announcement__inner { min-height: 31px; font-size: 10px; }
  .hb-header__inner { min-height: 66px; grid-template-columns: 44px 1fr 44px; }
  .hb-logo--text { font-size: 24px; }
  .hb-logo__image { max-height: 40px; }
  .hb-header-action { width: 40px; height: 40px; justify-content: center; }
  .hb-hero__grid { padding-top: 40px; }
  .hb-hero h1 { font-size: clamp(40px,12vw,56px); line-height: 1.28; }
  .hb-hero__copy > p { font-size: 14px; }
  .hb-hero__actions { align-items: stretch; gap: 14px; }
  .hb-hero__actions .hb-button { width: 100%; }
  .hb-hero__actions .hb-text-link { justify-content: center; }
  .hb-hero__proof { margin-top: 35px; gap: 25px; }
  .hb-hero__proof > div { gap: 8px; }
  .hb-hero__visual { min-height: 420px; }
  .hb-hero__frame { width: 82vw; max-width: 350px; }
  .hb-hero__stamp { width: 88px; height: 88px; inset-inline-start: 0; bottom: 25px; }
  .hb-hero__stamp span { font-size: 13px; }
  .hb-trust-strip__grid > div { padding: 18px 14px; gap: 10px; }
  .hb-trust-strip svg { width: 21px; height: 21px; }
  .hb-trust-strip strong { font-size: 10px; }
  .hb-trust-strip small { font-size: 8px; }
  .hb-section-head { margin-bottom: 30px; align-items: flex-start; flex-direction: column; gap: 14px; }
  .hb-section-head h2 { font-size: 31px; }
  .hb-category-grid { grid-template-columns: 1fr; }
  .hb-category-card { min-height: 220px; }
  .hb-product-grid { gap: 12px; }
  .hb-product-card__media { border-radius: 15px; }
  .hb-product-card__body { padding-top: 11px; }
  .hb-product-card h3 { font-size: 13px; }
  .hb-product-card__price { font-size: 12px; }
  .hb-product-card__arrow { width: 25px; height: 25px; }
  .hb-product-card__eyebrow { font-size: 8px; }
  .hb-brand-story__visual { min-height: 420px; }
  .hb-brand-story__mark { font-size: 225px; }
  .hb-brand-story__quote { inset-inline: 18px; width: auto; bottom: 25px; }
  .hb-brand-story__copy { padding: 55px 8px; }
  .hb-brand-story__copy > h2 { font-size: 36px; }
  .hb-how__grid article { min-height: 165px; padding: 24px 17px; }
  .hb-how__grid h3 { margin-top: 23px; font-size: 19px; }
  .hb-journal__grid, .hb-post-grid { grid-template-columns: 1fr; }
  .hb-final-cta { padding-bottom: 65px; }
  .hb-final-cta__inner { min-height: 350px; padding: 40px 28px; align-items: flex-start; flex-direction: column; justify-content: center; border-radius: 24px; }
  .hb-final-cta .hb-button { width: 100%; }
  .hb-footer { padding-top: 55px; }
  .hb-footer__top { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .hb-footer__brand { grid-column: 1 / -1; }
  .hb-footer__column:last-child { grid-column: 1 / -1; }
  .hb-footer__bottom { flex-direction: column; }
  .hb-shop-hero__inner { min-height: 240px; }
  .hb-shop-hero h1 { font-size: 46px; }
  .hb-shop-hero__mark { font-size: 190px; margin-bottom: -35px; }
  .hb-shop-toolbar { align-items: flex-start; flex-direction: column; padding-bottom: 14px; }
  .hb-product-hero { padding-bottom: 60px; gap: 25px; }
  .hb-breadcrumbs { padding: 15px 0; }
  .hb-product-gallery__main { border-radius: 20px; }
  .hb-product-gallery__thumbs { grid-template-columns: repeat(5,1fr); gap: 6px; }
  .hb-product-hero h1 { font-size: 38px; }
  .hb-product-price { font-size: 23px; }
  .hb-product-benefits { padding: 17px; }
  .hb-order-box { padding: 18px 15px; border-radius: 18px; }
  .hb-order-form__grid { grid-template-columns: 1fr; }
  .hb-product-details { padding: 65px 0; }
  .hb-product-details__intro h2 { font-size: 34px; }
  .hb-product-details__grid { grid-template-columns: 1fr; }
  .hb-detail-block, .hb-detail-block--wide { grid-column: auto; border-inline: 1px solid var(--hb-border) !important; min-height: auto; padding: 27px 18px; }
  .hb-mobile-buybar { position: fixed; z-index: 900; bottom: 10px; inset-inline: 10px; min-height: 68px; padding: 8px 8px 8px 15px; display: flex; align-items: center; justify-content: space-between; gap: 12px; background: rgba(255,255,255,.95); border: 1px solid rgba(20,55,43,.12); border-radius: 18px; box-shadow: 0 18px 50px rgba(20,55,43,.2); backdrop-filter: blur(12px); transform: translateY(130%); transition: transform .3s ease; }
  .hb-mobile-buybar.is-visible { transform: translateY(0); }
  .hb-mobile-buybar > div { display: flex; flex-direction: column; }
  .hb-mobile-buybar small { color: var(--hb-muted); font-size: 8px; }
  .hb-mobile-buybar strong { color: var(--hb-forest); font-family: var(--hb-display); font-size: 12px; }
  .hb-mobile-buybar .hb-button { min-height: 50px; padding-inline: 22px; font-size: 12px; }
  .hb-thankyou__steps { align-items: stretch; flex-direction: column; max-width: 260px; margin-inline: auto; margin-top: 30px; margin-bottom: 30px; }
  .hb-thankyou__summary { grid-template-columns: 1fr; }
  .hb-thankyou__summary > div + div { border-inline-start: 0; border-top: 1px solid var(--hb-border); }
}

/* Standard WooCommerce cart / checkout / account fallbacks */
.woocommerce-cart .hb-content-page,
.woocommerce-checkout .hb-content-page,
.woocommerce-account .hb-content-page { padding-top: 50px; }
.woocommerce table.shop_table { border: 1px solid var(--hb-border); border-radius: 16px; background: #fff; overflow: hidden; }
.woocommerce table.shop_table th { color: var(--hb-forest); font-family: var(--hb-display); font-size: 12px; }
.woocommerce table.shop_table td { border-color: var(--hb-border); font-size: 12px; }
.woocommerce a.remove { color: #8b5149 !important; }
.woocommerce a.remove:hover { background: #8b5149; }
.woocommerce .cart_totals, .woocommerce .woocommerce-checkout-review-order { padding: 24px; background: var(--hb-cream); border-radius: var(--hb-radius); }
.woocommerce form .form-row label { color: #526058; font-size: 11px; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container--default .select2-selection--single { min-height: 48px; border: 1px solid #d8dfda; border-radius: 11px; background: #fff; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea { padding: 11px 13px; }
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit { min-height: 46px; padding: 0 22px !important; border-radius: 999px !important; background: var(--hb-forest) !important; color: #fff !important; font-family: var(--hb-display); font-size: 12px !important; font-weight: 600 !important; }
.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { background: var(--hb-leaf) !important; }
.woocommerce-checkout #payment { background: var(--hb-cream); border-radius: 16px; }
.woocommerce-checkout #payment div.payment_box { background: #fff; }
.woocommerce-checkout #payment div.payment_box::before { border-bottom-color: #fff; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation li a { display: block; padding: 11px 14px; border-bottom: 1px solid var(--hb-border); }

/* =========================================================
   HERBO 1.1 — EDITORIAL LUXURY REDESIGN
   ========================================================= */
:root {
  --hb-forest: #12372b;
  --hb-forest-2: #08271f;
  --hb-leaf: #2f6f54;
  --hb-leaf-soft: #799487;
  --hb-sage: #b7c8bb;
  --hb-mint: #edf1eb;
  --hb-cream: #f4efe5;
  --hb-cream-2: #e9dfd0;
  --hb-stone: #d8d0c4;
  --hb-ivory: #faf8f2;
  --hb-white: #fff;
  --hb-ink: #17231e;
  --hb-muted: #6c746f;
  --hb-border: rgba(18,55,43,.15);
  --hb-shadow: 0 28px 80px rgba(8,39,31,.12);
  --hb-radius-sm: 5px;
  --hb-radius: 8px;
  --hb-radius-lg: 12px;
  --hb-container: 1360px;
  --hb-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  --hb-display: "Cairo", var(--hb-system);
  --hb-body: "Tajawal", var(--hb-system);
}

body { background: var(--hb-ivory); }
.hb-container { width: min(calc(100% - 72px), var(--hb-container)); }
.hb-section { padding: 128px 0; }

/* Header: centered brand, editorial navigation */
.hb-announcement { background: #08271f; border-bottom: 1px solid rgba(255,255,255,.08); }
.hb-announcement__inner { min-height: 30px; font-size: 10px; letter-spacing: .035em; color: rgba(255,255,255,.7); }
.hb-announcement__dot { width: 4px; height: 4px; background: #c6d6ca; box-shadow: none; }
.hb-header { background: rgba(250,248,242,.96); border-bottom: 1px solid rgba(18,55,43,.10); backdrop-filter: blur(18px); }
.hb-header__inner { min-height: 92px; grid-template-columns: 1fr auto 1fr; gap: 35px; }
.hb-header__brand { grid-column: 2; grid-row: 1; justify-self: center; }
.hb-nav--desktop { grid-column: 1; grid-row: 1; justify-self: start; }
.hb-header__actions { grid-column: 3; grid-row: 1; justify-self: end; }
.hb-nav__list { justify-content: flex-start; gap: 30px; }
.hb-nav__list a { font-size: 12px; font-weight: 500; color: #263b32; }
.hb-logo--text { font-size: 35px; font-weight: 650; }
.hb-logo__mark { width: 22px; height: 22px; margin-inline-end: 7px; border: 0; }
.hb-logo__mark svg { width: 20px; height: 20px; stroke-width: 1.1; }
.hb-logo em { color: #557d69; font-size: .42em; }
.hb-header-action { min-height: 44px; padding: 0 18px; border: 1px solid rgba(18,55,43,.26); font-size: 11px; font-weight: 600; }
.hb-header-action:hover { background: var(--hb-forest); color: #fff; }

/* Premium hero */
.hb-luxe-hero { position: relative; overflow: hidden; background: var(--hb-forest-2); color: #f8f2e8; }
.hb-luxe-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 22%, rgba(139,174,153,.10), transparent 29%), linear-gradient(110deg, rgba(255,255,255,.025), transparent 38%); pointer-events: none; }
.hb-luxe-hero__watermark { position: absolute; inset-inline-start: -3vw; bottom: -7vw; color: rgba(255,255,255,.026); font-family: var(--hb-display); font-size: clamp(180px, 28vw, 500px); font-weight: 700; line-height: .72; letter-spacing: -.11em; direction: ltr; user-select: none; }
.hb-luxe-hero__grid { position: relative; z-index: 2; min-height: 790px; display: grid; grid-template-columns: .94fr 1.06fr; align-items: stretch; gap: 86px; padding-top: 72px; padding-bottom: 72px; }
.hb-luxe-hero__copy { align-self: center; max-width: 690px; padding-block: 45px; }
.hb-luxe-kicker { display: inline-flex; align-items: center; gap: 13px; color: #acc5b6; font-family: var(--hb-display); font-size: 10px; font-weight: 500; letter-spacing: .025em; }
.hb-luxe-kicker > span { width: 42px; height: 1px; background: currentColor; opacity: .8; }
.hb-luxe-kicker--dark { color: #5f7e6d; }
.hb-luxe-hero h1 { max-width: 720px; margin: 25px 0 26px; color: #fbf6ec; font-family: var(--hb-display); font-size: clamp(58px, 6.4vw, 94px); font-weight: 560; line-height: 1.14; letter-spacing: -.065em; }
.hb-luxe-hero__lead { max-width: 610px; margin: 0; color: rgba(245,241,232,.64); font-size: 15px; line-height: 2.1; }
.hb-luxe-hero__actions { margin-top: 38px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hb-luxe-button { min-height: 58px; display: inline-flex; align-items: center; justify-content: center; gap: 24px; padding: 0 27px; background: #f4efe5; color: #102e25; border: 1px solid #f4efe5; font-family: var(--hb-display); font-size: 12px; font-weight: 600; transition: .25s ease; }
.hb-luxe-button svg { width: 16px; height: 16px; }
.hb-luxe-button:hover { background: transparent; color: #fff; transform: translateY(-2px); }
.hb-luxe-button--light { background: #f8f3e9; color: #0d2d23; }
.hb-luxe-link { display: inline-flex; align-items: center; gap: 9px; color: rgba(255,255,255,.68); font-family: var(--hb-display); font-size: 11px; font-weight: 500; }
.hb-luxe-link svg { width: 15px; height: 15px; }
.hb-luxe-link--dark { color: #214c3a; }
.hb-luxe-hero__meta { margin-top: 68px; padding-top: 23px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.14); }
.hb-luxe-hero__meta > div { min-height: 56px; padding-inline-end: 20px; display: grid; gap: 3px; border-inline-end: 1px solid rgba(255,255,255,.11); }
.hb-luxe-hero__meta > div:last-child { border-inline-end: 0; }
.hb-luxe-hero__meta span { color: rgba(255,255,255,.33); font-family: var(--hb-display); font-size: 8px; direction: ltr; text-align: start; }
.hb-luxe-hero__meta strong { color: rgba(255,255,255,.78); font-family: var(--hb-display); font-size: 10px; font-weight: 500; }
.hb-luxe-hero__visual { position: relative; min-width: 0; display: flex; align-items: center; }
.hb-luxe-hero__canvas { position: relative; width: 100%; min-height: 646px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #d9d4c9; border: 1px solid rgba(255,255,255,.16); }
.hb-luxe-hero__canvas::before { content: ""; position: absolute; inset: 24px; border: 1px solid rgba(16,46,37,.11); pointer-events: none; z-index: 2; }
.hb-luxe-hero__canvas::after { content: ""; position: absolute; width: 56%; height: 22%; left: 22%; bottom: 7%; background: rgba(16,46,37,.16); filter: blur(42px); border-radius: 50%; transform: scaleY(.45); }
.hb-luxe-hero__canvas > img { position: relative; z-index: 1; width: 100%; height: 646px; object-fit: cover; }
.hb-luxe-hero__halo { position: absolute; z-index: 0; width: 450px; height: 450px; border: 1px solid rgba(18,55,43,.15); border-radius: 50%; }
.hb-luxe-hero__halo::before, .hb-luxe-hero__halo::after { content: ""; position: absolute; inset: 48px; border: 1px solid rgba(18,55,43,.10); border-radius: 50%; }
.hb-luxe-hero__halo::after { inset: 105px; }
.hb-luxe-pack { position: relative; z-index: 1; width: 210px; height: 410px; filter: drop-shadow(0 36px 24px rgba(23,42,34,.22)); }
.hb-luxe-pack__cap { position: absolute; top: 0; left: 58px; width: 94px; height: 76px; background: #153e30; border-radius: 5px 5px 1px 1px; box-shadow: inset 0 -10px rgba(0,0,0,.08); }
.hb-luxe-pack__body { position: absolute; inset: 62px 0 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(100deg, #ece9e0, #fff 46%, #dedbd3); border-radius: 30px 30px 38px 38px; box-shadow: inset 12px 0 18px rgba(255,255,255,.55), inset -12px 0 20px rgba(19,48,38,.08); color: #153e30; text-align: center; font-style: normal; }
.hb-luxe-pack__body b { font-family: var(--hb-display); font-size: 31px; font-weight: 600; letter-spacing: -.06em; direction: ltr; }
.hb-luxe-pack__body i { width: 52px; height: 1px; margin: 21px 0 17px; background: #809a8d; }
.hb-luxe-pack__body small { font-family: Arial, sans-serif; font-size: 9px; line-height: 1.65; letter-spacing: .18em; }
.hb-luxe-pack__body em { margin-top: 22px; font-family: Arial, sans-serif; font-size: 18px; font-style: normal; font-weight: 700; }
.hb-luxe-hero__edition { position: absolute; z-index: 4; inset-inline-start: -31px; top: 68px; min-width: 95px; display: grid; gap: 4px; transform: rotate(-90deg); transform-origin: bottom right; color: rgba(255,255,255,.50); direction: ltr; }
.hb-luxe-hero__edition span { font-family: var(--hb-display); font-size: 9px; letter-spacing: .14em; }
.hb-luxe-hero__edition small { font-size: 7px; letter-spacing: .12em; }
.hb-luxe-hero__caption { position: absolute; z-index: 5; inset-inline: 24px; bottom: 24px; min-height: 76px; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: rgba(250,248,242,.91); border: 1px solid rgba(18,55,43,.10); backdrop-filter: blur(12px); color: #16372c; }
.hb-luxe-hero__caption span { color: #73857c; font-size: 8px; }
.hb-luxe-hero__caption strong { max-width: 60%; font-family: var(--hb-display); font-size: 11px; font-weight: 600; text-align: end; }
.hb-luxe-hero__seal { position: absolute; z-index: 6; inset-inline-end: -31px; bottom: 58px; width: 116px; height: 116px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; background: #f3eee4; color: #153d30; border-radius: 50%; box-shadow: 0 22px 45px rgba(6,25,20,.22); }
.hb-luxe-hero__seal span { font-family: var(--hb-display); font-size: 30px; line-height: 1; }
.hb-luxe-hero__seal small { font-family: Arial, sans-serif; font-size: 6px; line-height: 1.45; letter-spacing: .16em; text-align: center; }

/* Minimal confidence strip */
.hb-luxe-strip { background: #efe8dc; border-bottom: 1px solid rgba(18,55,43,.12); }
.hb-luxe-strip__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.hb-luxe-strip__grid > div { min-height: 98px; padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; gap: 4px; border-inline-start: 1px solid rgba(18,55,43,.12); }
.hb-luxe-strip__grid > div:last-child { border-inline-end: 1px solid rgba(18,55,43,.12); }
.hb-luxe-strip span { color: #87948d; font-family: Arial, sans-serif; font-size: 7px; letter-spacing: .16em; direction: ltr; text-align: start; }
.hb-luxe-strip strong { color: #1a392e; font-family: var(--hb-display); font-size: 11px; font-weight: 560; }

/* Editorial headings */
.hb-luxe-products { background: var(--hb-ivory); }
.hb-luxe-heading { margin-bottom: 66px; display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; }
.hb-luxe-heading h2, .hb-luxe-categories__intro h2 { max-width: 820px; margin: 15px 0 0; color: #14382c; font-family: var(--hb-display); font-size: clamp(40px, 5vw, 66px); font-weight: 530; line-height: 1.28; letter-spacing: -.055em; }
.hb-luxe-heading__side { max-width: 430px; justify-self: end; }
.hb-luxe-heading__side p { margin: 0 0 22px; color: #6b756f; font-size: 12px; line-height: 1.95; }

/* Products: larger and quieter */
.hb-product-grid--luxe { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 48px 24px; }
.hb-product-grid--luxe .hb-product-card__media { aspect-ratio: .92; background: #ebe8e0; border-radius: 0; }
.hb-product-grid--luxe .hb-product-card__media::after { border-radius: 0; box-shadow: inset 0 0 0 1px rgba(18,55,43,.07); }
.hb-product-grid--luxe .hb-product-card__media img { object-fit: cover; }
.hb-product-grid--luxe .hb-product-card__badge { top: 16px; inset-inline-start: 16px; padding: 6px 9px; background: #153b2f; color: #fff; border-radius: 0; font-size: 8px; }
.hb-product-grid--luxe .hb-product-card__body { padding: 18px 1px 0; }
.hb-product-grid--luxe .hb-product-card__eyebrow { margin-bottom: 5px; color: #798a81; font-size: 9px; }
.hb-product-grid--luxe .hb-product-card h3 { color: #17372c; font-size: 17px; font-weight: 560; }
.hb-product-grid--luxe .hb-product-card__meta { margin-top: 9px; padding-top: 10px; border-top: 1px solid rgba(18,55,43,.10); }
.hb-product-grid--luxe .hb-product-card__price { font-size: 14px; font-weight: 600; }
.hb-product-grid--luxe .hb-product-card__arrow { border: 0; width: auto; height: auto; font-size: 17px; }
.hb-product-grid--luxe .hb-product-card:hover .hb-product-card__arrow { background: transparent; color: #14382c; transform: translate(-2px,-2px); }

/* Categories */
.hb-luxe-categories { padding: 122px 0 132px; background: #eee7db; }
.hb-luxe-categories__intro { max-width: 850px; margin-bottom: 58px; }
.hb-luxe-category-grid { display: grid; grid-template-columns: 1.12fr .88fr .88fr; gap: 1px; background: rgba(18,55,43,.12); border: 1px solid rgba(18,55,43,.12); }
.hb-luxe-category { position: relative; min-height: 500px; overflow: hidden; isolation: isolate; background: #d5d8cf; }
.hb-luxe-category:nth-child(2) { background: #d9cec0; }
.hb-luxe-category:nth-child(3) { background: #bdcabd; }
.hb-luxe-category img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.65,.3,1); }
.hb-luxe-category:hover img { transform: scale(1.035); }
.hb-luxe-category__veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,36,28,.03), rgba(8,36,28,.72)); }
.hb-luxe-category:not(:has(img)) .hb-luxe-category__veil { background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.30), transparent 34%), linear-gradient(180deg, transparent, rgba(8,36,28,.18)); }
.hb-luxe-category__number { position: absolute; z-index: 2; top: 24px; inset-inline-start: 25px; color: rgba(255,255,255,.74); font-family: Arial, sans-serif; font-size: 8px; letter-spacing: .14em; }
.hb-luxe-category:not(:has(img)) .hb-luxe-category__number { color: rgba(18,55,43,.58); }
.hb-luxe-category__content { position: absolute; z-index: 2; inset-inline: 27px; bottom: 28px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 4px 18px; color: #fff; }
.hb-luxe-category:not(:has(img)) .hb-luxe-category__content { color: #15382c; }
.hb-luxe-category__content small { grid-column: 1; color: currentColor; opacity: .62; font-size: 8px; }
.hb-luxe-category__content strong { grid-column: 1; font-family: var(--hb-display); font-size: 24px; font-weight: 550; }
.hb-luxe-category__content i { grid-column: 2; grid-row: 1 / span 2; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-style: normal; }
.hb-luxe-category__content i svg { width: 16px; }

/* Manifesto */
.hb-manifesto { position: relative; overflow: hidden; padding: 150px 0 145px; background: #0b2b22; color: #fff; }
.hb-manifesto__word { position: absolute; inset-inline-end: -4vw; top: -2vw; color: rgba(255,255,255,.025); font-family: var(--hb-display); font-size: clamp(190px, 30vw, 500px); font-weight: 700; line-height: .8; letter-spacing: -.12em; direction: ltr; }
.hb-manifesto__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 130px; align-items: start; }
.hb-manifesto__lead h2 { max-width: 760px; margin: 19px 0 24px; font-family: var(--hb-display); font-size: clamp(44px,5.6vw,72px); font-weight: 520; line-height: 1.28; letter-spacing: -.055em; }
.hb-manifesto__lead > p { max-width: 620px; margin: 0; color: rgba(255,255,255,.55); font-size: 13px; line-height: 2; }
.hb-manifesto__principles { border-top: 1px solid rgba(255,255,255,.16); }
.hb-manifesto__principles article { min-height: 132px; padding: 29px 0; display: grid; grid-template-columns: 48px 1fr; gap: 24px; border-bottom: 1px solid rgba(255,255,255,.16); }
.hb-manifesto__principles article > span { color: rgba(255,255,255,.32); font-family: Arial, sans-serif; font-size: 8px; letter-spacing: .12em; }
.hb-manifesto__principles h3 { margin: 0 0 7px; font-family: var(--hb-display); font-size: 16px; font-weight: 560; }
.hb-manifesto__principles p { margin: 0; color: rgba(255,255,255,.47); font-size: 11px; line-height: 1.9; }

/* Journal + CTA */
.hb-luxe-journal { background: #f8f5ef; }
.hb-journal__grid--luxe { gap: 28px; }
.hb-article-card--luxe .hb-article-card__media { aspect-ratio: 1.2; border-radius: 0; }
.hb-article-card--luxe .hb-article-card__body { padding: 19px 0 0; }
.hb-article-card--luxe h3 { max-width: 92%; margin-top: 8px; font-size: 18px; font-weight: 550; }
.hb-luxe-cta { padding: 0 0 100px; background: #f8f5ef; }
.hb-luxe-cta__inner { position: relative; overflow: hidden; min-height: 340px; padding: 64px 70px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; background: #b8c8bb; color: #0e3025; }
.hb-luxe-cta__monogram { position: absolute; inset-inline-start: -50px; bottom: -100px; font-family: var(--hb-display); font-size: 390px; font-weight: 650; line-height: 1; color: rgba(255,255,255,.18); }
.hb-luxe-cta__inner > div:not(.hb-luxe-cta__monogram), .hb-luxe-cta__inner > a { position: relative; z-index: 2; }
.hb-luxe-cta__inner > div > span { font-family: Arial, sans-serif; font-size: 7px; letter-spacing: .16em; direction: ltr; }
.hb-luxe-cta h2 { max-width: 740px; margin: 12px 0 6px; font-family: var(--hb-display); font-size: clamp(40px,5vw,64px); font-weight: 540; line-height: 1.3; letter-spacing: -.05em; }
.hb-luxe-cta p { margin: 0; color: rgba(14,48,37,.62); font-size: 12px; }
.hb-luxe-cta .hb-luxe-button { background: #0d3025; color: #fff; border-color: #0d3025; min-width: 190px; }
.hb-luxe-cta .hb-luxe-button:hover { background: transparent; color: #0d3025; }

/* Product page: quieter luxury */
.hb-product-page { background: #f9f6f0; }
.hb-breadcrumbs { padding: 19px 0; color: #89918d; font-size: 9px; }
.hb-product-hero { padding: 10px 0 108px; grid-template-columns: minmax(0,1.08fr) minmax(430px,.92fr); gap: 84px; }
.hb-product-gallery__main { aspect-ratio: .93; background: #e7e4dc; border-radius: 0; }
.hb-product-gallery__main::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(18,55,43,.08); pointer-events: none; }
.hb-product-gallery__main { position: relative; }
.hb-gallery-thumb { border-radius: 0; background: #ece8df; }
.hb-product-badge { margin-bottom: 18px; padding: 6px 9px; background: #143b2f; color: #fff; border-radius: 0; font-size: 8px; }
.hb-product-subtitle { color: #71877c; font-size: 10px; }
.hb-product-hero h1 { font-size: clamp(42px,5.4vw,67px); font-weight: 540; line-height: 1.28; }
.hb-product-price { margin-top: 12px; font-size: 25px; font-weight: 600; }
.hb-product-intro { max-width: 620px; color: #626d67; font-size: 13px; line-height: 1.95; }
.hb-product-benefits { margin: 28px 0 25px; padding: 22px 0; background: transparent; border-top: 1px solid var(--hb-border); border-bottom: 1px solid var(--hb-border); border-radius: 0; }
.hb-check-list { grid-template-columns: 1fr 1fr; gap: 11px 18px; }
.hb-check-list li { font-size: 10px; }
.hb-check-list li > span { width: 18px; height: 18px; background: transparent; border: 1px solid #50725f; color: #2e654c; }
.hb-product-trust-mini { border-top: 0; padding-top: 0; }
.hb-order-box { padding: 30px; background: #fdfcf8; border: 1px solid rgba(18,55,43,.15); border-radius: 0; box-shadow: none; }
.hb-order-box__head { margin-bottom: 25px; padding-bottom: 18px; border-bottom: 1px solid rgba(18,55,43,.12); }
.hb-order-box__head h2 { font-size: 19px; font-weight: 560; }
.hb-order-box__secure { border-radius: 50%; }
.hb-offer-card { border-radius: 0; background: #fff; }
.hb-offer-card:has(input:checked) { background: #edf2ed; }
.hb-field input, .hb-field select, .hb-field textarea { border-radius: 0; background: #fff; }
.hb-order-box .hb-button { border-radius: 0; min-height: 54px; box-shadow: none; }
.hb-product-details { padding: 125px 0; background: #ece5d9; }
.hb-product-details__intro h2 { font-size: clamp(38px,4.8vw,58px); font-weight: 530; }
.hb-detail-block { min-height: 270px; padding: 42px 36px; }
.hb-detail-block h3 { font-size: 17px; font-weight: 560; }

/* Footer refinement */
.hb-footer { background: #08241c; padding-top: 85px; }
.hb-footer__top { gap: 78px; }
.hb-footer-logo { font-size: 36px; }
.hb-footer__brand p { font-size: 11px; line-height: 2; }
.hb-footer h3 { color: #9ab1a3; font-size: 10px; }
.hb-footer__links a, .hb-footer__socials a { font-size: 11px; }

@media (max-width: 1100px) {
  .hb-container { width: min(calc(100% - 44px), var(--hb-container)); }
  .hb-header__inner { grid-template-columns: 52px 1fr 52px; min-height: 76px; }
  .hb-header__brand { grid-column: 2; }
  .hb-header__actions { grid-column: 3; }
  .hb-menu-toggle { grid-column: 1; grid-row: 1; display: block; }
  .hb-nav--desktop { display: none; }
  .hb-header-action { width: 42px; padding: 0; justify-content: center; border-radius: 50%; }
  .hb-header-action--shop span { display: none; }
  .hb-luxe-hero__grid { min-height: auto; grid-template-columns: 1fr 1fr; gap: 45px; }
  .hb-luxe-hero h1 { font-size: clamp(52px,7vw,72px); }
  .hb-luxe-hero__canvas { min-height: 570px; }
  .hb-luxe-hero__canvas > img { height: 570px; }
  .hb-luxe-hero__seal { inset-inline-end: -10px; }
  .hb-manifesto__grid { gap: 70px; }
  .hb-product-hero { grid-template-columns: 1fr 1fr; gap: 45px; }
}

@media (max-width: 820px) {
  .hb-section { padding: 92px 0; }
  .hb-luxe-hero__grid { grid-template-columns: 1fr; gap: 40px; padding-top: 55px; padding-bottom: 65px; }
  .hb-luxe-hero__copy { max-width: 760px; padding-block: 10px; }
  .hb-luxe-hero__meta { margin-top: 42px; }
  .hb-luxe-hero__visual { max-width: 650px; width: 100%; margin-inline: auto; }
  .hb-luxe-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 48px; }
  .hb-luxe-heading__side { max-width: 600px; justify-self: start; }
  .hb-product-grid--luxe { grid-template-columns: 1fr 1fr; }
  .hb-luxe-category-grid { grid-template-columns: 1fr 1fr; }
  .hb-luxe-category:first-child { grid-column: 1 / -1; }
  .hb-luxe-category { min-height: 410px; }
  .hb-manifesto { padding: 105px 0; }
  .hb-manifesto__grid { grid-template-columns: 1fr; gap: 70px; }
  .hb-luxe-cta__inner { padding: 55px 45px; }
  .hb-product-hero { grid-template-columns: 1fr; }
  .hb-check-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hb-container { width: min(calc(100% - 28px), var(--hb-container)); }
  .hb-announcement__inner { min-height: 28px; font-size: 9px; }
  .hb-header__inner { min-height: 68px; }
  .hb-logo--text { font-size: 27px; }
  .hb-logo__mark { width: 18px; height: 18px; }
  .hb-luxe-hero__grid { padding-top: 42px; padding-bottom: 52px; }
  .hb-luxe-hero h1 { margin-top: 19px; font-size: clamp(43px,13vw,58px); line-height: 1.2; }
  .hb-luxe-hero__lead { font-size: 13px; }
  .hb-luxe-hero__actions { align-items: stretch; flex-direction: column; gap: 15px; }
  .hb-luxe-button { width: 100%; }
  .hb-luxe-link { justify-content: center; }
  .hb-luxe-hero__meta { grid-template-columns: 1fr; gap: 0; }
  .hb-luxe-hero__meta > div { min-height: 47px; grid-template-columns: 35px 1fr; align-items: center; border-inline-end: 0; border-bottom: 1px solid rgba(255,255,255,.10); }
  .hb-luxe-hero__visual { padding-top: 10px; }
  .hb-luxe-hero__canvas { min-height: 470px; }
  .hb-luxe-hero__canvas > img { height: 470px; }
  .hb-luxe-hero__edition { display: none; }
  .hb-luxe-hero__seal { width: 88px; height: 88px; inset-inline-end: -4px; bottom: 44px; }
  .hb-luxe-hero__seal span { font-size: 24px; }
  .hb-luxe-hero__caption { inset-inline: 14px; bottom: 14px; min-height: 66px; padding: 11px 13px; }
  .hb-luxe-strip__grid { grid-template-columns: 1fr 1fr; }
  .hb-luxe-strip__grid > div { min-height: 78px; padding: 17px 14px; border-bottom: 1px solid rgba(18,55,43,.12); }
  .hb-luxe-heading h2, .hb-luxe-categories__intro h2 { font-size: 36px; }
  .hb-product-grid--luxe { gap: 30px 12px; }
  .hb-product-grid--luxe .hb-product-card h3 { font-size: 13px; }
  .hb-product-grid--luxe .hb-product-card__price { font-size: 12px; }
  .hb-luxe-categories { padding: 84px 0; }
  .hb-luxe-category-grid { grid-template-columns: 1fr; }
  .hb-luxe-category:first-child { grid-column: auto; }
  .hb-luxe-category { min-height: 330px; }
  .hb-manifesto { padding: 88px 0; }
  .hb-manifesto__lead h2 { font-size: 39px; }
  .hb-manifesto__principles article { min-height: auto; padding: 24px 0; }
  .hb-journal__grid--luxe { grid-template-columns: 1fr; }
  .hb-luxe-cta { padding-bottom: 68px; }
  .hb-luxe-cta__inner { min-height: 390px; padding: 42px 25px; grid-template-columns: 1fr; align-content: center; }
  .hb-luxe-cta h2 { font-size: 39px; }
  .hb-product-hero { padding-bottom: 74px; }
  .hb-product-gallery__main { border-radius: 0; }
  .hb-product-hero h1 { font-size: 40px; }
  .hb-check-list { grid-template-columns: 1fr; }
  .hb-order-box { padding: 21px 16px; }
  .hb-detail-block, .hb-detail-block--wide { padding: 29px 19px; }
}

/* Premium shop archive */
.hb-shop-hero--luxe { position: relative; overflow: hidden; background: #0b2b22; color: #fff; border-bottom: 0; }
.hb-shop-hero__word { position: absolute; inset-inline-end: -3vw; bottom: -8vw; color: rgba(255,255,255,.025); font-family: var(--hb-display); font-size: clamp(180px,30vw,470px); font-weight: 700; line-height: .75; letter-spacing: -.12em; direction: ltr; }
.hb-shop-hero--luxe .hb-shop-hero__inner { position: relative; z-index: 2; min-height: 470px; overflow: visible; }
.hb-shop-hero__copy { max-width: 820px; }
.hb-shop-hero--luxe h1 { margin: 20px 0 16px; color: #fbf6ec; font-size: clamp(56px,8vw,104px); font-weight: 520; line-height: 1.15; letter-spacing: -.065em; }
.hb-shop-hero--luxe p, .hb-shop-hero--luxe .hb-shop-hero__description { max-width: 620px; color: rgba(255,255,255,.55); font-size: 13px; line-height: 2; }
.hb-shop-hero__index { min-width: 155px; align-self: flex-end; margin-bottom: 56px; padding-inline-start: 22px; display: grid; gap: 5px; border-inline-start: 1px solid rgba(255,255,255,.17); direction: ltr; text-align: left; }
.hb-shop-hero__index span, .hb-shop-hero__index small { color: rgba(255,255,255,.35); font-family: Arial,sans-serif; font-size: 7px; letter-spacing: .15em; }
.hb-shop-hero__index strong { color: rgba(255,255,255,.78); font-family: Arial,sans-serif; font-size: 10px; font-weight: 500; letter-spacing: .12em; }
.hb-shop-content--luxe { background: #f8f5ef; }
.hb-shop-content--luxe .hb-shop-toolbar { margin-bottom: 46px; padding-bottom: 16px; }
.hb-shop-content--luxe .hb-shop-toolbar select { font-size: 11px; }

@media (max-width: 600px) {
  .hb-shop-hero--luxe .hb-shop-hero__inner { min-height: 330px; align-items: center; }
  .hb-shop-hero--luxe h1 { font-size: 52px; }
  .hb-shop-hero__index { display: none; }
}

/* =========================================================
   HERBO 1.2 — Professional commerce direction
   Primary brand green: #458500
   ========================================================= */
:root {
  --hb-forest: #458500;
  --hb-forest-2: #356800;
  --hb-leaf: #458500;
  --hb-leaf-soft: #6d8f53;
  --hb-sage: #dce8d2;
  --hb-mint: #eef5e9;
  --hb-cream: #f7f7f3;
  --hb-cream-2: #f0f2ec;
  --hb-sand: #e7e9e2;
  --hb-white: #ffffff;
  --hb-ink: #242424;
  --hb-muted: #6c6c6c;
  --hb-border: #e2e2de;
  --hb-shadow: 0 10px 28px rgba(24, 38, 15, .08);
  --hb-radius-sm: 8px;
  --hb-radius: 12px;
  --hb-radius-lg: 16px;
  --hb-container: 1320px;
}

body { background: #fff; color: var(--hb-ink); }
.hb-container { width: min(calc(100% - 36px), var(--hb-container)); }
.hb-section { padding: 64px 0; }

/* top + header */
.hb-announcement--commerce { background: #458500; color: #fff; }
.hb-announcement--commerce .hb-announcement__inner { min-height: 38px; gap: 10px; font-size: 12px; }
.hb-announcement--commerce svg { width: 16px; height: 16px; }
.hb-announcement--commerce strong { font-weight: 600; }
.hb-announcement__divider { width: 1px; height: 15px; background: rgba(255,255,255,.32); margin-inline: 4px; }

.hb-header--commerce { background: #fff; border-bottom: 0; backdrop-filter: none; }
.hb-commerce-head { min-height: 86px; display: grid; grid-template-columns: 210px minmax(320px, 1fr) auto; gap: 28px; align-items: center; }
.hb-commerce-brand { display: inline-flex; justify-content: flex-start; }
.hb-commerce-brand .hb-logo--text { color: #458500; font-size: 35px; font-weight: 700; }
.hb-commerce-brand .hb-logo__mark { color: #458500; }
.hb-commerce-brand .hb-logo em { color: #666; font-weight: 600; }
.hb-header-search { height: 48px; display: grid; grid-template-columns: 1fr 52px; border: 2px solid #458500; border-radius: 6px; overflow: hidden; background: #fff; }
.hb-header-search input { width: 100%; border: 0; outline: 0; padding: 0 17px; color: #333; background: #fff; font-size: 13px; }
.hb-header-search input::placeholder { color: #929292; }
.hb-header-search button { border: 0; background: #458500; color: #fff; display: grid; place-items: center; cursor: pointer; }
.hb-header-search button:hover { background: #376d00; }
.hb-header-search button svg { width: 21px; height: 21px; stroke-width: 2; }
.hb-header-tools { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.hb-header-tool { min-width: 104px; display: flex; align-items: center; gap: 9px; padding: 7px 9px; border-radius: 6px; transition: background .2s ease; }
.hb-header-tool:hover { background: #f4f6f1; }
.hb-header-tool > svg, .hb-cart-icon > svg { width: 25px; height: 25px; color: #333; stroke-width: 1.7; }
.hb-header-tool span:not(.hb-cart-icon) { display: grid; line-height: 1.2; }
.hb-header-tool small { color: #777; font-size: 9px; }
.hb-header-tool strong { margin-top: 3px; font-size: 11px; font-weight: 600; }
.hb-cart-icon { position: relative; display: grid; place-items: center; }
.hb-cart-icon b { position: absolute; top: -8px; inset-inline-start: -8px; min-width: 18px; height: 18px; padding: 0 4px; display: grid; place-items: center; background: #e45b32; color: #fff; border: 2px solid #fff; border-radius: 999px; font-size: 8px; }
.hb-commerce-nav-wrap { border-top: 1px solid #ededeb; border-bottom: 1px solid #dededb; background: #fff; }
.hb-commerce-nav { min-height: 46px; display: flex; align-items: center; gap: 26px; }
.hb-browse-link { min-height: 46px; display: inline-flex; align-items: center; gap: 8px; padding-inline: 15px 21px; background: #f1f5ed; color: #365f16; border-inline: 1px solid #e4e9df; font-size: 11px; }
.hb-browse-link svg { width: 18px; height: 18px; }
.hb-browse-link strong { font-weight: 650; }
.hb-header--commerce .hb-nav--desktop { flex: 1; }
.hb-header--commerce .hb-nav__list { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.hb-header--commerce .hb-nav__list a { color: #3f3f3f; font-size: 11px; font-weight: 500; transition: color .2s; }
.hb-header--commerce .hb-nav__list a:hover { color: #458500; }
.hb-nav-deal { margin-inline-start: auto; display: inline-flex; align-items: center; gap: 6px; color: #cf3e2e; font-size: 11px; font-weight: 650; }
.hb-nav-deal span { width: 22px; height: 22px; display: grid; place-items: center; background: #fff0ed; border-radius: 50%; }
.hb-menu-toggle { display: none; }

/* homepage hero */
.hb-home-commerce { background: #fff; }
.hb-commerce-hero { background: #f3f6ef; border-bottom: 1px solid #e5e9e1; }
.hb-commerce-hero__grid { min-height: 480px; display: grid; grid-template-columns: 1fr .92fr; align-items: stretch; }
.hb-commerce-hero__content { align-self: center; max-width: 650px; padding: 66px 40px 66px 0; }
[dir="rtl"] .hb-commerce-hero__content { padding: 66px 0 66px 40px; }
.hb-commerce-eyebrow { display: inline-flex; align-items: center; gap: 8px; color: #458500; font-size: 11px; font-weight: 650; }
.hb-commerce-eyebrow::before { content: ""; width: 25px; height: 3px; background: #458500; border-radius: 99px; }
.hb-commerce-hero h1 { max-width: 650px; margin: 13px 0 16px; color: #223018; font-family: var(--hb-display); font-size: clamp(42px, 5.2vw, 68px); line-height: 1.28; letter-spacing: -.045em; font-weight: 650; }
.hb-commerce-hero__content > p { max-width: 590px; margin: 0; color: #62675f; font-size: 15px; line-height: 2; }
.hb-commerce-hero__actions { margin-top: 28px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hb-commerce-btn { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 22px; border: 1px solid #458500; border-radius: 5px; background: #458500; color: #fff; font-size: 12px; font-weight: 650; transition: .2s ease; }
.hb-commerce-btn:hover { background: #376d00; border-color: #376d00; }
.hb-commerce-btn svg { width: 16px; height: 16px; }
.hb-commerce-btn--white { background: #fff; color: #356b00; border-color: #fff; box-shadow: 0 3px 14px rgba(28,57,6,.08); }
.hb-commerce-btn--white:hover { background: #f5f7f2; color: #294f05; border-color: #f5f7f2; }
.hb-commerce-hero__content .hb-commerce-btn--white { background: #458500; color: #fff; border-color: #458500; box-shadow: none; }
.hb-commerce-hero__content .hb-commerce-btn--white:hover { background: #376d00; border-color: #376d00; }
.hb-commerce-hero__link { color: #3d6f18; border-bottom: 1px solid #9ebc87; font-size: 11px; font-weight: 600; }
.hb-commerce-hero__proof { margin-top: 34px; display: flex; gap: 18px; flex-wrap: wrap; color: #5e6758; font-size: 10px; }
.hb-commerce-hero__proof span { display: inline-flex; align-items: center; gap: 6px; }
.hb-commerce-hero__proof svg { width: 17px; height: 17px; color: #458500; }
.hb-commerce-hero__visual { position: relative; min-height: 480px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #e7eee1; }
.hb-commerce-hero__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(243,246,239,.55), transparent 28%); pointer-events: none; }
[dir="rtl"] .hb-commerce-hero__visual::after { background: linear-gradient(270deg, rgba(243,246,239,.55), transparent 28%); }
.hb-commerce-hero__visual > img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.hb-commerce-hero__blob { position: absolute; width: 390px; height: 390px; border-radius: 50%; background: rgba(69,133,0,.10); box-shadow: 0 0 0 50px rgba(69,133,0,.04); }
.hb-commerce-pack { position: relative; z-index: 2; width: 205px; height: 340px; filter: drop-shadow(0 25px 22px rgba(44,65,31,.18)); }
.hb-commerce-pack > span { position: absolute; top: 0; left: 57px; width: 91px; height: 67px; border-radius: 5px 5px 0 0; background: #458500; }
.hb-commerce-pack > div { position: absolute; inset: 54px 0 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(100deg,#f3f3ef,#fff 48%,#e9e9e5); border-radius: 26px 26px 34px 34px; color: #458500; }
.hb-commerce-pack b { font-size: 30px; letter-spacing: -.06em; direction: ltr; }
.hb-commerce-pack i { margin-top: 14px; color: #6c6c6c; font-family: Arial,sans-serif; font-size: 8px; letter-spacing: .18em; font-style: normal; }
.hb-commerce-pack em { margin-top: 22px; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid #458500; border-radius: 50%; font-style: normal; font-size: 11px; }
.hb-commerce-hero__product { position: absolute; z-index: 5; inset-inline-start: 28px; bottom: 25px; width: min(310px, calc(100% - 56px)); padding: 14px 16px; display: grid; gap: 2px; background: rgba(255,255,255,.95); border: 1px solid #e0e4dc; border-radius: 8px; box-shadow: 0 8px 24px rgba(41,61,27,.10); }
.hb-commerce-hero__product small { color: #72905d; font-size: 8px; }
.hb-commerce-hero__product strong { font-size: 11px; font-weight: 650; }
.hb-commerce-hero__product span { color: #458500; font-size: 12px; font-weight: 700; }

/* service bar */
.hb-commerce-servicebar { border-bottom: 1px solid #e6e6e2; background: #fff; }
.hb-commerce-servicebar__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.hb-commerce-servicebar__grid > div { min-height: 92px; padding: 19px 25px; display: flex; align-items: center; justify-content: center; gap: 13px; border-inline-start: 1px solid #ecece8; }
.hb-commerce-servicebar__grid > div:last-child { border-inline-end: 1px solid #ecece8; }
.hb-commerce-servicebar svg { width: 29px; height: 29px; color: #458500; stroke-width: 1.5; }
.hb-commerce-servicebar span { display: grid; gap: 2px; }
.hb-commerce-servicebar strong { color: #333; font-size: 11px; font-weight: 650; }
.hb-commerce-servicebar small { color: #888; font-size: 9px; }

/* commerce section heading */
.hb-commerce-section { padding: 66px 0; }
.hb-commerce-heading { margin-bottom: 28px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.hb-commerce-heading > div > span { color: #458500; font-size: 10px; font-weight: 650; }
.hb-commerce-heading h2 { margin: 4px 0 0; color: #292929; font-family: var(--hb-display); font-size: clamp(28px,3vw,37px); line-height: 1.35; font-weight: 650; letter-spacing: -.035em; }
.hb-commerce-heading > a { display: inline-flex; align-items: center; gap: 6px; color: #3f6f1c; font-size: 10px; font-weight: 600; }
.hb-commerce-heading > a svg { width: 14px; height: 14px; }

/* categories */
.hb-commerce-categories { background: #fff; }
.hb-commerce-category-grid { display: grid; grid-template-columns: repeat(8,1fr); gap: 16px; }
.hb-commerce-category { min-width: 0; text-align: center; }
.hb-commerce-category__image { width: 100%; aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; background: #f4f6f1; border: 1px solid #eceee9; border-radius: 50%; transition: border-color .2s, transform .2s; }
.hb-commerce-category:hover .hb-commerce-category__image { border-color: #9fbd86; transform: translateY(-2px); }
.hb-commerce-category__image img { width: 100%; height: 100%; object-fit: cover; }
.hb-commerce-category__image svg { width: 39%; height: 39%; color: #7da55c; stroke-width: 1.2; }
.hb-commerce-category strong { display: block; margin-top: 11px; color: #363636; font-size: 10px; font-weight: 650; line-height: 1.5; }
.hb-commerce-category small { display: block; margin-top: 2px; color: #9a9a9a; font-size: 8px; }

/* product cards */
.hb-commerce-products-section { background: #fff; border-top: 1px solid #f0f0ed; }
.hb-commerce-products-section--soft { background: #f7f8f5; }
.hb-product-grid--commerce, .hb-shop-content .hb-product-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.hb-product-card--commerce { position: relative; display: flex; flex-direction: column; min-width: 0; background: #fff; border: 1px solid #e6e6e2; border-radius: 8px; overflow: hidden; transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease; }
.hb-product-card--commerce:hover { border-color: #ced9c5; box-shadow: 0 9px 24px rgba(33,56,19,.09); transform: translateY(-2px); }
.hb-product-card--commerce .hb-product-card__media { aspect-ratio: 1; border-radius: 0; background: #fafafa; overflow: hidden; }
.hb-product-card--commerce .hb-product-card__media::after { display: none; }
.hb-product-card--commerce .hb-product-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.hb-product-card--commerce:hover .hb-product-card__media img { transform: scale(1.025); }
.hb-product-card--commerce .hb-product-card__badge { top: 11px; inset-inline-start: 11px; padding: 5px 8px; background: #458500; color: #fff; border-radius: 4px; font-size: 8px; box-shadow: none; }
.hb-product-card--commerce .hb-product-card__badge--sale { background: #d94c35; }
.hb-product-card--commerce .hb-product-card__body { flex: 1; padding: 14px 15px 15px; display: flex; flex-direction: column; }
.hb-product-card--commerce .hb-product-card__eyebrow { min-height: 16px; margin: 0 0 5px; color: #848484; font-size: 8px; }
.hb-product-card--commerce h3 { min-height: 47px; margin: 0; color: #333; font-family: var(--hb-body); font-size: 12px; line-height: 1.65; font-weight: 600; }
.hb-product-card__rating { min-height: 22px; margin-top: 7px; display: flex; align-items: center; gap: 6px; }
.hb-product-card__rating .star-rating { margin: 0; font-size: 11px; width: 5.4em; color: #e7a61a; }
.hb-product-card__rating small { color: #888; font-size: 8px; }
.hb-product-card__rating-empty { color: #849178; font-size: 8px; }
.hb-product-card--commerce .hb-product-card__price { margin-top: 5px; color: #2f5f0f; font-size: 14px; font-weight: 700; }
.hb-product-card--commerce .hb-product-card__price del { color: #999; font-size: 9px; font-weight: 400; }
.hb-product-card__cta { margin-top: 12px; min-height: 38px; display: grid; place-items: center; border: 1px solid #458500; border-radius: 5px; color: #458500; font-size: 10px; font-weight: 650; transition: .2s; }
.hb-product-card__cta:hover { background: #458500; color: #fff; }

/* promos */
.hb-commerce-promo { padding: 18px 0 68px; background: #fff; }
.hb-commerce-promo__grid { display: grid; grid-template-columns: 1.45fr .55fr; gap: 18px; }
.hb-commerce-promo__main, .hb-commerce-promo__side { min-height: 315px; border-radius: 10px; overflow: hidden; }
.hb-commerce-promo__main { position: relative; padding: 48px 52px; background: linear-gradient(120deg,#3d7900,#548f13); color: #fff; }
.hb-commerce-promo__main::after { content: "H"; position: absolute; inset-inline-end: 2%; bottom: -33%; color: rgba(255,255,255,.07); font-family: var(--hb-display); font-size: 330px; font-weight: 700; line-height: 1; }
.hb-commerce-promo__main > * { position: relative; z-index: 2; }
.hb-commerce-promo__main > span { color: #d7e8c7; font-size: 9px; font-weight: 650; }
.hb-commerce-promo__main h2 { max-width: 610px; margin: 8px 0 11px; font-family: var(--hb-display); font-size: clamp(34px,4vw,49px); line-height: 1.3; font-weight: 650; }
.hb-commerce-promo__main p { max-width: 610px; margin: 0 0 23px; color: rgba(255,255,255,.78); font-size: 12px; }
.hb-commerce-promo__side { padding: 37px 34px; background: #edf3e8; border: 1px solid #dfe9d7; color: #315b14; }
.hb-commerce-promo__side > div { width: 55px; height: 55px; display: grid; place-items: center; background: #fff; border-radius: 50%; }
.hb-commerce-promo__side > div svg { width: 29px; height: 29px; color: #458500; }
.hb-commerce-promo__side > span { display: block; margin-top: 32px; color: #709255; font-size: 8px; font-weight: 650; }
.hb-commerce-promo__side h3 { margin: 5px 0 18px; color: #294c11; font-family: var(--hb-display); font-size: 24px; line-height: 1.45; }
.hb-commerce-promo__side > a { display: inline-flex; align-items: center; gap: 5px; color: #458500; font-size: 10px; font-weight: 650; }
.hb-commerce-promo__side > a svg { width: 14px; height: 14px; }

/* trust */
.hb-commerce-trust { padding: 72px 0; background: #458500; color: #fff; }
.hb-commerce-trust__head { max-width: 690px; margin-bottom: 35px; }
.hb-commerce-trust__head span { color: #dceacb; font-size: 9px; font-weight: 650; }
.hb-commerce-trust__head h2 { margin: 5px 0 0; font-family: var(--hb-display); font-size: clamp(30px,4vw,46px); line-height: 1.35; font-weight: 650; }
.hb-commerce-trust__grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.25); }
.hb-commerce-trust__grid article { min-height: 205px; padding: 28px 24px 20px; border-inline-start: 1px solid rgba(255,255,255,.22); }
.hb-commerce-trust__grid article:last-child { border-inline-end: 1px solid rgba(255,255,255,.22); }
.hb-commerce-trust__grid svg { width: 31px; height: 31px; stroke-width: 1.4; }
.hb-commerce-trust__grid h3 { margin: 30px 0 5px; font-size: 13px; font-weight: 650; }
.hb-commerce-trust__grid p { margin: 0; color: rgba(255,255,255,.73); font-size: 10px; line-height: 1.9; }

/* journal */
.hb-commerce-journal { background: #fff; }
.hb-commerce-article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.hb-commerce-article { min-width: 0; border: 1px solid #e5e5e1; border-radius: 8px; overflow: hidden; background: #fff; }
.hb-commerce-article__media { aspect-ratio: 1.65; display: grid; place-items: center; overflow: hidden; background: #f0f4ed; }
.hb-commerce-article__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.hb-commerce-article:hover .hb-commerce-article__media img { transform: scale(1.025); }
.hb-commerce-article__media > span svg { width: 52px; height: 52px; color: #79a357; }
.hb-commerce-article > div { padding: 17px 18px 20px; }
.hb-commerce-article time { color: #8d8d8d; font-size: 8px; }
.hb-commerce-article h3 { min-height: 52px; margin: 5px 0 12px; font-size: 13px; line-height: 1.8; }
.hb-commerce-article > div > a { display: inline-flex; align-items: center; gap: 5px; color: #458500; font-size: 9px; font-weight: 650; }
.hb-commerce-article > div > a svg { width: 13px; height: 13px; }

/* Shop refresh */
.hb-shop { background: #fff; }
.hb-shop-hero--luxe { position: relative; overflow: hidden; background: #f4f6f1; border-bottom: 1px solid #e3e7df; }
.hb-shop-hero--luxe .hb-shop-hero__inner { min-height: 205px; }
.hb-shop-hero--luxe .hb-shop-hero__word { display: none; }
.hb-shop-hero--luxe .hb-luxe-kicker { color: #458500; }
.hb-shop-hero--luxe .hb-shop-hero__copy h1 { margin: 7px 0 7px; color: #2b351f; font-size: clamp(38px,5vw,58px); font-weight: 650; }
.hb-shop-hero--luxe .hb-shop-hero__copy p, .hb-shop-hero--luxe .hb-shop-hero__description { color: #6d716a; }
.hb-shop-hero__index { display: none; }
.hb-shop-content--luxe { background: #fff; }
.hb-shop-toolbar { margin-bottom: 24px; border-bottom: 1px solid #e5e5e2; }
.hb-shop-toolbar select { min-height: 38px; padding: 0 11px; border: 1px solid #dededb; border-radius: 5px; background: #fff; }
.hb-pagination .page-numbers li a:hover, .hb-pagination .page-numbers li span.current { background: #458500; color: #fff; border-color: #458500; }

/* Single product — ecommerce, clear, trustworthy */
.hb-product-page { background: #fff; }
.hb-breadcrumbs { padding: 18px 0; color: #8a8a8a; font-size: 9px; border-bottom: 1px solid #efefec; }
.hb-product-hero { padding: 34px 0 66px; display: grid; grid-template-columns: minmax(0,1fr) minmax(390px,.83fr); gap: 55px; align-items: start; }
.hb-product-gallery__main { min-height: 540px; display: grid; place-items: center; background: #fafafa; border: 1px solid #ededeb; border-radius: 8px; overflow: hidden; }
.hb-product-gallery__main img { width: 100%; height: 540px; object-fit: contain; padding: 25px; }
.hb-product-gallery__thumbs { margin-top: 11px; display: grid; grid-template-columns: repeat(5,1fr); gap: 9px; }
.hb-gallery-thumb { aspect-ratio: 1; padding: 4px; border: 1px solid #e2e2df; border-radius: 5px; background: #fff; cursor: pointer; }
.hb-gallery-thumb.is-active { border: 2px solid #458500; }
.hb-gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }
.hb-product-hero__summary { padding-top: 2px; }
.hb-product-badge { display: inline-flex; padding: 5px 8px; background: #eef5e8; color: #458500; border-radius: 4px; font-size: 8px; font-weight: 650; }
.hb-product-subtitle { margin: 12px 0 2px; color: #6f8b5a; font-size: 10px; }
.hb-product-hero__summary h1 { margin: 5px 0 9px; color: #292929; font-family: var(--hb-body); font-size: clamp(28px,3vw,39px); line-height: 1.45; font-weight: 650; letter-spacing: -.025em; }
.hb-product-rating-row { min-height: 27px; padding-bottom: 12px; display: flex; align-items: center; gap: 9px; border-bottom: 1px solid #ecece8; font-size: 9px; }
.hb-product-rating-row .star-rating { color: #e6a31a; }
.hb-product-rating-row a { color: #4a7828; text-decoration: underline; }
.hb-product-rating-row__quiet { color: #8d8d8d; }
.hb-product-price { margin: 18px 0 9px; color: #356c00; font-size: 25px; font-weight: 750; }
.hb-product-price del { color: #999; font-size: .55em; font-weight: 400; }
.hb-product-price ins { text-decoration: none; }
.hb-product-intro { color: #666; font-size: 12px; line-height: 2; }
.hb-product-benefits { margin-top: 18px; }
.hb-check-list { margin: 0; padding: 0; list-style: none; }
.hb-check-list li { padding: 7px 0; display: flex; gap: 8px; color: #3f3f3f; font-size: 11px; border-bottom: 1px dashed #e6e6e2; }
.hb-check-list li span { color: #458500; font-weight: 700; }
.hb-product-trust-mini { margin: 22px 0; display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid #e3e6df; border-radius: 6px; overflow: hidden; }
.hb-product-trust-mini span { min-height: 57px; padding: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; border-inline-start: 1px solid #e3e6df; color: #5c5c5c; text-align: center; font-size: 8px; }
.hb-product-trust-mini span:last-child { border-inline-end: 1px solid #e3e6df; }
.hb-product-trust-mini svg { width: 20px; height: 20px; color: #458500; }
.hb-order-box { padding: 23px; background: #fbfcfa; border: 1px solid #cbd9bf; border-radius: 8px; box-shadow: none; }
.hb-order-box__head { margin-bottom: 18px; }
.hb-order-box__head > div > span { color: #458500; font-size: 8px; font-weight: 650; }
.hb-order-box__head h2 { margin-top: 2px; color: #303c26; font-size: 17px; }
.hb-order-box__secure { border-color: #c8d9bb; color: #458500; }
.hb-field > span, .hb-offers legend { color: #555; }
.hb-field input, .hb-field select { min-height: 44px; border: 1px solid #d7dbd2; border-radius: 5px; background: #fff; }
.hb-field input:focus, .hb-field select:focus { border-color: #458500; box-shadow: 0 0 0 2px rgba(69,133,0,.09); }
.hb-button--primary { background: #458500; border-color: #458500; border-radius: 5px; }
.hb-button--primary:hover { background: #376d00; border-color: #376d00; }
.hb-order-form__microcopy { color: #828282; }
.hb-product-details { padding: 70px 0; background: #f7f8f5; border-top: 1px solid #e8eae5; }
.hb-product-details__intro h2 { color: #2f3828; font-size: clamp(28px,3.5vw,42px); }
.hb-section-kicker { color: #458500; }
.hb-detail-block { background: #fff; border-color: #e0e3dc; border-radius: 7px; }
.hb-detail-block > span { color: #79a258; }
.hb-reviews-section { background: #fff; }
.hb-related-products { background: #fff; border-top: 1px solid #ededeb; }
.hb-mobile-buybar { border-top-color: #dfe4da; }

/* Footer aligned with ecommerce direction */
.hb-footer { background: #303a2a; padding-top: 62px; }
.hb-footer-logo { color: #fff; }
.hb-footer-logo__mark { color: #95c66d; }
.hb-footer h3 { color: #c7d8b9; }
.hb-footer__brand p, .hb-footer__links a, .hb-footer__socials a { color: rgba(255,255,255,.72); }
.hb-footer__note { color: rgba(255,255,255,.46); }

/* Responsive */
@media (max-width: 1100px) {
  .hb-commerce-head { grid-template-columns: 170px minmax(250px,1fr) auto; gap: 16px; }
  .hb-header-tools .hb-header-tool span:not(.hb-cart-icon) { display: none; }
  .hb-header-tool { min-width: 42px; padding: 8px; }
  .hb-commerce-category-grid { grid-template-columns: repeat(4,1fr); row-gap: 24px; }
  .hb-product-grid--commerce, .hb-shop-content .hb-product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .hb-commerce-hero__grid { grid-template-columns: 1.05fr .95fr; }
  .hb-commerce-trust__grid { grid-template-columns: repeat(2,1fr); }
  .hb-commerce-trust__grid article:nth-child(3), .hb-commerce-trust__grid article:nth-child(4) { border-top: 1px solid rgba(255,255,255,.22); }
  .hb-product-hero { grid-template-columns: 1fr 1fr; gap: 35px; }
}

@media (max-width: 820px) {
  body.admin-bar .hb-header { top: 46px; }
  .hb-announcement--commerce .hb-announcement__inner { justify-content: center; }
  .hb-announcement--commerce .hb-announcement__divider, .hb-announcement--commerce .hb-announcement__divider + span { display: none; }
  .hb-commerce-head { min-height: 68px; grid-template-columns: 38px 1fr auto; gap: 12px; }
  .hb-menu-toggle { display: flex; width: 34px; height: 34px; flex-direction: column; justify-content: center; gap: 4px; border: 0; background: transparent; padding: 6px; }
  .hb-menu-toggle > span:not(.screen-reader-text) { width: 21px; height: 1.5px; background: #353535; }
  .hb-commerce-brand .hb-logo--text { font-size: 29px; }
  .hb-header-search, .hb-commerce-nav-wrap { display: none; }
  .hb-header-tools .hb-header-tool:first-child { display: none; }
  .hb-header-tool--cart { display: flex; min-width: 34px; }
  .hb-mobile-panel { padding: 12px 0 22px; border-top: 1px solid #ececea; background: #fff; }
  .hb-mobile-search { height: 44px; display: grid; grid-template-columns: 1fr 44px; border: 1px solid #458500; border-radius: 5px; overflow: hidden; }
  .hb-mobile-search input { border: 0; padding: 0 12px; outline: 0; }
  .hb-mobile-search button { border: 0; background: #458500; color: #fff; }
  .hb-nav--mobile .hb-nav__list { display: grid; margin: 15px 0; padding: 0; list-style: none; }
  .hb-nav--mobile .hb-nav__list a { display: block; padding: 11px 0; border-bottom: 1px solid #eeeeeb; font-size: 12px; }
  .hb-mobile-actions { display: flex; gap: 10px; }
  .hb-mobile-actions a { flex: 1; min-height: 42px; display: flex; align-items: center; justify-content: center; gap: 7px; background: #f4f6f1; border-radius: 5px; font-size: 10px; }
  .hb-mobile-actions svg { width: 18px; height: 18px; color: #458500; }
  .hb-commerce-hero__grid { grid-template-columns: 1fr; }
  .hb-commerce-hero__content { order: 2; max-width: none; padding: 38px 0 44px; }
  [dir="rtl"] .hb-commerce-hero__content { padding: 38px 0 44px; }
  .hb-commerce-hero__visual { min-height: 340px; order: 1; }
  .hb-commerce-hero h1 { font-size: 40px; }
  .hb-commerce-servicebar__grid { grid-template-columns: repeat(2,1fr); }
  .hb-commerce-servicebar__grid > div:nth-child(3), .hb-commerce-servicebar__grid > div:nth-child(4) { border-top: 1px solid #ecece8; }
  .hb-commerce-category-grid { grid-template-columns: repeat(4,1fr); gap: 13px; }
  .hb-product-grid--commerce, .hb-shop-content .hb-product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
  .hb-commerce-promo__grid { grid-template-columns: 1fr; }
  .hb-commerce-promo__main, .hb-commerce-promo__side { min-height: 260px; }
  .hb-commerce-article-grid { grid-template-columns: 1fr; }
  .hb-product-hero { grid-template-columns: 1fr; gap: 24px; padding-top: 20px; }
  .hb-product-gallery__main { min-height: 400px; }
  .hb-product-gallery__main img { height: 400px; }
  .hb-product-details__grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .hb-container { width: min(calc(100% - 24px), var(--hb-container)); }
  .hb-commerce-hero__visual { min-height: 295px; }
  .hb-commerce-hero__content { padding-top: 31px; }
  .hb-commerce-hero h1 { font-size: 34px; }
  .hb-commerce-hero__content > p { font-size: 12px; }
  .hb-commerce-hero__proof { gap: 9px 14px; }
  .hb-commerce-servicebar__grid > div { min-height: 78px; padding: 12px 9px; gap: 8px; }
  .hb-commerce-servicebar svg { width: 23px; height: 23px; }
  .hb-commerce-servicebar strong { font-size: 9px; }
  .hb-commerce-servicebar small { font-size: 7px; }
  .hb-commerce-section { padding: 48px 0; }
  .hb-commerce-heading { align-items: center; }
  .hb-commerce-heading h2 { font-size: 26px; }
  .hb-commerce-heading > a { font-size: 8px; }
  .hb-commerce-category-grid { grid-template-columns: repeat(4,1fr); gap: 10px 8px; }
  .hb-commerce-category strong { font-size: 8px; }
  .hb-commerce-category small { display: none; }
  .hb-product-card--commerce .hb-product-card__body { padding: 11px 10px 12px; }
  .hb-product-card--commerce h3 { min-height: 44px; font-size: 10px; }
  .hb-product-card__rating .star-rating { font-size: 9px; }
  .hb-product-card--commerce .hb-product-card__price { font-size: 12px; }
  .hb-product-card__cta { min-height: 34px; font-size: 9px; }
  .hb-commerce-promo__main { padding: 34px 28px; }
  .hb-commerce-promo__main h2 { font-size: 31px; }
  .hb-commerce-trust__grid { grid-template-columns: 1fr 1fr; }
  .hb-commerce-trust__grid article { min-height: 180px; padding: 20px 15px; }
  .hb-commerce-trust__grid h3 { margin-top: 20px; font-size: 11px; }
  .hb-commerce-trust__grid p { font-size: 8px; }
  .hb-product-gallery__main { min-height: 330px; }
  .hb-product-gallery__main img { height: 330px; padding: 12px; }
  .hb-product-trust-mini span { font-size: 7px; }
  .hb-order-box { padding: 17px 14px; }
}

/* =========================================================
   HERBO 1.4 — ARABIC TWO-FONT TYPOGRAPHY
   Cairo = Arabic headings / product titles
   Tajawal = Arabic body / navigation / buttons / forms
   Latin + western digits = WordPress/system stack via font subset fallback
   ========================================================= */
body,
button,
input,
select,
textarea,
.hb-nav__list a,
.hb-header-action,
.hb-header-tool,
.hb-button,
.hb-text-link,
.hb-eyebrow,
.hb-section-kicker,
.hb-announcement,
.hb-product-card__eyebrow,
.hb-product-card__rating,
.hb-product-card__cta,
.hb-field,
.hb-order-form,
.hb-footer__links,
.hb-footer__socials {
  font-family: var(--hb-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.hb-logo,
.hb-footer-logo,
.hb-product-card h3,
.hb-product-hero h1,
.hb-commerce-hero h1,
.hb-commerce-heading h2,
.hb-order-box__head h2 {
  font-family: var(--hb-display);
}

/* Explicit future-language behavior: French and English stay fully system-native. */
html[lang^="fr"] body,
html[lang^="fr"] button,
html[lang^="fr"] input,
html[lang^="fr"] select,
html[lang^="fr"] textarea,
html[lang^="fr"] h1,
html[lang^="fr"] h2,
html[lang^="fr"] h3,
html[lang^="fr"] h4,
html[lang^="fr"] h5,
html[lang^="fr"] h6,
html[lang^="en"] body,
html[lang^="en"] button,
html[lang^="en"] input,
html[lang^="en"] select,
html[lang^="en"] textarea,
html[lang^="en"] h1,
html[lang^="en"] h2,
html[lang^="en"] h3,
html[lang^="en"] h4,
html[lang^="en"] h5,
html[lang^="en"] h6 {
  font-family: var(--hb-system);
}
