/* ==========================================================================
   House of Hamman — theme styles
   Palette + fonts injected as CSS variables via functions.php (hoh_css_variables)
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body.hoh-body {
  margin: 0;
  font-family: var(--hoh-font-body);
  color: var(--hoh-charcoal);
  background: var(--hoh-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--hoh-font-head); font-weight: 600; line-height: 1.15; margin: 0; letter-spacing: -0.01em; }
/* Rimowa: no italics — accent words use a lighter grey weight instead */
.hoh-body h1 em, .hoh-body h2 em, .hoh-body h3 em { font-style: normal; font-weight: 400; color: var(--hoh-gold); }

.hoh-container { max-width: 1280px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
@media (max-width: 640px) { .hoh-container { padding-left: 18px; padding-right: 18px; } }

.hoh-kicker { font-size: 11px; letter-spacing: .4em; text-transform: uppercase; color: var(--hoh-wine); }

/* Buttons -------------------------------------------------------------- */
.hoh-btn,
.hoh-wc .button,
.hoh-wc button.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce .button,
.woocommerce #respond input#submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--hoh-charcoal); color: var(--hoh-cream) !important;
  font-family: var(--hoh-font-body); font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  padding: 14px 28px; border: 0; border-radius: 0; cursor: pointer;
  transition: background .25s ease, color .25s ease; text-decoration: none; line-height: 1;
}
.hoh-btn:hover,
.hoh-wc .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce .button:hover,
.woocommerce #respond input#submit:hover { background: var(--hoh-wine); color: var(--hoh-cream) !important; }

.hoh-btn--ghost { background: transparent; color: var(--hoh-charcoal) !important; border: 1px solid rgba(26,26,26,.3); }
.hoh-btn--ghost:hover { background: var(--hoh-charcoal); color: var(--hoh-cream) !important; }
.hoh-btn--cream { background: var(--hoh-cream); color: var(--hoh-charcoal) !important; }
.hoh-btn--cream:hover { background: var(--hoh-gold); }

/* Announcement bar — static, centered (Rimowa-style) ------------------- */
.hoh-announce { background: var(--hoh-charcoal); color: var(--hoh-cream); font-size: 11px; letter-spacing: .16em; padding: 11px 16px; }
.hoh-announce-static { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hoh-announce-static span { white-space: nowrap; }
.hoh-announce-static span + span::before { content: "·"; margin-right: 14px; opacity: .5; }
@media (max-width: 640px) {
  .hoh-announce-static span:not(:first-child) { display: none; }  /* show one message on mobile */
}

/* Header — 3 column (links left · logo center · icons right) ------------ */
.hoh-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--hoh-cream) 88%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(26,26,26,.08); }
.hoh-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 80px; }
.hoh-header-left { flex: 1; display: flex; align-items: center; justify-content: flex-start; min-width: 0; }
.hoh-header-actions { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 4px; min-width: 0; }
.hoh-logo { flex-shrink: 0; font-family: var(--hoh-font-head); font-weight: 600; font-size: 24px; letter-spacing: .28em; text-transform: uppercase; text-align: center; white-space: nowrap; }
.hoh-nav-desktop { display: flex; }
.hoh-menu { display: flex; gap: 34px; list-style: none; margin: 0; padding: 0; }
.hoh-menu a { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; transition: color .2s; }
.hoh-menu a:hover { color: var(--hoh-wine); }
.hoh-icon-link { position: relative; color: var(--hoh-charcoal); display: inline-flex; padding: 8px; }
.hoh-icon-link:hover { color: var(--hoh-wine); }
.hoh-cart-count { position: absolute; top: 0; right: 0; background: var(--hoh-wine); color: var(--hoh-cream); font-size: 10px; min-width: 17px; height: 17px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; padding: 0 4px; }
.hoh-cart-count[hidden] { display: none; }

/* ==========================================================================
   Mini-cart drawer (slide-in from right)
   ========================================================================== */
.hoh-drawer { position: fixed; inset: 0; z-index: 60; visibility: hidden; pointer-events: none; }
.hoh-drawer.is-open { visibility: visible; pointer-events: auto; }
.hoh-drawer-backdrop { position: absolute; inset: 0; background: rgba(26,26,26,.55); opacity: 0; transition: opacity .25s ease; }
.hoh-drawer.is-open .hoh-drawer-backdrop { opacity: 1; }
.hoh-drawer-panel { position: absolute; top: 0; right: 0; height: 100%; width: 100%; max-width: 420px; background: var(--hoh-cream); box-shadow: -10px 0 40px rgba(0,0,0,.18); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1); }
.hoh-drawer.is-open .hoh-drawer-panel { transform: translateX(0); }
.hoh-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid rgba(26,26,26,.1); }
.hoh-drawer-head h2 { font-family: var(--hoh-font-head); font-size: 20px; }
.hoh-drawer-close { background: none; border: 0; cursor: pointer; color: var(--hoh-charcoal); padding: 4px; display: inline-flex; }
.hoh-drawer-close:hover { color: var(--hoh-wine); }
.hoh-drawer-body { flex: 1; overflow-y: auto; padding: 20px 24px; }

/* Style the WooCommerce mini-cart inside the drawer */
.hoh-drawer-body .woocommerce-mini-cart { list-style: none; margin: 0; padding: 0; }
.hoh-drawer-body .woocommerce-mini-cart .woocommerce-mini-cart-item {
  position: relative; padding: 18px 30px 18px 80px !important; min-height: 92px;
  border-bottom: 1px solid rgba(26,26,26,.08); margin: 0;
}
.hoh-drawer-body .woocommerce-mini-cart-item img {
  position: absolute !important; left: 0; top: 18px; width: 64px !important; height: 80px !important;
  object-fit: cover; margin: 0 !important; float: none !important; box-shadow: none !important;
}
.hoh-drawer-body .woocommerce-mini-cart-item a:not(.remove) {
  display: block; font-family: var(--hoh-font-head); font-size: 14px; line-height: 1.35;
  color: var(--hoh-charcoal); text-decoration: none;
}
.hoh-drawer-body .woocommerce-mini-cart-item a:not(.remove):hover { color: var(--hoh-wine); }
.hoh-drawer-body .woocommerce-mini-cart-item .quantity {
  display: block; margin-top: 8px; font-size: 13px; color: rgba(26,26,26,.6); letter-spacing: .02em;
}
.hoh-drawer-body .woocommerce-mini-cart-item .quantity .woocommerce-Price-amount { color: var(--hoh-charcoal); font-weight: 500; }
.hoh-drawer-body .woocommerce-mini-cart-item .remove_from_cart_button {
  position: absolute; top: 18px; right: 0; width: 24px; height: 24px; line-height: 22px; text-align: center;
  border: 1px solid rgba(26,26,26,.2); border-radius: 999px; color: var(--hoh-charcoal) !important;
  text-decoration: none; font-size: 15px; transition: all .2s;
}
.hoh-drawer-body .woocommerce-mini-cart-item .remove_from_cart_button:hover { background: var(--hoh-charcoal); color: #fff !important; border-color: var(--hoh-charcoal); }
.hoh-drawer-body .woocommerce-mini-cart__total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 22px 0 0; margin-top: 4px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
}
.hoh-drawer-body .woocommerce-mini-cart__total strong { font-weight: 500; }
.hoh-drawer-body .woocommerce-mini-cart__total .woocommerce-Price-amount { font-family: var(--hoh-font-head); font-size: 22px; letter-spacing: 0; text-transform: none; color: var(--hoh-charcoal); }
.hoh-drawer-body .woocommerce-mini-cart__buttons { display: flex; flex-direction: column; gap: 10px; margin: 22px 0 0; padding: 0; }
/* Self-contained button styling — drawer is outside the .woocommerce wrapper,
   so it does NOT inherit the base WC button padding/colours. */
