/* ============================================================
   HARMICHE THEME — MAIN STYLESHEET
   No @import — fonts loaded via wp_head
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --clr-bg:        #FAFAF8;
  --clr-text:      #1A1A1A;
  --clr-text-muted:#6B6B6B;
  --clr-yellow:    #F5D020;
  --clr-teal:      #00C4B4;
  --clr-dark:      #111111;
  --clr-dark-card: #1C1C1C;
  --clr-border:    #E5E5E0;
  --clr-white:     #FFFFFF;

  --ff-base:  'Inter', system-ui, sans-serif;

  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.375rem;
  --fs-2xl:  1.75rem;
  --fs-3xl:  2.25rem;
  --fs-4xl:  3rem;
  --fs-5xl:  4rem;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);

  --max-w: 1280px;
  --gutter: 24px;

  --transition: 0.22s ease;
  --transition-slow: 0.4s ease;

  --header-h: 64px;
  --announce-h: 40px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-base);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ---------- LAYOUT HELPERS ---------- */
.hm-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hm-section { padding: 80px 0; }
.hm-section--sm { padding: 48px 0; }
.hm-section--dark {
  background: var(--clr-dark);
  color: var(--clr-white);
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.hm-announce {
  background: var(--clr-yellow);
  color: var(--clr-dark);
  height: var(--announce-h);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hm-announce__track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  font-size: var(--fs-sm);
font-weight: var(--fw-regular);
  /* Animation starts ONLY after JS adds .is-ready (post-duplication) */
}
.hm-announce__track.is-ready {
  animation: hm-ticker 40s linear infinite;
  width: max-content;
}
@keyframes hm-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hm-announce__item { flex-shrink: 0; padding: 0 8px; }
@keyframes hm-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hm-announce:hover .hm-announce__track { animation-play-state: paused; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.hm-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  height: var(--header-h);
}
.hm-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.hm-header__left { display: flex; align-items: center; gap: 8px; }
.hm-header__wordmark {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.03em;
  text-align: center;
}
.hm-header__right {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
}
.hm-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  color: var(--clr-text);
  font-size: 20px;
}
.hm-icon-btn:hover { background: rgba(0,0,0,.05); }
.hm-icon-btn .ti { font-size: 20px; }

/* hamburger */
.hm-hamburger { display: flex; flex-direction: column; gap: 5px; padding: 10px; }
.hm-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--clr-text);
  transition: transform var(--transition), opacity var(--transition);
}
.hm-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hm-hamburger.is-open span:nth-child(2) { opacity: 0; }
.hm-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* cart badge */
.hm-cart-count {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--clr-yellow);
  color: var(--clr-dark);
  font-size: 10px;
  font-weight: var(--fw-bold);
  min-width: 16px; height: 16px;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}
.hm-cart-count.has-items { display: flex; }

/* ============================================================
   NAVIGATION OVERLAY (full-screen, slides from left)
   ============================================================ */
.hm-nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--clr-dark);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  padding: 32px var(--gutter);
  overflow-y: auto;
}
.hm-nav-overlay.is-open { transform: translateX(0); }
.hm-nav-overlay__close {
  align-self: flex-end;
  color: var(--clr-white);
  font-size: 28px;
  margin-bottom: 48px;
}
.hm-nav-overlay__list { flex: 1; }
.hm-nav-overlay__item { border-bottom: 1px solid rgba(255,255,255,.1); }
.hm-nav-overlay__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--clr-white);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  padding: 20px 0;
  transition: color var(--transition);
}
.hm-nav-overlay__link:hover { color: var(--clr-yellow); }

