/* ═══════════════════════════════════════════════════════════
   FAITH HOME — Theme Stylesheet
   Quiet Luxury · Editorial
   Type: Fraunces (display) + Hanken Grotesk (text)
   ═══════════════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --fh-bg: #F7F5F2;
  --fh-bg-alt: #EDE9E4;
  --fh-text: #5A5752;
  --fh-text-light: #8A8580;
  --fh-accent: #C9C1B1;
  --fh-button: #5A5752;
  --fh-button-hover: #3D3A37;
  --fh-border: #E8E4DF;
  --fh-heading: 'Fraunces', serif;
  --fh-body: 'Hanken Grotesk', sans-serif;

  /* Editorial rhythm */
  --fh-pad-x: clamp(1.5rem, 5vw, 5rem);
  --fh-max: 1480px;
  --fh-ease: cubic-bezier(0.22, 1, 0.36, 1);     /* slow, expensive */
  --fh-ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --fh-rule: rgba(90, 87, 82, 0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--fh-body);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
  background: var(--fh-bg);
  color: var(--fh-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--fh-text); color: var(--fh-bg); }

/* Fraunces optical defaults — soft, editorial */
.fh-heading,
.fh-hero__title, .fh-section__title, .fh-logo, .fh-logo__text,
.fh-collection-card__overlay h3, .fh-product-card__name,
.fh-story__quote, .fh-feature h4, .fh-product__title,
.fh-footer__logo, .fh-cart__name {
  font-family: var(--fh-heading);
  font-variation-settings: 'opsz' 100, 'SOFT' 40, 'WONK' 0;
  font-weight: 380;
}

/* ── Editorial primitives ──────────────────────────────── */
.fh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--fh-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fh-text-light);
}
.fh-kicker::before {
  content: "";
  width: clamp(20px, 3vw, 44px);
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.fh-kicker--center { justify-content: center; }
.fh-kicker--light { color: rgba(255,255,255,0.8); }

.fh-index {
  font-family: var(--fh-heading);
  font-variation-settings: 'opsz' 30, 'SOFT' 0, 'WONK' 0;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--fh-accent);
  letter-spacing: 0.05em;
}

.fh-rule { height: 1px; background: var(--fh-rule); border: 0; }

/* Animated link underline (reveal from left) */
.fh-ulink {
  position: relative;
  display: inline-block;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.5s var(--fh-ease);
  padding-bottom: 2px;
}
.fh-ulink:hover { background-size: 100% 1px; }

/* ── Scroll progress ───────────────────────────────────── */
.fh-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 200; pointer-events: none;
  background: transparent;
}
.fh-progress__bar {
  display: block; height: 100%; width: 0;
  background: var(--fh-text);
  transform-origin: left;
}

/* ── Header ────────────────────────────────────────────── */
.fh-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--fh-bg);
  border-bottom: 1px solid var(--fh-border);
  transition: background 0.5s var(--fh-ease), border-color 0.5s var(--fh-ease),
              padding 0.5s var(--fh-ease), color 0.5s var(--fh-ease);
}

.fh-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem var(--fh-pad-x);
  max-width: var(--fh-max);
  margin: 0 auto;
  transition: padding 0.5s var(--fh-ease);
}

/* Subtle top scrim so the white menu stays legible over the hero; fades on scroll */
.fh-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 170px;
  background: linear-gradient(to bottom, rgba(28,26,24,0.5) 0%, rgba(28,26,24,0.14) 55%, transparent 100%);
  pointer-events: none;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.6s var(--fh-ease);
}
.fh-home .fh-header:not(.is-solid)::before { opacity: 1; }

/* Transparent over hero on home, until scrolled */
.fh-home .fh-header:not(.is-solid) {
  position: fixed; left: 0; right: 0;
  background: transparent;
  border-color: transparent;
  color: #fff;
}
.fh-home .fh-header:not(.is-solid) .fh-icon,
.fh-home .fh-header:not(.is-solid) .fh-nav .fh-nav__link,
.fh-home .fh-header:not(.is-solid) .fh-logo { color: #fff; }
.fh-home { /* spacer handled by hero full-bleed */ }

.fh-header.is-solid { box-shadow: 0 1px 0 var(--fh-border); }
.fh-header.is-solid .fh-header__inner { padding-top: 1rem; padding-bottom: 1rem; }

.fh-logo {
  display: inline-flex;
  align-items: center;
  font-size: 1.45rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fh-text);
  transition: opacity 0.4s var(--fh-ease), color 0.5s var(--fh-ease);
}
.fh-logo:hover { opacity: 0.65; }
.fh-logo img { height: 34px; width: auto; }
.fh-logo__svg { height: 30px; width: auto; display: block; }
.fh-header.is-solid .fh-logo__svg { height: 27px; }

.fh-nav { display: flex; gap: clamp(1.5rem, 3vw, 2.75rem); }
.fh-nav__link {
  position: relative;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.fh-nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--fh-ease);
}
.fh-nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.fh-nav__link.is-active { opacity: 1; }
.fh-nav__link.is-active::after { transform: scaleX(1); transform-origin: left; opacity: 0.7; }

.fh-nav__link--soon {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.fh-nav__soon {
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  padding: 2px 7px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.85;
}

/* ── Mobile burger + drawer ────────────────────────────── */
.fh-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px; height: 30px;
  padding: 0; margin: 0;
  background: none; border: none; cursor: pointer;
  color: inherit;
}
.fh-burger__bar {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform 0.35s var(--fh-ease), opacity 0.25s var(--fh-ease);
}

.fh-mobile-nav {
  position: fixed; inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}
.fh-mobile-nav.is-open { visibility: visible; pointer-events: auto; }
.fh-mobile-nav__backdrop {
  position: absolute; inset: 0;
  background: rgba(28,26,24,0.42);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.45s var(--fh-ease);
}
.fh-mobile-nav.is-open .fh-mobile-nav__backdrop { opacity: 1; }
.fh-mobile-nav__panel {
  position: absolute; top: 0; bottom: 0; left: 0;
  width: min(82vw, 340px);
  background: var(--fh-bg);
  padding: 1.6rem 1.75rem;
  box-shadow: 2px 0 40px rgba(28,26,24,0.18);
  transform: translateX(-100%);
  transition: transform 0.5s var(--fh-ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.fh-mobile-nav.is-open .fh-mobile-nav__panel { transform: translateX(0); }
.fh-mobile-nav__close {
  align-self: flex-end;
  background: none; border: none; cursor: pointer;
  color: var(--fh-text);
  padding: 0.25rem;
  margin-bottom: 1.25rem;
  transition: opacity 0.3s;
}
.fh-mobile-nav__close:hover { opacity: 0.6; }
.fh-mobile-nav__links { display: flex; flex-direction: column; }
.fh-mobile-nav__links .fh-nav__link {
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding: 1rem 0;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  color: var(--fh-text);
  border-bottom: 1px solid var(--fh-border);
}
.fh-mobile-nav__links .fh-nav__link::after { display: none; }
.fh-mobile-nav__links .fh-nav__soon { font-size: 0.55rem; }

.fh-header__icons { display: flex; gap: 1.4rem; align-items: center; }
.fh-icon { color: inherit; transition: opacity 0.3s, transform 0.3s var(--fh-ease); }
.fh-icon:hover { opacity: 0.6; transform: translateY(-1px); }
.fh-icon--cart { position: relative; }
/* Language switch toggle (ع / EN) — sits with the header icons */
.fh-lang {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 24px; height: 24px; padding: 0 2px;
  font-family: var(--fh-body); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.04em; line-height: 1; text-decoration: none;
}
.fh-cart-count {
  position: absolute; top: -7px; right: -9px;
  background: var(--fh-text); color: #fff;
  font-size: 0.58rem; min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 999px; display: flex; align-items: center; justify-content: center;
  font-weight: 500;
}
.fh-home .fh-header:not(.is-solid) .fh-cart-count { background: #fff; color: var(--fh-text); }

.fh-search-toggle { background: none; border: none; cursor: pointer; padding: 0; }

/* ── Search overlay ────────────────────────────────────── */
.fh-search {
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: var(--fh-bg);
  border-bottom: 1px solid var(--fh-border);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.6s var(--fh-ease), opacity 0.5s var(--fh-ease), visibility 0s linear 0.6s;
}
.fh-search.is-open {
  max-height: 160px;
  opacity: 1;
  visibility: visible;
  transition: max-height 0.6s var(--fh-ease), opacity 0.5s var(--fh-ease), visibility 0s;
}
.fh-search__inner {
  max-width: var(--fh-max);
  margin: 0 auto;
  padding: 0 var(--fh-pad-x);
}
.fh-search__form {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  border-bottom: 1px solid var(--fh-rule);
}
.fh-search__icon { color: var(--fh-text-light); display: flex; }
.fh-search__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--fh-heading);
  font-variation-settings: 'opsz' 60, 'SOFT' 40, 'WONK' 0;
  font-weight: 340;
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  color: var(--fh-text);
  letter-spacing: -0.01em;
}
.fh-search__input::placeholder { color: var(--fh-text-light); opacity: 0.55; }
.fh-search__input::-webkit-search-cancel-button { display: none; }
.fh-search__close {
  background: none; border: none; cursor: pointer; padding: 0.4rem;
  color: var(--fh-text-light);
  transition: color 0.3s var(--fh-ease), transform 0.4s var(--fh-ease);
}
.fh-search__close:hover { color: var(--fh-text); transform: rotate(90deg); }

/* Keep search panel readable when header floats transparent over hero */
.fh-home .fh-header:not(.is-solid) .fh-search { color: var(--fh-text); }

/* ── Hero ──────────────────────────────────────────────── */
.fh-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(150deg, #6f6a63 0%, #b6ad9d 55%, var(--fh-accent) 100%);
  color: #fff;
}

.fh-hero__media { position: absolute; inset: 0; overflow: hidden; background-size: cover; background-position: center; background-repeat: no-repeat; }
.fh-hero__bg {
  position: absolute; inset: -8%;
  width: 116%; height: 116%; max-width: none; object-fit: cover;
  will-change: transform;
}
.fh-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(40,38,35,0.55) 0%, rgba(40,38,35,0.12) 45%, transparent 75%);
}

