/* =========================================================================
   Frame Haus — main stylesheet
   ========================================================================= */

/* ---------- Layout primitives ---------- */
.fh-container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.fh-content { min-height: 40vh; }
.fh-eyebrow { display: inline-block; font-size: 12px; letter-spacing: .22em; font-weight: 600; text-transform: uppercase; color: var(--fh-muted); margin-bottom: 14px; }
.fh-eyebrow--gold { color: var(--fh-gold); }

.fh-section-head { margin-bottom: 44px; }
.fh-section-head--center { text-align: center; }
.fh-section-head h2 { font-size: clamp(28px, 4vw, 44px); }

/* ---------- Buttons ---------- */
.fh-btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px; font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; border: 1.5px solid transparent; border-radius: 2px; cursor: pointer; transition: all .25s ease; line-height: 1; }
.fh-btn .fh-icon { transition: transform .25s ease; }
.fh-btn:hover .fh-icon { transform: translateX(4px); }
.fh-btn--solid { background: var(--fh-ink); color: #fff; }
.fh-btn--solid:hover { background: var(--fh-charcoal); }
.fh-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.fh-btn--ghost:hover { background: #fff; color: var(--fh-ink); }
.fh-btn--outline { background: transparent; color: var(--fh-ink); border-color: var(--fh-ink); }
.fh-btn--outline:hover { background: var(--fh-ink); color: #fff; }
.fh-btn--gold { background: var(--fh-gold); color: var(--fh-ink); }
.fh-btn--gold:hover { filter: brightness(1.07); }

/* ---------- Announcement bar ---------- */
.fh-announce { background: #000; color: #fff; text-align: center; }
.fh-announce p { margin: 0; padding: 9px 0; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; }

/* =========================================================================
   Header
   ========================================================================= */
.fh-header { position: sticky; top: 0; z-index: 60; background: var(--fh-ink); color: #fff; }
.fh-header__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; height: 76px; }
.fh-header__brand { justify-self: start; }
.fh-logo__name { font-family: 'Archivo', sans-serif; font-weight: 800; letter-spacing: .26em; font-size: 20px; color: #fff; text-transform: uppercase; }
.fh-header .custom-logo { max-height: 44px; width: auto; }

.fh-nav { justify-self: center; }
.fh-nav-menu { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.fh-nav-menu li { position: relative; }
.fh-nav-link { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; color: rgba(255,255,255,.86); padding: 28px 0; display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
.fh-nav-link:hover { color: #fff; }
.fh-caret { width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-bottom: 3px; }

.fh-sub-menu { position: absolute; top: 100%; left: 0; min-width: 200px; background: #fff; color: var(--fh-ink); list-style: none; margin: 0; padding: 10px 0; box-shadow: 0 18px 40px rgba(0,0,0,.16); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s ease; z-index: 70; }
.fh-nav-menu li:hover > .fh-sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.fh-sub-menu .fh-nav-link { padding: 10px 20px; color: var(--fh-text); display: block; }
.fh-sub-menu .fh-nav-link:hover { background: var(--fh-cream); color: var(--fh-ink); }

.fh-header__actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.fh-action { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; color: #fff; background: transparent; border: 0; cursor: pointer; border-radius: 50%; transition: background .2s; }
.fh-action:hover { background: rgba(255,255,255,.1); }
.fh-cart-count { position: absolute; top: 2px; right: 0; min-width: 18px; height: 18px; padding: 0 5px; background: var(--fh-gold); color: #000; font-size: 11px; font-weight: 700; border-radius: 9px; display: flex; align-items: center; justify-content: center; }

.fh-burger { display: none; background: transparent; border: 0; color: #fff; cursor: pointer; }

/* Search bar dropdown */
.fh-search-bar { background: var(--fh-ink-soft); border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; }
.fh-search-bar[hidden] { display: none; }

/* Mobile drawer */
.fh-mobile-drawer { position: fixed; inset: 0 30% 0 0; background: #fff; z-index: 90; padding: 20px; transform: translateX(-100%); transition: transform .3s ease; overflow-y: auto; box-shadow: 0 0 60px rgba(0,0,0,.3); }
.fh-mobile-drawer.is-open { transform: translateX(0); }
.fh-mobile-drawer[hidden] { display: block; }
.fh-mobile-drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-family: 'Archivo'; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.fh-mobile-drawer__head .fh-action { color: var(--fh-ink); }
.fh-mobile-menu, .fh-mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.fh-mobile-menu a { display: block; padding: 13px 4px; border-bottom: 1px solid var(--fh-line); text-transform: uppercase; font-size: 14px; letter-spacing: .08em; }
.fh-mobile-menu .fh-sub-menu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; padding-left: 16px; }

/* =========================================================================
   Hero
   ========================================================================= */
.fh-hero { position: relative; background: var(--fh-ink); color: #fff; background-image: linear-gradient(90deg, rgba(15,15,15,.85) 0%, rgba(15,15,15,.35) 55%, rgba(15,15,15,.1) 100%), var(--fh-hero-img); background-size: cover; background-position: center; }
.fh-hero__inner { min-height: 560px; display: flex; align-items: center; }
.fh-hero__content { max-width: 560px; padding: 80px 0; }
.fh-hero__title { font-size: clamp(40px, 6.5vw, 76px); font-weight: 800; letter-spacing: -.01em; margin-bottom: 22px; color: #fff; }
.fh-hero__text { font-size: 18px; color: rgba(255,255,255,.82); margin-bottom: 34px; max-width: 420px; }
.fh-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.fh-hero .fh-eyebrow { color: rgba(255,255,255,.7); }

/* =========================================================================
   Feature strip
   ========================================================================= */
.fh-features { background: var(--fh-ink-soft); color: #fff; }
.fh-features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 26px 0; }
.fh-feature { display: flex; align-items: center; gap: 14px; }
.fh-feature .fh-icon { color: var(--fh-gold); flex-shrink: 0; }
.fh-feature strong { display: block; font-family: 'Archivo'; font-size: 14px; letter-spacing: .04em; }
.fh-feature span { font-size: 12px; color: rgba(255,255,255,.6); }

/* =========================================================================
   Press / as seen in
   ========================================================================= */
.fh-press { background: #000; color: #fff; padding: 34px 0; }
.fh-press__label { text-align: center; font-size: 11px; letter-spacing: .25em; color: rgba(255,255,255,.5); margin: 0 0 18px; }
.fh-press__logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 48px; opacity: .8; }
.fh-press__logos span { font-family: 'Archivo'; font-weight: 700; font-size: 22px; letter-spacing: .02em; color: rgba(255,255,255,.85); }

/* =========================================================================
   Collections
   ========================================================================= */
.fh-collections { padding: 80px 0; background: #fff; }
.fh-collections__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fh-collection-card { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: 2px; background: var(--fh-charcoal) var(--fh-card-img) center/cover no-repeat; display: flex; align-items: flex-end; }
.fh-collection-card--demo { background-image: linear-gradient(160deg, #3a3a3a, #1a1a1a); }
.fh-collection-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.75) 100%); transition: background .3s; }
.fh-collection-card:hover .fh-collection-card__overlay { background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.8) 100%); }
.fh-collection-card__body { position: relative; z-index: 2; padding: 22px; color: #fff; }
.fh-collection-card__name { display: block; font-family: 'Archivo'; font-weight: 700; font-size: 18px; letter-spacing: .06em; text-transform: uppercase; }
.fh-collection-card__shop { display: inline-block; margin-top: 4px; font-size: 11px; letter-spacing: .2em; color: var(--fh-gold); }
.fh-collections__more { text-align: center; margin-top: 44px; }

/* =========================================================================
   Product rows (best sellers / new arrivals)
   ========================================================================= */
.fh-row { padding: 80px 0; }
.fh-row--new { background: var(--fh-ink); color: #fff; }
.fh-row__inner { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: center; }
.fh-row__inner--reverse { grid-template-columns: 1fr 320px; }
.fh-row__inner--reverse .fh-row__aside { order: 2; }
.fh-row__inner--reverse .fh-row__products { order: 1; }
.fh-row__title { font-size: clamp(34px, 4.4vw, 54px); line-height: .98; }
.fh-row--new .fh-row__title { color: #fff; }
.fh-row__aside p { color: var(--fh-muted); margin-bottom: 26px; max-width: 280px; }
.fh-row--new .fh-row__aside p { color: rgba(255,255,255,.66); }

/* =========================================================================
   Product grid / cards
   ========================================================================= */
.fh-product-grid, ul.products { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
/* Override WooCommerce's float/percentage widths so cards fill the grid cell */
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product, .fh-product-grid li.product { width: auto !important; margin: 0 !important; float: none !important; clear: none !important; }
.fh-row__products .fh-product-grid { grid-template-columns: repeat(3, 1fr); }
.fh-row__inner--reverse .fh-product-grid { grid-template-columns: repeat(4, 1fr); }

.fh-product-card { position: relative; }
.fh-product-card__media { position: relative; display: block; aspect-ratio: 3/4; overflow: hidden; background: var(--fh-sand); border-radius: 2px; margin-bottom: 14px; }
.fh-product-card--demo .fh-product-card__media { background: linear-gradient(160deg, #cfc6b6, #b6ab97); }
.fh-product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.fh-product-card:hover .fh-product-card__media img { transform: scale(1.05); }

.fh-card-badges { position: absolute; top: 12px; left: 12px; z-index: 3; display: flex; flex-direction: column; gap: 6px; }
.fh-badge { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 9px; border-radius: 2px; }
.fh-badge--sale { background: #b4452f; color: #fff; }
.fh-badge--best { background: var(--fh-ink); color: #fff; }

.fh-card-heart { position: absolute; top: 10px; right: 10px; z-index: 3; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.92); border: 0; color: var(--fh-ink); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; }
.fh-card-heart:hover { background: #fff; color: var(--fh-gold); }
.fh-card-heart.is-active { color: #b4452f; }

.fh-product-card__hover { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 3; opacity: 0; transform: translateY(10px); transition: all .25s ease; }
.fh-product-card__media:hover .fh-product-card__hover { opacity: 1; transform: translateY(0); }
.fh-product-card__hover .button { display: block; width: 100%; text-align: center; background: var(--fh-ink); color: #fff; padding: 12px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; border-radius: 2px; }
.fh-product-card__hover .button:hover { background: var(--fh-gold); color: var(--fh-ink); }

.fh-product-card .woocommerce-loop-product__title, .fh-product-card h3 { font-family: 'Jost'; font-weight: 500; font-size: 15px; color: var(--fh-text); margin: 0 0 4px; }
.fh-row--new .fh-product-card .woocommerce-loop-product__title { color: #fff; }
.fh-product-card .price { font-family: 'Archivo'; font-weight: 600; font-size: 15px; color: var(--fh-ink); }
.fh-row--new .fh-product-card .price { color: var(--fh-gold); }
.fh-product-card .price del { color: var(--fh-muted); font-weight: 400; margin-right: 6px; }
.fh-product-card .star-rating { font-size: 12px; margin: 2px 0; color: var(--fh-gold); }

/* =========================================================================
   Image placeholders (swap for real photos any time)
   ========================================================================= */
.fh-ph { position: relative; background-size: cover; background-position: center; border-radius: 4px; overflow: hidden; }
.fh-ph::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(0,0,0,.12)); }
.fh-ph__tag { position: absolute; left: 14px; bottom: 14px; z-index: 2; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,.45); padding: 6px 12px; border-radius: 2px; backdrop-filter: blur(2px); }
.fh-ph--frame  { background-image: linear-gradient(135deg, #2b2723, #14110d 70%); }
.fh-ph--canvas { background-image: linear-gradient(150deg, #efe7d8, #cdbfa6); }
.fh-ph--corner { background-image: linear-gradient(150deg, #5a4632, #2c2017); }
.fh-ph--leaf   { background-image: linear-gradient(150deg, #5d7a4f, #243a22); }

/* Serif display for premium headings */
.fh-serif { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; letter-spacing: 0; }

/* =========================================================================
   Quality section
   ========================================================================= */
.fh-quality { background: var(--fh-ink); color: #fff; }

/* Top — white panel with full-bleed image on the right */
.fh-quality__top { background: #fff; color: var(--fh-ink); display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.fh-quality__intro { align-self: center; max-width: 520px; margin-left: auto; padding: 64px clamp(40px, 4vw, 64px) 64px 24px; }
.fh-quality__intro .fh-eyebrow { letter-spacing: .26em; }
.fh-quality__intro h2 { color: var(--fh-ink); font-size: clamp(34px, 3.6vw, 52px); line-height: 1.06; margin-bottom: 20px; text-wrap: balance; }
.fh-quality__intro p { color: #5d574c; font-size: 15.5px; line-height: 1.7; max-width: 440px; margin-bottom: 28px; }
.fh-quality__feature { min-height: 440px; border-radius: 0; }

/* Dark band with three cards separated by hairlines */
.fh-quality__band { background: var(--fh-ink); padding: 80px 0 72px; }
.fh-quality__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.fh-quality-card { padding: 0 46px; }
.fh-quality-card:not(:first-child) { border-left: 1px solid rgba(255,255,255,.12); }
.fh-quality-card__head { display: flex; align-items: center; gap: 20px; margin-bottom: 18px; }
.fh-quality-card__head .fh-icon { color: var(--fh-gold); flex-shrink: 0; }
.fh-quality-card h3 { color: #fff; font-size: 30px; line-height: 1.04; margin: 0; }
.fh-quality-card p { color: rgba(255,255,255,.62); font-size: 14.5px; line-height: 1.7; margin: 0 0 26px; }
.fh-quality-card__img { aspect-ratio: 3/2; width: 100%; border-radius: 10px; }

/* Bottom seals row with vertical dividers */
.fh-quality__seals { list-style: none; margin: 62px 0 0; padding: 38px 0 0; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: center; gap: 0; }
.fh-quality__seals li { display: flex; align-items: center; gap: 12px; padding: 4px 42px; font-family: 'Archivo'; font-weight: 600; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.78); }
.fh-quality__seals li:not(:last-child) { border-right: 1px solid rgba(255,255,255,.14); }
.fh-quality__seals .fh-icon { color: var(--fh-gold); }

/* =========================================================================
   Reviews
   ========================================================================= */
.fh-reviews { padding: 84px 0; background: #fff; }
.fh-stars { display: inline-flex; color: var(--fh-gold); }
.fh-stars .fh-icon { fill: var(--fh-gold); stroke: var(--fh-gold); }
.fh-section-head__sub { color: var(--fh-muted); font-size: 16px; margin-top: 10px; }

/* Compact rating + assurance bar */
.fh-reviews__bar { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 22px 52px; margin-bottom: 52px; }
.fh-reviews__rating-compact { display: inline-flex; align-items: center; gap: 10px; }
.fh-reviews__rating-compact strong { font-family: 'Archivo'; font-size: 30px; line-height: 1; }
.fh-reviews__rating-compact small { color: var(--fh-muted); font-size: 13px; }
.fh-reviews__assurance { list-style: none; margin: 0; padding: 0 0 0 52px; border-left: 1px solid var(--fh-line); display: flex; flex-wrap: wrap; gap: 36px; }
.fh-reviews__assurance li { display: flex; align-items: center; gap: 12px; }
.fh-reviews__assurance .fh-icon { color: var(--fh-gold); flex-shrink: 0; }
.fh-reviews__assurance span { display: flex; flex-direction: column; }
.fh-reviews__assurance strong { font-size: 14px; color: var(--fh-ink); }
.fh-reviews__assurance small { font-size: 12px; color: var(--fh-muted); }

/* Summary: scorecard + gallery */
.fh-reviews__summary { display: grid; grid-template-columns: 380px 1fr; gap: 40px; margin-bottom: 44px; align-items: start; }
.fh-reviews__bignum { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.fh-reviews__bignum strong { font-family: 'Archivo'; font-size: 64px; line-height: .85; }
.fh-reviews__bignum .fh-stars { display: block; margin-bottom: 5px; }
.fh-reviews__bignum small { color: var(--fh-muted); font-size: 13px; }

.fh-histogram { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 11px; }
.fh-histogram li { display: grid; grid-template-columns: 52px 1fr 44px; align-items: center; gap: 12px; }
.fh-histogram__label { font-size: 13px; color: var(--fh-muted); white-space: nowrap; }
.fh-histogram__bar { height: 7px; background: #ececec; border-radius: 5px; overflow: hidden; }
.fh-histogram__bar span { display: block; height: 100%; background: var(--fh-ink); border-radius: 5px; }
.fh-histogram__count { font-size: 13px; color: var(--fh-ink); text-align: right; font-weight: 500; }

/* Gallery */
.fh-reviews__gallery-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; flex-wrap: wrap; gap: 8px; }
.fh-reviews__gallery-head h3 { font-size: 16px; margin: 0; font-family: 'Jost'; font-weight: 600; color: var(--fh-ink); }
.fh-reviews__gallery-head a { font-size: 13px; font-weight: 600; color: var(--fh-ink); }
.fh-reviews__gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.fh-ph--photo { aspect-ratio: 4/5; border-radius: 8px; }
.fh-ph--p1 { background-image: linear-gradient(135deg, #d8cfbe, #9a8d74); }
.fh-ph--p2 { background-image: linear-gradient(135deg, #c3b9a4, #7d7058); }
.fh-ph--p3 { background-image: linear-gradient(135deg, #b6b1a4, #5f594d); }
.fh-ph--p4 { background-image: linear-gradient(135deg, #cdbd9f, #84764f); }
.fh-ph--p5 { background-image: linear-gradient(135deg, #ddd2bc, #a59470); }

/* Toolbar with selects */
.fh-reviews__toolbar { display: flex; justify-content: space-between; align-items: center; padding: 18px 0 24px; border-top: 1px solid var(--fh-line); margin-bottom: 30px; flex-wrap: wrap; gap: 12px; }
.fh-reviews__select { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--fh-muted); }
.fh-reviews__select select { padding: 9px 34px 9px 14px; border: 1px solid var(--fh-line); border-radius: 4px; background-color: #fff; font-size: 14px; color: var(--fh-ink); appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }

/* Review cards */
.fh-reviews__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.fh-review { background: #fff; border: 1px solid var(--fh-line); border-radius: 10px; padding: 22px; margin: 0; display: flex; flex-direction: column; }
.fh-review__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.fh-review__top time { font-size: 11.5px; color: var(--fh-muted); }
.fh-review h4 { font-size: 16px; margin: 0 0 8px; }
.fh-review blockquote { margin: 0 0 16px; font-size: 13.5px; color: #5b554b; line-height: 1.6; }
.fh-review__img { display: block; width: 100%; aspect-ratio: 4/3; border-radius: 8px; margin: 0 0 16px; }
.fh-review figcaption { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--fh-line); }
.fh-review__who { font-size: 13px; font-weight: 700; color: var(--fh-ink); }
.fh-verified { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: var(--fh-muted); }
.fh-verified__badge { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; border-radius: 50%; background: var(--fh-ink); }
.fh-verified__badge .fh-icon { color: #fff; }
.fh-reviews__more { text-align: center; margin-top: 44px; }

/* =========================================================================
   Footer
   ========================================================================= */
.fh-footer { background: var(--fh-ink); color: rgba(255,255,255,.7); }
.fh-footer__trust { border-bottom: 1px solid rgba(255,255,255,.08); padding: 30px 0; }
.fh-footer__trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fh-trust-item { display: flex; align-items: center; gap: 14px; }
.fh-trust-item .fh-icon { color: var(--fh-gold); }
.fh-trust-item strong { display: block; color: #fff; font-family: 'Archivo'; font-size: 14px; }
.fh-trust-item span { font-size: 12px; }

.fh-footer__main { padding: 60px 0; }
.fh-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; gap: 30px; }
.fh-footer__brand p { font-size: 14px; max-width: 260px; margin: 16px 0; }
.fh-footer__col h4 { color: #fff; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.fh-footer-menu { list-style: none; margin: 0; padding: 0; }
.fh-footer-menu li { margin-bottom: 11px; }
.fh-footer-menu a { font-size: 14px; transition: color .2s; }
.fh-footer-menu a:hover { color: var(--fh-gold); }
.fh-logo__name--light { color: #fff; }

.fh-social { display: flex; gap: 10px; }
.fh-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: all .2s; }
.fh-social a:hover { background: var(--fh-gold); border-color: var(--fh-gold); color: #000; }

.fh-newsletter { display: flex; border: 1px solid rgba(255,255,255,.2); border-radius: 2px; overflow: hidden; margin-top: 14px; }
.fh-newsletter input { flex: 1; background: transparent; border: 0; padding: 12px 14px; color: #fff; font-size: 14px; }
.fh-newsletter input::placeholder { color: rgba(255,255,255,.45); }
.fh-newsletter button { background: var(--fh-gold); border: 0; color: #000; padding: 0 16px; cursor: pointer; }

.fh-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.fh-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.fh-footer__bottom p { margin: 0; font-size: 13px; }
.fh-pay { display: flex; gap: 8px; }
.fh-pay span { font-size: 10px; font-weight: 700; letter-spacing: .06em; padding: 5px 8px; background: rgba(255,255,255,.1); border-radius: 3px; color: #fff; }

/* =========================================================================
   Shop / WooCommerce pages
   ========================================================================= */
.fh-shop { display: grid; grid-template-columns: 1fr; gap: 40px; padding: 40px 24px 80px; align-items: start; }
.fh-shop-main { min-width: 0; }

/* Archive: full-width grid, filters on top (no sidebar) */
.fh-shop--wide { display: block; width: 100%; max-width: 1640px; margin: 0 auto; padding: 0 32px 90px; }
.fh-shop--wide .fh-shop-main { width: 100%; }

.woocommerce .fh-shop--wide ul.products { grid-template-columns: repeat(5, 1fr); gap: 30px; }
.fh-shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; flex-wrap: wrap; gap: 12px; }
.woocommerce-result-count { margin: 0; color: var(--fh-muted); font-size: 14px; }
.woocommerce-ordering select { padding: 11px 16px; border: 1px solid var(--fh-line); border-radius: 6px; background: #fff; font-size: 14px; }

/* Archive hero banner */
.fh-archive-hero { background: #fff; padding: 46px 0 0; text-align: center; }
.fh-archive-hero h1 { font-size: clamp(36px, 5vw, 60px); margin: 6px 0 14px; }
.fh-archive-hero__desc { color: var(--fh-muted); max-width: 620px; margin: 0 auto; font-size: 16px; }
.fh-archive-hero__strip { border-top: 1px solid var(--fh-line); border-bottom: 1px solid var(--fh-line); margin-top: 38px; }
.fh-archive-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 44px; padding: 18px 24px; }
.fh-archive-strip span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; letter-spacing: .03em; color: var(--fh-ink); }
.fh-archive-strip .fh-icon { color: var(--fh-gold); }

/* Top filter bar (collection pills) */
.fh-filterbar { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px; padding: 28px 0 22px; }
.fh-filterbar__pills { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; }
.fh-pill { display: inline-block; padding: 9px 20px; border: 1.5px solid var(--fh-line); border-radius: 30px; font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: .04em; color: var(--fh-ink); transition: all .15s; white-space: nowrap; }
.fh-pill:hover { border-color: var(--fh-ink); }
.fh-pill.is-active { background: var(--fh-ink); border-color: var(--fh-ink); color: #fff; }
.fh-filterbar__widgets { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.woocommerce .page-title, .woocommerce-products-header__title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 8px; }

/* Bigger, more prominent product cards in the shop grid */
.fh-shop-main .fh-product-card__media { aspect-ratio: 4/5; }
.fh-shop-main .fh-product-card .woocommerce-loop-product__title,
.fh-shop-main .fh-product-card h3 { font-size: 16px; margin-top: 6px; }
.fh-shop-main .fh-product-card .price { font-size: 17px; }
.fh-shop-main .fh-product-card .button.add_to_cart_button,
.fh-shop-main .fh-product-card .added_to_cart { display: block; width: 100%; text-align: center; margin-top: 12px; }

/* =========================================================================
   Single product — high-conversion layout
   ========================================================================= */
.fh-pdp-wrap { display: block; width: 100%; max-width: 1460px; margin: 0 auto; padding: 0 24px; }
.fh-pdp-wrap .fh-shop-main { width: 100%; }
.fh-pdp-wrap .woocommerce-breadcrumb { max-width: none; margin: 0; padding: 18px 0 10px; }
.single-product div.product { display: block; width: 100%; }
.fh-pdp-hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 48px; align-items: start; width: 100%; }
/* secondary blocks align with the centered wrapper */
.single-product .woocommerce-tabs,
.single-product .related,
.single-product .upsells { max-width: none; margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; }
/* Conversion blocks + tabs + related span full width below the fold */
.single-product div.product > .woocommerce-tabs,
.single-product div.product > .upsells,
.single-product div.product > .related,
.single-product div.product > .fh-prod-block { grid-column: 1 / -1; }

/* Gallery — prominent, sticky on scroll */
.single-product .product .images,
.fh-pdp-gallery { align-self: start; }
.single-product .woocommerce-product-gallery { margin: 0; position: static; width: 100% !important; float: none; }
.single-product .woocommerce-product-gallery__wrapper { width: 100%; margin: 0; }
.single-product .woocommerce-product-gallery__image { width: 100%; margin: 0; }
.single-product .woocommerce-product-gallery__image a { display: block; }
.single-product .woocommerce-product-gallery__image img { display: block; width: 100%; height: auto; border-radius: 14px; }
.single-product .woocommerce-product-gallery__trigger { top: 18px; right: 18px; }
/* Thumbnails in a row below the main image (robust on mobile) */
.single-product .woocommerce-product-gallery .flex-control-thumbs { position: static; display: flex !important; flex-wrap: wrap; gap: 14px; margin: 16px 0 0 !important; padding: 0; width: auto; }
.single-product .woocommerce-product-gallery .flex-control-thumbs li { width: 110px !important; margin: 0 !important; float: none !important; list-style: none; }
.single-product .woocommerce-product-gallery .flex-control-thumbs img { width: 100%; border-radius: 8px; border: 1px solid var(--fh-line); opacity: .65; cursor: pointer; transition: opacity .2s, border-color .2s; }
.single-product .woocommerce-product-gallery .flex-control-thumbs img:hover,
.single-product .woocommerce-product-gallery .flex-control-thumbs .flex-active { opacity: 1; border-color: var(--fh-ink); }

/* Summary */
.single-product .summary { padding-top: 4px; }
.single-product .product_title { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.08; }
.single-product .woocommerce-product-rating { margin: 4px 0 18px; display: flex; align-items: center; gap: 10px; }
.single-product .fh-rating-jump { display: inline-flex; }
.single-product .woocommerce-review-link { color: var(--fh-muted); font-size: 13px; }
.single-product .price { font-family: 'Archivo'; font-size: 26px; color: var(--fh-ink); margin-bottom: 18px; }
.single-product .price del { color: var(--fh-muted); font-weight: 400; }
.single-product .price ins { text-decoration: none; }
.single-product .woocommerce-product-details__short-description { color: #5b554b; font-size: 15px; line-height: 1.7; }
.single-product .cart { margin: 24px 0 6px; }
.single-product .single_add_to_cart_button.button { width: 100%; background: var(--fh-ink) !important; color: #fff !important; padding: 18px 36px !important; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; border-radius: 4px; margin-top: 12px; }
.single-product .single_add_to_cart_button.button:hover { background: var(--fh-gold) !important; color: var(--fh-ink) !important; }
.single-product .quantity input { padding: 16px 10px; width: 72px; border: 1px solid var(--fh-line); border-radius: 4px; text-align: center; }

/* Urgency line */
.fh-prod-urgency { display: flex; align-items: center; gap: 8px; margin: 0 0 12px; font-size: 14px; font-weight: 600; color: #2f7a47; }
.fh-prod-urgency .fh-icon { color: #2f7a47; }

/* Trust list */
.fh-product-trust { list-style: none; margin: 22px 0 0; padding: 22px 0 0; border-top: 1px solid var(--fh-line); display: grid; gap: 16px; }
.fh-product-trust li { display: flex; align-items: center; gap: 14px; }
.fh-product-trust .fh-icon { color: var(--fh-gold); flex-shrink: 0; }
.fh-product-trust strong { display: block; font-size: 14px; color: var(--fh-ink); }
.fh-product-trust small { font-size: 12.5px; color: var(--fh-muted); }

/* Secure payment box */
.fh-secure-pay { margin-top: 22px; padding: 16px; border: 1px dashed var(--fh-line); border-radius: 8px; text-align: center; }
.fh-secure-pay__label { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--fh-muted); margin-bottom: 12px; }
.fh-secure-pay__label .fh-icon { color: var(--fh-gold); }
.fh-pay--light { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.fh-pay--light span { font-size: 10px; font-weight: 700; letter-spacing: .04em; padding: 5px 9px; background: #f3f0ea; border: 1px solid var(--fh-line); border-radius: 4px; color: #555; }

/* Value-props band */
.fh-prod-block { margin-top: 56px; }
.fh-prod-value { background: var(--fh-ink); border-radius: 14px; padding: 44px; }
.fh-prod-value__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.fh-prod-value__item .fh-icon { color: var(--fh-gold); margin-bottom: 14px; }
.fh-prod-value__item h3 { color: #fff; font-size: 17px; margin: 0 0 8px; }
.fh-prod-value__item p { color: rgba(255,255,255,.62); font-size: 13.5px; line-height: 1.6; margin: 0; }

/* Promise + specs */
.fh-prod-promise { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: start; }
.fh-prod-promise__copy h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 16px; }
.fh-prod-promise__copy p { color: #5b554b; font-size: 16px; line-height: 1.75; max-width: 560px; }
.fh-prod-promise__points { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; }
.fh-prod-promise__points li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.fh-prod-promise__points .fh-icon { color: var(--fh-gold); flex-shrink: 0; margin-top: 2px; }
.fh-prod-promise__specs { background: #faf8f4; border: 1px solid var(--fh-line); border-radius: 12px; padding: 30px; }
.fh-prod-promise__specs h3 { font-size: 16px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.fh-prod-promise__specs dl { margin: 0; }
.fh-prod-promise__specs dl > div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--fh-line); }
.fh-prod-promise__specs dl > div:last-child { border-bottom: 0; }
.fh-prod-promise__specs dt { color: var(--fh-muted); font-size: 14px; }
.fh-prod-promise__specs dd { margin: 0; font-weight: 600; font-size: 14px; color: var(--fh-ink); text-align: right; }

/* Tabs polish */
.single-product .woocommerce-tabs { margin-top: 56px; }
.single-product .woocommerce-tabs ul.tabs { padding: 0; border-bottom: 1px solid var(--fh-line); }
.single-product .woocommerce-tabs ul.tabs li { background: transparent; border: 0; border-radius: 0; }
.single-product .woocommerce-tabs ul.tabs li.active { border-bottom: 2px solid var(--fh-ink); }
.single-product .woocommerce-tabs ul.tabs li a { font-family: 'Archivo'; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: 13px; }

/* WooCommerce general button restyle */
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit {
	background: var(--fh-ink); color: #fff; border-radius: 2px; font-family: 'Archivo'; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; font-size: 13px; padding: 13px 24px;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover { background: var(--fh-gold); color: var(--fh-ink); }
.woocommerce a.button.alt, .woocommerce button.button.alt { background: var(--fh-gold); color: var(--fh-ink); }

/* Cart & checkout */
.woocommerce-cart .fh-shop, .woocommerce-checkout .fh-shop, .woocommerce-account .fh-shop { grid-template-columns: 1fr; }
.woocommerce table.shop_table { border-radius: 4px; border-color: var(--fh-line); }
.woocommerce .cart-collaterals .cart_totals, .woocommerce-checkout #order_review { border: 1px solid var(--fh-line); padding: 24px; border-radius: 4px; }
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment { background: var(--fh-cream); }

/* Notices — modern card style */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews {
	display: flex; align-items: center; flex-wrap: wrap; gap: 8px 14px;
	background: #fff; border: 1px solid var(--fh-line); border-left-width: 4px;
	border-radius: 10px; padding: 16px 20px; margin: 0 0 26px;
	box-shadow: 0 6px 22px rgba(0,0,0,.05); font-size: 14.5px; color: var(--fh-ink); list-style: none;
}
.woocommerce-message { border-left-color: #4f8a5b; }
.woocommerce-info { border-left-color: var(--fh-gold); }
.woocommerce-error { border-left-color: #c0392b; flex-direction: column; align-items: flex-start; }
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
	position: static; margin: 0; font-size: 18px; line-height: 1; top: auto; left: auto;
}
.woocommerce-message::before { color: #4f8a5b; }
.woocommerce-info::before { color: var(--fh-gold); }
.woocommerce-error::before { color: #c0392b; }
.woocommerce-message .button,
.woocommerce-info .button {
	margin: 0 0 0 auto; padding: 9px 18px !important; font-size: 11px; border-radius: 6px;
}
.woocommerce-error li { margin: 0; }

/* =========================================================================
   Blog / pages
   ========================================================================= */
.fh-blog { display: grid; grid-template-columns: 1fr 300px; gap: 44px; padding: 60px 24px 80px; align-items: start; }
.fh-blog__main { min-width: 0; }
.fh-page-head { margin-bottom: 34px; }
.fh-page-title { font-size: clamp(30px, 4.5vw, 50px); }
.fh-post-meta { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--fh-muted); margin-bottom: 10px; }
.fh-post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.fh-post-card__media { display: block; aspect-ratio: 3/2; overflow: hidden; border-radius: 4px; margin-bottom: 16px; }
.fh-post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.fh-post-card__title { font-size: 20px; margin: 6px 0 10px; }
.fh-post-card__excerpt { color: var(--fh-muted); font-size: 14px; }
.fh-readmore { color: var(--fh-gold); font-weight: 600; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }

.fh-page { padding: 60px 24px 80px; }
.fh-page__main { max-width: 820px; margin: 0 auto; }
.fh-prose { font-size: 17px; line-height: 1.8; }
.fh-prose p { margin: 0 0 1.2em; }
.fh-prose img { border-radius: 4px; margin: 1.4em 0; }
.fh-single__thumb { margin-bottom: 30px; border-radius: 4px; overflow: hidden; }

.fh-widget { margin-bottom: 32px; }
.fh-widget .widget-title { font-size: 15px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--fh-ink); }
.fh-widget ul { list-style: none; margin: 0; padding: 0; }
.fh-widget li { padding: 8px 0; border-bottom: 1px solid var(--fh-line); }

/* Search form */
.fh-searchform { display: flex; gap: 8px; }
.fh-searchform__input { flex: 1; padding: 14px 16px; border: 1px solid var(--fh-line); border-radius: 2px; font-size: 15px; background: #fff; }
.fh-search-bar .fh-searchform__input { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #fff; }
.fh-searchform__btn { background: var(--fh-ink); color: #fff; border: 0; padding: 0 22px; border-radius: 2px; cursor: pointer; font-family: 'Archivo'; text-transform: uppercase; font-size: 13px; letter-spacing: .08em; }

/* 404 */
.fh-404 { text-align: center; padding: 100px 24px; max-width: 640px; }
.fh-404 h1 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 16px; }
.fh-404 p { color: var(--fh-muted); margin-bottom: 28px; }
.fh-404__search { max-width: 420px; margin: 40px auto 0; }

/* Pagination */
.woocommerce-pagination ul, .pagination .nav-links { display: flex; gap: 8px; justify-content: center; list-style: none; padding: 30px 0 0; }
.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--fh-line); border-radius: 2px; }
.page-numbers.current { background: var(--fh-ink); color: #fff; border-color: var(--fh-ink); }

.fh-empty, .fh-none { padding: 40px; text-align: center; color: var(--fh-muted); background: var(--fh-cream); border-radius: 4px; }

/* =========================================================================
   Single product — landing hero (new classes)
   ========================================================================= */
.fh-pdp-gallery { position: relative; }
.fh-pdp-badge { position: absolute; top: 14px; left: 14px; z-index: 5; background: var(--fh-ink); color: #fff; font-family: 'Archivo'; font-weight: 700; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 8px 14px; border-radius: 4px; }
.fh-pdp-viewroom { position: absolute; left: 14px; bottom: 14px; z-index: 5; display: inline-flex; align-items: center; gap: 8px; background: rgba(0,0,0,.55); color: #fff; border: 0; border-radius: 30px; padding: 9px 16px 9px 10px; font-size: 12px; letter-spacing: .04em; cursor: pointer; backdrop-filter: blur(3px); }

.single-product div.product .summary,
.single-product .summary.entry-summary { width: auto !important; float: none !important; margin: 0 !important; padding: 4px clamp(8px, 1.5vw, 24px) 8px 4px; align-self: start; }
.single-product div.product .woocommerce-product-gallery { width: 100% !important; float: none !important; }
.single-product .product_title { font-size: clamp(30px, 2.8vw, 46px); line-height: 1.05; margin-bottom: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.015em; text-wrap: balance; }
.fh-pdp-subtitle { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--fh-muted); margin: 0 0 16px; }
.fh-pdp-price { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.fh-pdp-price .price { font-family: 'Archivo'; font-size: 28px; color: var(--fh-ink); margin: 0; }
.fh-pdp-price .price del { color: var(--fh-muted); font-weight: 400; font-size: 20px; margin-right: 2px; }
.fh-pdp-price .price ins { text-decoration: none; }
.fh-save-badge { background: var(--fh-ink); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 20px; }
.single-product .woocommerce-product-rating { margin: 0 0 22px; display: flex; align-items: center; gap: 8px; }
.single-product .woocommerce-product-rating .star-rating { color: var(--fh-gold); }
.single-product .woocommerce-review-link { color: var(--fh-muted); font-size: 13px; }

/* Rating under title — black stars, clickable (jumps to reviews) */
.fh-pdp-rating { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 16px; cursor: pointer; }
.fh-pdp-rating .star-rating { color: var(--fh-ink); margin: 0; font-size: 16px; }
.fh-pdp-rating .fh-stars { display: inline-flex; }
.fh-pdp-rating .fh-stars .fh-icon { fill: var(--fh-ink); stroke: var(--fh-ink); }
.fh-pdp-rating__count { font-size: 13px; color: var(--fh-muted); }
.fh-pdp-rating:hover .fh-pdp-rating__count { color: var(--fh-ink); text-decoration: underline; }

/* Credibility tags (black) */
.fh-pdp-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.fh-tag { display: inline-flex; align-items: center; gap: 7px; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; padding: 8px 14px; border-radius: 30px; border: 1px solid var(--fh-ink); color: #fff; background: var(--fh-ink); }
.fh-tag .fh-icon { color: var(--fh-gold); fill: var(--fh-gold); stroke: var(--fh-gold); }
.fh-flag { border-radius: 2px; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(255,255,255,.25); }

/* Free USA shipping highlight (black, prominent) */
.fh-pdp-ship { display: flex; align-items: center; gap: 14px; margin: 0 0 20px; padding: 16px 20px; background: var(--fh-ink); color: #fff; border-radius: 10px; }
.fh-pdp-ship__ico { color: var(--fh-gold); flex-shrink: 0; }
.fh-pdp-ship__txt strong { display: block; font-family: 'Archivo', sans-serif; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: #fff; }
.fh-pdp-ship__txt span { font-size: 12.5px; color: rgba(255,255,255,.7); }

.fh-pdp-features { list-style: none; margin: 0 0 26px; padding: 22px 0; border-top: 1px solid var(--fh-line); border-bottom: 1px solid var(--fh-line); display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; }
.fh-pdp-features li { display: flex; align-items: center; gap: 12px; }
.fh-pdp-features .fh-icon { color: var(--fh-ink); flex-shrink: 0; }
.fh-pdp-features strong { display: block; font-size: 13.5px; color: var(--fh-ink); }
.fh-pdp-features small { font-size: 12px; color: var(--fh-muted); }

.single-product .variations { margin: 0 0 22px; border: 0; }
.single-product .variations tr { display: block; margin-bottom: 26px; }
.single-product .variations th, .single-product .variations td { display: block; padding: 0; }
.single-product .variations .label label { display: flex; align-items: center; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: .01em; text-transform: none; color: var(--fh-ink); margin-bottom: 14px; }
.fh-swatch-step { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: var(--fh-ink); color: #fff; border-radius: 50%; font-size: 12px; font-weight: 700; margin-right: 10px; flex-shrink: 0; }
.fh-swatch-name { color: var(--fh-ink); }
.fh-swatch-current { color: var(--fh-muted); font-weight: 500; }
.fh-swatch-current:not(:empty)::before { content: ": "; color: var(--fh-muted); }
/* Hard-hide the native variation select + its row clutter */
.single-product .variations select { display: none !important; }
.single-product .variations .reset_variations { font-size: 12px; color: var(--fh-muted); margin-left: 6px; }

/* Swatch cards */
.fh-swatches { display: grid; grid-template-columns: repeat(auto-fill, minmax(116px, 1fr)); gap: 12px; }
.fh-swatch { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; min-height: 64px; padding: 14px 10px; border: 1.5px solid var(--fh-line); border-radius: 12px; background: #fff; cursor: pointer; text-align: center; transition: border-color .15s, box-shadow .15s; }
.fh-swatch:hover { border-color: var(--fh-ink); }
.fh-swatch.is-active { border-color: var(--fh-ink); box-shadow: inset 0 0 0 1px var(--fh-ink); }
.fh-swatch.is-active::after { content: "✓"; position: absolute; top: 8px; right: 8px; width: 22px; height: 22px; background: var(--fh-ink); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; line-height: 1; }
.fh-swatch__img { width: 100%; aspect-ratio: 1 / 1; border-radius: 8px; background: #f2efe9 center/cover no-repeat; margin-bottom: 2px; }
.fh-swatch__label { font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 13px; color: var(--fh-ink); line-height: 1.2; }
.fh-swatch__sub { font-size: 12px; color: var(--fh-muted); }
.fh-swatch--img { padding: 10px 10px 12px; }
.single-product select.fh-hidden-select { display: none; }
/* Unavailable combinations: greyed out + struck through (not clickable) */
.fh-swatch.is-unavailable { opacity: .5; cursor: not-allowed; color: var(--fh-muted); border-color: var(--fh-line) !important; box-shadow: none !important; }
.fh-swatch.is-unavailable .fh-swatch__img { filter: grayscale(1); opacity: .7; }
.fh-swatch.is-unavailable::after { content: ""; position: absolute; inset: 0; border-radius: 12px; background: linear-gradient(to top right, transparent calc(50% - 0.75px), var(--fh-muted) 50%, transparent calc(50% + 0.75px)); opacity: .5; }
.single-product .variations tr.fh-variation-hidden { display: none; }

.single-product .single_add_to_cart_button.button { width: 100%; border-radius: 6px !important; padding: 19px 36px !important; font-size: 14px; }
.fh-express-btn { display: block; width: 100%; text-align: center; background: #5a31f4; color: #fff; padding: 16px; border-radius: 6px; margin-top: 10px; font-weight: 600; font-size: 14px; }
.fh-express-btn:hover { filter: brightness(1.08); color: #fff; }
.fh-morepay { display: block; width: 100%; text-align: center; background: none; border: 0; color: var(--fh-muted); text-decoration: underline; font-size: 13px; margin-top: 12px; cursor: pointer; }

.fh-pdp-trust { list-style: none; margin: 22px 0 0; padding: 22px 0 0; border-top: 1px solid var(--fh-line); display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fh-pdp-trust li { display: flex; align-items: center; gap: 10px; }
.fh-pdp-trust .fh-icon { color: var(--fh-ink); flex-shrink: 0; }
.fh-pdp-trust strong { display: block; font-size: 12.5px; color: var(--fh-ink); }
.fh-pdp-trust small { font-size: 11.5px; color: var(--fh-muted); }

/* Cart form — stack quantity, add-to-cart, express & more options cleanly */
.single-product form.cart { display: flex; flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 6px; }
.single-product form.cart .quantity { width: max-content; margin: 0; }
.single-product form.cart .single_add_to_cart_button.button { margin-top: 0 !important; }
.single-product form.cart .fh-express-btn,
.single-product form.cart .fh-morepay { margin-top: 0; }
/* Variable products: keep the variation table above, button area below */
.single-product .woocommerce-variation-add-to-cart { display: flex; flex-direction: column; gap: 10px; }

/* =========================================================================
   Single product — full-width landing sections
   ========================================================================= */
.fh-pl-press { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 38px; }
.fh-pl-press span { font-family: 'Archivo'; font-weight: 700; font-size: 20px; letter-spacing: .02em; }

.fh-pl-quality { background: var(--fh-ink); color: #fff; padding: 60px 0 80px; }
.fh-pl-quality__kicker { text-align: center; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55); margin: 0 0 26px; }
.fh-pl-quality .fh-pl-press { opacity: .85; margin-bottom: 56px; }
.fh-pl-quality .fh-pl-press span { color: rgba(255,255,255,.85); }
.fh-pl-quality__head { text-align: center; margin-bottom: 50px; }
.fh-pl-quality__head h2 { color: #fff; font-size: clamp(28px, 4vw, 46px); }
.fh-pl-quality__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.fh-pl-qcol { text-align: center; padding: 0 32px; }
.fh-pl-qcol:not(:first-child) { border-left: 1px solid rgba(255,255,255,.14); }
.fh-pl-qcol .fh-icon { color: var(--fh-gold); margin-bottom: 18px; }
.fh-pl-qcol h3 { color: #fff; font-family: 'Archivo'; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.fh-pl-qcol p { color: rgba(255,255,255,.6); font-size: 13.5px; line-height: 1.6; margin: 0; }

.fh-pl-craft { background: #fff; padding: 80px 0; }
.fh-pl-craft__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.fh-pl-craft__copy h2 { font-size: clamp(30px, 4vw, 52px); font-weight: 800; line-height: 1.02; margin-bottom: 16px; }
.fh-pl-craft__copy > p { color: var(--fh-muted); max-width: 380px; margin-bottom: 22px; }
.fh-pl-checks { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 14px; }
.fh-pl-checks li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.fh-pl-checks .fh-icon { color: var(--fh-gold); flex-shrink: 0; }
.fh-pl-craft__media { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; }
.fh-pl-craft__main { grid-row: 1 / 3; border-radius: 12px; min-height: 440px; }
.fh-pl-craft__d1, .fh-pl-craft__d2 { border-radius: 12px; min-height: 210px; }

.fh-pl-elevate { display: grid; grid-template-columns: 1fr 1.2fr; background: var(--fh-ink); color: #fff; align-items: stretch; }
.fh-pl-elevate__copy { display: flex; align-items: center; }
.fh-pl-elevate__copy-inner { width: 100%; max-width: 500px; margin-left: auto; padding: 88px 80px 88px 40px; }
.fh-pl-elevate__copy h2 { color: #fff; font-size: clamp(38px, 4vw, 56px); line-height: 1.04; margin-bottom: 20px; text-wrap: balance; }
.fh-pl-elevate__rule { display: block; width: 60px; height: 1px; background: rgba(255,255,255,.4); margin-bottom: 20px; }
.fh-pl-elevate__copy p { color: rgba(255,255,255,.7); margin-bottom: 28px; max-width: 320px; }
.fh-pl-elevate__media { min-height: 520px; }

.fh-pl-museum { background: #fff; padding: 70px 0; }
.fh-pl-museum__inner { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: center; }
.fh-pl-museum__copy h2 { font-size: clamp(24px, 2.6vw, 34px); line-height: 1.1; font-weight: 800; margin-bottom: 14px; }
.fh-pl-museum__copy p { color: var(--fh-muted); font-size: 14.5px; margin-bottom: 16px; }
.fh-pl-museum__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.fh-pl-mcard__img { display: block; aspect-ratio: 1; border-radius: 10px; margin-bottom: 14px; }
.fh-pl-mcard figcaption strong { display: block; font-family: 'Archivo'; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }
.fh-pl-mcard figcaption span { font-size: 13px; color: var(--fh-muted); }

.fh-pl-excellence { background: #f5f3ef; padding: 70px 0; }
.fh-pl-excellence__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.fh-pl-excellence__copy h2 { font-size: clamp(30px, 3.4vw, 44px); margin-bottom: 16px; }
.fh-pl-excellence__copy p { color: #5b554b; margin-bottom: 14px; max-width: 420px; }
.fh-pl-excellence__items { list-style: none; margin: 0; padding: 0; display: grid; gap: 26px; }
.fh-pl-excellence__items li { display: flex; gap: 16px; align-items: flex-start; }
.fh-pl-excellence__items .fh-icon { color: var(--fh-gold); flex-shrink: 0; }
.fh-pl-excellence__items strong { display: block; font-family: 'Archivo'; font-size: 15px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.fh-pl-excellence__items p { font-size: 14px; color: var(--fh-muted); margin: 0; max-width: 340px; }

.fh-pl-trusted { background: #fff; padding: 44px 0 60px; border-top: 1px solid var(--fh-line); }
.fh-pl-trusted__label { text-align: center; font-size: 11px; letter-spacing: .2em; color: var(--fh-muted); margin: 0 0 22px; }
.fh-pl-press--dark span { color: var(--fh-ink); opacity: .75; }

/* Who We Are + Made in USA (native) */
.fh-pl-about { background: #fff; padding: 70px 0; }
.fh-pl-about__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.fh-pl-about__copy h2 { font-size: clamp(30px, 3.4vw, 44px); margin-bottom: 16px; }
.fh-pl-about__copy p { color: var(--fh-muted); margin: 0 0 14px; max-width: 460px; }
.fh-pl-usa { display: inline-flex; align-items: center; gap: 8px; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--fh-ink); border: 1px solid var(--fh-line); border-radius: 30px; padding: 8px 16px; margin-top: 6px; }
.fh-pl-usa .fh-icon { color: var(--fh-gold); fill: var(--fh-gold); stroke: var(--fh-gold); }
.fh-pl-about__media { aspect-ratio: 4/3; border-radius: 14px; }

/* Guarantee (native) */
.fh-pl-guarantee { background: #fff; text-align: center; padding: 70px 0; }
.fh-pl-guarantee .fh-container { max-width: 680px; }
.fh-pl-seal { width: 66px; height: 66px; border-radius: 50%; border: 2px solid var(--fh-gold); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--fh-gold); }
.fh-pl-guarantee h2 { font-size: clamp(30px, 3.4vw, 44px); margin-bottom: 12px; }
.fh-pl-guarantee p { color: var(--fh-muted); font-size: 16px; margin: 0 auto; }

/* FAQ (native) */
.fh-pl-faq { background: #fff; padding: 20px 0 80px; }
.fh-faq { max-width: 760px; margin: 0 auto; }
.fh-faq details { border-bottom: 1px solid var(--fh-line); padding: 18px 2px; }
.fh-faq summary { cursor: pointer; list-style: none; font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 16px; color: var(--fh-ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.fh-faq summary::-webkit-details-marker { display: none; }
.fh-faq summary::after { content: "+"; font-size: 24px; line-height: 1; color: var(--fh-gold); }
.fh-faq details[open] summary::after { content: "\2013"; }
.fh-faq details p { margin: 12px 0 0; color: var(--fh-muted); font-size: 15px; }

/* =========================================================================
   WooCommerce — Cart
   ========================================================================= */
.woocommerce-cart .fh-shop, .woocommerce-checkout .fh-shop, .woocommerce-account .fh-shop { padding-top: 50px; }
.woocommerce-cart table.shop_table { border: 1px solid var(--fh-line); border-radius: 10px; border-collapse: separate; border-spacing: 0; overflow: hidden; }
.woocommerce-cart table.shop_table th { background: var(--fh-cream); font-family: 'Archivo', sans-serif; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; padding: 16px; }
.woocommerce-cart table.shop_table td { padding: 18px 16px; vertical-align: middle; }
.woocommerce-cart table.shop_table img { width: 76px; border-radius: 8px; }
.woocommerce-cart .product-name a { font-weight: 600; color: var(--fh-ink); }
.woocommerce a.remove { color: var(--fh-ink) !important; border: 1px solid var(--fh-line); border-radius: 50%; line-height: 22px; width: 24px; height: 24px; }
.woocommerce a.remove:hover { background: #b4452f !important; color: #fff !important; border-color: #b4452f; }
.woocommerce .quantity .qty { padding: 10px; border: 1px solid var(--fh-line); border-radius: 6px; width: 64px; }
.woocommerce-cart .cart-collaterals { margin-top: 36px; }
.woocommerce-cart .cart_totals h2 { font-size: 22px; margin-bottom: 16px; }
.woocommerce .cart-collaterals .cart_totals { border: 1px solid var(--fh-line); padding: 26px 28px; border-radius: 12px; box-shadow: 0 10px 34px rgba(0,0,0,.05); }
.woocommerce form.woocommerce-cart-form + .cart-collaterals,
.woocommerce .cart-collaterals { max-width: 460px; margin-left: auto; }

/* Cart totals table — clean two-column, no overflow */
.woocommerce .cart_totals table.shop_table { width: 100%; table-layout: fixed; border: 0; border-radius: 0; overflow: visible; }
.woocommerce .cart_totals table.shop_table th,
.woocommerce .cart_totals table.shop_table td { background: transparent !important; border: 0; border-bottom: 1px solid var(--fh-line); padding: 14px 0 !important; vertical-align: top; word-wrap: break-word; overflow-wrap: anywhere; }
.woocommerce .cart_totals table.shop_table th { width: 34%; font-family: 'Archivo', sans-serif; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--fh-muted); font-weight: 600; }
.woocommerce .cart_totals table.shop_table td { width: 66%; text-align: right; font-size: 14px; }
.woocommerce .cart_totals tr:last-child th, .woocommerce .cart_totals tr:last-child td { border-bottom: 0; }
.woocommerce .cart_totals .order-total .amount { font-family: 'Archivo', sans-serif; font-size: 22px; color: var(--fh-ink); }
.woocommerce .cart_totals .woocommerce-shipping-methods { margin: 0; padding: 0; list-style: none; }
.woocommerce .cart_totals .shipping ul#shipping_method li { margin: 0 0 6px; }
.woocommerce .cart_totals .woocommerce-shipping-destination { font-size: 12.5px; color: var(--fh-muted); line-height: 1.5; }
.woocommerce .cart_totals .shipping-calculator-button { color: var(--fh-gold); }
.woocommerce-cart .wc-proceed-to-checkout { padding-top: 18px; }
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button { width: 100%; text-align: center; padding: 18px !important; font-size: 14px; }

/* =========================================================================
   WooCommerce — Form fields (cart, checkout, account)
   ========================================================================= */
.woocommerce form .form-row { margin-bottom: 16px; }
.woocommerce form .form-row label { font-size: 13px; font-weight: 600; color: var(--fh-ink); margin-bottom: 6px; display: block; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce #order_comments,
.woocommerce-account input.input-text,
.woocommerce .select2-container--default .select2-selection--single {
	width: 100%; padding: 13px 14px; border: 1px solid var(--fh-line); border-radius: 8px; font-size: 15px; background: #fff; line-height: 1.3; box-shadow: none; }
.woocommerce .select2-container--default .select2-selection--single { height: 49px; display: flex; align-items: center; }
.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow { top: 12px; }
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus { border-color: var(--fh-ink); outline: none; }

/* =========================================================================
   WooCommerce — reset float/percentage widths (so our grids work)
   ========================================================================= */
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-1,
.woocommerce-page .col2-set .col-2 { width: auto !important; float: none !important; }
.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after,
.woocommerce-checkout form.checkout::before,
.woocommerce-checkout form.checkout::after { display: none !important; }

/* =========================================================================
   WooCommerce — Checkout
   ========================================================================= */
.woocommerce-checkout .col2-set, .woocommerce-checkout #customer_details { width: 100%; }
.woocommerce-checkout form.checkout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: start; grid-template-areas: "details rev-head" "details rev"; }
.woocommerce-checkout #customer_details { grid-area: details; }
.woocommerce-checkout #customer_details .col-1, .woocommerce-checkout #customer_details .col-2 { width: 100%; float: none; }
.woocommerce-checkout h3 { font-size: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--fh-line); margin-bottom: 18px; }
.woocommerce-checkout #order_review_heading { grid-area: rev-head; margin: 0 0 14px; }
.woocommerce-checkout #order_review { grid-area: rev; align-self: start; position: sticky; top: 96px; border: 1px solid var(--fh-line); border-radius: 12px; padding: 26px; background: #fff; box-shadow: 0 10px 34px rgba(0,0,0,.05); }
.woocommerce-checkout #order_review table.shop_table { border: 0; }
.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td { padding: 12px 0; border-bottom: 1px solid var(--fh-line); }
.woocommerce-checkout #order_review .order-total .amount { font-family: 'Archivo', sans-serif; font-size: 22px; color: var(--fh-ink); }
.woocommerce-checkout #payment { background: transparent; border-radius: 0; }
.woocommerce-checkout #payment ul.payment_methods { background: #faf8f4; border: 1px solid var(--fh-line); border-radius: 10px; padding: 18px; }
.woocommerce-checkout #payment div.payment_box { background: #fff; border: 1px solid var(--fh-line); }
.woocommerce-checkout #payment #place_order { width: 100%; padding: 18px !important; font-size: 15px; margin-top: 12px; }
.fh-checkout-trust { list-style: none; margin: 0 0 18px; padding: 16px; border: 1px dashed var(--fh-line); border-radius: 10px; display: grid; gap: 10px; }
.fh-checkout-trust li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--fh-text); }
.fh-checkout-trust .fh-icon { color: var(--fh-gold); flex-shrink: 0; }
.fh-checkout-pay { margin-top: 16px; text-align: center; }
.fh-checkout-pay__lock { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 12px; color: var(--fh-muted); margin-bottom: 10px; }
.fh-checkout-pay__lock .fh-icon { color: var(--fh-gold); }
.fh-checkout-pay .fh-pay--light { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; }
.fh-checkout-pay .fh-pay--light span { font-size: 10px; font-weight: 700; letter-spacing: .03em; padding: 5px 9px; background: #f3f0ea; border: 1px solid var(--fh-line); border-radius: 4px; color: #555; }

/* =========================================================================
   WooCommerce — My Account
   ========================================================================= */
.woocommerce-account.logged-in .woocommerce { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.woocommerce-MyAccount-navigation { margin: 0; }
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; border: 1px solid var(--fh-line); border-radius: 12px; overflow: hidden; }
.woocommerce-MyAccount-navigation li { border-bottom: 1px solid var(--fh-line); }
.woocommerce-MyAccount-navigation li:last-child { border-bottom: 0; }
.woocommerce-MyAccount-navigation li a { display: block; padding: 14px 18px; font-size: 14px; font-weight: 600; color: var(--fh-text); transition: background .15s, color .15s; }
.woocommerce-MyAccount-navigation li a:hover { background: var(--fh-cream); }
.woocommerce-MyAccount-navigation li.is-active a { background: var(--fh-ink); color: #fff; }
.woocommerce-MyAccount-content { min-width: 0; }
.woocommerce-MyAccount-content p:first-child { margin-top: 0; }
.woocommerce-account .woocommerce-MyAccount-content table.shop_table { border: 1px solid var(--fh-line); border-radius: 10px; }
.woocommerce .woocommerce-Address { border: 1px solid var(--fh-line); border-radius: 10px; padding: 22px; }
.woocommerce-account .addresses .title h3 { font-size: 18px; }

/* Login / register (logged-out) */
.woocommerce-account:not(.logged-in) .woocommerce { max-width: 960px; margin: 0 auto; }
.woocommerce-account:not(.logged-in) .woocommerce > .u-columns,
.woocommerce-account:not(.logged-in) .woocommerce > .customer-login-form { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.woocommerce .col2-set .col-1, .woocommerce .col2-set .col-2 { width: 100%; float: none; }
.woocommerce form.login, .woocommerce form.register { border: 1px solid var(--fh-line); border-radius: 12px; padding: 30px; margin: 0; }
.woocommerce form.login .button, .woocommerce form.register .button { width: 100%; text-align: center; padding: 15px !important; }
.woocommerce-form-login__rememberme { font-weight: 400 !important; }

/* =========================================================================
   Typography system — unified
   Serif (Cormorant) for section headings · Archivo for page titles, labels,
   buttons & prices · Jost for body.
   ========================================================================= */
.fh-section-head h2,
.fh-row__title,
.fh-quality__intro h2,
.fh-quality-card h3,
.fh-pl-quality__head h2,
.fh-pl-craft__copy h2,
.fh-pl-elevate__copy h2,
.fh-pl-museum__copy h2,
.fh-pl-excellence__copy h2 {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
}
/* Section serif headings read smaller per-pixel — nudge them up a touch. */
.fh-section-head h2 { font-size: clamp(32px, 4.4vw, 50px); }
.fh-pl-craft__copy h2 { font-size: clamp(34px, 4.4vw, 56px); }
.fh-pl-museum__copy h2 { font-size: clamp(28px, 3vw, 40px); }
.fh-pl-quality__head h2 { font-size: clamp(32px, 4.4vw, 52px); }

/* =========================================================================
   Recent-sale social-proof toast
   ========================================================================= */
.fh-saletoast { position: fixed; left: 24px; bottom: 24px; z-index: 80; display: flex; align-items: center; gap: 12px; max-width: 330px; padding: 14px 16px; background: #fff; border: 1px solid var(--fh-line); border-radius: 12px; box-shadow: 0 14px 40px rgba(0,0,0,.16); transform: translateY(24px); opacity: 0; transition: transform .35s ease, opacity .35s ease; pointer-events: none; }
.fh-saletoast.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.fh-saletoast__pin { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--fh-cream); color: var(--fh-gold); display: flex; align-items: center; justify-content: center; }
.fh-saletoast__body { min-width: 0; }
.fh-saletoast__city { display: block; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px; color: var(--fh-ink); }
.fh-saletoast__meta { display: block; font-size: 12px; color: var(--fh-muted); }
.fh-saletoast__close { flex-shrink: 0; align-self: flex-start; background: none; border: 0; font-size: 18px; line-height: 1; color: var(--fh-muted); cursor: pointer; padding: 0 2px; }
.fh-saletoast__close:hover { color: var(--fh-ink); }
@media (max-width: 600px) { .fh-saletoast { left: 12px; right: 12px; bottom: 12px; max-width: none; } }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
	.fh-nav { display: none; }
	.fh-burger { display: inline-flex; }
	.fh-header__inner { grid-template-columns: auto 1fr auto; }
	.fh-header__brand { justify-self: center; }
	.fh-collections__grid { grid-template-columns: repeat(2, 1fr); }
	.fh-row__inner, .fh-row__inner--reverse { grid-template-columns: 1fr; gap: 30px; }
	.fh-row__inner--reverse .fh-row__aside, .fh-row__inner--reverse .fh-row__products { order: initial; }
	.fh-row__products .fh-product-grid, .fh-row__inner--reverse .fh-product-grid { grid-template-columns: repeat(2, 1fr); }
	.fh-quality__top { grid-template-columns: 1fr; }
	.fh-quality__intro { max-width: none; margin: 0; padding: 64px 24px; }
	.fh-quality__feature { min-height: 320px; order: -1; }
	.fh-quality__grid { grid-template-columns: 1fr; gap: 40px; }
	.fh-quality-card { padding: 0 0 40px; }
	.fh-quality-card:not(:first-child) { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); padding-top: 40px; }
	.fh-quality-card__img { aspect-ratio: 16/7; }
	.fh-quality__seals { gap: 16px 0; }
	.fh-quality__seals li { padding: 4px 26px; }
	.fh-reviews__bar { flex-direction: column; }
	.fh-reviews__assurance { border-left: 0; padding-left: 0; justify-content: center; gap: 28px; }
	.fh-reviews__summary { grid-template-columns: 1fr; gap: 32px; }
	.fh-reviews__gallery-grid { grid-template-columns: repeat(5, 1fr); }
	.fh-reviews__grid { grid-template-columns: repeat(3, 1fr); }
	.fh-footer__grid { grid-template-columns: 1fr 1fr; }
	.fh-shop { grid-template-columns: 1fr; }
	.woocommerce .fh-shop--wide ul.products { grid-template-columns: repeat(3, 1fr); }
	.woocommerce .fh-shop-main ul.products { grid-template-columns: repeat(2, 1fr); }
	.woocommerce-checkout form.checkout { grid-template-columns: 1fr; gap: 30px; grid-template-areas: "details" "rev-head" "rev"; }
	.woocommerce-checkout #order_review { position: static; }
	.woocommerce-account.logged-in .woocommerce { grid-template-columns: 1fr; gap: 26px; }
	.woocommerce-account:not(.logged-in) .woocommerce > .u-columns,
	.woocommerce-account:not(.logged-in) .woocommerce > .customer-login-form { grid-template-columns: 1fr; }
	.woocommerce .cart-collaterals { max-width: none; }
	.fh-blog { grid-template-columns: 1fr; }
	.fh-post-grid { grid-template-columns: repeat(2, 1fr); }
	.fh-pdp-hero { grid-template-columns: 1fr; gap: 28px; }
	.fh-pdp-gallery { position: static; top: auto; }
	.single-product .woocommerce-product-gallery__image img { height: auto; max-height: 72vh; object-fit: cover; }
	.single-product div.product .summary,
	.single-product .summary.entry-summary { padding: 8px 0 !important; }
	.fh-pl-quality__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
	.fh-pl-qcol { padding: 0 24px; }
	.fh-pl-craft__inner { grid-template-columns: 1fr; gap: 36px; }
	.fh-pl-elevate { grid-template-columns: 1fr; }
	.fh-pl-elevate__copy-inner { padding: 56px 24px; margin: 0; max-width: none; }
	.fh-pl-elevate__media { min-height: 360px; order: -1; }
	.fh-pl-museum__inner { grid-template-columns: 1fr; gap: 28px; }
	.fh-pl-museum__grid { grid-template-columns: repeat(4, 1fr); }
	.fh-pl-excellence__inner { grid-template-columns: 1fr; gap: 36px; }
	.fh-pl-about__inner { grid-template-columns: 1fr; gap: 32px; }
	.fh-pl-about__media { order: -1; }
}

@media (max-width: 640px) {
	.fh-features__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
	.fh-press__logos { gap: 24px; }
	.fh-press__logos span { font-size: 16px; }
	.fh-collections__grid { grid-template-columns: 1fr 1fr; }
	.fh-row__products .fh-product-grid, .fh-row__inner--reverse .fh-product-grid, .woocommerce .fh-shop-main ul.products, .woocommerce .fh-shop--wide ul.products, .fh-product-grid { grid-template-columns: 1fr 1fr; }
	.fh-shop--wide { padding-left: 16px; padding-right: 16px; }
	.fh-quality__grid, .fh-footer__trust-grid, .fh-footer__grid, .fh-post-grid { grid-template-columns: 1fr; }
	.fh-reviews__grid { grid-template-columns: 1fr 1fr; }
	.fh-reviews__assurance { gap: 16px 24px; }
	.fh-reviews__gallery-grid { grid-template-columns: repeat(3, 1fr); }
	.fh-quality__seals { flex-direction: column; align-items: center; }
	.fh-quality__seals li { font-size: 12px; }
	.fh-quality__seals li:not(:last-child) { border-right: 0; }
	.fh-hero__inner { min-height: 460px; }
	.fh-hero__content { padding: 56px 0; }
	.fh-mobile-drawer { inset: 0 12% 0 0; }
	.fh-footer__bottom-inner { flex-direction: column; text-align: center; }
	.fh-pl-quality__grid { grid-template-columns: 1fr 1fr; }
	.fh-pl-qcol:nth-child(odd) { border-left: 0; }
	.fh-pl-museum__grid { grid-template-columns: 1fr 1fr; }
	.fh-pl-excellence__inner { gap: 28px; }
	.fh-pl-press { gap: 22px; }
	.fh-pl-press span { font-size: 16px; }
	/* Keep features 2 per line on mobile */
	.fh-pdp-features { grid-template-columns: 1fr 1fr; gap: 14px 12px; padding: 16px 0; }
	.fh-pdp-features strong { font-size: 12.5px; }
	.fh-pdp-features small { font-size: 11px; }
	.fh-pdp-features .fh-icon { width: 18px; height: 18px; }
	.fh-pdp-trust { grid-template-columns: repeat(3, 1fr); gap: 8px; }
	.fh-pdp-trust strong { font-size: 11px; }
	.fh-pdp-trust small { font-size: 10.5px; }

	/* Compact attribute swatches */
	.fh-swatches { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 8px; }
	.fh-swatch { min-height: 52px; padding: 9px 6px; border-radius: 9px; gap: 4px; }
	.fh-swatch--img { padding: 7px 6px 9px; }
	.fh-swatch__label { font-size: 12px; }
	.fh-swatch__sub { font-size: 11px; }
	.fh-swatch.is-active::after { width: 18px; height: 18px; font-size: 10px; top: 6px; right: 6px; }
	.fh-swatch-name { font-size: 14px; }
	.fh-swatch-step { width: 20px; height: 20px; font-size: 11px; margin-right: 8px; }
	.single-product .variations tr { margin-bottom: 18px; }

	/* Thumbnails as a horizontal carousel */
	.single-product .woocommerce-product-gallery .flex-control-thumbs { flex-wrap: nowrap; overflow-x: auto; gap: 10px; padding-bottom: 4px; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
	.single-product .woocommerce-product-gallery .flex-control-thumbs li { width: 70px !important; flex: 0 0 auto; scroll-snap-align: start; }
}