/* sub-menu */
.hm-nav-sub {
  display: none;
  padding: 8px 0 16px 16px;
}
.hm-nav-sub.is-open { display: block; }
.hm-nav-sub a {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: var(--fs-base);
  padding: 8px 0;
  transition: color var(--transition);
}
.hm-nav-sub a:hover { color: var(--clr-yellow); }
/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.hm-search-overlay {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--clr-bg);
  z-index: 1100;
  padding: 40px var(--gutter);
  box-shadow: var(--shadow-lg);
  transform: translateY(-100%);
  transition: transform var(--transition-slow);
}
.hm-search-overlay.is-open { transform: translateY(0); }
.hm-search-overlay form {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--clr-text);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}
.hm-search-overlay .search-field {
  flex: 1;
  border: none;
  background: transparent;
  font-size: var(--fs-2xl);
  font-weight: var(--fw-medium);
  padding: 12px 0;
  outline: none;
  color: var(--clr-text);
  min-width: 0;
}
.hm-search-overlay .search-field::placeholder { color: var(--clr-text-muted); }
.hm-search-overlay .search-submit {
  background: var(--clr-yellow);
  color: var(--clr-dark);
  border: none;
  padding: 12px 28px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.hm-search-overlay .search-submit:hover { background: #e8c31a; }
.hm-search-overlay__close {
  position: absolute;
  top: 20px;
  right: var(--gutter);
  color: var(--clr-text-muted);
  font-size: 22px;
}

/* ============================================================
   HERO
   ============================================================ */
.hm-hero { position: relative; overflow: hidden; }
.hm-hero__img {
  width: 100%;
  display: block;
  animation: hm-kenburns 8s ease-out forwards;
}
@keyframes hm-kenburns {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}
.hm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.4) 0%, transparent 60%);
  display: flex;
  align-items: center;
}
.hm-hero__content {
  color: var(--clr-white);
  max-width: 540px;
  padding: var(--gutter);
}
.hm-hero__eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: .85;
}
.hm-hero__title {
  font-size: clamp(2rem, 5vw, var(--fs-5xl));
  font-weight: var(--fw-semibold);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hm-hero__sub {
  font-size: var(--fs-lg);
  opacity: .85;
  margin-bottom: 32px;
}
.hm-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.hm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.hm-btn:active { transform: scale(0.98); }

.hm-btn--primary {
  background: var(--clr-yellow);
  color: var(--clr-dark);
}
.hm-btn--primary:hover { background: #e8c31a; }

.hm-btn--outline {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,.7);
}
.hm-btn--outline:hover { background: rgba(255,255,255,.1); }

.hm-btn--dark {
  background: var(--clr-dark);
  color: var(--clr-white);
}
.hm-btn--dark:hover { background: #2a2a2a; }

.hm-btn--sm { padding: 10px 20px; font-size: var(--fs-xs); }

/* ============================================================
   TICKER STRIP
   ============================================================ */
.hm-ticker-strip {
  background: var(--clr-dark);
  color: var(--clr-white);
  padding: 14px 0;
  overflow: hidden;
}
.hm-ticker-strip__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: hm-ticker 25s linear infinite;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
}
.hm-ticker-strip__dot {
  color: var(--clr-yellow);
  margin: 0 8px;
}

/* ============================================================
   INTRO TEXT BLOCK
   ============================================================ */
.hm-intro {
  text-align: center;
  padding: 100px var(--gutter);
}
.hm-intro__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 20px;
}
.hm-intro__heading {
  font-size: clamp(1.75rem, 4vw, var(--fs-4xl));
  font-weight: var(--fw-semibold);
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.15;
}
.hm-intro__body {
  font-size: var(--fs-lg);
  color: var(--clr-text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.hm-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
}
.hm-section-header h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
}
.hm-section-header a {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  border-bottom: 1px solid currentColor;
  transition: color var(--transition);
}
.hm-section-header a:hover { color: var(--clr-text); }

.hm-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* editorial dark card inside grid */
.hm-editorial-card {
  background: var(--clr-dark-card);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  grid-column: span 2;
}
.hm-editorial-card__eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-yellow);
  margin-bottom: 16px;
}
.hm-editorial-card__title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hm-editorial-card__link {
  color: var(--clr-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,.4);
  width: fit-content;
  transition: border-color var(--transition);
}
.hm-editorial-card__link:hover { border-color: var(--clr-white); }