.fh-hero__content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--fh-max);
  margin: 0 auto;
  padding: 0 var(--fh-pad-x) clamp(3rem, 7vw, 6rem);
}

.fh-hero__title {
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 0;
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 340;
  line-height: 0.98;
  letter-spacing: -0.015em;
  max-width: 13ch;
  margin-bottom: 1.5rem;
}
.fh-hero__title em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 60, 'WONK' 1;
  font-weight: 320;
}

.fh-hero__subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 42ch;
  margin: 0 0 2.5rem;
}
.fh-hero__kicker { margin-bottom: 2rem; }

.fh-hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.fh-hero__scroll span {
  display: block; width: 1px; height: 42px;
  background: linear-gradient(rgba(255,255,255,0.8), transparent);
  animation: scrollHint 2.4s var(--fh-ease) infinite;
}

/* ── Buttons ───────────────────────────────────────────── */
.fh-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--fh-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 38px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.5s var(--fh-ease);
}
.fh-btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--fh-button-hover);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.55s var(--fh-ease);
}
.fh-btn:hover::before { transform: scaleX(1); transform-origin: left; }
.fh-btn .fh-btn__arrow { transition: transform 0.5s var(--fh-ease); }
.fh-btn:hover .fh-btn__arrow { transform: translateX(4px); }

.fh-btn--white { background: #fff; color: var(--fh-text); }
.fh-btn--white:hover { color: #fff; }

.fh-btn--primary { background: var(--fh-button); color: #fff; }
.fh-btn--primary:hover { color: #fff; }

.fh-btn--outline { background: transparent; color: var(--fh-text); border: 1px solid var(--fh-text); }
.fh-btn--outline::before { background: var(--fh-text); }
.fh-btn--outline:hover { color: #fff; }

.fh-btn--full { width: 100%; justify-content: center; }

/* ── Sections ──────────────────────────────────────────── */
.fh-section {
  padding: clamp(4rem, 9vw, 8rem) var(--fh-pad-x);
  max-width: var(--fh-max);
  margin: 0 auto;
}
.fh-section--alt { background: var(--fh-bg-alt); max-width: none; }
.fh-section--alt > * { max-width: var(--fh-max); margin-left: auto; margin-right: auto; }

.fh-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--fh-rule);
}
.fh-section__head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: none;
}

.fh-section__title {
  font-variation-settings: 'opsz' 80, 'SOFT' 30, 'WONK' 0;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 360;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.fh-section__title em {
  font-style: italic;
  font-variation-settings: 'opsz' 80, 'SOFT' 60, 'WONK' 1;
}
.fh-section__lead {
  max-width: 38ch;
  font-size: 0.95rem;
  color: var(--fh-text-light);
  line-height: 1.8;
}

/* ── Marquee band ──────────────────────────────────────── */
.fh-marquee {
  background: var(--fh-text);
  color: var(--fh-bg);
  padding: 0.4rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fh-marquee__track {
  display: inline-flex;
  gap: 2rem;
  align-items: center;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.fh-marquee:hover .fh-marquee__track { animation-play-state: paused; }
.fh-marquee__item {
  font-family: var(--fh-heading);
  font-variation-settings: 'opsz' 60, 'SOFT' 50, 'WONK' 0;
  font-style: italic;
  font-size: clamp(0.7rem, 1.1vw, 0.92rem);
  font-weight: 360;
  letter-spacing: 0.01em;
}
.fh-marquee__dot { color: var(--fh-accent); font-style: normal; }

/* ── Collections Grid (editorial asymmetry) ────────────── */
.fh-collections-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}
.fh-collections-grid > .fh-collection-card { grid-column: span 2; }
/* First card spans wider — editorial emphasis (grid layout only) */
.fh-collections-grid > .fh-collection-card:first-child { grid-column: span 4; }
.fh-collections-grid > .fh-collection-card:first-child .fh-collection-card__inner { aspect-ratio: 16/10; }

.fh-collection-card {
  position: relative;
  display: block;
  color: #fff;
}
.fh-collection-card__inner {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  border-radius: 2px;
}
.fh-collection-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--fh-ease), filter 0.8s var(--fh-ease);
}
.fh-collection-card:hover img { transform: scale(1.06); filter: brightness(0.92); }

.fh-collection-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,43,40,0.78) 0%, rgba(45,43,40,0.05) 48%, transparent 70%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
}
.fh-collection-card__overlay h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.1;
  transform: translateY(6px);
  transition: transform 0.6s var(--fh-ease);
}
.fh-collection-card:hover .fh-collection-card__overlay h3 { transform: translateY(0); }
.fh-collection-card__meta {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.6s var(--fh-ease) 0.05s, transform 0.6s var(--fh-ease) 0.05s;
}
.fh-collection-card:hover .fh-collection-card__meta { opacity: 1; transform: translateY(0); }
.fh-collection-card__meta .fh-btn__arrow { transition: transform 0.5s var(--fh-ease); }
.fh-collection-card:hover .fh-collection-card__meta .fh-btn__arrow { transform: translateX(4px); }

.fh-collection-card__placeholder { width: 100%; height: 100%; background: var(--fh-accent); }

/* ── Collections Rail (horizontal carousel) ────────────── */
.fh-section--rail { padding-top: clamp(3.5rem, 6vw, 5.5rem); padding-bottom: clamp(2.5rem, 4vw, 3.5rem); }

