/*
Theme Name: Happy Hippie Herbs
Theme URI: https://www.happyhippieherbs.com
Author: Built for Happy Hippie Herbs / Melting Muscles Mobile Massage
Author URI: https://www.happyhippieherbs.com
Description: A calm, earthy, photo-forward theme for Happy Hippie Herbs &amp; Melting Muscles Mobile Massage. Holistic in-home massage and natural body-care, with a built-in web store powered by WooCommerce. Migrated from Wix and rebuilt as a self-hosted WordPress theme.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: happy-hippie-herbs
Tags: spa, wellness, massage, ecommerce, woocommerce, custom-logo, custom-menu, featured-images, two-columns, right-sidebar
WC requires at least: 6.0
WC tested up to: 8.6
*/

/* =========================================================
   Happy Hippie Herbs — Design System
   Palette derived from the site's own imagery:
   forest & sage greens, warm clay/tan, cream sand.
   ========================================================= */

:root {
  /* Color */
  --forest:      #3a4733;   /* deep herb green — primary ink for headers */
  --forest-deep: #2c3727;
  --sage:        #788a63;   /* living sage accent */
  --sage-soft:   #9aa886;
  --clay:        #b08968;   /* warm clay / skin-tone accent */
  --clay-deep:   #8f6a4d;
  --sand:        #f3ece0;   /* page background */
  --cream:       #faf6ef;   /* cards / raised surfaces */
  --ink:         #2c2922;   /* body text */
  --ink-soft:    #5c574c;   /* secondary text */
  --line:        #e3d9c8;   /* hairlines on sand */
  --line-cream:  #ece2d2;   /* hairlines on cream */
  --white:       #ffffff;

  /* Type */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Rhythm */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px -28px rgba(44, 41, 34, 0.45);
  --shadow-sm: 0 8px 24px -16px rgba(44, 41, 34, 0.5);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--clay-deep); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--forest); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--forest);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1.1em; }

/* ---------- Layout helpers ---------- */
.hhh-wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.hhh-narrow { max-width: var(--wrap-narrow); margin-inline: auto; }
.hhh-section { padding-block: clamp(56px, 8vw, 110px); }
.hhh-section--sand { background: var(--sand); }
.hhh-section--cream { background: var(--cream); }
.hhh-section--forest { background: var(--forest); color: var(--cream); }
.hhh-section--forest h1,
.hhh-section--forest h2,
.hhh-section--forest h3 { color: var(--cream); }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0; word-wrap: normal !important;
}

/* Eyebrow label */
.hhh-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 0.9rem;
}
.hhh-section--forest .hhh-eyebrow { color: var(--sage-soft); }

.hhh-section-head { max-width: 660px; margin-bottom: clamp(32px, 4vw, 56px); }
.hhh-section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.hhh-section-head.is-centered { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.hhh-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95em 1.9em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.hhh-btn:hover { transform: translateY(-2px); }
.hhh-btn--primary { background: var(--forest); color: var(--cream); box-shadow: var(--shadow-sm); }
.hhh-btn--primary:hover { background: var(--forest-deep); color: var(--white); }
.hhh-btn--clay { background: var(--clay); color: var(--white); box-shadow: var(--shadow-sm); }
.hhh-btn--clay:hover { background: var(--clay-deep); color: var(--white); }
.hhh-btn--ghost { background: transparent; border-color: currentColor; color: var(--cream); }
.hhh-btn--ghost:hover { background: var(--cream); color: var(--forest); border-color: var(--cream); }
.hhh-btn--outline { background: transparent; border-color: var(--forest); color: var(--forest); }
.hhh-btn--outline:hover { background: var(--forest); color: var(--cream); }

/* =========================================================
   Header / Navigation
   ========================================================= */
.hhh-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--sand) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.hhh-header.is-scrolled { background: var(--sand); box-shadow: var(--shadow-sm); }

.hhh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.hhh-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.hhh-brand__mark {
  width: 38px; height: 38px; flex: 0 0 38px;
  color: var(--sage);
}
.hhh-brand__text { display: flex; flex-direction: column; line-height: 1; }
.hhh-brand__name {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.hhh-brand__sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-top: 4px;
}
.hhh-brand img.custom-logo { width: auto; max-height: 56px; }

/* Primary menu */
.hhh-nav { display: flex; align-items: center; gap: 28px; }
.hhh-menu { list-style: none; display: flex; align-items: center; gap: 26px; margin: 0; padding: 0; }
.hhh-menu li { position: relative; }
.hhh-menu a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  padding: 6px 2px;
}
.hhh-menu a:hover,
.hhh-menu .current-menu-item > a { color: var(--clay-deep); }
.hhh-menu a::after {
  content: ""; display: block; height: 2px; width: 0;
  background: var(--clay); transition: width 0.25s var(--ease); margin-top: 3px;
}
.hhh-menu a:hover::after,
.hhh-menu .current-menu-item > a::after { width: 100%; }