/* ---- Product Card ---- */
.hm-product-card { display: flex; flex-direction: column; }
.hm-product-card__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  background: #F0EFE8;
}
.hm-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.hm-product-card__image-wrap:hover .hm-product-card__img { transform: scale(1.04); }
.hm-product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--clr-yellow);
  color: var(--clr-dark);
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}
.hm-product-card__info {
  padding: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hm-product-card__name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  line-height: 1.4;
  transition: color var(--transition);
}
.hm-product-card__name:hover { color: var(--clr-text-muted); }
.hm-product-card__price { font-size: var(--fs-sm); color: var(--clr-text-muted); }
.hm-product-card__price ins { text-decoration: none; font-weight: var(--fw-semibold); color: var(--clr-text); }
.hm-product-card__price del { opacity: .6; margin-right: 4px; }
.hm-product-card .hm-quick-add {
  margin-top: 8px;
  width: 100% !important;
  display: flex !important;
  justify-content: center;
  background: var(--clr-bg) !important;
  border: 1.5px solid var(--clr-border) !important;
  color: var(--clr-text) !important;
  border-radius: var(--radius-sm);
  padding: 10px 0 !important;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.hm-product-card:hover .hm-quick-add {
  opacity: 1;
  transform: translateY(0);
}
.hm-product-card .hm-quick-add:hover {
  background: var(--clr-dark) !important;
  border-color: var(--clr-dark) !important;
  color: var(--clr-white) !important;
}
@media (max-width: 768px) {
  .hm-product-card .hm-quick-add {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}
/* ============================================================
   STATEMENT BLOCK
   ============================================================ */
.hm-statement {
  background: var(--clr-dark);
  color: var(--clr-white);
  padding: 100px var(--gutter);
  text-align: center;
}
.hm-statement__heading {
  font-size: clamp(2rem, 6vw, 5.5rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hm-statement__sub {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,.6);
  max-width: 480px;
  margin: 0 auto 36px;
}

/* ============================================================
   HORIZONTAL SCROLL STRIP
   ============================================================ */
.hm-h-scroll-section { overflow: hidden; }
.hm-h-scroll-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.hm-h-scroll-track::-webkit-scrollbar { display: none; }
.hm-h-scroll-track .hm-product-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.hm-trust-strip {
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 24px 0;
}
.hm-trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.hm-trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}
.hm-trust-strip__item .ti {
  font-size: 22px;
  color: var(--clr-teal);
}

/* ============================================================
   SHOP ARCHIVE
   ============================================================ */
.hm-archive-header {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: 36px;
}
.hm-archive-header h1 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-semibold);
  margin-bottom: 8px;
}
.hm-archive-header p { color: var(--clr-text-muted); font-size: var(--fs-sm); }

.hm-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hm-filter-pill {
  padding: 8px 18px;
  border: 1.5px solid var(--clr-border);
  border-radius: 100px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  transition: all var(--transition);
  color: var(--clr-text);
  background: var(--clr-bg);
}
.hm-filter-pill:hover,
.hm-filter-pill.is-active {
  background: var(--clr-dark);
  color: var(--clr-white);
  border-color: var(--clr-dark);
}
.hm-sort-select {
  margin-left: auto;
  padding: 8px 14px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  background: var(--clr-bg);
  cursor: pointer;
}

.hm-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 48px 0;
}
.hm-pagination a,
.hm-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  transition: all var(--transition);
}
.hm-pagination a:hover,
.hm-pagination .current {
  background: var(--clr-dark);
  color: var(--clr-white);
  border-color: var(--clr-dark);
}

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
.hm-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 48px 0 80px;
  align-items: start;
}