.fh-rail-aside { display: flex; flex-direction: column; align-items: flex-end; gap: 1.25rem; }
.fh-rail-nav { display: flex; gap: 0.6rem; }
.fh-rail-btn {
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid var(--fh-rule); background: transparent;
  color: var(--fh-text); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background 0.45s var(--fh-ease), color 0.45s var(--fh-ease), border-color 0.45s var(--fh-ease), opacity 0.3s;
}
.fh-rail-btn:hover { background: var(--fh-text); color: #fff; border-color: var(--fh-text); }
.fh-rail-btn[disabled] { opacity: 0.3; cursor: default; pointer-events: none; }

.fh-collections-rail {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* full-bleed edges so cards peek off the page */
  margin: 0 calc(-1 * var(--fh-pad-x));
  padding: 0.5rem var(--fh-pad-x) 1.25rem;
  scroll-padding-left: var(--fh-pad-x);
  scrollbar-width: thin;
  scrollbar-color: var(--fh-accent) transparent;
  cursor: grab;
}
.fh-collections-rail.is-dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.fh-collections-rail::-webkit-scrollbar { height: 4px; }
.fh-collections-rail::-webkit-scrollbar-thumb { background: var(--fh-accent); border-radius: 999px; }
.fh-collections-rail::-webkit-scrollbar-track { background: transparent; }

.fh-collections-rail .fh-collection-card {
  flex: 0 0 auto;
  width: clamp(260px, 30vw, 380px);
  scroll-snap-align: start;
  grid-column: auto;
}
.fh-collections-rail .fh-collection-card__inner { aspect-ratio: 3/4; }
.fh-collections-rail.is-dragging .fh-collection-card { pointer-events: none; }

.fh-collections-rail .fh-rail-item {
  flex: 0 0 auto;
  width: clamp(170px, 18vw, 230px);
  scroll-snap-align: start;
}
.fh-collections-rail.is-dragging .fh-rail-item { pointer-events: none; }

/* ── Products Grid ─────────────────────────────────────── */
.fh-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem) clamp(1.75rem, 3.5vw, 4rem);
}
/* Smaller cards on the homepage only (desktop) */
@media (min-width: 1025px) {
  .fh-home .fh-products-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(1.25rem, 2.2vw, 2.25rem) clamp(1.25rem, 2vw, 2rem);
  }
}

.fh-product-card { display: block; }

.fh-product-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: 1.1rem;
  border-radius: 2px;
  background: var(--fh-bg-alt);
}
.fh-product-card__img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--fh-ease), opacity 0.7s var(--fh-ease);
  -webkit-user-drag: none; user-select: none; -webkit-user-select: none;
}
.fh-product-card__img--alt { opacity: 0; }
.fh-product-card:hover .fh-product-card__img--primary { transform: scale(1.05); }
.fh-product-card:hover .fh-product-card__img--alt { opacity: 1; transform: scale(1.05); }
.fh-product-card:hover .fh-product-card__img-wrap img { transform: scale(1.05); }

.fh-product-card__view {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 2;
  background: rgba(247,245,242,0.94);
  backdrop-filter: blur(2px);
  color: var(--fh-text);
  text-align: center;
  padding: 12px;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.55s var(--fh-ease), transform 0.55s var(--fh-ease);
}
.fh-product-card:hover .fh-product-card__view { opacity: 1; transform: translateY(0); }

.fh-product-card__tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--fh-bg); color: var(--fh-text);
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.fh-product-card__tag--out { background: var(--fh-text); color: var(--fh-bg); }
.fh-product-card.is-out .fh-product-card__img-wrap img { opacity: 0.62; filter: grayscale(0.15); }

.fh-product-card__name {
  font-size: 1.18rem; line-height: 1.25; margin-bottom: 0.25rem;
}
.fh-product-card__price { font-size: 0.85rem; color: var(--fh-text-light); letter-spacing: 0.02em; }
.fh-product-card__placeholder { position: absolute; inset: 0; background: var(--fh-accent); }

/* ── Story (asymmetric editorial) ──────────────────────── */
.fh-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.fh-story__figure {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--fh-bg-alt);
}
.fh-story__figure img { width: 100%; height: 100%; object-fit: cover; }
.fh-story__caption {
  position: absolute; bottom: 1rem; left: 1rem;
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; mix-blend-mode: difference;
}
.fh-story__body { max-width: 46ch; }
.fh-story__quote {
  font-variation-settings: 'opsz' 90, 'SOFT' 60, 'WONK' 1;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 340; font-style: italic;
  line-height: 1.18; margin: 1.5rem 0 1.75rem;
  letter-spacing: -0.01em;
}
.fh-story__text { font-size: 1rem; color: var(--fh-text-light); line-height: 1.9; margin-bottom: 2rem; }

/* ── Features ──────────────────────────────────────────── */
.fh-features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.fh-feature {
  padding: 2.25rem 0 0;
  border-top: 1px solid var(--fh-rule);
}
.fh-feature__num {
  font-family: var(--fh-heading);
  font-variation-settings: 'opsz' 40;
  font-style: italic; font-size: 0.9rem; color: var(--fh-accent);
  display: block; margin-bottom: 1.5rem;
}
.fh-feature h4 { font-size: 1.35rem; line-height: 1.2; margin-bottom: 0.7rem; }
.fh-feature p { font-size: 0.9rem; color: var(--fh-text-light); line-height: 1.8; }

/* ── Product Page ──────────────────────────────────────── */
.fh-product {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2rem, 4vw, 4rem) var(--fh-pad-x);
  max-width: var(--fh-max); margin: 0 auto;
}
.fh-product__media { position: sticky; top: 6rem; align-self: start; width: 100%; max-width: 520px; }
.fh-product__gallery {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 0;
  border-radius: 2px;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.fh-product__gallery::-webkit-scrollbar { display: none; }
.fh-product__gallery.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.fh-product__gallery.is-dragging .fh-product__img { pointer-events: none; }
.fh-product__img {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: var(--fh-alt);
  scroll-snap-align: start;
  border-radius: 2px;
  user-select: none;
  -webkit-user-drag: none;
}
.fh-product__dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1rem; }
.fh-product__dot {
  width: 7px; height: 7px; padding: 0; border: none; border-radius: 999px;
  background: var(--fh-rule); cursor: pointer;
  transition: background 0.4s var(--fh-ease), transform 0.4s var(--fh-ease);
}
.fh-product__dot.is-active { background: var(--fh-text); transform: scale(1.25); }
.fh-product__info { position: sticky; top: 6rem; align-self: start; }