.hoh-drawer-body .woocommerce-mini-cart__buttons .button {
  display: block; width: 100%; text-align: center; box-sizing: border-box;
  padding: 15px 24px; font-family: var(--hoh-font-body); font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; line-height: 1; border-radius: 0; text-decoration: none;
  transition: background .25s, color .25s, border-color .25s; margin: 0;
}
/* View cart → outline */
.hoh-drawer-body .woocommerce-mini-cart__buttons .button:not(.checkout) {
  background: transparent; color: var(--hoh-charcoal); border: 1px solid rgba(26,26,26,.3);
}
.hoh-drawer-body .woocommerce-mini-cart__buttons .button:not(.checkout):hover {
  background: var(--hoh-charcoal); color: #fff; border-color: var(--hoh-charcoal);
}
/* Checkout → solid black, WHITE text (was invisible: black-on-black) */
.hoh-drawer-body .woocommerce-mini-cart__buttons .checkout {
  background: var(--hoh-charcoal); color: #fff; border: 1px solid var(--hoh-charcoal);
}
.hoh-drawer-body .woocommerce-mini-cart__buttons .checkout:hover { background: #000; color: #fff; }
.hoh-drawer-body .woocommerce-mini-cart__empty-message { text-align: center; color: rgba(26,26,26,.55); padding: 56px 0; font-family: var(--hoh-font-head); font-size: 17px; }
@media (max-width: 480px) { .hoh-drawer-panel { max-width: 100%; } }
.hoh-burger { display: none; flex-direction: column; gap: 4px; background: none; border: 0; cursor: pointer; padding: 6px; margin-left: -6px; }
.hoh-burger span { width: 22px; height: 2px; background: var(--hoh-charcoal); display: block; }
.hoh-nav-mobile { display: none; }
.hoh-mobile-acct { display: block; padding: 8px 0; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; }

/* RIMOWA-style transparent overlay header on the front page hero.
   White text over the hero; turns solid on scroll. */
body.hoh-front .hoh-announce { position: absolute; top: 0; left: 0; right: 0; z-index: 51; background: var(--hoh-charcoal); color: #fff; }
body.hoh-front .hoh-header {
  position: absolute; top: 38px; left: 0; right: 0; z-index: 50;
  background: transparent; backdrop-filter: none; border-bottom: 1px solid rgba(255,255,255,.18);
  transition: background .3s ease, color .3s ease, border-color .3s ease, top .3s ease;
}
body.hoh-front .hoh-header .hoh-logo,
body.hoh-front .hoh-header .hoh-menu a,
body.hoh-front .hoh-header .hoh-icon-link { color: #fff; }
body.hoh-front .hoh-header .hoh-burger span { background: #fff; }
body.hoh-front .hoh-header .hoh-menu a:hover,
body.hoh-front .hoh-header .hoh-icon-link:hover { color: rgba(255,255,255,.65); }

/* On scroll → solid header, dark text, fixed to top */
body.hoh-front.is-scrolled .hoh-announce { display: none; }
body.hoh-front.is-scrolled .hoh-header {
  position: fixed; top: 0;
  background: color-mix(in srgb, var(--hoh-cream) 92%, transparent); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,26,26,.1);
}
body.hoh-front.is-scrolled .hoh-header .hoh-logo,
body.hoh-front.is-scrolled .hoh-header .hoh-menu a,
body.hoh-front.is-scrolled .hoh-header .hoh-icon-link { color: var(--hoh-charcoal); }
body.hoh-front.is-scrolled .hoh-header .hoh-burger span { background: var(--hoh-charcoal); }

/* WordPress admin bar offsets — absolute/fixed elements ignore html margin-top,
   so push them below the 32px (46px mobile) admin bar when logged in. */
.admin-bar .hoh-header { top: 32px; }
.admin-bar.hoh-front .hoh-announce { top: 32px; }
.admin-bar.hoh-front .hoh-header { top: 70px; }
.admin-bar.hoh-front.is-scrolled .hoh-header { top: 32px; }
.admin-bar .hoh-drawer-panel { top: 32px; height: calc(100% - 32px); }
@media screen and (max-width: 782px) {
  .admin-bar.hoh-front .hoh-announce { top: 46px; }
  .admin-bar.hoh-front .hoh-header { top: 84px; }
  .admin-bar.hoh-front.is-scrolled .hoh-header { top: 46px; }
  .admin-bar .hoh-drawer-panel { top: 46px; height: calc(100% - 46px); }
}

@media (max-width: 980px) {
  .hoh-burger { display: flex; }
  .hoh-nav-desktop { display: none; }
  .hoh-header-inner { height: 64px; }
  .hoh-logo { font-size: 17px; letter-spacing: .2em; }
  .hoh-acct { display: none; }
  .hoh-nav-mobile { display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 49; border-top: 1px solid rgba(26,26,26,.1); background: var(--hoh-cream); padding: 20px 24px; box-shadow: 0 14px 28px rgba(0,0,0,.1); }
  .hoh-nav-mobile.is-open { display: block; }
  .hoh-nav-mobile .hoh-menu { flex-direction: column; gap: 0; }
  /* Force dark links inside the (light) dropdown — the front-page overlay
     makes header links white, which would be invisible here. */
  body .hoh-nav-mobile .hoh-menu a,
  body.hoh-front .hoh-nav-mobile .hoh-menu a,
  body .hoh-nav-mobile .hoh-mobile-acct {
    color: var(--hoh-charcoal); display: block; padding: 14px 0;
    border-bottom: 1px solid rgba(26,26,26,.08); font-size: 14px; letter-spacing: .12em; text-transform: uppercase;
  }
  body .hoh-nav-mobile .hoh-menu a:hover,
  body.hoh-front .hoh-nav-mobile .hoh-menu a:hover { color: var(--hoh-wine); }
  .hoh-nav-mobile .hoh-mobile-acct { border-bottom: 0; }
}
@media (max-width: 480px) {
  .hoh-logo { font-size: 14px; letter-spacing: .14em; }
}

/* ==========================================================================
   HOME — sections
   ========================================================================== */

/* Hero — RIMOWA full-bleed: full-viewport image, content anchored bottom-left,
   subtle bottom scrim only (the image carries the page). */
.hoh-hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; background: var(--hoh-charcoal); }
.hoh-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
/* Overlay sits ABOVE the image but BELOW the text (z-index), so it darkens the
   photo only — the headline stays pure white and remains selectable. */
.hoh-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(ellipse 85% 75% at 50% 48%, rgba(0,0,0,.6) 0%, rgba(0,0,0,.42) 50%, rgba(0,0,0,.3) 100%); }
.hoh-hero-content { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; text-align: center; }
.hoh-hero-inner { max-width: 760px; margin: 0 auto; padding: 0 24px; width: 100%; }
.hoh-hero-box { width: 100%; color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.6), 0 1px 4px rgba(0,0,0,.5); }
.hoh-hero .hoh-kicker { color: rgba(255,255,255,.92); margin-bottom: 18px; }
.hoh-hero h1 { font-size: clamp(36px, 6vw, 64px); line-height: 1.05; margin-bottom: 22px; font-weight: 600; letter-spacing: -0.02em; color: #fff; }
.hoh-hero h1 em { font-style: normal; font-weight: 400; color: #fff; opacity: .9; }
.hoh-hero p { font-size: 16px; color: #fff; opacity: .92; max-width: 480px; margin: 0 auto 32px; }
.hoh-hero-cta { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: center; }
/* RIMOWA hero CTAs: minimal underlined text-links, not filled buttons */
.hoh-hero .hoh-hero-cta .hoh-btn {
  background: transparent !important; color: #fff !important; border: 0 !important;
  padding: 0 0 4px; border-radius: 0; letter-spacing: .2em; font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,.6) !important; transition: border-color .25s, opacity .25s;
}
.hoh-hero .hoh-hero-cta .hoh-btn:hover { background: transparent !important; opacity: .7; border-bottom-color: #fff !important; }
/* Full-bleed: kill the Elementor section padding wrapping the hero widget */
.elementor-section:has(.hoh-hero), .elementor-widget-hoh_hero { padding: 0 !important; margin: 0 !important; }
.elementor-widget-hoh_hero .elementor-widget-container { margin: 0 !important; }
/* Scroll cue */
.hoh-hero-box .hoh-hero-cta .hoh-btn { backdrop-filter: blur(2px); }
@media (max-width: 640px) {
  .hoh-hero { height: 100vh; height: 100svh; min-height: 560px;
    /* Landscape hero crops badly on a tall phone — use a portrait smart-crop of
       the same photo instead (img hidden below). */
    background-image: url('https://images.unsplash.com/photo-1615634260167-c8cdede054de?w=900&h=1600&fit=crop&crop=entropy&q=85');
    background-size: cover; background-position: center; }
  .hoh-hero > img { display: none; }
  .hoh-hero-inner { padding: 0 22px; }
  .hoh-hero h1 { font-size: clamp(34px, 11vw, 48px); }
}

/* Slider */
.hoh-slider-sec { padding: 48px 0; background: var(--hoh-cream); }
.hoh-slider-head { margin: 0 0 24px; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
/* Align carousel cards with the padded heading (bleed off the right edge) */
.hoh-slider-sec > .hoh-rail { max-width: none; margin: 0; padding-left: 0; scroll-padding-left: 0; }
@media (max-width: 640px) {
  .hoh-slider-head { padding: 0 20px; }
  .hoh-slider-sec > .hoh-rail { padding-left: 0; scroll-padding-left: 0; }
}
.hoh-slider-head h2 { font-family: var(--hoh-font-head); font-size: clamp(16px, 1.6vw, 19px); font-weight: 400; letter-spacing: 0; }
.hoh-slider-head h2 em { font-style: normal; font-weight: 400; color: var(--hoh-gold); }
.hoh-slider-arrows { display: flex; gap: 8px; flex-shrink: 0; }
.hoh-arrow { width: 38px; height: 38px; border: 1px solid rgba(26,26,26,.25); background: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: all .2s; color: var(--hoh-charcoal); }
.hoh-arrow:hover { border-color: var(--hoh-wine); background: var(--hoh-wine); color: var(--hoh-cream); }
.hoh-rail { display: flex; gap: 0; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 16px; -ms-overflow-style: none; scrollbar-width: none; }
.hoh-rail::-webkit-scrollbar { display: none; }
.hoh-slide { scroll-snap-align: start; flex-shrink: 0; width: 50%; }
@media (min-width: 1024px) { .hoh-slide { width: 33.3333%; } }
@media (min-width: 1280px) { .hoh-slide { width: 25%; } }
.hoh-slide-img { aspect-ratio: 3/4; overflow: hidden; background: var(--hoh-cream-2); }
.hoh-slide-img img { width: 100% !important; height: 100% !important; object-fit: cover; display: block; transition: transform .7s ease; }
.hoh-slide:hover .hoh-slide-img img { transform: scale(1.05); }
.hoh-slide-meta { padding: 12px 12px 0; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.hoh-slide-meta > div { min-width: 0; }
.hoh-slide-meta h3 { font-size: 16px; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hoh-slide:hover .hoh-slide-meta h3 { color: var(--hoh-wine); }
.hoh-slide-meta .price { font-family: var(--hoh-font-head); font-size: 15px; white-space: nowrap; }
.hoh-slide-meta .hoh-sub { font-size: 12px; color: rgba(26,26,26,.55); margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Editorial slider cards (news & views style) */
.hoh-editorial .hoh-edit-card { scroll-snap-align: start; flex-shrink: 0; width: 78%; display: block; }
@media (min-width: 700px) { .hoh-editorial .hoh-edit-card { width: 42%; } }
@media (min-width: 1024px) { .hoh-editorial .hoh-edit-card { width: 30%; } }
.hoh-editorial .hoh-edit-img { aspect-ratio: 4/3; overflow: hidden; background: var(--hoh-cream-2); margin-bottom: 18px; }
.hoh-editorial .hoh-edit-img img { width: 100% !important; height: 100% !important; object-fit: cover; display: block; transition: transform .7s ease; }
.hoh-editorial .hoh-edit-card:hover .hoh-edit-img img { transform: scale(1.04); }
.hoh-editorial .hoh-edit-cat { font-size: 11px; letter-spacing: .22em; color: var(--hoh-gold); margin: 0 0 8px; }
.hoh-editorial .hoh-edit-title { font-family: var(--hoh-font-head); font-size: 19px; line-height: 1.3; margin: 0 0 12px; letter-spacing: -0.01em; }
.hoh-editorial .hoh-edit-card:hover .hoh-edit-title { color: var(--hoh-wine); }
.hoh-editorial .hoh-edit-link { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; border-bottom: 1px solid var(--hoh-charcoal); padding-bottom: 3px; }

/* Big featured grid (2x2) */
.hoh-feature-sec { padding: 80px 0; background: var(--hoh-cream-2); }
.hoh-feature-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 48px; }
.hoh-feature-head h2 { font-size: clamp(22px, 3vw, 30px); }
.hoh-feature-head h2 em { font-style: italic; color: var(--hoh-wine); }
/* Editorial (Rimowa-style) centered heading + subline */
.hoh-feature-head--editorial { flex-direction: column; align-items: center; text-align: center; gap: 14px; margin-bottom: 52px; }
.hoh-feature-head--editorial h2 { font-size: clamp(26px, 3.6vw, 40px); letter-spacing: -0.02em; max-width: 16ch; }
.hoh-feature-sub { color: rgba(26,26,26,.6); font-size: 16px; max-width: 46ch; margin: 0; }
.hoh-feature-link { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; border-bottom: 1px solid var(--hoh-charcoal); padding-bottom: 4px; }
.hoh-feature-link:hover { color: var(--hoh-wine); border-color: var(--hoh-wine); }
.hoh-feature-grid { display: grid; grid-template-columns: 1fr; gap: 32px; max-width: 920px; margin: 0 auto; }
@media (min-width: 640px) { .hoh-feature-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.hoh-feature-card .hoh-feature-img { aspect-ratio: 4/5; overflow: hidden; background: var(--hoh-cream); }
.hoh-feature-card .hoh-feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.hoh-feature-card:hover .hoh-feature-img img { transform: scale(1.05); }
.hoh-feature-card .hoh-feature-meta { padding-top: 18px; display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.hoh-feature-card h3 { font-size: clamp(20px, 2.5vw, 28px); }
.hoh-feature-card:hover h3 { color: var(--hoh-wine); }
.hoh-feature-card .hoh-sub { font-size: 14px; color: rgba(26,26,26,.55); margin-top: 6px; }
.hoh-feature-card .price { font-family: var(--hoh-font-head); font-size: 20px; white-space: nowrap; }
.hoh-feature-card .hoh-btn { margin-top: 16px; width: 100%; }

/* Spotlight */
.hoh-spotlight { background: var(--hoh-charcoal); color: var(--hoh-cream); }
.hoh-spotlight-inner { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; padding: 80px 0; }
@media (min-width: 1024px) { .hoh-spotlight-inner { grid-template-columns: 1fr 1fr; gap: 80px; } }
.hoh-spotlight-img { aspect-ratio: 4/5; overflow: hidden; background: var(--hoh-wine-dark); }
.hoh-spotlight-img img { width: 100%; height: 100%; object-fit: cover; }
.hoh-spotlight .hoh-kicker { color: var(--hoh-gold-light); margin-bottom: 16px; }
.hoh-spotlight h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.hoh-spotlight p { color: rgba(248,244,236,.82); margin: 0 0 32px; max-width: 440px; }
.hoh-spotlight-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hoh-spotlight-price { font-family: var(--hoh-font-head); font-size: 24px; }

/* Stories carousel — left heading column + right card rail + floating round arrows */
.hoh-stories { background: linear-gradient(180deg, var(--hoh-cream-2) 0%, var(--hoh-cream) 26%); padding: 80px 0 88px; overflow: hidden; }
.hoh-stories-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; align-items: start; }
@media (min-width: 1024px) { .hoh-stories-grid { grid-template-columns: 300px minmax(0, 1fr); gap: 40px; } }
.hoh-stories-railwrap { min-width: 0; }
.hoh-stories-head .hoh-kicker { margin: 0 0 18px; color: rgba(26,26,26,.55); }
.hoh-stories-head h2 { font-family: var(--hoh-font-head); font-size: clamp(30px, 3.6vw, 46px); font-weight: 400; line-height: 1.08; letter-spacing: -0.02em; }
.hoh-stories-railwrap { position: relative; }
.hoh-stories-rail { gap: 28px; }
.hoh-story-card { flex: 0 0 auto; width: 78%; scroll-snap-align: start; display: block; }
@media (min-width: 700px) { .hoh-story-card { width: 46%; } }
@media (min-width: 1024px) { .hoh-story-card { width: 40%; } }
.hoh-story-img { aspect-ratio: 4/5; overflow: hidden; background: var(--hoh-cream-2); margin-bottom: 18px; }
.hoh-story-img img { width: 100% !important; height: 100% !important; object-fit: cover; display: block; transition: transform .7s ease; }
.hoh-story-card:hover .hoh-story-img img { transform: scale(1.04); }
.hoh-story-title { font-family: var(--hoh-font-head); font-size: 18px; line-height: 1.35; font-weight: 400; margin: 0 0 14px; max-width: 90%; }
.hoh-news-stories .hoh-news-meta { font-size: 11px; letter-spacing: .12em; color: var(--hoh-gold); margin: 0 0 8px; }
.hoh-news-stories .hoh-story-title { font-weight: 400; }
.hoh-story-foot { display: flex; align-items: center; gap: 16px; }
.hoh-story-price { font-family: var(--hoh-font-head); font-size: 15px; color: rgba(26,26,26,.6); }
.hoh-story-read { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; border-bottom: 1px solid var(--hoh-charcoal); padding-bottom: 2px; }
.hoh-story-card:hover .hoh-story-read { color: var(--hoh-wine); border-color: var(--hoh-wine); }
/* Floating round arrows centered on the card image */
.hoh-story-arrow {
  /* centre vertically on the image: card height minus the ~64px text block below */
  position: absolute; top: calc((100% - 64px) / 2); transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 999px; border: 0; cursor: pointer;
  background: #fff; box-shadow: 0 4px 18px rgba(0,0,0,.15); color: var(--hoh-charcoal);
  display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s;
}
.hoh-story-arrow:hover { background: var(--hoh-charcoal); color: #fff; }
.hoh-story-prev { left: -22px; }
.hoh-story-next { right: -22px; }
/* Line scroll-progress indicator — shown on mobile (replaces arrows) */
.hoh-slider-progress { display: none; }
.hoh-slider-progress span { display: block; }
@media (max-width: 1023px) {
  .hoh-slider-progress { display: block; position: relative; height: 2px; background: rgba(26,26,26,.13); margin: 28px auto 0; max-width: 280px; }
  .hoh-slider-progress span { position: absolute; top: 0; left: 0; height: 100%; width: 30%; background: var(--hoh-charcoal); }
}

/* Mobile: hide floating arrows (swipe + progress line instead), center heading */
@media (max-width: 700px) {
  .hoh-story-arrow { display: none; }
  .hoh-story-card { width: 72%; }
  .hoh-stories-rail { gap: 16px; scroll-padding-left: 0; }
  .hoh-stories-head { text-align: center; }
  .hoh-stories-head h2 { margin-left: auto; margin-right: auto; }
}

/* Newsletter */
.hoh-news { background: var(--hoh-charcoal); color: var(--hoh-cream); padding: 96px 0; text-align: center; }
.hoh-news .hoh-kicker { color: var(--hoh-gold-light); margin-bottom: 16px; }
.hoh-news h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 18px; }
.hoh-news h2 em { font-style: italic; color: var(--hoh-gold-light); }
.hoh-news p { color: rgba(248,244,236,.7); max-width: 540px; margin: 0 auto 32px; }
.hoh-news form { display: flex; flex-wrap: wrap; gap: 12px; max-width: 460px; margin: 0 auto; }
.hoh-news input { flex: 1; min-width: 200px; background: transparent; border: 1px solid rgba(248,244,236,.3); color: var(--hoh-cream); padding: 14px 18px; font-size: 14px; }
.hoh-news input::placeholder { color: rgba(248,244,236,.4); }
.hoh-news input:focus { outline: none; border-color: var(--hoh-gold); }

/* ==========================================================================
   WooCommerce
   ========================================================================== */
.hoh-main { min-height: 50vh; }
.hoh-wc { padding: 56px 0; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 0; }
/* WC adds clearfix ::before/::after which become stray grid items (empty first
   cell) in a grid container — remove them so products start at column 1. */
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none !important; content: none !important; }
@media (min-width: 768px) { .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); gap: 36px; } }
.woocommerce ul.products li.product { text-align: left; margin: 0 !important; width: auto !important; float: none !important; }
.woocommerce ul.products li.product a img { margin-bottom: 14px; width: 100% !important; height: auto; aspect-ratio: 4/5; object-fit: cover; display: block; }
/* Uniform card body so titles/prices/buttons align across the row */
.woocommerce ul.products li.product { display: flex; flex-direction: column; }
.woocommerce ul.products li.product .button { margin-top: auto; align-self: flex-start; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--hoh-font-head); font-size: 17px; padding: 0 0 4px; }
.woocommerce ul.products li.product .price { color: var(--hoh-charcoal); font-family: var(--hoh-font-head); font-size: 16px; }
.woocommerce ul.products li.product .price del { color: rgba(26,26,26,.4); font-weight: 400; }
.woocommerce ul.products li.product .button { margin-top: 12px; }

.woocommerce span.onsale { background: var(--hoh-wine); color: var(--hoh-cream); border-radius: 0; font-size: 11px; letter-spacing: .1em; padding: 6px 12px; min-height: 0; min-width: 0; line-height: 1; }

/* Single product */
.woocommerce div.product .product_title { font-family: var(--hoh-font-head); font-size: clamp(26px, 4vw, 40px); }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--hoh-wine); font-family: var(--hoh-font-head); font-size: 24px; }
.woocommerce .quantity .qty { border: 1px solid rgba(26,26,26,.25); padding: 12px; }

/* Archive header */
.hoh-archive-head { text-align: center; padding: 8px 0 4px; }
.hoh-archive-head .hoh-kicker { margin-bottom: 14px; }
.hoh-archive-head h1 { font-size: clamp(28px, 4vw, 44px); }
.hoh-archive-head h1 em { font-style: italic; color: var(--hoh-wine); }
.hoh-archive-head p { color: rgba(26,26,26,.6); margin-top: 12px; }

/* Shop toolbar — result count + ordering select (theme-matched) */
.woocommerce .woocommerce-result-count { float: left; margin: 8px 0 28px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(26,26,26,.55); }
.woocommerce .woocommerce-ordering { float: right; margin: 0 0 28px; }
.woocommerce .products { clear: both; }
@media (max-width: 560px) { .woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering { float: none; } }
.woocommerce .woocommerce-ordering select.orderby {
  height: 46px; padding: 0 42px 0 18px; border: 1px solid rgba(26,26,26,.2); border-radius: 0;
  font-family: var(--hoh-font-body); font-size: 13px; color: var(--hoh-charcoal); background-color: #fff;
  -webkit-appearance: none; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='1.6'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.woocommerce .woocommerce-ordering select.orderby:focus { outline: none; border-color: var(--hoh-charcoal); }
.hoh-shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 8px 0 22px; margin-bottom: 28px; border-bottom: 1px solid rgba(26,26,26,.1); }
@media (max-width: 560px) { .hoh-shop-toolbar { flex-direction: column; align-items: flex-start; gap: 14px; } .woocommerce .woocommerce-ordering select.orderby { width: 100%; } }

/* Scent-family filter pills */
.hoh-cat-pills { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin: 28px 0 40px; padding: 0 4px; }
.hoh-pill { padding: 10px 22px; border: 1px solid rgba(26,26,26,.2); border-radius: 0; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; transition: all .2s; white-space: nowrap; }
.hoh-pill:hover { border-color: var(--hoh-wine); color: var(--hoh-wine); }
.hoh-pill.is-active { background: var(--hoh-wine); color: var(--hoh-cream); border-color: var(--hoh-wine); }

/* Product loop card polish (image zoom on hover, clean meta) */
.woocommerce ul.products li.product { position: relative; }
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link { display: block; }
.woocommerce ul.products li.product a img { overflow: hidden; transition: transform .7s ease; }
.woocommerce ul.products li.product:hover a img { transform: scale(1.04); }
.woocommerce ul.products li.product .woocommerce-loop-product__title:hover { color: var(--hoh-wine); }
.woocommerce ul.products li.product .button.added { background: var(--hoh-wine) !important; }
.woocommerce ul.products li.product .added_to_cart { display: none; }

/* ---- Cart page ---- */
.woocommerce-cart .hoh-wc { max-width: 1080px; margin: 0 auto; }
.woocommerce table.shop_table { border: 1px solid rgba(26,26,26,.12); border-radius: 0; border-collapse: collapse; }
.woocommerce table.shop_table th { font-family: var(--hoh-font-head); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--hoh-charcoal); padding: 16px; border-bottom: 1px solid rgba(26,26,26,.12); }
.woocommerce table.shop_table td { padding: 20px 16px; border-top: 1px solid rgba(26,26,26,.08); vertical-align: middle; }
.woocommerce table.cart img { width: 72px !important; height: 90px !important; object-fit: cover !important; display: block; }
/* Constrain cart table columns so the remove column doesn't stretch + content stays left */
.woocommerce table.cart { table-layout: fixed; width: 100%; }
.woocommerce table.cart .product-remove { width: 44px; text-align: center; padding-left: 0; padding-right: 0; }
.woocommerce table.cart .product-thumbnail { width: 104px; }
.woocommerce table.cart .product-name { width: auto; text-align: left; word-break: break-word; }
.woocommerce table.cart .product-price,
.woocommerce table.cart .product-quantity,
.woocommerce table.cart .product-subtotal { width: 130px; text-align: left; }
.woocommerce table.cart th.product-name { text-align: left; }
.woocommerce a.remove { color: var(--hoh-charcoal) !important; border: 1px solid rgba(26,26,26,.2); width: 22px; height: 22px; line-height: 20px; border-radius: 999px; font-weight: 400; }
.woocommerce a.remove:hover { background: var(--hoh-charcoal) !important; color: #fff !important; }
.woocommerce .product-name a { font-family: var(--hoh-font-head); color: var(--hoh-charcoal); }
.woocommerce .product-name a:hover { color: var(--hoh-wine); }
.woocommerce .quantity input.qty { width: 64px; padding: 10px; border: 1px solid rgba(26,26,26,.25); text-align: center; }
.woocommerce .cart-collaterals .cart_totals { float: none; width: 100%; max-width: 380px; margin-left: auto; }
.woocommerce .cart_totals h2 { font-family: var(--hoh-font-head); font-size: 18px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.woocommerce .cart_totals table { border: 1px solid rgba(26,26,26,.12); }
.woocommerce .cart_totals table th, .woocommerce .cart_totals table td { padding: 14px 16px; }
.woocommerce .cart_totals .order-total .amount { font-family: var(--hoh-font-head); font-size: 20px; }
.woocommerce .wc-proceed-to-checkout { padding: 16px 0 0; }
.woocommerce .wc-proceed-to-checkout a.checkout-button {
  width: 100%; font-size: 13px; padding: 16px; text-align: center;
  background: var(--hoh-charcoal) !important; color: var(--hoh-cream) !important; border: 0;
}
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover { background: var(--hoh-wine) !important; color: #fff !important; }
/* Coupon row + actions — consistent heights, squared, joined input+button */
.woocommerce .cart .actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 16px; }
.woocommerce .cart .actions .coupon { display: flex; align-items: stretch; gap: 0; float: none; }
.woocommerce .cart .actions .coupon input.input-text {
  width: 200px; height: 48px; padding: 0 14px; margin: 0; border: 1px solid rgba(26,26,26,.25);
  border-right: 0; border-radius: 0; font-size: 13px; box-sizing: border-box;
}
.woocommerce .cart .actions .coupon input.input-text:focus { outline: none; border-color: var(--hoh-charcoal); }
.woocommerce .cart .actions .coupon .button {
  height: 48px; padding: 0 22px; background: var(--hoh-charcoal) !important; color: var(--hoh-cream) !important;
  border: 1px solid var(--hoh-charcoal); white-space: nowrap;
}
.woocommerce .cart .actions > .button {
  height: 48px; padding: 0 26px; background: transparent !important; color: var(--hoh-charcoal) !important;
  border: 1px solid rgba(26,26,26,.3); white-space: nowrap; width: auto; flex: 0 0 auto;
}
.woocommerce .cart .actions > .button:hover { background: var(--hoh-charcoal) !important; color: #fff !important; }

/* Cart — mobile: let WC responsive stacking work + coupon fits the viewport */
@media (max-width: 768px) {
  .woocommerce table.cart { table-layout: auto; }
  .woocommerce table.cart .product-remove,
  .woocommerce table.cart .product-thumbnail,
  .woocommerce table.cart .product-name,
  .woocommerce table.cart .product-price,
  .woocommerce table.cart .product-quantity,
  .woocommerce table.cart .product-subtotal { width: auto; }
  .woocommerce .cart .actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .woocommerce .cart .actions .coupon { width: 100%; flex-direction: column; gap: 10px; }
  .woocommerce .cart .actions .coupon input.input-text { width: 100% !important; border-right: 1px solid rgba(26,26,26,.25); }
  .woocommerce .cart .actions .coupon .button { width: 100% !important; display: flex; align-items: center; justify-content: center; padding: 0 12px; }
  .woocommerce .cart .actions > .button { width: 100%; }
}
.woocommerce-cart-form { margin-bottom: 40px; }
.woocommerce-message, .woocommerce-info, .woocommerce-error { border-top-color: var(--hoh-charcoal); background: var(--hoh-cream-2); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--hoh-charcoal); }
@media (min-width: 768px) {
  .woocommerce-cart .woocommerce { display: block; }
}

/* Checkout — owned two-column layout (.hoh-checkout) */
.hoh-checkout-grid { display: block; }
@media (min-width: 1000px) {
  .hoh-checkout-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; align-items: start; }
  .hoh-checkout-main { min-width: 0; }
  .hoh-checkout-aside { position: sticky; top: 110px; }
}
.hoh-checkout-summary { background: #fff; border: 1px solid rgba(26,26,26,.12); padding: 34px 36px; }
.hoh-checkout-summary #order_review_heading { font-family: var(--hoh-font-head); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: rgba(26,26,26,.55); margin: 0 0 24px; }
/* Stack billing + additional within the left column.
   #customer_details IS the .col2-set element, so .col-1/.col-2 are its direct children. */
.woocommerce-checkout #customer_details { display: block; width: 100%; }
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 { width: 100%; float: none; margin: 0 0 8px; }
/* Make billing form fields fill the column (were stuck ~360px → sparse) */
.woocommerce-checkout #customer_details .form-row { width: 100%; float: none; padding: 0 0 18px; margin: 0; }
.woocommerce-checkout #customer_details .form-row-first { width: 48.5%; float: left; }
.woocommerce-checkout #customer_details .form-row-last { width: 48.5%; float: right; }
.woocommerce-checkout #customer_details p.form-row-wide { clear: both; }
.woocommerce-checkout #customer_details input.input-text,
.woocommerce-checkout #customer_details textarea,
.woocommerce-checkout #customer_details select,
.woocommerce-checkout #customer_details .select2-container { width: 100% !important; box-sizing: border-box; }
.woocommerce-checkout #customer_details .select2-container .select2-selection--single { height: 46px; display: flex; align-items: center; border: 1px solid rgba(26,26,26,.25); border-radius: 0; }
.woocommerce-checkout #customer_details .woocommerce-additional-fields { clear: both; padding-top: 8px; }
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3,
.woocommerce-checkout #order_review_heading { font-family: var(--hoh-font-head); font-size: 18px; font-weight: 600; letter-spacing: .02em; }
/* Order summary panel (wrapper .hoh-checkout-summary provides bg + padding) */
.woocommerce-checkout #order_review { background: transparent; padding: 0; }
.woocommerce-checkout #order_review .shop_table { background: transparent; border: 0; }

/* Custom order summary — line items with thumbnails + totals (own template) */
.hoh-order-items { list-style: none; margin: 0 0 4px; padding: 0; }
.hoh-order-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(26,26,26,.1); }
.hoh-order-thumb { position: relative; flex: 0 0 auto; }
.hoh-order-thumb img { width: 56px !important; height: 70px !important; object-fit: cover !important; display: block; margin: 0 !important; }
.hoh-order-qty { position: absolute; top: -8px; right: -8px; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: var(--hoh-charcoal); color: var(--hoh-cream); font-size: 11px; font-weight: 600; display: flex; align-items: center; justify-content: center; }
.hoh-order-info { flex: 1 1 auto; min-width: 0; }
.hoh-order-name { display: block; font-family: var(--hoh-font-head); font-size: 14px; line-height: 1.35; color: var(--hoh-charcoal); }
.hoh-order-meta { display: block; font-size: 12px; color: rgba(26,26,26,.55); margin-top: 4px; }
.hoh-order-price { flex: 0 0 auto; font-family: var(--hoh-font-head); font-size: 14px; color: var(--hoh-charcoal); white-space: nowrap; }
.hoh-order-totals { padding-top: 16px; }
.hoh-order-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 9px 0; font-size: 13px; color: rgba(26,26,26,.7); }
.hoh-order-row span:first-child { letter-spacing: .04em; }
.hoh-order-row .woocommerce-Price-amount { color: var(--hoh-charcoal); }
.hoh-order-total { margin-top: 8px; padding-top: 16px; border-top: 1px solid rgba(26,26,26,.15); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--hoh-charcoal); }
.hoh-order-total .woocommerce-Price-amount { font-family: var(--hoh-font-head); font-size: 22px; letter-spacing: 0; text-transform: none; }
.hoh-order-shipping { display: block; }
.hoh-order-shipping #shipping_method { list-style: none; margin: 6px 0 0; padding: 0; }
.woocommerce-checkout #order_review .shop_table th,
.woocommerce-checkout #order_review .shop_table td { padding: 12px 0; border-color: rgba(26,26,26,.1); }
.woocommerce-checkout #payment { background: transparent; border-radius: 0; margin-top: 8px; }
.woocommerce-checkout #payment #place_order,
.woocommerce #payment #place_order {
  width: 100%; padding: 16px; font-size: 13px; letter-spacing: .2em; margin-top: 8px;
  background: var(--hoh-charcoal) !important; color: var(--hoh-cream) !important; border: 0; border-radius: 0;
}
.woocommerce-checkout #payment #place_order:hover { background: var(--hoh-wine) !important; color: #fff !important; }
.woocommerce-checkout #payment ul.payment_methods { padding: 0; margin: 0; border: 0; }
.woocommerce-checkout #payment ul.payment_methods li { list-style: none; margin: 0; padding: 14px 0; border-bottom: 1px solid rgba(26,26,26,.1); }
.woocommerce-checkout #payment ul.payment_methods li:last-of-type { border-bottom: 0; }
.woocommerce-checkout #payment ul.payment_methods li label { font-family: var(--hoh-font-head); font-size: 14px; letter-spacing: .02em; }
.woocommerce-checkout #payment ul.payment_methods li input[type=radio] { accent-color: var(--hoh-charcoal); }
/* Clean payment description — no WC box / triangle */
.woocommerce-checkout #payment div.payment_box { background: transparent; border: 0; box-shadow: none; margin: 10px 0 0; padding: 0 0 4px 28px; color: rgba(26,26,26,.6); font-size: 13px; }
.woocommerce-checkout #payment div.payment_box::before { display: none; }