/* Gallery */
.hm-gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.hm-gallery__main {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #F0EFE8;
  margin-bottom: 12px;
}
.hm-gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.hm-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.hm-gallery__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  background: #F0EFE8;
  transition: border-color var(--transition);
}
.hm-gallery__thumb.is-active { border-color: var(--clr-dark); }
.hm-gallery__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Product Summary */
.hm-product-summary {}
.hm-product-summary__collection {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 10px;
}
.hm-product-summary__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-semibold);
  margin-bottom: 12px;
}
.hm-product-summary__short-desc {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.hm-price-block {
  background: transparent;
  border-radius: 0;
  padding: 0 0 20px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--clr-border);
}
.hm-price-block .price {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
}
.hm-price-block .price del {
  font-size: var(--fs-lg);
  font-weight: var(--fw-regular);
  color: var(--clr-text-muted);
  text-decoration: line-through;
}
.hm-price-block .price ins {
  text-decoration: none;
  color: var(--clr-text);
}
.hm-urgency {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: #E05C3A;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.hm-urgency::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E05C3A;
  flex-shrink: 0;
}
.hm-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--clr-border);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}
.hm-specs-grid__cell {
  background: var(--clr-bg);
  padding: 16px 12px;
  text-align: center;
}
.hm-specs-grid__cell-label {
  font-size: 10px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 4px;
}
.hm-specs-grid__cell-value {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}
.hm-qty-atc {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.hm-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.hm-qty button {
  width: 40px; height: 48px;
  font-size: var(--fs-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.hm-qty button:hover { background: var(--clr-border); }
.hm-qty input[type="number"] {
  width: 48px; height: 48px;
  text-align: center;
  border: none;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  background: transparent;
  -moz-appearance: textfield;
}
.hm-qty input::-webkit-outer-spin-button,
.hm-qty input::-webkit-inner-spin-button { -webkit-appearance: none; }

.hm-atc-btn {
  flex: 1;
  height: 48px;
  background: var(--clr-yellow);
  color: var(--clr-dark);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.04em;
}
.hm-atc-btn:hover { background: #e8c31a; }
.hm-atc-btn:active { transform: scale(0.98); }
.hm-atc-btn.loading { opacity: .7; pointer-events: none; }

.hm-cod-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  padding: 12px 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: 16px;
}
.hm-cod-strip .ti { color: var(--clr-teal); font-size: 18px; }

.hm-delivery-info {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hm-delivery-info .ti { color: var(--clr-text-muted); }

/* Accordions */
.hm-accordion { border-top: 1px solid var(--clr-border); }
.hm-accordion__item { border-bottom: 1px solid var(--clr-border); }
.hm-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-align: left;
}
.hm-accordion__trigger .ti {
  font-size: 18px;
  transition: transform var(--transition);
}
.hm-accordion__item.is-open .hm-accordion__trigger .ti { transform: rotate(45deg); }
.hm-accordion__body {
  display: none;
  padding: 0 0 20px;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
}
.hm-accordion__item.is-open .hm-accordion__body { display: block; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.hm-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1300;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.hm-cart-overlay.is-open { opacity: 1; pointer-events: all; }

.hm-cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  background: var(--clr-bg);
  z-index: 1400;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.hm-cart-drawer.is-open { transform: translateX(0); }

.hm-cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--clr-border);
  flex-shrink: 0;
}
.hm-cart-drawer__head h2 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
}
.hm-cart-drawer__close { font-size: 22px; color: var(--clr-text-muted); }

.hm-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.hm-cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--clr-border);
}
.hm-cart-item:last-child { border-bottom: none; }
.hm-cart-item__img {
  width: 76px; height: 76px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: #F0EFE8;
  flex-shrink: 0;
}
.hm-cart-item__details { flex: 1; min-width: 0; }
.hm-cart-item__name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  line-height: 1.4;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hm-cart-item__price {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: 10px;
}
.hm-cart-item__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hm-cart-item__qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
}
.hm-cart-item__qty button {
  width: 28px; height: 28px;
  font-size: var(--fs-base);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.hm-cart-item__qty button:hover { background: var(--clr-border); }
.hm-cart-item__qty span {
  width: 28px;
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}
.hm-cart-item__remove {
  font-size: 13px;
  color: var(--clr-text-muted);
  text-decoration: underline;
  cursor: pointer;
  margin-left: 4px;
}

.hm-cart-drawer__foot {
  padding: 20px 24px;
  border-top: 1px solid var(--clr-border);
  flex-shrink: 0;
  background: var(--clr-bg);
}
.hm-coupon-row {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.hm-coupon-row input {
  flex: 1;
  height: 40px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  font-size: var(--fs-sm);
  background: var(--clr-bg);
}
.hm-coupon-row button {
  height: 40px;
  padding: 0 16px;
  background: var(--clr-dark);
  color: var(--clr-white);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  transition: background var(--transition);
}
.hm-coupon-row button:hover { background: #2a2a2a; }
.hm-coupon-msg { font-size: var(--fs-xs); margin-bottom: 12px; }
.hm-coupon-msg.is-success { color: var(--clr-teal); }
.hm-coupon-msg.is-error { color: #E05C3A; }

.hm-order-summary { margin-bottom: 16px; }
.hm-order-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-sm);
  padding: 6px 0;
  color: var(--clr-text-muted);
}
.hm-order-summary__row.is-total {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  border-top: 1px solid var(--clr-border);
  margin-top: 6px;
  padding-top: 12px;
}
.hm-order-summary__shipping { color: var(--clr-teal); }

.hm-cart-drawer .hm-btn--primary {
  width: 100%;
  justify-content: center;
  height: 50px;
  font-size: var(--fs-base);
  margin-bottom: 12px;
}
.hm-cart-continue {
  display: block;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  text-decoration: underline;
}

.hm-cart-empty {
  text-align: center;
  padding: 48px 0;
}
.hm-cart-empty .ti { font-size: 48px; color: var(--clr-border); margin-bottom: 16px; }
.hm-cart-empty p { font-size: var(--fs-sm); color: var(--clr-text-muted); margin-bottom: 20px; }

/* ============================================================
   MY ACCOUNT
   ============================================================ */
.hm-account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 48px 0 80px;
  align-items: start;
}
.hm-account-sidebar { position: sticky; top: calc(var(--header-h) + 24px); }
.hm-account-nav { border: 1px solid var(--clr-border); border-radius: var(--radius-md); overflow: hidden; }
.hm-account-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition);
}
.hm-account-nav a:last-child { border-bottom: none; }
.hm-account-nav a:hover { background: rgba(0,0,0,.03); }
.hm-account-nav a.is-active { background: var(--clr-yellow); color: var(--clr-dark); font-weight: var(--fw-semibold); }
.hm-account-nav .ti { font-size: 18px; }