.fh-product__title {
  font-variation-settings: 'opsz' 120, 'SOFT' 40, 'WONK' 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 340; line-height: 1.05; letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.fh-product__price { font-size: 1.15rem; font-weight: 400; margin-bottom: 1.75rem; }
.fh-product__sold { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.85rem; letter-spacing: 0.01em; color: var(--fh-text-light); margin: -0.75rem 0 1.25rem; }
.fh-product__sold::before { content: "\2713"; font-size: 0.75rem; color: #6FA06B; }
.fh-product__stock { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; letter-spacing: 0.02em; color: var(--fh-text-light); margin: 0 0 1.25rem; }
.fh-product__stock::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #6FA06B; }
.fh-product__stock.is-low { color: #9A6A2E; font-weight: 500; }
.fh-product__stock.is-low::before { background: #C98A2E; }
.fh-product__desc { font-size: 1rem; color: var(--fh-text-light); line-height: 1.85; margin-bottom: 2rem; max-width: 52ch; }
.fh-product__variants { margin-bottom: 0.5rem; }
.fh-product__express:empty { display: none; }
.fh-product__express { margin-top: 0.85rem; }
.fh-product__actions { display: flex; gap: 1rem; align-items: stretch; margin-top: 2rem; }

.fh-qty { display: flex; align-items: center; border: 1px solid var(--fh-border); }
.fh-qty__btn { width: 44px; height: 52px; background: none; border: none; font-size: 1.1rem; cursor: pointer; color: var(--fh-text); transition: background 0.3s; }
.fh-qty__btn:hover { background: var(--fh-bg-alt); }
.fh-qty__input { width: 48px; height: 52px; text-align: center; border: none; font-family: var(--fh-body); font-size: 0.9rem; background: transparent; }
.fh-product__actions .fh-btn { flex: 1; }

.fh-stock-notify {
  margin-top: 2rem;
  padding: 1.75rem;
  border: 1px solid var(--fh-border);
  border-radius: 2px;
  background: var(--fh-bg-alt);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 30rem;
}
.fh-stock-notify__status {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fh-text-light);
}
.fh-stock-notify__title {
  font-family: var(--fh-heading);
  font-style: italic;
  font-weight: 360;
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--fh-text);
  margin-bottom: 0.25rem;
}
.fh-stock-notify__done {
  margin-top: 0.25rem;
  font-family: var(--fh-heading);
  font-style: italic;
  color: var(--fh-text);
}
.fh-stock-notify__done[hidden] { display: none; }

.fh-variant-btn {
  padding: 10px 18px; border: 1px solid var(--fh-border);
  background: transparent; font-family: var(--fh-body);
  font-size: 0.78rem; letter-spacing: 0.04em; cursor: pointer;
  margin-right: 8px; margin-bottom: 8px;
  transition: all 0.4s var(--fh-ease);
}
.fh-variant-btn.active, .fh-variant-btn:hover { background: var(--fh-text); color: #fff; border-color: var(--fh-text); }

.fh-breadcrumb {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fh-text-light); margin-bottom: 1.5rem;
}
.fh-breadcrumb a { transition: color 0.3s; }
.fh-breadcrumb a:hover { color: var(--fh-text); }

/* ── Cart ──────────────────────────────────────────────── */
/* ── Add-to-cart toast ─────────────────────────────────── */
.fh-toast {
  position: fixed; top: 1.5rem; right: 1.5rem; z-index: 1200;
  display: flex; align-items: center; gap: 1rem;
  max-width: min(360px, calc(100vw - 3rem));
  padding: 0.85rem 1rem;
  background: var(--fh-bg); color: var(--fh-text);
  border: 1px solid var(--fh-rule); border-radius: 6px;
  box-shadow: 0 18px 50px -20px rgba(0,0,0,0.35);
  opacity: 0; transform: translateY(-12px) scale(0.98);
  pointer-events: none; transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.fh-toast.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fh-toast__img { width: 48px; height: 56px; object-fit: cover; border-radius: 3px; flex-shrink: 0; }
.fh-toast__body { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.fh-toast__label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fh-text-light); }
.fh-toast__label::before { content: "\2713  "; color: #6FA06B; }
.fh-toast__name { font-family: var(--fh-heading); font-size: 0.98rem; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fh-toast__link { margin-left: auto; flex-shrink: 0; font-size: 0.78rem; letter-spacing: 0.04em; color: var(--fh-text); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
@media (max-width: 540px) {
  .fh-toast { top: auto; bottom: 1rem; right: 1rem; left: 1rem; max-width: none; }
}

.fh-cart .fh-section__title { margin-bottom: clamp(1.75rem, 4vw, 3rem); }
.fh-cart__grid { display: grid; grid-template-columns: 1.6fr 0.9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.fh-cart__items { margin-bottom: 0; }
.fh-cart__item { display: flex; align-items: center; gap: 1.5rem; padding: 1.75rem 0; border-bottom: 1px solid var(--fh-rule); transition: opacity 0.25s ease; }
.fh-cart__item:first-child { padding-top: 0; }
.fh-cart__item.is-busy { opacity: 0.45; pointer-events: none; }
.fh-cart__img { width: 96px; height: 116px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
.fh-cart__name { font-size: 1.15rem; margin: 0 0 0.3rem; }
.fh-cart__variant { display: block; font-size: 0.78rem; color: var(--fh-text-light); letter-spacing: 0.04em; margin-bottom: 0.85rem; }
.fh-cart__details { flex: 1; }
.fh-cart__qty { display: inline-flex; align-items: center; gap: 0.25rem; border: 1px solid var(--fh-rule); border-radius: 999px; padding: 0.15rem; }
.fh-cart__qty .fh-qty__btn { width: 30px; height: 30px; border: none; background: transparent; border-radius: 50%; font-size: 1.05rem; line-height: 1; cursor: pointer; color: var(--fh-text); transition: background 0.2s ease; }
.fh-cart__qty .fh-qty__btn:hover { background: var(--fh-alt); }
.fh-cart__qty-val { min-width: 1.8ch; text-align: center; font-size: 0.95rem; }
.fh-cart__item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.65rem; }
.fh-cart__price { font-weight: 400; white-space: nowrap; }
.fh-cart__remove { background: none; border: none; padding: 0; font-size: 0.78rem; letter-spacing: 0.04em; color: var(--fh-text-light); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s ease; }
.fh-cart__remove:hover { color: #9A3B3B; }
.fh-cart__summary { background: var(--fh-alt); padding: clamp(1.5rem, 3vw, 2.25rem); border-radius: 4px; position: sticky; top: 100px; }
.fh-cart__summary-title { font-family: var(--fh-heading); font-size: 1.4rem; margin: 0 0 0.5rem; }
.fh-cart__total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.95rem; padding: 0.85rem 0; border-top: 1px solid var(--fh-rule);
}
.fh-cart__total--grand {
  font-family: var(--fh-heading); font-variation-settings: 'opsz' 60;
  font-size: 1.35rem; margin-top: 0.25rem; padding-top: 1.1rem;
}
.fh-cart__summary .fh-btn { margin-top: 1.5rem; }
.fh-cart__continue { display: block; text-align: center; margin-top: 1rem; font-size: 0.85rem; letter-spacing: 0.04em; color: var(--fh-text-light); text-decoration: underline; text-underline-offset: 3px; }
.fh-cart__express:empty { display: none; }
.fh-cart__express { margin-top: 1.25rem; }

/* ── Native Zid cart product list — restyled to match aesthetic ── */
.template_for_cart_products_list { display: block; }
.template_for_cart_products_list .cart-product-row,
.template_for_cart_products_list .cart-product,
.template_for_cart_products_list .product-row {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.75rem 0; border-bottom: 1px solid var(--fh-rule);
}
.template_for_cart_products_list .cart-product-row:first-child,
.template_for_cart_products_list .cart-product:first-child,
.template_for_cart_products_list .product-row:first-child { padding-top: 0; }
.template_for_cart_products_list img {
  width: 96px; height: 116px; object-fit: cover; border-radius: 2px; flex-shrink: 0;
}
.template_for_cart_products_list .cart-product-name,
.template_for_cart_products_list .product-name,
.template_for_cart_products_list .product-title {
  font-family: var(--fh-heading); font-size: 1.15rem; color: var(--fh-text); margin: 0 0 0.3rem;
}
.template_for_cart_products_list .cart-product-price,
.template_for_cart_products_list .product-price,
.template_for_cart_products_list .price { font-weight: 400; white-space: nowrap; color: var(--fh-text); }
.template_for_cart_products_list .cart-product-delete,
.template_for_cart_products_list .delete-product,
.template_for_cart_products_list .remove-product,
.template_for_cart_products_list a[href*="remove"] {
  background: none; border: none; padding: 0; color: var(--fh-text-light); cursor: pointer;
  font-size: 0.78rem; letter-spacing: 0.04em; text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.template_for_cart_products_list .cart-product-delete:hover,
.template_for_cart_products_list .delete-product:hover,
.template_for_cart_products_list .remove-product:hover,
.template_for_cart_products_list a[href*="remove"]:hover { color: #9A3B3B; }
.template_for_cart_products_list select,
.template_for_cart_products_list .cart-product-quantity-dropdown,
.template_for_cart_products_list .quantity-dropdown {
  border: 1px solid var(--fh-rule); border-radius: 999px; padding: 0.4rem 0.9rem;
  background: #fff; color: var(--fh-text); font-family: inherit; font-size: 0.95rem; cursor: pointer;
}

@media (max-width: 820px) {
  .fh-cart__grid { grid-template-columns: 1fr; }
  .fh-cart__summary { position: static; }
}

/* ── Cart line items on phones — keep rows compact & readable ── */
@media (max-width: 600px) {
  /* Page + summary headings */
  .fh-cart .fh-section__title { font-size: clamp(1.6rem, 7.5vw, 2.1rem); }
  .fh-cart__summary { padding: 1.25rem; }
  .fh-cart__summary-title { font-size: 1.15rem; }
  .fh-cart__total { font-size: 0.9rem; }
  .fh-cart__total--grand { font-size: 1rem; }

  .fh-cart__item { gap: 1rem; padding: 1.25rem 0; }
  .fh-cart__img { width: 84px; height: 100px; }
  .fh-cart__name { font-size: 1rem; }
  .fh-cart__details { min-width: 0; }

  /* Native Zid cart product rows */
  .template_for_cart_products_list .cart-product-row,
  .template_for_cart_products_list .cart-product,
  .template_for_cart_products_list .product-row {
    gap: 0.9rem; padding: 1.25rem 0; flex-wrap: wrap;
  }
  .template_for_cart_products_list img {
    width: 84px; height: 100px; object-fit: cover; border-radius: 2px;
  }
  /* Zid's native cart markup varies by version — shrink ALL its text broadly
     so nothing renders oversized regardless of the exact class names. */
  .template_for_cart_products_list { font-size: 0.9rem; }
  .template_for_cart_products_list h1,
  .template_for_cart_products_list h2,
  .template_for_cart_products_list h3,
  .template_for_cart_products_list h4,
  .template_for_cart_products_list a,
  .template_for_cart_products_list span,
  .template_for_cart_products_list p,
  .template_for_cart_products_list label,
  .template_for_cart_products_list td,
  .template_for_cart_products_list li,
  .template_for_cart_products_list .cart-product-name,
  .template_for_cart_products_list .product-name,
  .template_for_cart_products_list .product-title {
    font-size: 0.95rem !important; line-height: 1.4 !important; min-width: 0; overflow-wrap: anywhere; word-break: normal;
  }
  /* Product NAME specifically — force it down past Zid's own styling */
  .template_for_cart_products_list a[href*="products"],
  .template_for_cart_products_list .cart-product-name,
  .template_for_cart_products_list .product-name,
  .template_for_cart_products_list .product-title,
  .template_for_cart_products_list h2,
  .template_for_cart_products_list h3 {
    font-size: 0.95rem !important; font-weight: 500 !important;
  }
  .template_for_cart_products_list select,
  .template_for_cart_products_list .cart-product-quantity-dropdown,
  .template_for_cart_products_list .quantity-dropdown { font-size: 0.9rem; }
}

/* ── Lookbook ──────────────────────────────────────────── */
.fh-lookbook { padding-top: clamp(2.5rem, 6vw, 5rem); }
.fh-lookbook__head { max-width: 640px; margin: 0 auto clamp(2.5rem, 6vw, 4.5rem); text-align: center; }
.fh-lookbook__title {
  font-family: var(--fh-heading); font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.25rem); line-height: 1.04;
  letter-spacing: -0.01em; margin: 0.5rem 0 1.1rem; color: var(--fh-text);
}
.fh-lookbook__title em { font-style: italic; }
.fh-lookbook__lead { color: var(--fh-text-light); font-size: 1.02rem; line-height: 1.75; margin: 0 auto; max-width: 52ch; }
.fh-lookbook__rule { width: 56px; height: 1px; background: var(--fh-accent); margin: 1.75rem auto 0; }

/* True masonry via CSS columns — images keep natural proportions (no crop) */
.fh-lookbook__grid {
  column-count: 3; column-gap: clamp(0.85rem, 2vw, 1.5rem);
  max-width: var(--fh-max); margin: 0 auto;
}
.fh-lookbook__item {
  break-inside: avoid; margin: 0 0 clamp(0.85rem, 2vw, 1.5rem); position: relative;
}
.fh-lookbook__frame {
  display: block; width: 100%; padding: 0; border: none; background: var(--fh-bg-alt);
  cursor: zoom-in; position: relative; overflow: hidden; border-radius: 3px;
  -webkit-appearance: none; appearance: none;
}
.fh-lookbook__frame img {
  display: block; width: 100%; height: auto;
  transition: transform 1.1s var(--fh-ease), filter 0.6s var(--fh-ease);
  -webkit-user-drag: none; user-select: none;
}
.fh-lookbook__frame:hover img { transform: scale(1.045); filter: brightness(0.94); }
.fh-lookbook__frame:focus-visible { outline: 2px solid var(--fh-accent); outline-offset: 3px; }
.fh-lookbook__zoom {
  position: absolute; top: 0.9rem; right: 0.9rem;
  width: 38px; height: 38px; display: grid; place-items: center;
  background: rgba(255,255,255,0.85); color: var(--fh-text); border-radius: 50%;
  opacity: 0; transform: translateY(-4px) scale(0.9); transition: all 0.35s var(--fh-ease);
  backdrop-filter: blur(4px);
}
.fh-lookbook__frame:hover .fh-lookbook__zoom { opacity: 1; transform: translateY(0) scale(1); }
.fh-lookbook__cap { padding: 0.85rem 0.15rem 0.25rem; display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.5rem; }
.fh-lookbook__cap-text { font-size: 0.85rem; letter-spacing: 0.02em; color: var(--fh-text-light); }
.fh-lookbook__shop { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fh-text); text-decoration: none; white-space: nowrap; border-bottom: 1px solid var(--fh-accent); padding-bottom: 2px; transition: color 0.2s ease; }
.fh-lookbook__shop:hover { color: var(--fh-accent); }
.fh-lookbook__empty { text-align: center; color: var(--fh-text-light); padding: clamp(2rem, 6vw, 4rem); border: 1px dashed var(--fh-rule); border-radius: 4px; max-width: 560px; margin: 0 auto; }
.fh-lookbook__cta { text-align: center; margin-top: clamp(2.5rem, 6vw, 4.5rem); }

@media (max-width: 900px) { .fh-lookbook__grid { column-count: 2; } }
@media (max-width: 540px) { .fh-lookbook__grid { column-count: 2; column-gap: 0.6rem; } .fh-lookbook__zoom { opacity: 1; transform: none; } }

/* ── Lookbook full-screen viewer ───────────────────────── */
.fh-lb-viewer {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(26, 24, 22, 0.94); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--fh-ease), visibility 0.4s;
  padding: clamp(1rem, 5vw, 4rem);
}
.fh-lb-viewer.is-open { opacity: 1; visibility: visible; }
.fh-lb-viewer__stage { margin: 0; max-width: min(92vw, 1100px); max-height: 88vh; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.fh-lb-viewer__stage img {
  max-width: 100%; max-height: 78vh; object-fit: contain; border-radius: 3px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  transform: scale(0.96); transition: transform 0.45s var(--fh-ease);
}
.fh-lb-viewer.is-open .fh-lb-viewer__stage img { transform: scale(1); }
.fh-lb-viewer__cap { color: rgba(255,255,255,0.78); font-size: 0.9rem; letter-spacing: 0.03em; text-align: center; min-height: 1em; }
.fh-lb-viewer__cap:empty { display: none; }
.fh-lb-viewer__close, .fh-lb-viewer__nav {
  position: absolute; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: #fff; width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  cursor: pointer; transition: background 0.25s ease, transform 0.25s ease;
}
.fh-lb-viewer__close:hover, .fh-lb-viewer__nav:hover { background: rgba(255,255,255,0.2); }
.fh-lb-viewer__close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.fh-lb-viewer__nav--prev { left: clamp(0.5rem, 3vw, 2rem); }
.fh-lb-viewer__nav--next { right: clamp(0.5rem, 3vw, 2rem); }
.fh-lb-viewer__nav:active { transform: scale(0.92); }
@media (max-width: 540px) {
  .fh-lb-viewer__nav { width: 42px; height: 42px; bottom: 1.5rem; top: auto; }
  .fh-lb-viewer__nav--prev { left: 25%; }
  .fh-lb-viewer__nav--next { right: 25%; }
}

/* ── Footer ────────────────────────────────────────────── */
.fh-footer { background: var(--fh-text); color: var(--fh-bg); padding: clamp(3rem, 6vw, 5.5rem) var(--fh-pad-x) 2.5rem; }
.fh-footer__inner { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr; gap: 3rem; max-width: var(--fh-max); margin: 0 auto; }
.fh-footer__logo { display: block; margin-bottom: 1.5rem; color: var(--fh-bg); }
.fh-footer__logo .fh-logo__svg { height: 46px; width: auto; }
.fh-footer__brand p { font-size: 0.88rem; color: var(--fh-accent); line-height: 1.8; max-width: 32ch; }
.fh-footer__studio { color: #fff; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: opacity 0.3s ease; }
.fh-footer__studio:hover { opacity: 0.7; }
.fh-footer__col h5 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.3rem; color: #fff; font-weight: 500; }
.fh-footer__col { display: flex; flex-direction: column; align-items: flex-start; }
.fh-footer__col a { position: relative; display: block; width: fit-content; font-size: 0.88rem; color: var(--fh-accent); margin-bottom: 0.8rem; transition: color 0.4s var(--fh-ease); }
.fh-footer__col a:hover { color: #fff; }
.fh-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 3.5rem auto 0; padding-top: 2rem;
  max-width: var(--fh-max);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.25rem;
  font-size: 0.72rem; letter-spacing: 0.06em; color: var(--fh-accent);
}
.fh-footer__legalinfo { display: flex; flex-direction: column; gap: 0.35rem; }
.fh-footer__legalinfo p { margin: 0; }
.fh-footer__cr { opacity: 0.8; }
.fh-footer__madeinsaudi { display: inline-flex; align-items: center; gap: 0.6rem; }
.fh-footer__madeinsaudi img { height: 40px; width: auto; display: block; }
.fh-footer__madeinsaudi span { font-size: 0.72rem; letter-spacing: 0.06em; color: var(--fh-accent); white-space: nowrap; }
.fh-footer__pay { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.fh-pay { display: inline-flex; }
.fh-pay svg {
  width: 42px; height: 26px; display: block;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}

/* ── Empty / 404 ───────────────────────────────────────── */
.fh-empty { text-align: center; padding: 5rem 2rem; color: var(--fh-text-light); }
.fh-empty .fh-btn { margin-top: 1.75rem; }

.fh-coming-soon {
  text-align: center;
  max-width: 36rem;
  margin: clamp(2rem, 6vw, 5rem) auto;
  padding: clamp(2.5rem, 6vw, 5rem) 2rem;
  border: 1px solid var(--fh-accent);
  border-radius: 2px;
  background: var(--fh-bg-alt);
}
.fh-coming-soon__mark {
  display: block;
  font-size: 1.5rem;
  color: var(--fh-accent);
  margin-bottom: 1.25rem;
}
.fh-coming-soon__title {
  font-family: var(--fh-heading);
  font-style: italic;
  font-weight: 360;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.05;
  color: var(--fh-text);
}
.fh-coming-soon__text {
  margin: 1rem auto 2rem;
  max-width: 28rem;
  color: var(--fh-text-light);
  line-height: 1.65;
}
.fh-404 { text-align: center; min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 4rem 2rem; }
.fh-404 .fh-section__title { margin-bottom: 1rem; }
.fh-404 p { margin-bottom: 1.75rem; color: var(--fh-text-light); }

/* ── Scroll reveal ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--fh-ease), transform 1s var(--fh-ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-img { clip-path: inset(0 0 100% 0); transition: clip-path 1.2s var(--fh-ease); }
.reveal-img.is-visible { clip-path: inset(0 0 0 0); }
[data-stagger] > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ── Keyframes ─────────────────────────────────────────── */
@keyframes scrollHint { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Page hero (sub-pages) ─────────────────────────────── */
.fh-page-hero {
  padding: clamp(2rem, 3.5vw, 3rem) var(--fh-pad-x) clamp(0.5rem, 1vw, 0.85rem);
  max-width: var(--fh-max);
  margin: 0 auto;
  text-align: center;
}
.fh-page-hero__title {
  font-family: var(--fh-heading);
  font-variation-settings: 'opsz' 110, 'SOFT' 40, 'WONK' 0;
  font-weight: 360;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-top: 0.6rem;
}
.fh-page-hero__title em {
  font-style: italic;
  font-variation-settings: 'opsz' 110, 'SOFT' 60, 'WONK' 1;
}
/* Legal pages have long titles (e.g. "Refund & Exchange Policy") — keep them modest */
.fh-page-hero--legal .fh-page-hero__title { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.fh-page-hero__lead {
  max-width: 54ch;
  margin: 1.5rem auto 0;
  font-size: 1.02rem;
  color: var(--fh-text-light);
  line-height: 1.75;
}
.fh-page-hero__lead p { margin: 0 0 0.6rem; }
.fh-page-hero__lead p:last-child { margin-bottom: 0; }

.fh-section--narrow {
  max-width: 760px;
  padding-top: clamp(1rem, 2vw, 2rem);
  padding-bottom: clamp(2rem, 3.5vw, 3rem);
}
/* Wider container for the two-column contact layout */
.fh-section--contact {
  max-width: 1180px;
  padding-top: clamp(1rem, 2vw, 2rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}
/* Collapse the gap when sections stack (e.g. lead text + contact grid) */
.fh-section--narrow + .fh-section--narrow,
.fh-section--narrow + .fh-section--contact { padding-top: 0; }

/* ── Sub-category chooser (Set / By the Piece) ─────────── */
.fh-chooser {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}
.fh-chooser-card { display: block; }
.fh-chooser-card__inner {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--fh-bg-alt);
}
.fh-chooser-card__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--fh-ease), filter 1.1s var(--fh-ease);
}
.fh-chooser-card:hover .fh-chooser-card__inner img { transform: scale(1.05); filter: brightness(0.92); }
.fh-chooser-card__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(40,38,35,0.62) 0%, rgba(40,38,35,0.08) 55%, transparent 100%);
}
.fh-chooser-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: #fff;
}
.fh-chooser-card__title {
  font-family: var(--fh-heading);
  font-variation-settings: 'opsz' 90, 'SOFT' 50, 'WONK' 0;
  font-weight: 380;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
  margin: 0.5rem 0 0.85rem;
}
.fh-chooser-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--fh-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.fh-chooser-card__cta .fh-btn__arrow { transition: transform 0.5s var(--fh-ease); }
.fh-chooser-card:hover .fh-chooser-card__cta .fh-btn__arrow { transform: translateX(5px); }

/* Paused (Coming Soon) collection — visible but not openable */
.fh-chooser-card--soon { display: block; cursor: default; }
.fh-chooser-card--soon .fh-chooser-card__inner img { filter: grayscale(0.25) brightness(0.9); }
.fh-chooser-card__soonbadge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--fh-bg);
  color: var(--fh-text);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.fh-chooser__soonnote {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--fh-text-light);
  font-family: var(--fh-heading);
  font-style: italic;
  font-size: 1.05rem;
}

/* ── Forms (Customised / Contact) ──────────────────────── */
.fh-form-wrap {
  background: #fff;
  border: 1px solid var(--fh-border);
  padding: clamp(1.75rem, 4vw, 3rem);
}
.fh-form { display: flex; flex-direction: column; gap: 1.4rem; }
.fh-field { display: flex; flex-direction: column; gap: 0.55rem; }
.fh-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.fh-field label {
  font-family: var(--fh-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fh-text);
}
.fh-field label span {
  text-transform: none;
  letter-spacing: 0.01em;
  font-weight: 400;
  color: var(--fh-text-light);
}
.fh-field input,
.fh-field select,
.fh-field textarea {
  font-family: var(--fh-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--fh-text);
  background: var(--fh-bg);
  border: 1px solid var(--fh-border);
  padding: 0.85rem 1rem;
  border-radius: 0;
  transition: border-color 0.4s var(--fh-ease), background 0.4s var(--fh-ease);
}
.fh-field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.fh-field input:focus,
.fh-field select:focus,
.fh-field textarea:focus {
  outline: none;
  border-color: var(--fh-text);
  background: #fff;
}
.fh-field input::placeholder,
.fh-field textarea::placeholder { color: var(--fh-text-light); opacity: 0.7; }
.fh-form .fh-btn { margin-top: 0.4rem; }
.fh-form__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--fh-text-light);
  margin-top: -0.4rem;
}
.fh-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.fh-form__success {
  margin-top: 0.5rem;
  padding: 1rem 1.25rem;
  text-align: center;
  font-family: var(--fh-heading);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--fh-text);
  background: var(--fh-bg-alt);
  border: 1px solid var(--fh-accent);
  border-radius: 2px;
}
.fh-form__success[hidden] { display: none; }

