/* ==========================================================================
   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%; height: 100%; object-fit: cover; 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%; height: 100%; object-fit: cover; 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%; height: 100%; object-fit: cover; 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-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; } }

/* 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; }

/* 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; }