/* Sub-menus */
.hhh-menu .sub-menu {
  position: absolute; top: 100%; left: 0;
  list-style: none; margin: 8px 0 0; padding: 8px;
  background: var(--cream);
  border: 1px solid var(--line-cream);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  min-width: 200px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all 0.2s var(--ease);
}
.hhh-menu li:hover > .sub-menu,
.hhh-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.hhh-menu .sub-menu a { display: block; padding: 8px 12px; border-radius: 6px; }
.hhh-menu .sub-menu a:hover { background: var(--sand); }
.hhh-menu .sub-menu a::after { display: none; }

/* Header actions (cart) */
.hhh-header__actions { display: flex; align-items: center; gap: 18px; }
.hhh-cart {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--forest); font-weight: 800; font-size: 0.8rem;
}
.hhh-cart__count {
  background: var(--clay); color: var(--white);
  font-size: 0.68rem; min-width: 20px; height: 20px;
  border-radius: 999px; display: inline-grid; place-items: center; padding: 0 6px;
}

/* Hamburger */
.hhh-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--cream); cursor: pointer;
  align-items: center; justify-content: center;
}
.hhh-toggle span,
.hhh-toggle span::before,
.hhh-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px;
  background: var(--forest); border-radius: 2px; position: relative;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.hhh-toggle span::before { position: absolute; top: -6px; }
.hhh-toggle span::after { position: absolute; top: 6px; }
.hhh-toggle[aria-expanded="true"] span { background: transparent; }
.hhh-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.hhh-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hhh-hero { position: relative; isolation: isolate; overflow: hidden; }
.hhh-hero__media { position: absolute; inset: 0; z-index: -2; }
.hhh-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hhh-hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(44,55,39,0.82) 0%, rgba(44,55,39,0.55) 45%, rgba(44,55,39,0.18) 100%);
}
.hhh-hero__inner {
  position: relative;
  min-height: clamp(560px, 78vh, 760px);
  display: flex; flex-direction: column; justify-content: center;
  padding-block: 80px;
  max-width: 640px;
  color: var(--cream);
}
.hhh-hero__inner .hhh-eyebrow { color: #c5d0b4; text-shadow: 0 1px 8px rgba(20,28,16,0.45); }
.hhh-hero__inner h1, .hhh-hero__inner .hhh-hero__lead { text-shadow: 0 1px 14px rgba(20,28,16,0.35); }
.hhh-hero h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 500;
  margin-bottom: 0.4em;
}
.hhh-hero__lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(250, 246, 239, 0.92);
  max-width: 30ch;
  margin-bottom: 2em;
}
.hhh-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* floating leaf accent */
.hhh-hero__leaf { position: absolute; opacity: 0.5; color: var(--sage-soft); z-index: -1; }

/* =========================================================
   Intro / value strip
   ========================================================= */
.hhh-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.hhh-pillar {
  background: var(--cream);
  border: 1px solid var(--line-cream);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.hhh-pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.hhh-pillar__icon {
  width: 46px; height: 46px; color: var(--sage); margin-bottom: 18px;
}
.hhh-pillar h3 { font-size: 1.3rem; }
.hhh-pillar p { color: var(--ink-soft); margin-bottom: 0; font-size: 0.98rem; }

/* =========================================================
   Split feature (about teaser / image+text)
   ========================================================= */
.hhh-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hhh-split--flip .hhh-split__media { order: 2; }
.hhh-split__media { position: relative; }
.hhh-split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; aspect-ratio: 4/5; }
.hhh-split__media::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; z-index: -1;
  border: 1.5px solid var(--sage); border-radius: var(--radius);
}
.hhh-split__body h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
.hhh-split__body p { color: var(--ink-soft); }
.hhh-split__sig {
  margin-top: 1.4em; padding-top: 1.2em; border-top: 1px solid var(--line);
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--forest);
}
.hhh-split__sig small { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay-deep); margin-top: 4px; }

/* =========================================================
   Treatments grid
   ========================================================= */
.hhh-treatments { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.hhh-treatment {
  background: var(--cream);
  border: 1px solid var(--line-cream);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.hhh-treatment:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sage-soft); }
.hhh-treatment__num {
  font-family: var(--font-display); font-size: 0.95rem; color: var(--clay);
  letter-spacing: 0.1em;
}
.hhh-treatment h3 { font-size: 1.5rem; margin: 0; }
.hhh-treatment p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

/* =========================================================
   Product / shop preview cards
   ========================================================= */