/* ── Contact details column ────────────────────────────── */
.fh-contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.fh-contact-detail { margin-bottom: 1.75rem; }
.fh-contact-detail:last-child { margin-bottom: 0; }
.fh-contact-detail h3 {
  font-family: var(--fh-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fh-text-light);
  margin-bottom: 0.5rem;
}
.fh-contact-detail a,
.fh-contact-detail p {
  font-family: var(--fh-heading);
  font-variation-settings: 'opsz' 50, 'SOFT' 40, 'WONK' 0;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 360;
  line-height: 1.4;
}
.fh-contact-detail a { transition: color 0.4s var(--fh-ease); }
.fh-contact-detail a:hover { color: var(--fh-accent); }

/* ── Long-form CMS page (Story) ────────────────────────── */
.fh-prose { max-width: 64ch; margin: 0 auto; }
.fh-prose p { margin-bottom: 1.4rem; font-size: 1.05rem; line-height: 1.85; color: var(--fh-text); }
.fh-prose ul, .fh-prose ol { margin: 0 0 1.4rem; padding-inline-start: 1.4rem; }
.fh-prose li { margin-bottom: 0.6rem; font-size: 1.05rem; line-height: 1.8; color: var(--fh-text); list-style: disc; }
.fh-prose ol li { list-style: decimal; }
.fh-prose strong { font-weight: 600; color: var(--fh-text); }
.fh-prose a { color: var(--fh-text); text-decoration: underline; }
.fh-prose h2 {
  font-family: var(--fh-heading);
  font-variation-settings: 'opsz' 70, 'SOFT' 40, 'WONK' 0;
  font-weight: 360;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.25;
  margin: 2rem 0 0.7rem;
}
.fh-prose img { margin: 2rem 0; }