/* Coupon toggle — clean hairline link, not an info box */
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  background: transparent; border: 0; border-top: 1px solid rgba(26,26,26,.14); border-bottom: 1px solid rgba(26,26,26,.14);
  padding: 18px 2px; margin: 0 0 40px; color: var(--hoh-charcoal); font-size: 13px; letter-spacing: .02em;
}
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info::before { display: none; }
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info a { color: var(--hoh-charcoal); text-decoration: underline; text-underline-offset: 3px; }
.woocommerce-checkout .checkout_coupon { border: 1px solid rgba(26,26,26,.14); border-radius: 0; padding: 24px; margin: 0 0 32px; }

/* Section heading + roomier field rhythm */
.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-additional-fields > h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 26px; }
.woocommerce-checkout #customer_details .form-row { padding-bottom: 22px; }
.woocommerce-checkout #payment { padding-top: 8px; }
.woocommerce-checkout .woocommerce-privacy-policy-text { color: rgba(26,26,26,.55); font-size: 13px; line-height: 1.6; margin: 18px 0 0; }
/* ---- Refined form fields (checkout + account), away from default WC look ---- */
.woocommerce-checkout .form-row label,
.woocommerce-account .form-row label,
.woocommerce form .form-row > label {
  display: block; font-family: var(--hoh-font-head); font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--hoh-charcoal);
  margin-bottom: 9px;
}
.woocommerce form .form-row .required { color: var(--hoh-gold); border: 0; text-decoration: none; }
.woocommerce form .form-row .optional { color: rgba(26,26,26,.4); text-transform: none; letter-spacing: 0; }

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-checkout select,
.woocommerce-account input.input-text {
  width: 100%; box-sizing: border-box; height: 50px; padding: 0 16px;
  border: 1px solid rgba(26,26,26,.2); border-radius: 0; background: #fff;
  font-family: var(--hoh-font-body); font-size: 14px; color: var(--hoh-charcoal);
  transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none;
}
.woocommerce form .form-row textarea { height: auto; min-height: 96px; padding: 14px 16px; line-height: 1.5; }
.woocommerce form .form-row input.input-text::placeholder,
.woocommerce form .form-row textarea::placeholder { color: rgba(26,26,26,.4); }
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce-checkout select:focus {
  outline: none; border-color: var(--hoh-charcoal); box-shadow: 0 0 0 1px var(--hoh-charcoal);
}
.woocommerce form .form-row.woocommerce-invalid input.input-text { border-color: #b3261e; }
.woocommerce form .form-row.woocommerce-validated input.input-text { border-color: rgba(26,26,26,.2); }
/* Native select arrow */
.woocommerce-checkout select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='1.6'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
/* select2 (Country / State) to match inputs */
.woocommerce-checkout .select2-container--default .select2-selection--single {
  height: 50px; border: 1px solid rgba(26,26,26,.2); border-radius: 0; display: flex; align-items: center; padding: 0 6px;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 1.4; color: var(--hoh-charcoal); }
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow { height: 48px; }
.woocommerce-checkout .select2-dropdown { border-color: rgba(26,26,26,.2); border-radius: 0; }
.woocommerce-checkout .select2-container--default .select2-results__option--highlighted[aria-selected] { background: var(--hoh-charcoal); }
.woocommerce #order_review .shop_table { border: 1px solid rgba(26,26,26,.12); }

/* Single product layout polish */
.woocommerce div.product { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 900px) {
  .woocommerce div.product { grid-template-columns: minmax(0, 1fr) 1fr; gap: 72px; align-items: start; }
  .woocommerce div.product .woocommerce-product-gallery { position: sticky; top: 110px; }
  .woocommerce div.product .summary { padding: 8px 0; }
}
.woocommerce div.product .woocommerce-product-gallery { margin: 0 !important; width: 100% !important; }
.woocommerce div.product .summary { margin: 0 !important; width: 100% !important; }
.woocommerce div.product .woocommerce-product-rating { margin-bottom: 14px; }
.woocommerce div.product .woocommerce-product-details__short-description { color: rgba(26,26,26,.7); margin: 16px 0; }
.woocommerce div.product form.cart { margin: 24px 0; }
.woocommerce div.product form.cart .quantity { margin-right: 12px; }
.woocommerce div.product .product_meta { font-size: 12px; letter-spacing: .04em; color: rgba(26,26,26,.6); margin-top: 24px; border-top: 1px solid rgba(26,26,26,.1); padding-top: 18px; }
.woocommerce-breadcrumb { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(26,26,26,.55); margin-bottom: 28px; }
.woocommerce-breadcrumb a:hover { color: var(--hoh-wine); }
.woocommerce div.product .woocommerce-tabs { grid-column: 1 / -1; }
.woocommerce div.product .related, .woocommerce div.product .upsells { grid-column: 1 / -1; }
.woocommerce div.product .related > h2, .woocommerce div.product .upsells > h2 { font-family: var(--hoh-font-head); font-size: 26px; text-align: center; margin-bottom: 32px; }

/* Related/upsells — 4-up grid (4 items guaranteed via PHP filter) */
.woocommerce div.product .related ul.products,
.woocommerce div.product .upsells ul.products {
  display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 28px; margin: 0;
}
.woocommerce div.product .related ul.products li.product,
.woocommerce div.product .upsells ul.products li.product { width: auto !important; max-width: none; margin: 0 !important; float: none !important; }
@media (max-width: 900px) {
  .woocommerce div.product .related ul.products,
  .woocommerce div.product .upsells ul.products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .woocommerce div.product .related ul.products,
  .woocommerce div.product .upsells ul.products { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* Loop add-to-cart button — branded full-width (was unstyled/cacat) */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button.add_to_cart_button {
  display: block; width: 100%; margin-top: 14px; padding: 13px 18px; align-self: stretch;
  background: var(--hoh-charcoal); color: var(--hoh-cream); border: 0; border-radius: 0;
  font-family: var(--hoh-font-body); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; text-align: center;
}
.woocommerce ul.products li.product .button:hover { background: var(--hoh-wine); color: #fff; }

/* ---- Single product: price, stock, add-to-cart, quantity, tabs (theme-matched) ---- */
.woocommerce div.product p.price, .woocommerce div.product span.price { font-family: var(--hoh-font-head); font-size: 24px; color: var(--hoh-charcoal); margin: 4px 0 16px; }
.woocommerce div.product .stock { color: var(--hoh-gold); font-size: 12px; letter-spacing: .08em; }
.woocommerce div.product form.cart { display: flex; align-items: stretch; gap: 10px; flex-wrap: wrap; margin: 24px 0; }
.woocommerce div.product form.cart .quantity { margin: 0; }
.woocommerce div.product form.cart .quantity input.qty {
  height: 52px; width: 76px; border: 1px solid rgba(26,26,26,.25); border-radius: 0; text-align: center;
  font-family: var(--hoh-font-body); font-size: 14px; -webkit-appearance: none; appearance: none;
}
.woocommerce div.product form.cart .quantity input.qty:focus { outline: none; border-color: var(--hoh-charcoal); }
.woocommerce div.product form.cart .button,
.woocommerce div.product .single_add_to_cart_button {
  height: 52px; padding: 0 36px; background: var(--hoh-charcoal) !important; color: var(--hoh-cream) !important;
  border: 0; border-radius: 0; font-family: var(--hoh-font-body); font-size: 12px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; cursor: pointer; transition: background .2s; flex: 1 1 auto; min-width: 180px;
}
.woocommerce div.product .single_add_to_cart_button:hover { background: var(--hoh-wine) !important; color: #fff !important; }

/* Tabs — clean underline style (not WC boxed tabs) */
.woocommerce div.product .woocommerce-tabs ul.tabs { border: 0; padding: 0; margin: 0 0 28px; display: flex; gap: 32px; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { left: 0; right: 0; border-bottom: 1px solid rgba(26,26,26,.12); }
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: transparent; border: 0; border-radius: 0; margin: 0; padding: 0 0 12px; }
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { padding: 0; color: rgba(26,26,26,.5); font-family: var(--hoh-font-head); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { border-bottom: 2px solid var(--hoh-charcoal); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--hoh-charcoal); }
.woocommerce div.product .woocommerce-tabs .panel { padding-top: 4px; }
.woocommerce div.product .woocommerce-tabs .panel h2 { font-family: var(--hoh-font-head); font-size: 20px; font-weight: 600; margin-bottom: 14px; }
.woocommerce div.product .woocommerce-tabs .panel p { color: rgba(26,26,26,.75); line-height: 1.7; }
.single-product .product_title { font-family: var(--hoh-font-head); font-size: clamp(28px, 3.4vw, 40px); font-weight: 600; letter-spacing: -0.01em; margin-bottom: 14px; }
.woocommerce div.product .woocommerce-product-details__short-description { color: rgba(26,26,26,.6); font-size: 14px; letter-spacing: .04em; margin: 0 0 22px; padding-bottom: 22px; border-bottom: 1px solid rgba(26,26,26,.1); }
.woocommerce div.product .summary > .price { padding-bottom: 4px; }
.woocommerce div.product .product_meta { font-size: 12px; letter-spacing: .06em; color: rgba(26,26,26,.55); margin-top: 28px; border-top: 1px solid rgba(26,26,26,.1); padding-top: 22px; }
.woocommerce div.product .product_meta > span { display: block; margin-bottom: 6px; }
/* Keep quantity + add-to-cart inline on every viewport */
.woocommerce div.product form.cart { flex-wrap: nowrap; }
.woocommerce div.product form.cart .button,
.woocommerce div.product .single_add_to_cart_button { flex: 1 1 auto; min-width: 0; }
@media (max-width: 640px) { .woocommerce div.product .single_add_to_cart_button { padding: 0 16px; } }

/* Journal archive (blog index) */
.hoh-journal-head { text-align: center; padding: 72px 24px 56px; max-width: 720px; margin: 0 auto; }
.hoh-journal-head .hoh-kicker { color: var(--hoh-gold); margin-bottom: 18px; }
.hoh-journal-head h1 { font-family: var(--hoh-font-head); font-size: clamp(40px, 6vw, 64px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 18px; }
.hoh-journal-intro { color: rgba(26,26,26,.6); font-size: 16px; line-height: 1.7; }
.hoh-journal-grid { display: grid; grid-template-columns: 1fr; gap: 48px 36px; padding-bottom: 80px; }
@media (min-width: 700px)  { .hoh-journal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hoh-journal-grid { grid-template-columns: repeat(3, 1fr); } }
.hoh-journal-card { display: block; color: var(--hoh-charcoal); }
.hoh-journal-img { aspect-ratio: 4/3; overflow: hidden; background: var(--hoh-cream-2); margin-bottom: 18px; }
.hoh-journal-img img { width: 100% !important; height: 100% !important; object-fit: cover; display: block; transition: transform .7s ease; }
.hoh-journal-card:hover .hoh-journal-img img { transform: scale(1.04); }
.hoh-journal-title { font-family: var(--hoh-font-head); font-size: 20px; line-height: 1.35; font-weight: 600; margin: 0 0 12px; letter-spacing: -0.01em; }
.hoh-journal-card:hover .hoh-journal-title { color: var(--hoh-wine); }
.hoh-journal-excerpt { color: rgba(26,26,26,.6); font-size: 14px; line-height: 1.65; margin: 0 0 16px; }
.hoh-journal-read { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; border-bottom: 1px solid var(--hoh-charcoal); padding-bottom: 2px; }
.hoh-journal-card:hover .hoh-journal-read { color: var(--hoh-wine); border-color: var(--hoh-wine); }
.hoh-journal-pagination { text-align: center; padding: 0 24px 96px; }
.hoh-journal-pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.hoh-journal-pagination .page-numbers { padding: 10px 16px; border: 1px solid rgba(26,26,26,.2); font-size: 13px; letter-spacing: .04em; color: var(--hoh-charcoal); }
.hoh-journal-pagination .page-numbers.current { background: var(--hoh-charcoal); color: var(--hoh-cream); border-color: var(--hoh-charcoal); }
.hoh-journal-pagination .page-numbers:hover { background: var(--hoh-cream-2); }
.hoh-journal-pagination .page-numbers.current:hover { background: var(--hoh-charcoal); color: var(--hoh-cream); }
.hoh-journal-empty { text-align: center; padding: 48px 24px 120px; color: rgba(26,26,26,.55); }

/* Single blog post — editorial layout */
.hoh-post { padding: 40px 0 0; }
.hoh-post-breadcrumb { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(26,26,26,.55); margin-bottom: 48px; }
.hoh-post-breadcrumb a { color: inherit; }
.hoh-post-breadcrumb a:hover { color: var(--hoh-charcoal); }
.hoh-post-breadcrumb span { margin: 0 8px; opacity: .5; }
.hoh-post-head { max-width: 760px; margin: 0 auto 48px; text-align: center; padding: 0 24px; }
.hoh-post-head .hoh-kicker { color: var(--hoh-gold); margin-bottom: 22px; }
.hoh-post-head h1 { font-family: var(--hoh-font-head); font-size: clamp(32px, 5vw, 56px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 22px; }
.hoh-post-lede { font-size: 18px; line-height: 1.6; color: rgba(26,26,26,.65); max-width: 600px; margin: 0 auto; }
.hoh-post-hero { max-width: 1080px; margin: 0 auto 64px; aspect-ratio: 16/9; overflow: hidden; background: var(--hoh-cream-2); }
.hoh-post-hero img { width: 100% !important; height: 100% !important; object-fit: cover; display: block; }
.hoh-post-content { max-width: 720px; margin: 0 auto; padding: 0 24px; font-size: 17px; line-height: 1.8; color: rgba(26,26,26,.85); }
.hoh-post-content > * + * { margin-top: 24px; }
.hoh-post-content h2 { font-family: var(--hoh-font-head); font-size: 28px; font-weight: 600; letter-spacing: -0.01em; margin-top: 48px; margin-bottom: 16px; color: var(--hoh-charcoal); }
.hoh-post-content h3 { font-family: var(--hoh-font-head); font-size: 22px; font-weight: 600; margin-top: 36px; margin-bottom: 14px; }
.hoh-post-content blockquote { border-left: 3px solid var(--hoh-charcoal); padding: 4px 0 4px 24px; font-family: var(--hoh-font-head); font-size: 22px; line-height: 1.5; color: var(--hoh-charcoal); margin: 40px 0; }
.hoh-post-content ul, .hoh-post-content ol { padding-left: 24px; }
.hoh-post-content ul li, .hoh-post-content ol li { margin-bottom: 8px; }
.hoh-post-content a { color: var(--hoh-charcoal); text-decoration: underline; text-underline-offset: 3px; }
.hoh-post-content a:hover { color: var(--hoh-wine); }
.hoh-post-content img { max-width: 100%; height: auto; margin: 32px 0; }
.hoh-post-foot { max-width: 720px; margin: 64px auto 0; padding: 0 24px; text-align: center; }
.hoh-post-related { padding: 80px 24px 96px; margin-top: 80px; border-top: 1px solid rgba(26,26,26,.12); }
.hoh-post-related h2 { font-family: var(--hoh-font-head); font-size: clamp(22px, 2.6vw, 28px); font-weight: 600; text-align: center; margin-bottom: 40px; }
.hoh-post-related-grid { display: grid; grid-template-columns: 1fr; gap: 32px; max-width: 1100px; margin: 0 auto; }
@media (min-width: 768px) { .hoh-post-related-grid { grid-template-columns: repeat(3, 1fr); } }

/* 404 page */
.hoh-404 { text-align: center; padding: 110px 24px 130px; max-width: 620px; }
.hoh-404 .hoh-kicker { color: var(--hoh-gold); margin-bottom: 18px; }
.hoh-404 h1 { font-family: var(--hoh-font-head); font-size: clamp(40px, 7vw, 72px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 18px; }
.hoh-404 p { color: rgba(26,26,26,.6); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.hoh-404-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* USP strip — vertical, centered (icon on top, title, text, link) ------- */
.hoh-usp { background: var(--hoh-cream); border-top: 1px solid rgba(26,26,26,.1); border-bottom: 1px solid rgba(26,26,26,.1); }
.hoh-usp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 44px 24px; padding: 56px 24px; }
@media (min-width: 900px) { .hoh-usp-grid { grid-template-columns: repeat(4, 1fr); padding: 64px 24px; } }
.hoh-usp-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.hoh-usp-icon { color: var(--hoh-charcoal); }
.hoh-usp-title { font-family: var(--hoh-font-head); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin: 0; }
.hoh-usp-text { font-size: 13px; color: rgba(26,26,26,.6); line-height: 1.6; margin: 0; max-width: 22ch; }
.hoh-usp-link { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; border-bottom: 1px solid var(--hoh-charcoal); padding-bottom: 3px; margin-top: 4px; }
.hoh-usp-link:hover { color: var(--hoh-wine); border-color: var(--hoh-wine); }

/* Find a store — full-bleed image with centered overlay ----------------- */
.hoh-findstore { position: relative; min-height: 460px; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center; background-color: var(--hoh-charcoal); text-align: center; }
.hoh-findstore::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.42); }
.hoh-findstore-content { position: relative; z-index: 1; color: #fff; padding: 80px 24px; max-width: 560px; }
.hoh-findstore-content .hoh-kicker { color: rgba(255,255,255,.85); margin-bottom: 16px; }
.hoh-findstore-content h2 { font-family: var(--hoh-font-head); font-size: clamp(30px, 4vw, 48px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 20px; color: #fff; }
.hoh-findstore-content p { color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 28px; }
@media (min-width: 900px) { .hoh-findstore { min-height: 540px; } }

/* News / Journal -------------------------------------------------------- */
.hoh-news-sec { background: var(--hoh-cream); padding: 80px 0; }
.hoh-news-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 44px; }
.hoh-news-head .hoh-kicker { color: var(--hoh-gold); margin-bottom: 12px; }
.hoh-news-head h2 { font-family: var(--hoh-font-head); font-size: clamp(26px, 3.4vw, 40px); font-weight: 600; letter-spacing: -0.02em; }
.hoh-news-all { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap; border-bottom: 1px solid var(--hoh-charcoal); padding-bottom: 3px; }
.hoh-news-all:hover { color: var(--hoh-wine); border-color: var(--hoh-wine); }
.hoh-news-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 640px) { .hoh-news-grid { grid-template-columns: repeat(3, 1fr); } }
.hoh-news-card { display: block; }
.hoh-news-img { aspect-ratio: 3/2; overflow: hidden; background: var(--hoh-cream-2); margin-bottom: 18px; }
.hoh-news-img img { width: 100% !important; height: 100% !important; object-fit: cover; display: block; transition: transform .7s ease; }
.hoh-news-card:hover .hoh-news-img img { transform: scale(1.04); }
.hoh-news-meta { font-size: 11px; letter-spacing: .12em; color: var(--hoh-gold); margin: 0 0 10px; }
.hoh-news-title { font-family: var(--hoh-font-head); font-size: 19px; line-height: 1.35; margin: 0 0 12px; }
.hoh-news-card:hover .hoh-news-title { color: var(--hoh-wine); }
.hoh-news-read { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; border-bottom: 1px solid var(--hoh-charcoal); padding-bottom: 2px; }
@media (max-width: 640px) { .hoh-news-head { flex-direction: column; align-items: flex-start; } }

/* Footer ---------------------------------------------------------------- */
.hoh-footer { background: var(--hoh-charcoal); color: var(--hoh-cream); padding: 0 0 28px; }
/* Newsletter strip */
.hoh-footer-news { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding: 48px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.hoh-footer-news .hoh-kicker { color: var(--hoh-gold-light); margin: 0 0 8px; }
.hoh-footer-news h3 { font-family: var(--hoh-font-head); font-size: clamp(22px, 3vw, 32px); font-weight: 400; color: #fff; }
.hoh-footer-form { display: flex; gap: 0; width: 100%; max-width: 420px; border-bottom: 1px solid rgba(255,255,255,.4); }
.hoh-footer-form input { flex: 1; background: transparent; border: 0; color: #fff; padding: 12px 0; font-size: 14px; }
.hoh-footer-form input::placeholder { color: rgba(255,255,255,.45); }
.hoh-footer-form input:focus { outline: none; }
.hoh-footer-form button { background: transparent; border: 0; color: #fff; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; padding: 0 0 0 16px; white-space: nowrap; }
.hoh-footer-form button:hover { color: var(--hoh-gold-light); }
/* Columns */
.hoh-footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 24px; padding: 48px 0; }
@media (min-width: 900px) { .hoh-footer-cols { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } }
@media (max-width: 768px) {
  .hoh-footer-brand { grid-column: 1 / -1; margin-bottom: 4px; }
  .hoh-footer-logo { font-size: 17px; letter-spacing: .16em; }
  .hoh-footer-tag { max-width: none; }
  .hoh-footer-news { gap: 18px; padding: 40px 0; }
  .hoh-footer-news h3 { font-size: 22px; }
}
.hoh-footer-logo { font-family: var(--hoh-font-head); font-size: 22px; letter-spacing: .2em; margin: 0 0 14px; color: #fff; }
.hoh-footer-tag { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.7; margin: 0; max-width: 320px; }
.hoh-footer-col-title { font-family: var(--hoh-font-head); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin: 0 0 18px; }
.hoh-footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.hoh-footer-col a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.hoh-footer-col a:hover { color: #fff; }
/* Bottom bar */
.hoh-footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: .02em; }
.hoh-footer-legal { display: flex; gap: 22px; }
.hoh-footer-legal a { color: rgba(255,255,255,.5); }
.hoh-footer-legal a:hover { color: #fff; }

/* Prose (generic pages) */
.hoh-prose { padding: 64px 24px; max-width: 760px; }
.hoh-entry-title { font-size: clamp(28px, 4vw, 44px); margin-bottom: 24px; }
.hoh-entry-content { font-size: 17px; }
.hoh-entry-content p { margin: 0 0 1.2em; }

/* ============================================================
   Elementor 3-up landing layout (post 32 Home, post 158 /collection)
   ------------------------------------------------------------
   Elementor adds its own per-section padding (often 48–64px top
   and bottom) on top of our widget's own padding — which makes
   the page feel sparse. Here we zero out Elementor section
   chrome and let each HoH widget control its own vertical rhythm
   via the .hoh-*-sec / .hoh-stories rules above.
   Scoped to specific page IDs so other Elementor pages keep
   their normal spacing.
   ============================================================ */
.elementor-32 > .elementor-section,
.elementor-32 .elementor-section.elementor-top-section,
.elementor-158 > .elementor-section,
.elementor-158 .elementor-section.elementor-top-section { padding: 0 !important; }
.elementor-32 .elementor-column-wrap,
.elementor-32 .elementor-widget-wrap,
.elementor-158 .elementor-column-wrap,
.elementor-158 .elementor-widget-wrap { padding: 0 !important; }
.elementor-32 .elementor-widget:not(:last-child),
.elementor-158 .elementor-widget:not(:last-child) { margin-bottom: 0 !important; }
.elementor-32 .elementor-widget-container,
.elementor-158 .elementor-widget-container { padding: 0 !important; }
/* The text-editor that sits inside the slider section becomes a heading
   for the slider — keep it tight to the slider below it. */
.elementor-32 .elementor-widget-text-editor + .elementor-widget-hoh_product_slider,
.elementor-158 .elementor-widget-text-editor + .elementor-widget-hoh_product_slider { margin-top: -12px; }
.elementor-32 .elementor-widget-text-editor .elementor-widget-container,
.elementor-158 .elementor-widget-text-editor .elementor-widget-container { padding: 32px 40px 0 !important; }

/* Compressed widget paddings — page feels tight & editorial, not sparse.
   Adjacent sections with different bg colors visually separate themselves,
   so we don't need huge inner padding to read as distinct sections. */
.elementor-32 .hoh-slider-sec,
.elementor-158 .hoh-slider-sec { padding: 20px 0 40px; }
.elementor-32 .hoh-feature-sec,
.elementor-158 .hoh-feature-sec { padding: 48px 0 56px; }
.elementor-32 .hoh-stories,
.elementor-158 .hoh-stories { padding: 48px 0 56px; }

/* Tighter heading-to-content spacing inside each section */
.elementor-32 .hoh-feature-head--editorial,
.elementor-158 .hoh-feature-head--editorial { margin-bottom: 32px; }
.elementor-32 .hoh-feature-head,
.elementor-158 .hoh-feature-head { margin-bottom: 28px; }
.elementor-32 .hoh-slider-head,
.elementor-158 .hoh-slider-head { margin-bottom: 18px; }
.elementor-32 .hoh-stories-head .hoh-kicker,
.elementor-158 .hoh-stories-head .hoh-kicker { margin-bottom: 10px; }

/* Slightly smaller feature card aspect-ratio so the 3-card grid doesn't dwarf
   the rest of the page. 4:5 → 3:4 saves ~80px per card row. */
.elementor-32 .hoh-feature-card .hoh-feature-img,
.elementor-158 .hoh-feature-card .hoh-feature-img { aspect-ratio: 3/4; }

/* The shop currently has 3 published products. Lay them out as 3 columns
   (slider, featured grid, stories) so all 3 visible per row, no half-empty
   second row, no scroll-required carousel. Keep theme-level CSS untouched
   so /shop and other pages stay 2-col responsive. */
@media (min-width: 900px) {
    .elementor-32 .hoh-feature-grid,
    .elementor-158 .hoh-feature-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1200px; }
    .elementor-32 .hoh-slide,
    .elementor-158 .hoh-slide { width: calc((100% - 64px) / 3); }
    .elementor-32 .hoh-stories-rail .hoh-story-card,
    .elementor-158 .hoh-stories-rail .hoh-story-card { width: calc((100% - 64px) / 3); flex-shrink: 0; }
    /* When the carousel fits everything, the arrows aren't doing anything —
       fade them out so they don't dangle visually. */
    .elementor-32 .hoh-story-arrow,
    .elementor-32 .hoh-slider-progress,
    .elementor-158 .hoh-story-arrow,
    .elementor-158 .hoh-slider-progress { display: none; }
}
/* Tablet 700–899px: also force 3-up on /collection so the layout reads as a
   trio everywhere, not just desktop. Tighter gap + smaller meta keeps fit. */
@media (min-width: 700px) and (max-width: 899px) {
    .elementor-158 .hoh-feature-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: none; padding: 0 16px; }
    .elementor-158 .hoh-slide { width: calc((100% - 32px) / 3); }
    .elementor-158 .hoh-stories-rail .hoh-story-card { width: calc((100% - 32px) / 3); flex-shrink: 0; }
    .elementor-158 .hoh-story-arrow,
    .elementor-158 .hoh-slider-progress { display: none; }
    .elementor-158 .hoh-feature-card h3 { font-size: 15px; }
    .elementor-158 .hoh-feature-card .price { font-size: 13px; }
    .elementor-158 .hoh-feature-card .hoh-btn { padding: 10px 14px; font-size: 11px; }
}

/* With 3-per-row cards (smaller width), the slider + featured-grid card meta
   rows can't fit title and price side-by-side without truncating one or wrap-
   stacking the title's words vertically. Match the Stories card layout: title
   on its own row, price (and any link/button) on a row below. */
.elementor-32 .hoh-slide-meta,
.elementor-158 .hoh-slide-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.elementor-32 .hoh-slide-meta h3,
.elementor-158 .hoh-slide-meta h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    max-width: 100%;
}
.elementor-32 .hoh-slide-meta .price,
.elementor-158 .hoh-slide-meta .price { font-size: 14px; color: rgba(26,26,26,.7); }

.elementor-32 .hoh-feature-card .hoh-feature-meta,
.elementor-158 .hoh-feature-card .hoh-feature-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.elementor-32 .hoh-feature-card .hoh-feature-meta > div,
.elementor-158 .hoh-feature-card .hoh-feature-meta > div { width: 100%; }
.elementor-32 .hoh-feature-card h3,
.elementor-158 .hoh-feature-card h3 {
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.3;
    font-weight: 500;
}
.elementor-32 .hoh-feature-card .price,
.elementor-158 .hoh-feature-card .price {
    font-size: 14px;
    color: rgba(26,26,26,.7);
    white-space: nowrap;
}
.elementor-32 .hoh-feature-card .hoh-btn,
.elementor-158 .hoh-feature-card .hoh-btn { margin-top: 10px; }

/* ============================================================
   HoH Product Edition — editorial single-product spotlight
   ------------------------------------------------------------
   Mobile = stacked; 720px+ = side-by-side. The image-right variant
   simply reverses the grid order. Numbered index sits on the image.
   ============================================================ */
.hoh-edition { padding: 56px 0; background: var(--hoh-cream); }
.hoh-edition--cream-2 { background: var(--hoh-cream-2); }
.hoh-edition--charcoal { background: var(--hoh-charcoal); color: var(--hoh-cream); }
.hoh-edition--charcoal .hoh-edition-num { color: rgba(248,244,236,.85); mix-blend-mode: normal; }
.hoh-edition--charcoal .hoh-edition-kicker { color: rgba(248,244,236,.55); }
.hoh-edition--charcoal .hoh-edition-title a { color: var(--hoh-cream); }
.hoh-edition--charcoal .hoh-edition-desc { color: rgba(248,244,236,.78); }
.hoh-edition--charcoal .hoh-edition-notes dt { color: rgba(248,244,236,.5); }
.hoh-edition--charcoal .hoh-edition-notes dd { color: var(--hoh-cream); }
.hoh-edition--charcoal .hoh-edition-notes > div { border-color: rgba(248,244,236,.18); }
.hoh-edition--charcoal .hoh-edition-price { color: var(--hoh-cream); }
.hoh-edition--charcoal .hoh-btn--ghost.hoh-edition-cta { color: var(--hoh-cream) !important; border-color: rgba(248,244,236,.45); }
.hoh-edition--charcoal .hoh-btn--ghost.hoh-edition-cta:hover { background: rgba(248,244,236,.08); }

.hoh-edition-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: center;
}
@media (min-width: 720px) {
    .hoh-edition-grid { grid-template-columns: 1fr 1fr; gap: 56px; padding: 0 40px; }
    .hoh-edition--image-right .hoh-edition-grid > .hoh-edition-media { order: 2; }
    .hoh-edition--image-right .hoh-edition-grid > .hoh-edition-meta  { order: 1; }
}
@media (min-width: 1100px) {
    .hoh-edition-grid { gap: 80px; padding: 0 64px; }
}

.hoh-edition-media {
    position: relative;
    display: block;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--hoh-cream-2);
}
.hoh-edition-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.hoh-edition-media:hover img { transform: scale(1.04); }

.hoh-edition-num {
    position: absolute;
    top: 14px; left: 18px;
    font-family: var(--hoh-font-head);
    font-size: clamp(56px, 8vw, 96px);
    line-height: .9;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,.92);
    mix-blend-mode: difference;
    letter-spacing: -.02em;
    pointer-events: none;
}

.hoh-edition-meta { min-width: 0; }
.hoh-edition-kicker {
    font-family: var(--hoh-font-body, "Inter", sans-serif);
    font-size: 11px;
    letter-spacing: .22em;
    color: rgba(26,26,26,.55);
    margin: 0 0 14px;
    text-transform: uppercase;
}
.hoh-edition-title {
    font-family: var(--hoh-font-head);
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.05;
    font-weight: 400;
    margin: 0 0 18px;
    letter-spacing: -.01em;
}
.hoh-edition-title a {
    color: var(--hoh-charcoal);
    text-decoration: none;
    transition: color .25s ease;
}
.hoh-edition-title a:hover { color: var(--hoh-wine, #6b2233); }

.hoh-edition-desc {
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.7;
    color: rgba(26,26,26,.72);
    margin: 0 0 28px;
    max-width: 46ch;
}

.hoh-edition-notes {
    margin: 0 0 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid rgba(26,26,26,.13);
}
.hoh-edition-notes > div {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid rgba(26,26,26,.13);
}
.hoh-edition-notes dt {
    font-family: var(--hoh-font-body, "Inter", sans-serif);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(26,26,26,.5);
    margin: 0;
}
.hoh-edition-notes dd {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(26,26,26,.85);
    font-style: italic;
}

.hoh-edition-foot {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hoh-edition-price {
    font-family: var(--hoh-font-head);
    font-size: clamp(16px, 1.3vw, 19px);
    color: rgba(26,26,26,.85);
}
.hoh-btn.hoh-edition-cta {
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 11px;
    padding: 14px 22px;
}

/* ============================================================
   /collection — page-level rhythm refinements
   ------------------------------------------------------------
   Distinct breathing room + an editorial manifesto block.
   ============================================================ */
.elementor-158 .hoh-edition + .hoh-edition { padding-top: 0; }
.elementor-158 .col-manifesto {
    padding: 80px 24px;
    text-align: center;
    background: var(--hoh-cream);
}
.elementor-158 .col-manifesto-inner {
    max-width: 620px;
    margin: 0 auto;
}
.elementor-158 .col-manifesto p.kicker {
    font-family: var(--hoh-font-body, "Inter", sans-serif);
    font-size: 11px;
    letter-spacing: .26em;
    color: rgba(26,26,26,.55);
    text-transform: uppercase;
    margin: 0 0 18px;
}
.elementor-158 .col-manifesto h2 {
    font-family: var(--hoh-font-head);
    font-size: clamp(22px, 2.6vw, 32px);
    line-height: 1.35;
    font-weight: 400;
    color: var(--hoh-charcoal);
    margin: 0;
    letter-spacing: -.005em;
}
.elementor-158 .col-manifesto h2 em {
    font-style: italic;
    color: var(--hoh-wine, #6b2233);
}
@media (min-width: 900px) {
    .elementor-158 .col-manifesto { padding: 112px 24px 96px; }
}

/* ============================================================
   /collection — hero override: left-aligned editorial
   ------------------------------------------------------------
   The shared .hoh-hero is centered. On /collection we want a
   Aesop/Diptyque-style left-aligned hero with the text anchored
   to the lower-left of the frame — gives the bottle/landscape
   room to breathe on the right.
   ============================================================ */
.elementor-158 .hoh-hero::after {
    background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.08) 35%, rgba(0,0,0,.55) 100%);
}
.elementor-158 .hoh-hero-content {
    justify-content: flex-start;
    align-items: flex-end;
    text-align: left;
    padding: 0 0 80px;
}
.elementor-158 .hoh-hero-inner {
    margin: 0;
    max-width: 640px;
    padding: 0 40px;
}
.elementor-158 .hoh-hero h1 {
    font-weight: 400;
    font-size: clamp(40px, 5.6vw, 76px);
    letter-spacing: -.015em;
    line-height: 1;
    margin-bottom: 24px;
}
.elementor-158 .hoh-hero h1 em { font-style: italic; opacity: 1; }
.elementor-158 .hoh-hero p {
    margin: 0 0 32px;
    max-width: 420px;
    font-size: 15px;
    line-height: 1.65;
    opacity: .85;
}
.elementor-158 .hoh-hero-cta {
    justify-content: flex-start;
    gap: 32px;
}
@media (max-width: 720px) {
    .elementor-158 .hoh-hero-content { padding: 0 0 56px; }
    .elementor-158 .hoh-hero-inner { padding: 0 22px; }
}
/* Mobile hero on /collection: undo the homepage's hardcoded Unsplash fallback
   so the chosen Misty Banjaran image actually shows on phones (filling the hero
   via absolute-inset cover, not its natural aspect ratio). */
@media (max-width: 640px) {
    .elementor-158 .hoh-hero { background-image: none !important; }
    .elementor-158 .hoh-hero > img {
        display: block !important;
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
}

/* ============================================================
   /collection — sticky edition nav (replaces Trinity slider)
   ------------------------------------------------------------
   Three columns linking to each Edition section below. Numbered,
   editorial, sticky under the header on scroll so users always
   know where they are in the trio.
   ============================================================ */
/* Sticky nav — JS sets `top` dynamically to header.bottom (see main.js
   dockNav), so we omit a static `top` here and let the inline style win.
   The 80px fallback keeps it sane if JS fails. */
.elementor-158 .col-editions-nav {
    position: sticky;
    top: 80px;
    z-index: 30;
    background: var(--hoh-cream);
    border-top: 1px solid rgba(26,26,26,.08);
    border-bottom: 1px solid rgba(26,26,26,.08);
}
/* Anchor scroll-margin = header + nav heights + a few px overlap so the
   section flushes with the nav's bottom edge rather than leaving a strip
   of the previous section visible. */
.elementor-158 .elementor-element-col_ed1_sec,
.elementor-158 .elementor-element-col_ed2_sec,
.elementor-158 .elementor-element-col_ed3_sec { scroll-margin-top: 152px; }
@media (max-width: 720px) {
    .elementor-158 .elementor-element-col_ed1_sec,
    .elementor-158 .elementor-element-col_ed2_sec,
    .elementor-158 .elementor-element-col_ed3_sec { scroll-margin-top: 144px; }
}
.elementor-158 .col-editions-nav-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}
.elementor-158 .col-editions-nav a {
    display: block;
    padding: 22px 18px 20px;
    text-decoration: none;
    color: var(--hoh-charcoal);
    border-left: 1px solid rgba(26,26,26,.08);
    transition: background .25s ease;
}
.elementor-158 .col-editions-nav a:first-child { border-left: 0; }
.elementor-158 .col-editions-nav a:hover { background: var(--hoh-cream-2); }
.elementor-158 .col-editions-nav .num {
    display: block;
    font-family: var(--hoh-font-head);
    font-style: italic;
    font-weight: 300;
    font-size: 22px;
    color: var(--hoh-wine, #6b2233);
    line-height: 1;
    margin-bottom: 6px;
}
.elementor-158 .col-editions-nav .name {
    display: block;
    font-family: var(--hoh-font-head);
    font-size: clamp(15px, 1.3vw, 18px);
    font-weight: 400;
    letter-spacing: -.005em;
    line-height: 1.2;
}
.elementor-158 .col-editions-nav .label {
    display: block;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(26,26,26,.5);
    margin-top: 4px;
}
@media (max-width: 640px) {
    .elementor-158 .col-editions-nav .name { font-size: 13px; }
    .elementor-158 .col-editions-nav .label { display: none; }
    .elementor-158 .col-editions-nav a { padding: 16px 10px 14px; }
    .elementor-158 .col-editions-nav .num { font-size: 18px; }
}

/* ============================================================
   Single product page — editorial redesign
   ------------------------------------------------------------
   Sticky gallery left, scrolling meta right (desktop); stacked
   (mobile). Reuses .hoh-edition-* typography from /collection.
   ============================================================ */
body.woocommerce .hoh-main.hoh-wc > .hoh-container { max-width: none; padding: 0; }
body.single-product .hoh-main { padding-top: 0; }

/* WC's woocommerce_breadcrumb output sits before the product. Style it editorial. */
body.single-product .woocommerce-breadcrumb {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(26,26,26,.55);
    padding: 24px 40px;
    margin: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
body.single-product .woocommerce-breadcrumb a { color: rgba(26,26,26,.7); text-decoration: none; }
body.single-product .woocommerce-breadcrumb a:hover { color: var(--hoh-charcoal); }
@media (max-width: 720px) {
    body.single-product .woocommerce-breadcrumb { padding: 16px 22px; font-size: 10px; }
}

.hoh-product {
    display: block !important;
    grid-template-columns: none !important;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 96px;
}
@media (max-width: 720px) { .hoh-product { padding: 0 0 64px; } }

.hoh-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}
/* Reset WC default `div.images { width: 48%; float: left }` and
   `div.summary { width: 48%; float: right }` so the grid cells fill their
   columns instead of collapsing to half. */
.woocommerce div.product .hoh-product-grid .hoh-product-gallery,
.woocommerce div.product .hoh-product-grid .hoh-product-meta,
.hoh-product-grid .hoh-product-gallery,
.hoh-product-grid .hoh-product-meta {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}
@media (min-width: 900px) {
    .hoh-product-grid { grid-template-columns: 1.15fr 1fr; gap: 72px; }
    .hoh-product-gallery { position: sticky; top: 110px; }
}
@media (min-width: 1200px) {
    .hoh-product-grid { gap: 96px; }
}

/* WC product gallery — full-bleed image, no thumbnails clutter */
.hoh-product-gallery .woocommerce-product-gallery {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}
.hoh-product-gallery .woocommerce-product-gallery__image img {
    width: 100% !important;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    background: var(--hoh-cream-2);
}
.hoh-product-gallery .flex-control-thumbs {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.hoh-product-gallery .flex-control-thumbs li {
    width: calc((100% - 24px) / 4);
}
.hoh-product-gallery .flex-control-thumbs img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    background: var(--hoh-cream-2);
    opacity: .65;
    cursor: pointer;
    transition: opacity .25s ease;
}
.hoh-product-gallery .flex-control-thumbs img:hover,
.hoh-product-gallery .flex-control-thumbs img.flex-active { opacity: 1; }
.hoh-product-gallery .onsale {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 2;
    background: var(--hoh-charcoal);
    color: var(--hoh-cream);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 0;
    line-height: 1;
}
@media (max-width: 720px) {
    .hoh-product-gallery { padding: 0; }
    .hoh-product-gallery .woocommerce-product-gallery__image img { aspect-ratio: 1/1; }
}

.hoh-product-meta { padding: 0 0 0; min-width: 0; }
@media (max-width: 720px) {
    .hoh-product-meta { padding: 8px 22px 0; }
}

.hoh-product-kicker {
    margin: 0 0 14px;
    font-family: var(--hoh-font-body, "Inter", sans-serif);
    font-size: 11px;
    letter-spacing: .22em;
    color: rgba(26,26,26,.55);
    text-transform: uppercase;
}
.hoh-product-title {
    font-family: var(--hoh-font-head);
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -.015em;
    color: var(--hoh-charcoal);
    margin: 0 0 18px;
}
.hoh-product-price {
    font-family: var(--hoh-font-head);
    font-size: clamp(18px, 1.4vw, 22px);
    color: rgba(26,26,26,.85);
    margin: 0 0 28px;
}
.hoh-product-price .woocommerce-Price-amount { color: inherit; }
.hoh-product-price del { color: rgba(26,26,26,.45); margin-right: 10px; }
.hoh-product-price ins { background: transparent; text-decoration: none; color: var(--hoh-wine); }

.hoh-product-desc {
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.7;
    color: rgba(26,26,26,.72);
    margin: 0 0 28px;
    max-width: 50ch;
}

.hoh-product-notes { margin-bottom: 36px; }

/* WC add-to-cart form: reflow the variation table, qty, button into a clean
   editorial column. Drops WC's quirky inline styles. */
.hoh-product-cart { margin: 0 0 32px; }
.hoh-product-cart form.cart {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
}
.hoh-product-cart .variations {
    border: 0;
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}
.hoh-product-cart .variations tr { display: block; padding: 0; }
.hoh-product-cart .variations th.label,
.hoh-product-cart .variations td.label { display: block; padding: 0 0 8px; text-align: left; font-weight: 400; background: transparent; border: 0; }
.hoh-product-cart .variations th.label label,
.hoh-product-cart .variations td.label label,
.hoh-product-cart .variations .label,
.hoh-product-cart .variations label[for] {
    font-size: 11px !important;
    letter-spacing: .22em !important;
    text-transform: uppercase !important;
    color: rgba(26,26,26,.55) !important;
    font-weight: 400 !important;
    font-family: var(--hoh-font-head) !important;
}
.hoh-product-cart .variations td.value {
    display: block;
    padding: 0 0 18px;
    position: relative;
    border: 0;
    background: transparent;
}
.hoh-product-cart .variations select {
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: 1px solid rgba(26,26,26,.18);
    border-radius: 0;
    font-family: inherit;
    font-size: 14px;
    color: var(--hoh-charcoal);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%231A1A1A' stroke-width='1.2' stroke-linecap='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}
.hoh-product-cart .variations select:focus {
    outline: none;
    border-color: var(--hoh-charcoal);
}
.hoh-product-cart .reset_variations {
    display: inline-block !important;
    margin: 0;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(26,26,26,.55);
    text-decoration: underline;
    text-underline-offset: 4px;
}
.hoh-product-cart .single_variation_wrap {
    display: flex !important;
    flex-direction: column;
    gap: 14px;
}
.hoh-product-cart .single_variation .price {
    font-family: var(--hoh-font-head);
    font-size: 20px;
    color: var(--hoh-charcoal);
}
.hoh-product-cart .woocommerce-variation-availability {
    font-size: 12px;
    color: rgba(26,26,26,.6);
    letter-spacing: .04em;
}
/* Qty + add-to-cart sit on the same row. Covers BOTH:
   - Variable products: wrapper is .woocommerce-variation-add-to-cart (qty + btn inside)
   - Simple products:   qty + btn are direct children of form.cart                    */
.hoh-product-cart .woocommerce-variation-add-to-cart,
.hoh-product-cart form.cart:not(.variations_form),
.hoh-product-cart form.variations_form .woocommerce-variation-add-to-cart {
    display: flex !important;
    align-items: stretch;
    gap: 12px;
    flex-wrap: nowrap;
}
.hoh-product-cart .quantity {
    display: inline-flex !important;
    align-items: stretch;
    border: 1px solid rgba(26,26,26,.22);
    background: transparent;
    flex: 0 0 auto;
    margin: 0 !important;
}
.hoh-product-cart .quantity label { display: none; }
.hoh-product .hoh-product-cart .quantity input.qty,
.hoh-product-cart .quantity input.qty {
    width: 64px !important;
    height: 52px !important;
    padding: 0 8px !important;
    text-align: center;
    background: transparent !important;
    border: 0 !important;
    font-size: 14px;
    color: var(--hoh-charcoal);
    font-family: inherit;
    -moz-appearance: textfield;
}
.hoh-product-cart .quantity input.qty::-webkit-outer-spin-button,
.hoh-product-cart .quantity input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.hoh-product-cart .quantity input.qty:focus { outline: none; }
.hoh-product-cart .single_add_to_cart_button,
.hoh-product-cart button.single_add_to_cart_button {
    flex: 1 1 auto;
    min-width: 0;
    background: var(--hoh-charcoal) !important;
    color: var(--hoh-cream) !important;
    border: 1px solid var(--hoh-charcoal) !important;
    border-radius: 0 !important;
    padding: 16px 28px !important;
    font-size: 11px !important;
    letter-spacing: .22em !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
    text-shadow: none !important;
    box-shadow: none !important;
    height: auto;
    white-space: nowrap;
}
.hoh-product-cart .single_add_to_cart_button:hover {
    background: var(--hoh-wine, #6b2233) !important;
    border-color: var(--hoh-wine, #6b2233) !important;
    color: var(--hoh-cream) !important;
}
/* Disabled = waiting on size selection. Keep it charcoal so the section reads
   editorial, just dim it slightly so the user knows it's not yet active.    */
.hoh-product-cart .single_add_to_cart_button:disabled,
.hoh-product-cart .single_add_to_cart_button.disabled {
    opacity: .55;
    cursor: not-allowed;
    background: var(--hoh-charcoal) !important;
    color: var(--hoh-cream) !important;
    border-color: var(--hoh-charcoal) !important;
}
/* "Clear" link below the size dropdown */
.hoh-product-cart .reset_variations[style*="display: inline"],
.hoh-product-cart .reset_variations[style*="display:inline"] {
    display: inline-block !important;
    margin: 10px 0 0 !important;
    font-size: 10px !important;
    letter-spacing: .22em !important;
    text-transform: uppercase !important;
    color: rgba(26,26,26,.5) !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(26,26,26,.2);
    padding-bottom: 2px;
}
.hoh-product-cart .reset_variations:hover {
    color: var(--hoh-charcoal) !important;
    border-color: var(--hoh-charcoal) !important;
}
/* Stock status text (e.g. "10 in stock", "Out of stock") under the selector */
.hoh-product-cart .stock {
    margin: 0 0 6px;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 500;
}
.hoh-product-cart .stock.in-stock { color: #2d6a4f; }
.hoh-product-cart .stock.out-of-stock { color: #8b1e3f; }
@media (max-width: 640px) {
    .hoh-product-cart .single_add_to_cart_button {
        min-width: 0;
        padding: 16px 14px !important;
        font-size: 10px !important;
        letter-spacing: .18em !important;
    }
    .hoh-product-cart .quantity input.qty { width: 54px; }
}

.hoh-product-foot {
    border-top: 1px solid rgba(26,26,26,.13);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hoh-product-meta-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    font-size: 12px;
    color: rgba(26,26,26,.75);
}
.hoh-meta-label {
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(26,26,26,.5);
}
.hoh-meta-value { color: rgba(26,26,26,.85); }
.hoh-meta-value a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(26,26,26,.2); }
.hoh-meta-value a:hover { color: var(--hoh-wine); border-color: var(--hoh-wine); }

/* WC tabs + related products that come after the .hoh-product-grid via
   the woocommerce_after_single_product_summary hook. */
body.single-product .woocommerce-tabs {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 0 40px;
    border-top: 1px solid rgba(26,26,26,.13);
    padding-top: 48px;
}
body.single-product .woocommerce-tabs ul.tabs {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    gap: 32px;
    border-bottom: 0;
}
body.single-product .woocommerce-tabs ul.tabs::before,
body.single-product .woocommerce-tabs ul.tabs::after { display: none; }
body.single-product .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
body.single-product .woocommerce-tabs ul.tabs li a {
    padding: 8px 0;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(26,26,26,.55);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}
body.single-product .woocommerce-tabs ul.tabs li.active a {
    color: var(--hoh-charcoal);
    border-bottom-color: var(--hoh-charcoal);
}
body.single-product .woocommerce-tabs ul.tabs li a:hover {
    color: var(--hoh-charcoal);
}
body.single-product .woocommerce-tabs .panel { padding: 0; max-width: 720px; }
body.single-product .woocommerce-tabs .panel h2 { display: none; }
body.single-product .woocommerce-tabs .shop_attributes { margin: 0; border: 0; }
body.single-product .woocommerce-tabs .shop_attributes th,
body.single-product .woocommerce-tabs .shop_attributes td {
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid rgba(26,26,26,.1);
    background: none;
    font-style: normal;
}
body.single-product .woocommerce-tabs .shop_attributes th {
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(26,26,26,.5);
    width: 140px;
    font-weight: 400;
}
@media (max-width: 720px) {
    body.single-product .woocommerce-tabs { padding: 32px 22px 0; margin-top: 48px; }
    body.single-product .woocommerce-tabs ul.tabs { gap: 18px; flex-wrap: wrap; }
}

body.single-product .related.products {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 48px 40px 0;
    border-top: 1px solid rgba(26,26,26,.13);
}
body.single-product .related.products > h2 {
    font-family: var(--hoh-font-head);
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: 400;
    text-align: center;
    margin: 0 0 36px;
}
@media (max-width: 720px) {
    body.single-product .related.products { padding: 32px 22px 0; margin-top: 48px; }
}

/* ============================================================
   Cart page — empty state editorial
   ------------------------------------------------------------
   The default WC "Your cart is currently empty" notice looks
   like a generic admin info box. Make it a centered editorial
   moment with the return-to-shop button as the only action.
   ============================================================ */
body.woocommerce-cart .wc-empty-cart-message {
    max-width: 560px;
    margin: 80px auto 0;
    padding: 0 24px;
    text-align: center;
}
body.woocommerce-cart .wc-empty-cart-message .cart-empty {
    background: transparent !important;
    border: 0 !important;
    color: var(--hoh-charcoal);
    font-family: var(--hoh-font-head);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    line-height: 1.2;
    padding: 0 0 12px;
    margin: 0;
    letter-spacing: -.01em;
}
body.woocommerce-cart .wc-empty-cart-message .cart-empty::before {
    display: none !important;
}
body.woocommerce-cart .wc-empty-cart-message::after {
    content: "Let's find a scent that already knows you.";
    display: block;
    color: rgba(26,26,26,.6);
    font-size: 14px;
    line-height: 1.6;
    margin: 8px auto 40px;
    max-width: 360px;
    font-family: var(--hoh-font-body);
}
body.woocommerce-cart .return-to-shop {
    text-align: center;
    margin: 0 auto 80px;
}
body.woocommerce-cart .return-to-shop .button {
    display: inline-flex !important;
    width: auto !important;
    padding: 16px 40px;
}

/* ============================================================
   Cart page — populated state polish
   ------------------------------------------------------------
   Cart table, coupon row, totals box — editorial overrides.
   ============================================================ */
body.woocommerce-cart .woocommerce {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 24px;
}
@media (max-width: 720px) {
    body.woocommerce-cart .woocommerce { padding: 0 16px; }
}
body.woocommerce-cart table.shop_table.cart {
    border: 0;
    border-collapse: collapse;
    margin: 0 0 40px;
    border-top: 1px solid rgba(26,26,26,.13);
}
body.woocommerce-cart table.shop_table.cart th {
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(26,26,26,.55);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(26,26,26,.13);
    padding: 14px 12px;
    font-weight: 400;
    text-align: left;
}
body.woocommerce-cart table.shop_table.cart td {
    padding: 22px 12px;
    border: 0;
    border-bottom: 1px solid rgba(26,26,26,.08);
    background: transparent;
    vertical-align: middle;
}
body.woocommerce-cart table.shop_table.cart td.product-remove a.remove {
    color: rgba(26,26,26,.4) !important;
    font-size: 18px;
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent !important;
    transition: color .2s ease;
}
body.woocommerce-cart table.shop_table.cart td.product-remove a.remove:hover {
    color: var(--hoh-wine) !important;
    background: transparent !important;
}
body.woocommerce-cart table.shop_table.cart td.product-thumbnail img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    background: var(--hoh-cream-2);
}
body.woocommerce-cart table.shop_table.cart td.product-name a {
    font-family: var(--hoh-font-head);
    font-size: 17px;
    color: var(--hoh-charcoal);
    text-decoration: none;
}
body.woocommerce-cart table.shop_table.cart td.product-name a:hover { color: var(--hoh-wine); }
body.woocommerce-cart table.shop_table.cart td.product-name .variation {
    font-size: 12px;
    color: rgba(26,26,26,.55);
    margin: 4px 0 0;
}
body.woocommerce-cart table.shop_table.cart td.product-name .variation dt,
body.woocommerce-cart table.shop_table.cart td.product-name .variation dd {
    display: inline;
    margin: 0;
    padding: 0;
    font-style: normal;
}
body.woocommerce-cart table.shop_table.cart td.product-name .variation dt::after { content: ": "; }
body.woocommerce-cart table.shop_table.cart td.product-price,
body.woocommerce-cart table.shop_table.cart td.product-subtotal {
    font-family: var(--hoh-font-head);
    font-size: 15px;
    color: var(--hoh-charcoal);
}
body.woocommerce-cart table.shop_table.cart .quantity {
    display: inline-flex;
    border: 1px solid rgba(26,26,26,.2);
    width: fit-content;
}
body.woocommerce-cart table.shop_table.cart .quantity input.qty {
    width: 56px;
    padding: 10px 0;
    text-align: center;
    background: transparent;
    border: 0;
    font-size: 14px;
    color: var(--hoh-charcoal);
    -moz-appearance: textfield;
}
body.woocommerce-cart table.shop_table.cart .quantity input.qty::-webkit-outer-spin-button,
body.woocommerce-cart table.shop_table.cart .quantity input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

body.woocommerce-cart .coupon {
    display: flex;
    gap: 12px;
    align-items: stretch;
    flex-wrap: wrap;
}
body.woocommerce-cart .coupon input#coupon_code {
    flex: 1 1 240px;
    min-width: 0;
    padding: 14px 16px;
    border: 1px solid rgba(26,26,26,.2);
    border-radius: 0;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    color: var(--hoh-charcoal);
}
body.woocommerce-cart .coupon input#coupon_code:focus {
    outline: none;
    border-color: var(--hoh-charcoal);
}
body.woocommerce-cart .actions button[name="update_cart"],
body.woocommerce-cart .actions button[name="apply_coupon"] {
    flex: 0 0 auto;
}

/* Cart totals box */
body.woocommerce-cart .cart-collaterals { margin-top: 32px; }
body.woocommerce-cart .cart_totals h2 {
    font-family: var(--hoh-font-head);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 400;
    margin: 0 0 20px;
}
body.woocommerce-cart .cart_totals table {
    border: 0;
    border-collapse: collapse;
    width: 100%;
    margin: 0 0 24px;
}
body.woocommerce-cart .cart_totals table th,
body.woocommerce-cart .cart_totals table td {
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid rgba(26,26,26,.1);
    background: transparent;
}
body.woocommerce-cart .cart_totals table th {
    text-align: left;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(26,26,26,.6);
    width: 40%;
}
body.woocommerce-cart .cart_totals table td {
    text-align: right;
    font-family: var(--hoh-font-head);
    font-size: 15px;
    color: var(--hoh-charcoal);
}
body.woocommerce-cart .cart_totals .order-total td .woocommerce-Price-amount {
    font-size: 24px;
}
body.woocommerce-cart .wc-proceed-to-checkout {
    padding: 8px 0 0;
}
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 18px 32px;
    font-size: 12px;
}

@media (max-width: 720px) {
    body.woocommerce-cart table.shop_table.cart thead { display: none; }
    body.woocommerce-cart table.shop_table.cart,
    body.woocommerce-cart table.shop_table.cart tbody,
    body.woocommerce-cart table.shop_table.cart tr,
    body.woocommerce-cart table.shop_table.cart td { display: block; width: 100%; }
    body.woocommerce-cart table.shop_table.cart tr {
        position: relative;
        padding: 20px 0;
        border-bottom: 1px solid rgba(26,26,26,.13);
    }
    body.woocommerce-cart table.shop_table.cart td {
        padding: 6px 0;
        border: 0;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }
    body.woocommerce-cart table.shop_table.cart td.product-remove {
        position: absolute;
        top: 16px;
        right: 0;
        padding: 0;
    }
    body.woocommerce-cart table.shop_table.cart td.product-thumbnail {
        display: block;
        padding: 0 0 12px;
    }
    body.woocommerce-cart table.shop_table.cart td.product-thumbnail img {
        width: 96px;
        height: 120px;
    }
    body.woocommerce-cart table.shop_table.cart td::before {
        content: attr(data-title);
        font-size: 10px;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: rgba(26,26,26,.55);
    }
    body.woocommerce-cart table.shop_table.cart td.product-name::before,
    body.woocommerce-cart table.shop_table.cart td.product-thumbnail::before,
    body.woocommerce-cart table.shop_table.cart td.product-remove::before { display: none; }
}

/* ============================================================
   Shop page — loop button + sale flash + result toolbar polish
   ------------------------------------------------------------
   The base shop CSS exists earlier (around line 395). This adds
   editorial polish to the loop "Add to cart" / "Select options"
   button, the sale flash, and the result-count formatting.
   ============================================================ */
.woocommerce ul.products li.product .button.add_to_cart_button,
.woocommerce ul.products li.product .button.product_type_variable {
    padding: 11px 22px;
    font-size: 10px;
    letter-spacing: .22em;
    margin-top: 14px;
    width: 100%;
    box-sizing: border-box;
    background: transparent !important;
    color: var(--hoh-charcoal) !important;
    border: 1px solid rgba(26,26,26,.25) !important;
}
.woocommerce ul.products li.product .button.add_to_cart_button:hover,
.woocommerce ul.products li.product .button.product_type_variable:hover {
    background: var(--hoh-charcoal) !important;
    color: var(--hoh-cream) !important;
    border-color: var(--hoh-charcoal) !important;
}
.woocommerce ul.products li.product .price ins {
    background: transparent;
    text-decoration: none;
    color: var(--hoh-charcoal);
    font-weight: 400;
    margin-left: 8px;
}
.woocommerce ul.products li.product .price del {
    text-decoration-thickness: 1px;
    margin-right: 0;
}
/* WC adds "From:" prefix on variable products — let it sit subtle */
.woocommerce ul.products li.product .price .from,
.woocommerce ul.products li.product .price .woocommerce-Price-amount {
    font-family: var(--hoh-font-head);
}