.hm-account-content {}
.hm-account-title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  margin-bottom: 28px;
}

/* Order tracking bar */
.hm-order-track {
  display: flex;
  align-items: center;
  margin: 20px 0;
}
.hm-order-track__step {
  flex: 1;
  text-align: center;
  position: relative;
}
.hm-order-track__step::before {
  content: '';
  position: absolute;
  top: 12px;
  left: -50%;
  right: 50%;
  height: 2px;
  background: var(--clr-border);
}
.hm-order-track__step:first-child::before { display: none; }
.hm-order-track__step.is-done::before { background: var(--clr-teal); }
.hm-order-track__dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  position: relative;
  z-index: 1;
  font-size: 12px;
}
.hm-order-track__step.is-done .hm-order-track__dot {
  background: var(--clr-teal);
  color: var(--clr-white);
}
.hm-order-track__step.is-current .hm-order-track__dot {
  background: var(--clr-yellow);
  color: var(--clr-dark);
}
.hm-order-track__label { font-size: 11px; color: var(--clr-text-muted); font-weight: var(--fw-medium); }

/* ============================================================
   FOOTER
   ============================================================ */
.hm-footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,.8);
  padding: 64px 0 32px;
}
.hm-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.hm-footer__brand-name {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.hm-footer__brand-desc {
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,.6);
}
.hm-footer__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.hm-footer__contact a:hover { color: var(--clr-white); }
.hm-footer__contact .ti { font-size: 16px; }
.hm-footer__col-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.hm-footer__links { display: flex; flex-direction: column; gap: 10px; }
.hm-footer__links a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.hm-footer__links a:hover { color: var(--clr-white); }
.hm-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.hm-footer__copy { font-size: var(--fs-xs); color: rgba(255,255,255,.4); }

/* ============================================================
   404 PAGE
   ============================================================ */