/* ── Designed Story page ───────────────────────────────── */
.fh-storypage {
  max-width: 900px;
  padding-top: clamp(0.5rem, 1.5vw, 1.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.fh-storypage__feature {
  margin: 0 0 clamp(2.5rem, 5vw, 4.5rem);
  overflow: hidden;
  background: var(--fh-bg-alt);
  aspect-ratio: 16 / 7;
}
.fh-storypage__feature img { width: 100%; height: 100%; object-fit: cover; }
.fh-storypage__lead {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.fh-storypage__title {
  font-family: var(--fh-heading);
  font-variation-settings: 'opsz' 144, 'SOFT' 40, 'WONK' 0;
  font-weight: 330;
  font-size: clamp(2.3rem, 5.6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
}
.fh-storypage__pull {
  margin: clamp(1.6rem, 3vw, 2.4rem) auto 0;
  max-width: 600px;
  font-family: var(--fh-heading);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  line-height: 1.55;
  color: var(--fh-text);
}
.fh-storypage__rule {
  width: 56px;
  height: 1px;
  background: var(--fh-accent);
  margin: clamp(2.5rem, 5vw, 4rem) auto;
}
.fh-storypage__prose {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.fh-storypage__prose p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.95;
  color: var(--fh-text-light);
}
.fh-storypage__dropcap::first-letter {
  font-family: var(--fh-heading);
  font-weight: 360;
  float: left;
  font-size: 3.4em;
  line-height: 0.82;
  padding: 0.06em 0.12em 0 0;
  color: var(--fh-text);
}
/* Arabic script is cursive — a single-letter drop cap (::first-letter) detaches the
   first letter and breaks its joining (it renders as an isolated «ن» with a gap,
   not the connected «نـ»). So in Arabic we enlarge the whole opening WORD instead:
   it stays joined, sits on the right, and keeps the same editorial "drop" feel. */
.fh-storypage__dropword {
  font-family: var(--fh-heading);
  font-weight: 360;
  font-size: 2.6em;
  line-height: 0.82;
  color: var(--fh-text);
  float: right;
  margin: 0.04em 0 0 0.28em;
}
.fh-storypage__signature {
  max-width: 620px;
  margin: clamp(2.5rem, 4.5vw, 3.25rem) auto 0;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--fh-border);
  text-align: right;
  font-family: var(--fh-heading);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--fh-text);
}
.fh-storypage__cta {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .fh-collections-grid { grid-template-columns: repeat(4, 1fr); }
  .fh-collections-grid > .fh-collection-card { grid-column: span 2; }
  .fh-collections-grid > .fh-collection-card:first-child { grid-column: span 4; }
  .fh-products-grid { grid-template-columns: repeat(3, 1fr); }
  .fh-home .fh-products-grid { grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.75rem); }
  .fh-features { grid-template-columns: 1fr; }
  .fh-feature { padding-top: 1.5rem; }
  .fh-footer__inner { grid-template-columns: 1fr 1fr; }
  .fh-product { grid-template-columns: 1fr; }
  .fh-product__info { position: static; }
  /* Stop the image from sticking & overlapping the text when stacked on mobile */
  .fh-product__media { position: static; top: auto; max-width: 100%; }
  .fh-story { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .fh-nav { display: none; }
  .fh-burger { display: inline-flex; }
  .fh-header__inner { padding-top: 1.1rem; padding-bottom: 1.1rem; }
  /* Pin the logo next to the burger (left) instead of centering it */
  .fh-logo { margin-right: auto; margin-left: 0.85rem; }
  .fh-hero { min-height: 92svh; }
  .fh-section__head { flex-direction: column; align-items: flex-start; }
  .fh-collections-grid { grid-template-columns: 1fr 1fr; }
  .fh-collections-grid > .fh-collection-card,
  .fh-collections-grid > .fh-collection-card:first-child { grid-column: span 2; }
  .fh-collections-grid > .fh-collection-card:first-child .fh-collection-card__inner { aspect-ratio: 3/4; }
  .fh-products-grid { grid-template-columns: repeat(2, 1fr); }
  /* Match the home product grid to the collection list (2 up) so sizes are consistent */
  .fh-home .fh-products-grid { grid-template-columns: repeat(2, 1fr); gap: clamp(1.25rem, 4vw, 2rem); }
  .fh-footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  /* Brand (Faith Home + tagline) gets its own full row on top, links sit below */
  .fh-footer__brand { grid-column: 1 / -1; text-align: center; padding-bottom: 1.5rem; margin-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .fh-footer__brand p { max-width: 36ch; margin-left: auto; margin-right: auto; }
  /* Center the footer logo too so the whole block reads as one */
  .fh-footer__logo { display: block; text-align: center; }
  .fh-footer__logo .fh-logo__svg { display: inline-block; }
  /* Keep everything centered on phones so nothing reads as half-left/half-center */
  .fh-footer__col { align-items: center; text-align: center; }
  .fh-footer__col a { width: auto; }
  .fh-product__actions { flex-direction: column; }
  .fh-footer__bottom { flex-direction: column; }
  .fh-chooser { grid-template-columns: 1fr; }
  .fh-contact-grid { grid-template-columns: 1fr; }
  /* Contact details read calmer / smaller on phones */
  .fh-contact-detail { margin-bottom: 1.1rem; }
  .fh-contact-detail a,
  .fh-contact-detail p { font-size: 1.08rem; }
  .fh-field-row { grid-template-columns: 1fr; }
  .fh-storypage__block { grid-template-columns: 1fr; gap: 0.75rem; }
}

/* ── RTL / Arabic typography ────────────────────────────────
   Scoped to html[dir="rtl"] ONLY, so the English (LTR) site is
   never touched. Every rule already reads var(--fh-heading) /
   var(--fh-body), so swapping the two variables re-skins all the
   type at once: Cairo for display, Almarai for body.
   Arabic typography doesn't use italics, so we normalise font-style
   on headings/emphasis (Cairo has no true italic — avoids fake slant). */
html[dir="rtl"] {
  --fh-heading: 'Cairo', sans-serif;
  --fh-body: 'Almarai', sans-serif;
}
html[dir="rtl"] body,
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] button,
html[dir="rtl"] select { font-family: var(--fh-body); }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3,
html[dir="rtl"] h4, html[dir="rtl"] h5, html[dir="rtl"] h6,
html[dir="rtl"] em, html[dir="rtl"] i, html[dir="rtl"] blockquote,
html[dir="rtl"] [class*="title"], html[dir="rtl"] [class*="quote"],
html[dir="rtl"] [class*="lead"], html[dir="rtl"] [class*="kicker"] {
  font-style: normal;
}

/* Arabic is cursive: letter-spacing visually BREAKS the joins between
   letters (the "مقطّعة" look), and uppercase is meaningless in Arabic.
   The English design leans on tracked-out, uppercased labels, so we
   neutralise both for RTL only — letters reconnect and read naturally. */
html[dir="rtl"] * {
  letter-spacing: normal !important;
  text-transform: none !important;
}

/* Arabic glyphs are taller and the script reads cramped at the tight leading the
   English display type uses. Loosen line-height and widen the story column for RTL
   so the quote and body copy breathe instead of feeling squeezed. */
html[dir="rtl"] .fh-story__body { max-width: 56ch; }
html[dir="rtl"] .fh-story__quote { line-height: 1.75; margin: 1.75rem 0 2.25rem; }
html[dir="rtl"] .fh-story__text { line-height: 2.4; }

/* ── Zid native toaster (out-of-stock / error notices) ─────
   Zid fires window.zid.toaster.showError() on add-to-cart when a
   product is out of stock. Its default skin is a bright pink/red
   card that clashes with the palette and overlaps the header.
   We re-skin the toast to quiet luxury and nudge it clear of the
   fixed header. Structure: #zid_toaster > .kit-container >
   section > ol > li > div > div[data-title]. Inner classes are
   mostly empty, so we target by structure with !important to beat
   the engine's inline styles. */
#zid_toaster { z-index: 9999 !important; }
#zid_toaster section,
#zid_toaster ol {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  list-style: none !important;
}
#zid_toaster ol {
  margin-top: 84px !important;        /* clear the fixed header */
  padding: 0 1rem !important;
}
#zid_toaster li {
  background: #FBFAF8 !important;
  color: var(--fh-text) !important;
  border: 1px solid var(--fh-border) !important;
  border-left: 3px solid var(--fh-accent) !important;
  border-radius: 3px !important;
  box-shadow: 0 14px 40px -18px rgba(61, 58, 55, 0.45) !important;
  padding: 1rem 1.25rem !important;
  font-family: var(--fh-body) !important;
  margin-bottom: 0.6rem !important;
}
#zid_toaster li * {
  color: var(--fh-text) !important;
  background: transparent !important;
  font-family: var(--fh-body) !important;
}
#zid_toaster li [data-title] {
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
}
/* Tone any leftover status icon/swatch to the accent, not red */
#zid_toaster li svg,
#zid_toaster li [class*="icon"] {
  color: var(--fh-text-light) !important;
  fill: var(--fh-text-light) !important;
}