.hhh-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.hhh-product {
  background: var(--cream); border: 1px solid var(--line-cream);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.hhh-product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.hhh-product__media { aspect-ratio: 1; overflow: hidden; background: var(--sand); }
.hhh-product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.hhh-product:hover .hhh-product__media img { transform: scale(1.05); }
.hhh-product__body { padding: 20px 20px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.hhh-product__body h3 { font-size: 1.15rem; margin: 0; }
.hhh-product__price { color: var(--clay-deep); font-weight: 800; font-size: 0.95rem; }
.hhh-product__body p { color: var(--ink-soft); font-size: 0.9rem; margin: 0 0 14px; }
.hhh-product__body .hhh-btn { margin-top: auto; align-self: flex-start; }

/* =========================================================
   Referral / CTA banner
   ========================================================= */
.hhh-cta-band { text-align: center; }
.hhh-cta-band h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--cream); }
.hhh-cta-band p { color: rgba(250,246,239,0.85); max-width: 50ch; margin-inline: auto; }
.hhh-cta-band .hhh-btn { margin-top: 1.4em; }

/* =========================================================
   Contact / hours
   ========================================================= */
.hhh-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); }
.hhh-hours { background: var(--cream); border: 1px solid var(--line-cream); border-radius: var(--radius); padding: 34px; }
.hhh-hours dl { margin: 0; display: grid; grid-template-columns: 1fr auto; gap: 10px 16px; }
.hhh-hours dt { font-weight: 700; color: var(--forest); }
.hhh-hours dd { margin: 0; color: var(--ink-soft); text-align: right; }
.hhh-hours .is-closed { color: var(--clay-deep); font-weight: 800; grid-column: 1 / -1; padding-top: 12px; border-top: 1px solid var(--line-cream); margin-top: 6px; }
.hhh-contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.hhh-contact-detail svg { width: 22px; height: 22px; color: var(--sage); flex: 0 0 22px; margin-top: 3px; }
.hhh-contact-detail strong { display: block; color: var(--forest); }

/* Forms (contact + WP) */
.hhh-form { display: grid; gap: 16px; }
.hhh-form label { font-weight: 700; font-size: 0.85rem; color: var(--forest); display: block; margin-bottom: 6px; }
input[type="text"], input[type="email"], input[type="url"], input[type="password"],
input[type="search"], input[type="number"], input[type="tel"], input[type="date"],
textarea, select {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  padding: 13px 16px; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(120, 138, 99, 0.18);
}
textarea { min-height: 150px; resize: vertical; }

/* =========================================================
   Page header (interior pages)
   ========================================================= */
.hhh-pagehead {
  background: var(--forest);
  color: var(--cream);
  padding-block: clamp(60px, 9vw, 110px);
  position: relative; overflow: hidden;
}
.hhh-pagehead h1 { color: var(--cream); font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 0; }
.hhh-pagehead .hhh-eyebrow { color: var(--sage-soft); }
.hhh-pagehead p { color: rgba(250,246,239,0.85); max-width: 56ch; margin: 0.6em 0 0; }
.hhh-pagehead__leaf { position: absolute; right: -40px; bottom: -60px; width: 280px; color: rgba(154,168,134,0.18); }

/* =========================================================
   Article / generic content
   ========================================================= */
.hhh-article { padding-block: clamp(48px, 7vw, 90px); }
.hhh-article .entry-content { font-size: 1.08rem; }
.hhh-article .entry-content h2 { font-size: 1.9rem; margin-top: 1.6em; }
.hhh-article .entry-content h3 { font-size: 1.4rem; margin-top: 1.4em; }
.hhh-article .entry-content img { border-radius: var(--radius); margin-block: 1.4em; }
.hhh-article .entry-content blockquote {
  border-left: 3px solid var(--sage); padding-left: 22px; margin-inline: 0;
  font-family: var(--font-display); font-style: italic; color: var(--forest); font-size: 1.25rem;
}
.hhh-article .entry-content ul, .hhh-article .entry-content ol { padding-left: 1.3em; }
.hhh-article .entry-content li { margin-bottom: 0.5em; }

/* Post cards (blog/archive) */
.hhh-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.hhh-card {
  background: var(--cream); border: 1px solid var(--line-cream);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.hhh-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.hhh-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--sand); }
.hhh-card__media img { width: 100%; height: 100%; object-fit: cover; }
.hhh-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.hhh-card__meta { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay-deep); font-weight: 800; }
.hhh-card__body h3 { font-size: 1.3rem; margin: 0; }
.hhh-card__body p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
.hhh-card__body .more-link { margin-top: auto; font-weight: 800; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest); }

/* Pagination */
.hhh-pagination { margin-top: 48px; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.hhh-pagination .page-numbers {
  display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--cream);
  font-weight: 800; font-size: 0.9rem; color: var(--forest);
}
.hhh-pagination .page-numbers.current,
.hhh-pagination .page-numbers:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }

/* =========================================================
   WooCommerce
   ========================================================= */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  border-top: 3px solid var(--sage);
  background: var(--cream); border-radius: var(--radius-sm); padding: 16px 20px; list-style: none;
}
.woocommerce-error { border-top-color: var(--clay); }
.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 26px; margin: 0; padding: 0; }
.woocommerce ul.products li.product { width: auto !important; float: none !important; margin: 0 !important; background: var(--cream); border: 1px solid var(--line-cream); border-radius: var(--radius); overflow: hidden; padding: 0 0 22px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.woocommerce ul.products li.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.woocommerce ul.products li.product a img { margin: 0 0 14px; border-radius: 0; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-display); font-size: 1.2rem; color: var(--forest); padding: 0 20px; }
.woocommerce ul.products li.product .price { color: var(--clay-deep); font-weight: 800; padding: 0 20px; display: block; }
.woocommerce ul.products li.product .price del { color: var(--ink-soft); font-weight: 400; }
.woocommerce ul.products li.product .button,
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit, .woocommerce a.button.alt, .woocommerce button.button.alt {
  background: var(--forest); color: var(--cream);
  font-family: var(--font-body); font-weight: 800; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px; padding: 0.8em 1.6em; margin: 12px 20px 0; transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce a.button.alt:hover {
  background: var(--clay); color: var(--white); transform: translateY(-2px);
}
.woocommerce span.onsale {
  background: var(--clay); color: var(--white); border-radius: 999px; min-height: auto; min-width: auto;
  padding: 6px 14px; font-weight: 800; font-size: 0.72rem; top: 12px; left: 12px; margin: 0;
}
.woocommerce div.product .product_title { font-size: clamp(2rem, 4vw, 2.8rem); }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--clay-deep); font-size: 1.5rem; font-weight: 800; }
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering { color: var(--ink-soft); }
.woocommerce nav.woocommerce-pagination ul { border: 0; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  border: 1px solid var(--line); border-radius: 999px; margin: 0 4px; min-width: 44px; height: 44px;
  display: grid; place-items: center; background: var(--cream); color: var(--forest); font-weight: 800;
}
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--forest); color: var(--cream); }

/* =========================================================
   Footer
   ========================================================= */
.hhh-footer { background: var(--forest-deep); color: rgba(250,246,239,0.78); padding-block: clamp(48px, 7vw, 80px) 0; }
.hhh-footer a { color: rgba(250,246,239,0.78); }
.hhh-footer a:hover { color: var(--cream); }
.hhh-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.hhh-footer h4 { color: var(--cream); font-size: 1rem; letter-spacing: 0.04em; margin-bottom: 1em; }
.hhh-footer__brand .hhh-brand__name { color: var(--cream); }
.hhh-footer__brand p { max-width: 36ch; font-size: 0.95rem; }
.hhh-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.hhh-footer ul a { font-size: 0.95rem; }
.hhh-footer__social { display: flex; gap: 12px; margin-top: 14px; }
.hhh-footer__social a {
  width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(250,246,239,0.25);
  display: grid; place-items: center; transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.hhh-footer__social a:hover { background: var(--sage); border-color: var(--sage); }
.hhh-footer__social svg { width: 18px; height: 18px; }
.hhh-footer__bar { border-top: 1px solid rgba(250,246,239,0.14); padding-block: 24px; font-size: 0.82rem; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
.hhh-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.hhh-reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hhh-products, .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .hhh-pillars { grid-template-columns: 1fr; }
  .hhh-posts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hhh-nav {
    position: fixed; inset: 78px 0 auto 0;
    background: var(--sand); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px 24px 28px; box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform 0.35s var(--ease); visibility: hidden;
  }
  .hhh-nav.is-open { transform: translateY(0); visibility: visible; }
  .hhh-menu { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .hhh-menu li { border-bottom: 1px solid var(--line); }
  .hhh-menu a { display: block; padding: 16px 4px; font-size: 0.95rem; }
  .hhh-menu a::after { display: none; }
  .hhh-menu .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; background: transparent; padding: 0 0 8px 16px; margin: 0; }
  .hhh-toggle { display: inline-flex; }
  .hhh-split { grid-template-columns: 1fr; }
  .hhh-split--flip .hhh-split__media { order: 0; }
  .hhh-split__media::before { display: none; }
  .hhh-treatments, .hhh-contact-grid { grid-template-columns: 1fr; }
  .hhh-footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 540px) {
  .hhh-products, .woocommerce ul.products, .hhh-posts { grid-template-columns: 1fr !important; }
  .hhh-hero__cta { flex-direction: column; align-items: flex-start; }
  .hhh-hero__cta .hhh-btn { width: 100%; justify-content: center; }
}