.hm-404 {
  text-align: center;
  padding: 120px var(--gutter);
}
.hm-404__code {
  font-size: 8rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--clr-border);
  margin-bottom: 16px;
}
.hm-404 h1 { font-size: var(--fs-2xl); margin-bottom: 12px; }
.hm-404 p { color: var(--clr-text-muted); font-size: var(--fs-lg); margin-bottom: 32px; }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.hm-thankyou {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px var(--gutter);
}
.hm-thankyou__icon { font-size: 56px; color: var(--clr-teal); margin-bottom: 20px; }
.hm-thankyou__title { font-size: var(--fs-3xl); font-weight: var(--fw-semibold); margin-bottom: 12px; }
.hm-thankyou__sub { font-size: var(--fs-lg); color: var(--clr-text-muted); margin-bottom: 40px; }
.hm-thankyou__order-box {
  background: #F5F5F2;
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 28px;
}
.hm-thankyou__order-box table { width: 100%; }
.hm-thankyou__order-box th,
.hm-thankyou__order-box td {
  padding: 8px 0;
  font-size: var(--fs-sm);
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
}
.hm-thankyou__order-box th { color: var(--clr-text-muted); width: 40%; }
.hm-thankyou__order-box tr:last-child th,
.hm-thankyou__order-box tr:last-child td { border-bottom: none; }

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.hm-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 900;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hm-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-lg);
}
.hm-whatsapp svg { width: 28px; height: 28px; fill: #fff; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.hm-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.hm-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   WC OVERRIDES
   ============================================================ */
.woocommerce-notices-wrapper { margin-bottom: 20px; }
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  margin-bottom: 12px;
}
.woocommerce-message { background: #f0fdf4; border-left: 3px solid var(--clr-teal); }
.woocommerce-error  { background: #fef2f2; border-left: 3px solid #E05C3A; }
.woocommerce-info   { background: #f0f9ff; border-left: 3px solid var(--clr-teal); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hm-product-grid { grid-template-columns: repeat(3, 1fr); }
  .hm-editorial-card { grid-column: span 3; }
  .hm-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --gutter: 16px; }

  .hm-product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hm-editorial-card { grid-column: span 2; }

  .hm-product-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 0 60px;
  }
  .hm-gallery { position: static; }

  .hm-cart-drawer { width: 100%; }

  .hm-account-layout {
    grid-template-columns: 1fr;
  }
  .hm-account-sidebar { position: static; }

  .hm-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .hm-trust-strip__inner { gap: 24px; }

  .hm-specs-grid { grid-template-columns: repeat(2, 1fr); }
  .hm-specs-grid__cell:nth-child(n+3) { border-top: 1px solid var(--clr-border); }

  /* Mobile sticky ATC */
  .hm-mobile-atc {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 800;
    background: var(--clr-bg);
    border-top: 1px solid var(--clr-border);
    padding: 12px 16px;
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .hm-mobile-atc .hm-atc-btn { flex: 1; }
}

@media (max-width: 480px) {
  .hm-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hm-editorial-card { min-height: 260px; }
  .hm-footer__grid { grid-template-columns: 1fr; }
  .hm-trust-strip__inner { flex-direction: column; align-items: flex-start; padding: 0 var(--gutter); }

  .hm-hero__content { padding: 20px var(--gutter); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   GENERIC PAGE
   ============================================================ */
.hm-page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px var(--gutter);
}
.hm-page-content h1 { font-size: var(--fs-3xl); margin-bottom: 28px; }
.hm-page-content h2 { font-size: var(--fs-xl); margin: 36px 0 14px; }
.hm-page-content p { font-size: var(--fs-base); color: var(--clr-text-muted); line-height: 1.8; margin-bottom: 16px; }
.hm-page-content ul, .hm-page-content ol { padding-left: 20px; margin-bottom: 16px; }
.hm-page-content li { font-size: var(--fs-base); color: var(--clr-text-muted); line-height: 1.8; margin-bottom: 6px; }

/* ============================================================
   GOOGLE REVIEWS — HORIZONTAL SCROLL
   ============================================================ */
.hm-reviews-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
  cursor: grab;
}
.hm-reviews-track::-webkit-scrollbar { display: none; }
.hm-reviews-track:active { cursor: grabbing; }

.hm-review-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--clr-bg);
}
.hm-review-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hm-review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-yellow);
  color: var(--clr-dark);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hm-review-card__name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
}
.hm-review-card__stars {
  color: #F5A623;
  font-size: 12px;
  letter-spacing: 1px;
}
.hm-review-card__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
  flex: 1;
}

@media (max-width: 768px) {
  .hm-review-card { flex: 0 0 280px; }
}
/* ============================================================
   PDP TRUST BOXES
   ============================================================ */
.hm-pdp-trust-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.hm-pdp-trust-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 16px 8px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
}
.hm-pdp-trust-box .ti {
  font-size: 24px;
  color: var(--clr-teal);
}
.hm-pdp-trust-box__title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  line-height: 1.3;
}
.hm-pdp-trust-box__sub {
  font-size: 11px;
  color: var(--clr-text-muted);
  line-height: 1.3;
}
@media (max-width: 480px) {
  .hm-pdp-trust-boxes { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PDP COUPON CARDS
   ============================================================ */
.hm-coupon-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.hm-coupon-card {
  border: 1.5px dashed var(--clr-yellow);
  border-radius: var(--radius-md);
  padding: 12px 10px;
  background: rgba(245,208,32,.07);
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
  text-align: center;
}
.hm-coupon-card:hover {
  background: rgba(245,208,32,.18);
}
.hm-coupon-card:active {
  transform: scale(0.97);
}
.hm-coupon-card__code {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  color: var(--clr-dark);
  margin-bottom: 5px;
  font-family: monospace;
  background: var(--clr-yellow);
  display: inline-block;
  padding: 3px 8px;
  border-radius: 3px;
}
.hm-coupon-card__desc {
  font-size: 10px;
  color: var(--clr-text-muted);
  line-height: 1.4;
  margin-top: 6px;
}
.hm-coupon-card__copied {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,196,180,.1);
  border-radius: var(--radius-md);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--clr-teal);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.hm-coupon-card.is-copied .hm-coupon-card__copied { opacity: 1; }

@media (max-width: 640px) {
  .hm-coupon-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}