/* ── Made-to-Order promo band ──────────────────────────── */
.fh-custompromo {
  position: relative;
  background: var(--fh-bg-alt);
  text-align: center;
  overflow: hidden;
  /* Full-bleed band — image fills edge to edge, content stays centered */
  max-width: none;
  /* Tighter than a full section — this is a band, not a hero */
  padding-top: clamp(3rem, 5.5vw, 4.75rem);
  padding-bottom: clamp(3rem, 5.5vw, 4.75rem);
}
.fh-custompromo--image {
  padding-top: clamp(2.75rem, 4.5vw, 4rem);
  padding-bottom: clamp(2.75rem, 4.5vw, 4rem);
}
.fh-custompromo__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.fh-custompromo--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(40,38,35,0.55), rgba(40,38,35,0.65));
  z-index: 1;
}
.fh-custompromo__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fh-custompromo__title {
  font-family: var(--fh-heading);
  font-weight: 340;
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 1rem 0 0;
  color: var(--fh-text);
}
.fh-custompromo--image .fh-custompromo__title { color: #fff; }
.fh-custompromo__text {
  font-size: 1.06rem;
  line-height: 1.9;
  color: var(--fh-text-light);
  max-width: 52ch;
  margin: 1.35rem auto 0;
}
.fh-custompromo--image .fh-custompromo__text { color: rgba(255,255,255,0.9); }

/* Elegant hairline-framed selling feature */
.fh-custompromo__feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 540px;
  margin: 1.8rem auto 0;
}
.fh-custompromo__feature-rule {
  flex: 1;
  height: 1px;
  background: var(--fh-rule);
}
.fh-custompromo__feature-txt {
  font-family: var(--fh-heading);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--fh-text);
  white-space: nowrap;
}
.fh-custompromo--image .fh-custompromo__feature-rule { background: rgba(255,255,255,0.4); }
.fh-custompromo--image .fh-custompromo__feature-txt { color: #fff; }

.fh-custompromo .fh-btn { margin-top: 1.7rem; }

.fh-custompromo__note {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--fh-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fh-text-light);
}
.fh-custompromo--image .fh-custompromo__note { color: rgba(255,255,255,0.7); }

/* RTL refinements for the promo band */
html[dir="rtl"] .fh-custompromo__text { line-height: 2.1; }
html[dir="rtl"] .fh-custompromo__feature-txt { font-style: normal; font-weight: 500; }
html[dir="rtl"] .fh-custompromo__note { letter-spacing: 0.04em; }

@media (max-width: 600px) {
  .fh-custompromo__feature { flex-direction: column; gap: 0.9rem; }
  .fh-custompromo__feature-rule { width: 40px; flex: none; }
  .fh-custompromo__feature-txt { white-space: normal; text-align: center; }
}

/* ── Promo duo (two cards side by side) ────────────────── */
.fh-promoduo__head { text-align: center; margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem); }
.fh-promoduo__title {
  font-family: var(--fh-heading);
  font-weight: 340;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0.5rem 0 0;
  color: var(--fh-text);
}
.fh-promoduo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.2vw, 1.6rem);
}
.fh-promoduo__card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  min-height: clamp(260px, 32vw, 360px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  background: var(--fh-bg-alt);
  isolation: isolate;
}
.fh-promoduo__card-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.fh-promoduo__card--image::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(40,38,35,0) 30%, rgba(40,38,35,0.62) 100%);
}
.fh-promoduo__card-inner { position: relative; z-index: 2; }
.fh-promoduo__card-title {
  font-family: var(--fh-heading);
  font-weight: 360;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.2;
  margin: 0 0 0.5rem;
  color: var(--fh-text);
}
.fh-promoduo__card-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--fh-text-light);
  margin: 0 0 1.2rem;
  max-width: 38ch;
}
.fh-promoduo__card--image .fh-promoduo__card-title { color: #fff; }
.fh-promoduo__card--image .fh-promoduo__card-text { color: rgba(255,255,255,0.88); }
.fh-promoduo__card .fh-btn { align-self: flex-start; }

@media (max-width: 700px) {
  .fh-promoduo__grid { grid-template-columns: 1fr; }
}

/* ── Promo split (image + text) ────────────────────────── */
.fh-promosplit { padding-top: 0; padding-bottom: 0; }
.fh-promosplit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: clamp(320px, 42vw, 520px);
  border-radius: 3px;
  overflow: hidden;
}
.fh-promosplit__media { margin: 0; position: relative; overflow: hidden; background: var(--fh-bg-alt); }
.fh-promosplit__media img,
.fh-promosplit__media-ph {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.fh-promosplit__media-ph { background: linear-gradient(135deg, var(--fh-bg-alt) 0%, var(--fh-accent) 100%); }
.fh-promosplit__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.25rem, 5vw, 4.5rem);
  background: var(--fh-bg-alt);
}
.fh-promosplit__title {
  font-family: var(--fh-heading);
  font-weight: 340;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin: 0.6rem 0 0;
  color: var(--fh-text);
}
.fh-promosplit__text {
  font-size: 1.04rem;
  line-height: 1.85;
  color: var(--fh-text-light);
  margin: 1.1rem 0 0;
  max-width: 44ch;
}
.fh-promosplit__body .fh-btn { align-self: flex-start; margin-top: 1.8rem; }
html[dir="rtl"] .fh-promosplit__text { line-height: 2.05; }

@media (max-width: 760px) {
  .fh-promosplit__grid { grid-template-columns: 1fr; min-height: 0; }
  .fh-promosplit__media { min-height: 260px; }
}

/* ── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--fh-bg); }
::-webkit-scrollbar-thumb { background: var(--fh-accent); border-radius: 3px; }

/* ── Reduced motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-img { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .fh-marquee__track { animation: none; }
}
