/*
Theme Name: FaHaBo 2030 V16
Theme URI: https://fahabo.com/
Author: FaHaBo
Description: A monochrome, future-facing WooCommerce theme built for FaHaBo.
Version: 16.0.0
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: fahabo-2030
*/

:root {
  --fh-black: #080808;
  --fh-ink: #171717;
  --fh-grey-900: #252525;
  --fh-grey-700: #565656;
  --fh-grey-500: #8d8d8d;
  --fh-grey-300: #cfcfcf;
  --fh-grey-200: #e5e5e5;
  --fh-grey-100: #f2f2f2;
  --fh-white: #ffffff;
  --fh-shell: 1480px;
  --fh-gap: clamp(18px, 2.2vw, 34px);
  --fh-radius: 28px;
  --fh-ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--fh-grey-100);
}
body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  color: var(--fh-ink);
  background: var(--fh-white);
  font-family: "Helvetica Neue", "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-weight: 350;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.fh-lock { overflow: hidden; }
body > main,
body > .fh-page { flex: 1 0 auto; }
.fh-footer { flex: 0 0 auto; margin: 0; }
body > .fh-footer:last-of-type { margin-bottom: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--fh-white); background: var(--fh-black); }

.fh-shell { width: min(calc(100% - 48px), var(--fh-shell)); margin-inline: auto; }
.fh-screen-reader { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* Header */
.fh-announcement {
  position: relative;
  z-index: 110;
  min-height: 30px;
  display: grid;
  place-items: center;
  padding: 6px 20px;
  color: var(--fh-white);
  background: var(--fh-black);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.fh-header {
  position: absolute;
  z-index: 100;
  top: 46px;
  left: 50%;
  width: min(calc(100% - 34px), 1500px);
  transform: translateX(-50%);
  transition: transform .45s var(--fh-ease), background .3s ease, border-color .3s ease;
}
.admin-bar .fh-header { top: 78px; }
.fh-header__inner {
  min-height: 66px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 18px 0 24px;
  border: 1px solid rgba(10,10,10,.12);
  border-radius: 21px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 55px rgba(0,0,0,.08);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}
.fh-brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--fh-black);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: .24em;
  line-height: 1;
}
.fh-brand img,
.fh-brand__logo {
  width: auto;
  max-width: 148px;
  max-height: 38px;
  object-fit: contain;
}
.fh-nav { justify-self: center; }
.fh-nav ul { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); list-style: none; margin: 0; padding: 0; }
.fh-nav a {
  position: relative;
  display: block;
  padding: 24px 0;
  color: #292929;
  font-size: 12px;
  letter-spacing: .055em;
}
.fh-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 17px; height: 1px; background: currentColor; transition: right .3s var(--fh-ease); }
.fh-nav a:hover::after, .fh-nav .current-menu-item > a::after { right: 0; }
.fh-actions { justify-self: end; display: flex; align-items: center; gap: 4px; }
.fh-icon-button {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 14px;
  color: var(--fh-black);
  background: transparent;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.fh-icon-button:hover { background: rgba(0,0,0,.055); transform: translateY(-1px); }
.fh-icon-button svg { width: 19px; height: 19px; stroke-width: 1.45; }
.fh-menu-button { display: none; }
.fh-cart-count {
  position: absolute;
  right: 1px;
  top: 1px;
  min-width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border-radius: 9px;
  color: var(--fh-white);
  background: var(--fh-black);
  font-size: 8px;
  font-weight: 500;
}

/* Search */
.fh-search-layer {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: start center;
  padding: 9vh 20px 20px;
  opacity: 0;
  visibility: hidden;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  transition: opacity .35s ease, visibility .35s ease;
}
.fh-search-layer.is-open { opacity: 1; visibility: visible; }
.fh-search-panel { width: min(980px, 100%); transform: translateY(-18px); transition: transform .45s var(--fh-ease); }
.fh-search-layer.is-open .fh-search-panel { transform: none; }
.fh-search-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 45px; }
.fh-search-top span { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.fh-search-form { display: flex; align-items: center; border-bottom: 1px solid var(--fh-black); }
.fh-search-form input {
  flex: 1;
  min-width: 0;
  padding: 18px 0 22px;
  border: 0;
  outline: 0;
  color: var(--fh-black);
  background: transparent;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -.05em;
}
.fh-search-form input::placeholder { color: #b2b2b2; }
.fh-search-form button { border: 0; background: transparent; padding: 18px 0 18px 24px; cursor: pointer; }

/* Mobile drawer */
.fh-drawer {
  position: fixed;
  z-index: 250;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(430px, 88vw);
  opacity: 0;
  visibility: hidden;
  background: rgba(0,0,0,.34);
  transition: opacity .3s ease, visibility .3s ease;
}
.fh-drawer.is-open { opacity: 1; visibility: visible; }
.fh-drawer__panel {
  position: relative;
  grid-column: 2;
  height: 100%;
  padding: 28px;
  transform: translateX(100%);
  background: var(--fh-white);
  transition: transform .5s var(--fh-ease);
}
.fh-drawer.is-open .fh-drawer__panel { transform: none; }
.fh-drawer__top { display: flex; align-items: center; justify-content: space-between; }
.fh-drawer__nav { margin-top: 70px; }
.fh-drawer__nav ul { list-style: none; margin: 0; padding: 0; }
.fh-drawer__nav li { border-bottom: 1px solid var(--fh-grey-200); }
.fh-drawer__nav a { display: flex; align-items: center; justify-content: space-between; padding: 17px 0; font-size: clamp(1.55rem, 7vw, 2.4rem); font-weight: 300; letter-spacing: -.045em; }
.fh-drawer__nav a::after { content: "↗"; font-size: .8rem; }
.fh-drawer__foot { position: absolute; left: 28px; right: 28px; bottom: 28px; display: flex; justify-content: space-between; color: var(--fh-grey-700); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

/* Hero */
.fh-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 155px 0 34px;
  background:
    linear-gradient(90deg, transparent calc(25% - .5px), rgba(0,0,0,.055) 25%, transparent calc(25% + .5px)),
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(0,0,0,.055) 50%, transparent calc(50% + .5px)),
    linear-gradient(90deg, transparent calc(75% - .5px), rgba(0,0,0,.055) 75%, transparent calc(75% + .5px)),
    var(--fh-white);
}
.fh-hero::before {
  content: "";
  position: absolute;
  width: min(72vw, 1050px);
  aspect-ratio: 1;
  right: -22vw;
  top: -28vw;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.09);
  box-shadow: 0 0 0 70px rgba(0,0,0,.015), 0 0 0 150px rgba(0,0,0,.01);
}
.fh-hero__grid {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 189px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--fh-gap);
  align-items: stretch;
}
.fh-hero__copy {
  grid-column: 1 / span 5;
  align-self: end;
  padding: 0 0 clamp(28px, 6vh, 74px);
}
.fh-kicker { margin: 0 0 22px; color: var(--fh-grey-700); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.fh-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--fh-black);
  font-size: clamp(4.6rem, 9.4vw, 10.3rem);
  font-weight: 250;
  letter-spacing: -.082em;
  line-height: .78;
}
.fh-hero h1 span {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1px var(--fh-black);
  text-stroke: 1px var(--fh-black);
}
.fh-hero__intro { max-width: 420px; margin: 34px 0 0; color: var(--fh-grey-700); font-size: 15px; }
.fh-hero__actions { display: flex; align-items: center; gap: 20px; margin-top: 34px; }
.fh-arrow-link { display: inline-flex; align-items: center; gap: 13px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.fh-arrow-link::after { content: "↗"; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--fh-grey-300); border-radius: 50%; transition: transform .3s var(--fh-ease), background .3s ease, color .3s ease; }
.fh-arrow-link:hover::after { transform: rotate(45deg); color: var(--fh-white); background: var(--fh-black); }
.fh-hero__stage {
  --rx: 0deg;
  --ry: 0deg;
  grid-column: 6 / -1;
  position: relative;
  min-height: 680px;
  border-radius: 34px;
  overflow: hidden;
  background: var(--fh-grey-100);
  transform: perspective(1300px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .25s ease-out;
}
.fh-hero__stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35)); pointer-events: none; }
.fh-hero__stage img { width: 100%; height: 100%; object-fit: cover; }
.fh-hero__code { position: absolute; z-index: 3; top: 24px; left: 24px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.35); border-radius: 12px; color: var(--fh-white); background: rgba(0,0,0,.14); backdrop-filter: blur(10px); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.fh-hero__caption { position: absolute; z-index: 3; left: 26px; right: 26px; bottom: 24px; display: flex; align-items: end; justify-content: space-between; color: var(--fh-white); }
.fh-hero__caption strong { font-size: clamp(1.8rem, 3vw, 3.8rem); font-weight: 300; letter-spacing: -.055em; line-height: 1; }
.fh-hero__caption span { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.fh-hero__side { position: absolute; z-index: 2; top: 50%; right: 11px; transform: translateY(-50%) rotate(90deg); transform-origin: center; color: var(--fh-grey-500); font-size: 9px; letter-spacing: .24em; text-transform: uppercase; }

/* Shared sections */
.fh-section { padding: clamp(90px, 10vw, 165px) 0; }
.fh-section--compact { padding: clamp(65px, 7vw, 110px) 0; }
.fh-section--grey { background: var(--fh-grey-100); }
.fh-section--black { color: var(--fh-white); background: var(--fh-black); }
.fh-section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: clamp(38px, 5vw, 72px); }
.fh-section-head h2 { max-width: 900px; margin: 0; font-size: clamp(2.8rem, 6vw, 7rem); font-weight: 250; letter-spacing: -.07em; line-height: .9; }
.fh-section-head p { margin: 0 0 14px; color: var(--fh-grey-700); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.fh-section--black .fh-section-head p { color: var(--fh-grey-500); }
.fh-index { color: var(--fh-grey-500); font-size: 10px; letter-spacing: .16em; }

/* Category architecture */
.fh-architecture { display: grid; grid-template-columns: 1.4fr .82fr; gap: var(--fh-gap); }
.fh-architecture-card {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: var(--fh-radius);
  background: var(--fh-grey-100);
}
.fh-architecture-card--small { min-height: 680px; }
.fh-architecture-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--fh-ease), filter .6s ease; }
.fh-architecture-card:hover img { transform: scale(1.035); filter: contrast(1.03); }
.fh-architecture-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.62)); }
.fh-architecture-card__copy { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 28px; display: flex; align-items: end; justify-content: space-between; gap: 20px; color: var(--fh-white); }
.fh-architecture-card__copy span { display: block; margin-bottom: 9px; font-size: 9px; letter-spacing: .19em; text-transform: uppercase; }
.fh-architecture-card__copy h3 { margin: 0; font-size: clamp(2.5rem, 5vw, 6rem); font-weight: 250; letter-spacing: -.07em; line-height: .9; }
.fh-round-arrow { flex: 0 0 auto; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; transition: transform .35s var(--fh-ease), background .35s ease, color .35s ease; }
.fh-architecture-card:hover .fh-round-arrow { transform: rotate(45deg); color: var(--fh-black); background: var(--fh-white); }

/* Product rail */
.fh-product-rail { overflow: hidden; }
.fh-product-rail .woocommerce { overflow: visible; }
.fh-product-rail ul.products {
  display: grid !important;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 25vw);
  grid-template-columns: none !important;
  gap: 16px !important;
  overflow-x: auto;
  padding: 0 24px 24px max(24px, calc((100vw - min(calc(100vw - 48px), var(--fh-shell))) / 2)) !important;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.fh-product-rail ul.products::-webkit-scrollbar { display: none; }
.fh-product-rail ul.products li.product { scroll-snap-align: start; }
.fh-product-rail__head { width: min(calc(100% - 48px), var(--fh-shell)); margin: 0 auto 48px; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.fh-product-rail__head h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 6rem); font-weight: 250; letter-spacing: -.07em; line-height: .9; }

/* Dark future panel */
.fh-future-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--fh-gap); align-items: stretch; }
.fh-future-copy { grid-column: 1 / span 5; padding: 18px 0; display: flex; flex-direction: column; justify-content: space-between; }
.fh-future-copy h2 { margin: 0; font-size: clamp(3.4rem, 7vw, 8rem); font-weight: 250; letter-spacing: -.078em; line-height: .82; }
.fh-future-copy h2 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.78); }
.fh-future-copy p { max-width: 370px; margin: 32px 0; color: #9e9e9e; }
.fh-future-media { grid-column: 6 / -1; position: relative; min-height: 680px; overflow: hidden; border: 1px solid #292929; border-radius: 30px; background: #101010; }
.fh-future-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); opacity: .88; }
.fh-future-media::before { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 32%); pointer-events: none; }
.fh-future-orbit { position: absolute; z-index: 3; top: 50%; left: 50%; width: min(52vw, 510px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.26); border-radius: 50%; transform: translate(-50%,-50%); }
.fh-future-orbit::before, .fh-future-orbit::after { content: ""; position: absolute; inset: 13%; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.fh-future-orbit::after { inset: 31%; }
.fh-future-label { position: absolute; z-index: 4; right: 24px; bottom: 22px; color: var(--fh-white); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }

/* Numbers */
.fh-data-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--fh-grey-200); border-bottom: 1px solid var(--fh-grey-200); }
.fh-data { padding: 28px clamp(18px, 3vw, 46px); border-right: 1px solid var(--fh-grey-200); }
.fh-data:last-child { border-right: 0; }
.fh-data strong { display: block; margin-bottom: 5px; font-size: clamp(1.5rem, 3vw, 3.2rem); font-weight: 250; letter-spacing: -.055em; }
.fh-data span { color: var(--fh-grey-700); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

/* Footer */
.fh-footer { padding: 85px 0 24px; color: var(--fh-white); background: var(--fh-black); }
.fh-footer__top { display: grid; grid-template-columns: 1.4fr .7fr .7fr; gap: 40px; padding-bottom: 80px; }
.fh-footer__mark { display: flex; align-items: flex-start; }
.fh-footer__mark .fh-brand__logo {
  width: min(100%, 460px);
  max-width: 460px;
  max-height: none;
  filter: invert(1) grayscale(1);
}
.fh-footer h3 { margin: 0 0 18px; color: #858585; font-size: 9px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; }
.fh-footer ul { display: grid; gap: 10px; list-style: none; margin: 0; padding: 0; }
.fh-footer a { color: #d6d6d6; font-size: 13px; }
.fh-footer a:hover { color: var(--fh-white); }
.fh-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid #292929; color: #757575; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

/* Pages */
.fh-page { min-height: 70vh; padding: 155px 0 110px; }
.fh-page-header { margin-bottom: 55px; }
.fh-page-header h1, .fh-page > .fh-shell > h1, .woocommerce-products-header__title.page-title {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 8rem);
  font-weight: 250;
  letter-spacing: -.075em;
  line-height: .86;
}
.fh-page-content { max-width: 900px; }
.fh-page-content p { color: var(--fh-grey-700); }

/* WooCommerce */
.woocommerce .woocommerce-breadcrumb { margin: 0 0 26px; color: var(--fh-grey-500); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering { margin: 26px 0 38px; }
.woocommerce .woocommerce-result-count { color: var(--fh-grey-700); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.woocommerce .woocommerce-ordering select { min-height: 44px; padding: 0 36px 0 14px; border: 1px solid var(--fh-grey-200); border-radius: 13px; background: var(--fh-white); font-size: 12px; }
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 64px) 16px;
  margin: 0;
}
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product { position: relative; float: none !important; width: auto !important; margin: 0 !important; }
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link { display: block; }
.woocommerce ul.products li.product .fh-product-media { position: relative; overflow: hidden; margin-bottom: 15px; border-radius: 20px; background: var(--fh-grey-100); }
.woocommerce ul.products li.product a img { width: 100%; aspect-ratio: 4 / 5.25; object-fit: cover; margin: 0; background: var(--fh-grey-100); transition: transform .8s var(--fh-ease), opacity .45s ease; }
.woocommerce ul.products li.product .fh-secondary-image { position: absolute; inset: 0; opacity: 0; }
.woocommerce ul.products li.product:hover .fh-secondary-image { opacity: 1; }
.woocommerce ul.products li.product:hover .fh-primary-image { transform: scale(1.025); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 0; margin: 0 0 5px; color: var(--fh-black); font-size: 13px; font-weight: 400; letter-spacing: -.01em; }
.woocommerce ul.products li.product .price { margin: 0; color: var(--fh-grey-700); font-size: 12px; font-weight: 400; }
.woocommerce ul.products li.product .button {
  position: absolute;
  right: 11px;
  bottom: 58px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 50%;
  opacity: 0;
  color: transparent;
  background: var(--fh-white);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  transform: translateY(8px);
  transition: opacity .3s ease, transform .35s var(--fh-ease), background .25s ease;
}
.woocommerce ul.products li.product .button::before { content: "+"; color: var(--fh-black); font-size: 20px; font-weight: 300; line-height: 1; }
.woocommerce ul.products li.product:hover .button { opacity: 1; transform: none; }
.woocommerce ul.products li.product .button:hover { background: var(--fh-black); }
.woocommerce ul.products li.product .button:hover::before { color: var(--fh-white); }
.woocommerce ul.products li.product .added_to_cart { display: block; margin-top: 8px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.woocommerce span.onsale { z-index: 3; min-width: auto; min-height: auto; line-height: 1; left: 10px; top: 10px; padding: 8px 10px; border-radius: 10px; color: var(--fh-white); background: var(--fh-black); font-size: 8px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; }
.woocommerce nav.woocommerce-pagination { margin-top: 65px; }
.woocommerce nav.woocommerce-pagination ul { border: 0; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span { min-width: 42px; min-height: 42px; display: grid; place-items: center; margin: 0 3px; border-radius: 12px; color: var(--fh-black); background: var(--fh-grey-100); }
.woocommerce nav.woocommerce-pagination ul li span.current { color: var(--fh-white); background: var(--fh-black); }

/* Single product */
.single-product .fh-page { padding-top: 145px; }
.woocommerce div.product { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .65fr); gap: clamp(42px, 7vw, 110px); align-items: start; }
.woocommerce div.product div.images, .woocommerce div.product div.summary { float: none; width: auto; margin: 0; }
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper { border-radius: 26px; overflow: hidden; background: var(--fh-grey-100); }
.woocommerce div.product .product_title { margin: 0 0 18px; font-size: clamp(3rem, 5vw, 6rem); font-weight: 250; letter-spacing: -.073em; line-height: .88; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--fh-black); font-size: 16px; font-weight: 400; }
.woocommerce div.product .woocommerce-product-details__short-description { margin: 28px 0; color: var(--fh-grey-700); }
.woocommerce div.product form.cart { display: flex; gap: 10px; margin: 30px 0; }
.woocommerce .quantity .qty { min-height: 52px; width: 76px; border: 1px solid var(--fh-grey-200); border-radius: 14px; }
.woocommerce div.product form.cart .button, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  min-height: 52px;
  padding: 0 28px;
  border-radius: 14px;
  color: var(--fh-white);
  background: var(--fh-black);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.woocommerce div.product form.cart .button:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover { background: var(--fh-grey-900); }
.woocommerce div.product .product_meta { padding-top: 24px; border-top: 1px solid var(--fh-grey-200); color: var(--fh-grey-700); font-size: 11px; line-height: 1.9; }
.woocommerce div.product .woocommerce-tabs { grid-column: 1 / -1; margin-top: 40px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; border-bottom: 1px solid var(--fh-grey-200); }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { border: 0; background: transparent; margin: 0 24px 0 0; padding: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { padding: 14px 0; font-size: 10px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; }
.woocommerce div.product .woocommerce-tabs .panel { max-width: 850px; padding: 30px 0; color: var(--fh-grey-700); }
.woocommerce div.product .related.products { grid-column: 1 / -1; margin-top: 60px; }
.woocommerce div.product .related.products > h2 { margin-bottom: 35px; font-size: clamp(2.6rem, 5vw, 5.5rem); font-weight: 250; letter-spacing: -.065em; }

/* Forms, cart, checkout */
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select {
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--fh-grey-200);
  border-radius: 13px;
  background: var(--fh-white);
}
.woocommerce form .form-row textarea { min-height: 130px; }
.woocommerce table.shop_table { border: 1px solid var(--fh-grey-200); border-radius: 18px; overflow: hidden; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { padding: 17px; border-color: var(--fh-grey-200); }
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals { float: none; width: min(560px, 100%); margin-left: auto; }
.woocommerce .coupon .input-text { min-height: 48px; min-width: 180px; border: 1px solid var(--fh-grey-200) !important; border-radius: 12px; }
.woocommerce-message, .woocommerce-info, .woocommerce-error { padding: 18px 22px 18px 52px; border: 0; border-radius: 15px; color: var(--fh-ink); background: var(--fh-grey-100); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--fh-black); }

/* Reveal */
[data-fh-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--fh-ease), transform .8s var(--fh-ease); }
[data-fh-reveal].is-visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1180px) {
  .fh-nav { display: none; }
  .fh-header__inner { grid-template-columns: 1fr auto; }
  .fh-brand { justify-self: start; }
  .fh-actions { grid-column: 2; }
  .fh-menu-button { display: inline-grid; }
  .fh-account-button { display: none; }
  .fh-hero__copy { grid-column: 1 / span 5; }
  .fh-hero__stage { grid-column: 6 / -1; }
  .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .fh-shell { width: min(calc(100% - 28px), var(--fh-shell)); }
  .fh-announcement { font-size: 8px; }
  .fh-header { top: 42px; width: calc(100% - 20px); }
  .admin-bar .fh-header { top: 88px; }
  .fh-header__inner { min-height: 60px; padding: 0 10px 0 17px; border-radius: 18px; }
  .fh-brand { font-size: 16px; }
  .fh-brand img,
  .fh-brand__logo { max-width: 124px; max-height: 34px; }
  .fh-hero { min-height: auto; padding: 132px 0 18px; background: var(--fh-white); }
  .fh-hero__grid { min-height: auto; grid-template-columns: 1fr; gap: 44px; }
  .fh-hero__copy, .fh-hero__stage { grid-column: 1; }
  .fh-hero__copy { order: 1; padding: 20px 0 0; }
  .fh-hero__stage { min-height: 70svh; order: 2; border-radius: 24px; }
  .fh-hero h1 { font-size: clamp(4.4rem, 20vw, 8rem); }
  .fh-hero__intro { margin-top: 25px; }
  .fh-architecture { grid-template-columns: 1fr; }
  .fh-architecture-card, .fh-architecture-card--small { min-height: 68svh; }
  .fh-future-grid { grid-template-columns: 1fr; }
  .fh-future-copy, .fh-future-media { grid-column: 1; }
  .fh-future-media { min-height: 68svh; }
  .fh-data-row { grid-template-columns: 1fr; }
  .fh-data { border-right: 0; border-bottom: 1px solid var(--fh-grey-200); }
  .fh-data:last-child { border-bottom: 0; }
  .fh-footer__top { grid-template-columns: 1fr 1fr; }
  .fh-footer__mark { grid-column: 1 / -1; margin-bottom: 25px; }
  .woocommerce div.product { grid-template-columns: 1fr; }
  .woocommerce div.product .woocommerce-tabs, .woocommerce div.product .related.products { grid-column: 1; }
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 35px 12px; }
  .fh-product-rail ul.products { grid-auto-columns: minmax(230px, 54vw); }
}

@media (max-width: 600px) {
  .fh-announcement { min-height: 27px; padding: 5px 12px; letter-spacing: .13em; }
  .fh-header { top: 34px; }
  .admin-bar .fh-header { top: 80px; }
  .fh-header__inner { min-height: 56px; }
  .fh-brand img,
  .fh-brand__logo { max-width: 108px; max-height: 30px; }
  .fh-actions { gap: 0; }
  .fh-icon-button { width: 38px; height: 38px; }
  .fh-hero { padding-top: 112px; }
  .fh-hero__stage { min-height: 61svh; }
  .fh-hero__caption strong { font-size: 1.7rem; }
  .fh-hero__caption span { display: none; }
  .fh-section { padding: 86px 0; }
  .fh-section-head { align-items: flex-start; flex-direction: column; margin-bottom: 36px; }
  .fh-section-head h2 { font-size: clamp(3rem, 15vw, 5.3rem); }
  .fh-architecture-card, .fh-architecture-card--small { min-height: 58svh; border-radius: 22px; }
  .fh-architecture-card__copy { left: 20px; right: 20px; bottom: 20px; }
  .fh-product-rail__head { width: calc(100% - 28px); margin-bottom: 30px; }
  .fh-product-rail ul.products { grid-auto-columns: minmax(215px, 72vw); padding-left: 14px !important; }
  .fh-future-copy h2 { font-size: clamp(4rem, 18vw, 6.5rem); }
  .fh-future-media { min-height: 58svh; border-radius: 22px; }
  .fh-footer { padding-top: 70px; }
  .fh-footer__top { grid-template-columns: 1fr 1fr; gap: 38px 18px; padding-bottom: 55px; }
  .fh-footer__bottom { align-items: flex-start; flex-direction: column; }
  .fh-page { padding: 125px 0 80px; }
  .woocommerce ul.products li.product .button { opacity: 1; transform: none; width: 36px; height: 36px; bottom: 55px; }
  .woocommerce div.product form.cart { flex-wrap: wrap; }
  .woocommerce div.product form.cart .button { flex: 1; }
}


@media (max-width: 420px) {
  .fh-header { width: calc(100% - 14px); }
  .fh-header__inner { padding-left: 14px; padding-right: 7px; }
  .fh-brand img,
  .fh-brand__logo { max-width: 96px; max-height: 28px; }
  .fh-icon-button { width: 35px; height: 35px; }
  .fh-footer__top { grid-template-columns: 1fr; }
  .fh-footer__mark { grid-column: 1; margin-bottom: 8px; }
  .fh-footer__mark .fh-brand__logo { width: min(82vw, 360px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Sleek FAHABO footer */
.fh-footer {
  margin: 0;
  padding: clamp(42px, 6vw, 78px) 0 max(18px, env(safe-area-inset-bottom));
  color: var(--fh-ink);
  background: var(--fh-grey-100);
}
.fh-footer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--fh-grey-200);
  border-radius: 30px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 22px 70px rgba(0,0,0,.045);
}
.fh-footer-copy { max-width: 720px; }
.fh-footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--fh-grey-500);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.fh-footer-kicker::after { content: ""; width: 42px; height: 1px; background: var(--fh-grey-300); }
.fh-footer-copy h2 {
  max-width: 680px;
  margin: 0;
  color: var(--fh-ink);
  font-size: clamp(2.4rem, 4.7vw, 5.8rem);
  font-weight: 250;
  letter-spacing: -.062em;
  line-height: .94;
}
.fh-footer-copy p {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--fh-grey-700);
  font-size: 14px;
  line-height: 1.7;
}
.fh-footer-actions { min-width: 0; }
.fh-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 7px;
  border: 1px solid var(--fh-grey-200);
  border-radius: 18px;
  background: var(--fh-white);
  box-shadow: 0 14px 36px rgba(0,0,0,.045);
}
.fh-newsletter input {
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  color: var(--fh-ink);
  background: transparent;
  font-size: 13px;
}
.fh-newsletter input::placeholder { color: var(--fh-grey-500); }
.fh-newsletter input:focus-visible { box-shadow: inset 0 0 0 1px var(--fh-black); border-radius: 12px; }
.fh-newsletter button {
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 13px;
  color: var(--fh-white);
  background: var(--fh-black);
  cursor: pointer;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .25s var(--fh-ease), background .25s ease;
}
.fh-newsletter button:hover { background: var(--fh-grey-900); transform: translateY(-1px); }
.fh-newsletter-status { margin: 10px 6px 0; color: var(--fh-grey-700); font-size: 11px; }
.fh-newsletter-status--error { color: var(--fh-ink); }
.fh-footer-social { display: flex; align-items: center; justify-content: flex-end; gap: 9px; margin-top: 14px; }
.fh-social-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--fh-grey-200);
  border-radius: 50%;
  color: var(--fh-black) !important;
  background: var(--fh-white);
  transition: color .25s ease, background .25s ease, transform .25s var(--fh-ease);
}
.fh-social-link svg { width: 17px; height: 17px; fill: currentColor; }
.fh-social-link:hover { color: var(--fh-white) !important; background: var(--fh-black); transform: translateY(-2px); }
.fh-social-link.is-disabled { opacity: .38; pointer-events: none; }
.fh-footer-meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--fh-grey-200);
  color: var(--fh-grey-500);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.fh-footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 20px; }
.fh-footer-links a { color: var(--fh-grey-700); font-size: 10px; }
.fh-footer-links a:hover { color: var(--fh-black); }

@media (max-width: 900px) {
  .fh-footer-card { grid-template-columns: 1fr; gap: 34px; }
  .fh-footer-actions { max-width: 640px; }
  .fh-footer-social { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .fh-footer { padding-top: 38px; }
  .fh-footer-card { gap: 28px; padding: 25px 20px 20px; border-radius: 23px; }
  .fh-footer-copy h2 { font-size: clamp(2.6rem, 13vw, 4.2rem); }
  .fh-footer-copy p { margin-top: 17px; font-size: 13px; }
  .fh-newsletter { grid-template-columns: 1fr; padding: 6px; border-radius: 16px; }
  .fh-newsletter input { height: 45px; }
  .fh-newsletter button { width: 100%; min-height: 46px; }
  .fh-footer-meta { align-items: flex-start; flex-direction: column; gap: 14px; padding-top: 20px; }
  .fh-footer-links { justify-content: flex-start; gap: 8px 16px; }
}


/* =========================================================
   FAHABO V5 — balanced scale and contained product layouts
   ========================================================= */

body {
  font-size: 16px;
}

/* Header scrolls away naturally */
.fh-header {
  position: absolute;
}

/* Better type balance */
.fh-nav a {
  font-size: 13px;
}

.fh-kicker,
.fh-section-head p {
  font-size: 11px;
}

.fh-hero h1 {
  font-size: clamp(3.8rem, 7vw, 7.6rem);
  line-height: .88;
  letter-spacing: -.068em;
}

.fh-hero__intro {
  max-width: 500px;
  font-size: 16px;
  line-height: 1.7;
}

.fh-section-head h2 {
  max-width: 820px;
  font-size: clamp(2.5rem, 4.6vw, 5.2rem);
  line-height: .96;
  letter-spacing: -.055em;
}

.fh-architecture-card__copy h3 {
  font-size: clamp(2.2rem, 3.8vw, 4.6rem);
  line-height: .96;
  letter-spacing: -.055em;
}

.fh-product-rail__head h2 {
  font-size: clamp(2.5rem, 4.3vw, 4.9rem);
  line-height: .96;
  letter-spacing: -.055em;
}

.fh-future-copy h2 {
  font-size: clamp(3rem, 5.4vw, 6rem);
  line-height: .9;
  letter-spacing: -.06em;
}

.fh-future-copy p {
  max-width: 470px;
  font-size: 16px;
  line-height: 1.75;
}

.fh-page-header h1,
.fh-page > .fh-shell > h1,
.woocommerce-products-header__title.page-title {
  font-size: clamp(3rem, 5.3vw, 6rem);
  line-height: .94;
  letter-spacing: -.06em;
}

.woocommerce div.product .product_title {
  font-size: clamp(2.7rem, 4.4vw, 5rem);
  line-height: .94;
  letter-spacing: -.06em;
}

/* Product sections stay inside the screen */
.fh-product-rail {
  overflow: visible;
}

.fh-product-rail .woocommerce {
  width: min(calc(100% - 48px), var(--fh-shell));
  margin-inline: auto;
  overflow: visible;
}

.fh-product-rail ul.products {
  display: grid !important;
  grid-auto-flow: row !important;
  grid-auto-columns: auto !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(34px, 4vw, 58px) clamp(14px, 1.8vw, 24px) !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
  padding: 0 !important;
  scroll-snap-type: none !important;
}

.fh-product-rail ul.products li.product,
.woocommerce ul.products li.product {
  min-width: 0;
  overflow: visible;
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  min-width: 0;
  width: 100%;
}

.woocommerce ul.products li.product .fh-product-media {
  width: 100%;
  margin-bottom: 17px;
  border-radius: 18px;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  display: -webkit-box;
  min-height: 4.35em;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--fh-black);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.woocommerce ul.products li.product .price {
  font-size: 14px;
  line-height: 1.5;
}

/* Clear, usable product button instead of a tiny floating dot */
.woocommerce ul.products li.product .button {
  position: static;
  width: auto;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 13px;
  padding: 0 17px;
  border-radius: 11px;
  opacity: 1;
  color: var(--fh-white);
  background: var(--fh-black);
  box-shadow: none;
  transform: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.woocommerce ul.products li.product .button::before {
  display: none;
}

.woocommerce ul.products li.product .button:hover {
  color: var(--fh-white);
  background: var(--fh-grey-900);
}

/* Footer title remains elegant, not oversized */
.fh-footer-copy h2 {
  font-size: clamp(2.3rem, 3.9vw, 4.7rem);
  line-height: 1;
}

.fh-footer-copy p {
  font-size: 15px;
}

/* Tablet */
@media (max-width: 1180px) {
  .fh-product-rail ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* Small tablet */
@media (max-width: 900px) {
  .fh-hero h1 {
    font-size: clamp(3.7rem, 13vw, 6.5rem);
  }

  .fh-section-head h2,
  .fh-product-rail__head h2 {
    font-size: clamp(2.6rem, 8vw, 4.3rem);
  }

  .fh-product-rail .woocommerce {
    width: min(calc(100% - 28px), var(--fh-shell));
  }

  .fh-product-rail ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 38px 14px !important;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .fh-hero h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
    line-height: .92;
  }

  .fh-hero__intro {
    font-size: 15px;
  }

  .fh-section-head h2,
  .fh-product-rail__head h2 {
    font-size: clamp(2.45rem, 11vw, 3.7rem);
  }

  .fh-architecture-card__copy h3 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .fh-future-copy h2 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .fh-product-rail ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 32px 10px !important;
  }

  .woocommerce ul.products li.product .fh-product-media {
    margin-bottom: 12px;
    border-radius: 14px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 4.2em;
    font-size: 13.5px;
    line-height: 1.4;
  }

  .woocommerce ul.products li.product .price {
    font-size: 13px;
  }

  .woocommerce ul.products li.product .button {
    width: 100%;
    height: 40px;
    margin-top: 11px;
    padding-inline: 8px;
    font-size: 9px;
  }

  .fh-footer-copy h2 {
    font-size: clamp(2.35rem, 10vw, 3.5rem);
  }
}

@media (max-width: 390px) {
  .fh-product-rail ul.products {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: auto;
    font-size: 15px;
  }

  .woocommerce ul.products li.product .price {
    font-size: 14px;
  }
}


/* =========================================================
   FAHABO V6 — square shop imagery and stronger footer links
   ========================================================= */

/* View All stays clean and arrow-free */
.fh-arrow-link--plain::after {
  display: none !important;
}

.fh-arrow-link--plain {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--fh-black);
  border-radius: 11px;
  color: var(--fh-black);
  background: transparent;
}

.fh-arrow-link--plain:hover {
  color: var(--fh-white);
  background: var(--fh-black);
}

/* All shop catalogue images are square */
.woocommerce ul.products li.product .fh-product-media,
.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1 !important;
}

.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product .fh-primary-image,
.woocommerce ul.products li.product .fh-secondary-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Single-product gallery remains square */
.woocommerce div.product div.images .woocommerce-product-gallery__image,
.woocommerce div.product div.images .woocommerce-product-gallery__image img {
  aspect-ratio: 1 / 1;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Strong, visible contact and social area */
.fh-footer-contact {
  margin-top: 16px;
  text-align: right;
}

.fh-footer-contact a {
  color: var(--fh-black);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.fh-footer-social {
  flex-wrap: wrap;
  gap: 10px;
}

.fh-social-link {
  width: auto;
  min-width: 0;
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid var(--fh-black);
  border-radius: 12px;
  color: var(--fh-black) !important;
  background: var(--fh-white);
  opacity: 1;
}

.fh-social-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: var(--fh-black);
}

.fh-social-link span {
  color: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .01em;
}

.fh-social-link:hover svg {
  fill: var(--fh-white);
}

.fh-social-link.is-disabled {
  opacity: .6;
}

@media (max-width: 900px) {
  .fh-footer-contact {
    text-align: left;
  }

  .fh-footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .fh-social-link {
    width: 100%;
    justify-content: flex-start;
  }
}


/* =========================================================
   FAHABO V7 — coordinated typography and practical layout
   ========================================================= */

html,
body {
  overflow-x: hidden;
}

body {
  color: #111;
  font-size: 16px;
  line-height: 1.6;
}

/* Clear, readable announcement */
.fh-announcement {
  min-height: 38px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: none;
}

/* Header sits naturally in the page and uses solid, readable text */
.fh-header,
.admin-bar .fh-header {
  position: relative;
  top: auto;
  left: auto;
  width: min(calc(100% - 32px), 1400px);
  margin: 18px auto 0;
  transform: none;
}

.fh-header__inner {
  min-height: 72px;
  padding: 0 18px 0 24px;
  border-color: #d7d7d7;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0,0,0,.055);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.fh-nav ul {
  gap: clamp(24px, 2.4vw, 40px);
}

.fh-nav a {
  padding: 25px 0;
  color: #111 !important;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}

.fh-icon-button {
  color: #111;
}

.fh-icon-button svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.75;
}

/* Hero no longer consumes a full laptop screen */
.fh-hero {
  min-height: 0;
  padding: 58px 0 82px;
  background: #fff;
}

.fh-hero::before {
  display: none;
}

.fh-hero__grid {
  min-height: 0;
  align-items: center;
}

.fh-hero__copy {
  align-self: center;
  padding: 0;
}

.fh-kicker {
  margin-bottom: 16px;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
}

.fh-hero h1 {
  max-width: 650px;
  font-size: clamp(3.7rem, 6.2vw, 6.4rem);
  font-weight: 350;
  letter-spacing: -.06em;
  line-height: .9;
}

.fh-hero__intro {
  max-width: 500px;
  margin-top: 24px;
  color: #333;
  font-size: 17px;
  line-height: 1.65;
}

.fh-hero__actions {
  margin-top: 28px;
}

.fh-arrow-link {
  color: #111;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
}

.fh-hero__stage {
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 26px;
}

.fh-hero__caption {
  left: 22px;
  right: 22px;
  bottom: 20px;
}

.fh-hero__caption strong {
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
  font-weight: 400;
}

/* Consistent section rhythm */
.fh-section {
  padding: clamp(66px, 7vw, 104px) 0;
}

.fh-section-head,
.fh-product-rail__head {
  margin-bottom: clamp(28px, 3.5vw, 46px);
}

.fh-section-head h2,
.fh-product-rail__head h2 {
  max-width: 760px;
  color: #111;
  font-size: clamp(2.5rem, 4.2vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .98;
}

/* Category images are strong, but not full-screen monuments */
.fh-architecture {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fh-architecture-card,
.fh-architecture-card--small {
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
}

.fh-architecture-card__copy span {
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .07em;
}

.fh-architecture-card__copy h3 {
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1;
}

/* Product typography remains readable and coordinated */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 0;
  color: #111;
  font-size: 15px;
  font-weight: 450;
  line-height: 1.45;
}

.woocommerce ul.products li.product .price {
  color: #222;
  font-size: 15px;
  font-weight: 500;
}

.woocommerce ul.products li.product .button {
  font-size: 11px;
  font-weight: 600;
}

/* Remove every visual SALE badge as a second safety layer */
.woocommerce span.onsale,
.woocommerce-page span.onsale,
.onsale {
  display: none !important;
}

/* Footer text stays readable rather than tiny */
.fh-footer-copy h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}

.fh-footer-copy p {
  color: #333;
  font-size: 16px;
}

.fh-footer-kicker {
  color: #333;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
}

.fh-newsletter input {
  color: #111;
  font-size: 15px;
}

.fh-newsletter button {
  font-size: 12px;
}

.fh-footer-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.fh-footer-contact span {
  color: #333;
  font-size: 14px;
  font-weight: 600;
}

.fh-footer-contact a {
  color: #111;
  font-size: 15px;
}

.fh-social-link {
  min-height: 44px;
  color: #111 !important;
  font-size: 14px;
  font-weight: 600;
}

.fh-social-link span {
  font-size: 14px;
  font-weight: 600;
}

.fh-footer-meta,
.fh-footer-links a {
  color: #333;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: none;
}

/* Shop and content page titles */
.fh-page-header h1,
.fh-page > .fh-shell > h1,
.woocommerce-products-header__title.page-title {
  font-size: clamp(3rem, 4.8vw, 5rem);
  font-weight: 400;
  line-height: .96;
}

.woocommerce div.product .product_title {
  font-size: clamp(2.6rem, 4vw, 4.3rem);
  font-weight: 400;
  line-height: .98;
}

/* Tablet */
@media (max-width: 1180px) {
  .fh-header__inner {
    grid-template-columns: 1fr auto;
  }

  .fh-hero {
    padding-top: 48px;
  }

  .fh-hero h1 {
    font-size: clamp(3.6rem, 7.8vw, 5.8rem);
  }
}

/* Mobile */
@media (max-width: 900px) {
  .fh-announcement {
    font-size: 12px;
  }

  .fh-header,
  .admin-bar .fh-header {
    top: auto;
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .fh-header__inner {
    min-height: 62px;
  }

  .fh-hero {
    padding: 44px 0 64px;
  }

  .fh-hero__grid {
    gap: 30px;
  }

  .fh-hero__copy {
    padding: 0;
  }

  .fh-hero h1 {
    font-size: clamp(3.2rem, 12vw, 5rem);
  }

  .fh-hero__intro {
    font-size: 16px;
  }

  .fh-hero__stage {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .fh-section-head h2,
  .fh-product-rail__head h2 {
    font-size: clamp(2.45rem, 8vw, 3.8rem);
  }

  .fh-architecture {
    grid-template-columns: 1fr;
  }

  .fh-architecture-card,
  .fh-architecture-card--small {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .fh-footer-contact {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .fh-announcement {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 11.5px;
  }

  .fh-header,
  .admin-bar .fh-header {
    top: auto;
  }

  .fh-header__inner {
    min-height: 60px;
  }

  .fh-hero {
    padding-top: 36px;
  }

  .fh-hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .fh-kicker {
    font-size: 12px;
  }

  .fh-section {
    padding: 62px 0;
  }

  .fh-section-head h2,
  .fh-product-rail__head h2 {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
  }

  .fh-architecture-card__copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .fh-architecture-card__copy h3 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px;
  }

  .woocommerce ul.products li.product .price {
    font-size: 14px;
  }

  .fh-footer-copy h2 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .fh-footer-copy p {
    font-size: 15px;
  }

  .fh-footer-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}


/* =========================================================
   FAHABO V8 — Love, readable product pages and clean metadata
   ========================================================= */

/* Remove WooCommerce category counts, including yellow mark styling */
.woocommerce mark.count,
.woocommerce .product-category mark,
.product-category mark.count {
  display: none !important;
}

/* Product and content text must be properly readable */
.fh-page-content,
.fh-page-content p,
.woocommerce,
.woocommerce p,
.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-result-count,
.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .woocommerce-product-details__short-description p,
.woocommerce div.product .woocommerce-tabs .panel,
.woocommerce div.product .woocommerce-tabs .panel p,
.woocommerce div.product .woocommerce-tabs .panel li,
.woocommerce div.product .related.products,
.woocommerce .term-description,
.woocommerce .term-description p {
  color: #111 !important;
}

/* Smaller, coordinated shop and product headings */
.woocommerce-products-header__title.page-title,
.fh-page > .fh-shell > h1 {
  font-size: clamp(2.8rem, 4.2vw, 4.6rem) !important;
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .98;
}

.woocommerce div.product .product_title {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(2.3rem, 3.5vw, 3.9rem) !important;
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}

.woocommerce div.product .related.products > h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}

/* Product gallery zoom is enabled in functions.php */
.woocommerce-product-gallery__image a,
.woocommerce-product-gallery__image img {
  cursor: zoom-in;
}

/* Product metadata is removed through WooCommerce hooks */
.woocommerce div.product .product_meta {
  display: none !important;
}

/* Love button on product cards */
.woocommerce ul.products li.product {
  position: relative;
}

.fh-love-button {
  appearance: none;
  border: 1px solid #d8d8d8;
  color: #111;
  background: #fff;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.fh-love-button svg {
  width: 20px;
  height: 20px;
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: fill .2s ease;
}

.fh-love-button.is-loved {
  border-color: #111;
  color: #fff;
  background: #111;
}

.fh-love-button.is-loved svg {
  fill: currentColor;
}

.fh-love-button--loop {
  position: absolute;
  z-index: 6;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.fh-love-button--loop:hover {
  transform: translateY(-2px);
}

.fh-love-button--single {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

/* Header Love count */
.fh-love-header-button {
  position: relative;
}

.fh-love-header-button svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.fh-love-count {
  position: absolute;
  top: 1px;
  right: 0;
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border-radius: 999px;
  color: #fff;
  background: #111;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

/* Love drawer */
.fh-love-layer {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  opacity: 0;
  background: rgba(0,0,0,.28);
  transition: opacity .28s ease, visibility .28s ease;
}

.fh-love-layer.is-open {
  visibility: visible;
  opacity: 1;
}

.fh-love-panel {
  width: min(460px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow-y: auto;
  background: #fff;
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.22,.8,.24,1);
}

.fh-love-layer.is-open .fh-love-panel {
  transform: translateX(0);
}

.fh-love-panel__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e2e2e2;
}

.fh-love-panel__top span {
  color: #333;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fh-love-panel__top h2 {
  margin: 4px 0 0;
  color: #111;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}

.fh-love-panel__top h2 small {
  font-size: 16px;
  font-weight: 600;
}

.fh-love-items {
  display: grid;
  gap: 18px;
  padding: 22px 0;
}

.fh-love-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
}

.fh-love-card__image {
  overflow: hidden;
  border-radius: 12px;
  background: #f2f2f2;
}

.fh-love-card__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.fh-love-card__copy {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.fh-love-card__title {
  color: #111;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.fh-love-card__price {
  color: #111;
  font-size: 13px;
  font-weight: 600;
}

.fh-love-card__remove {
  width: max-content;
  padding: 0;
  border: 0;
  color: #555;
  background: transparent;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.fh-love-empty {
  margin: auto 0;
  padding: 48px 0;
  text-align: center;
}

.fh-love-empty p {
  margin-bottom: 18px;
  color: #111;
  font-size: 16px;
}

.fh-love-empty a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 11px;
  color: #fff;
  background: #111;
  font-size: 13px;
  font-weight: 600;
}

/* Footer keeps social links only; Contact remains in footer links */
.fh-footer-contact {
  display: none !important;
}

@media (max-width: 900px) {
  .woocommerce-products-header__title.page-title,
  .fh-page > .fh-shell > h1 {
    font-size: clamp(2.6rem, 8vw, 3.8rem) !important;
  }

  .woocommerce div.product .product_title {
    font-size: clamp(2.2rem, 7vw, 3.3rem) !important;
  }
}

@media (max-width: 600px) {
  .fh-love-panel {
    padding: 22px 18px;
  }

  .fh-love-panel__top h2 {
    font-size: 34px;
  }

  .fh-love-card {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .fh-love-button--loop {
    top: 9px;
    right: 9px;
    width: 38px;
    height: 38px;
  }

  .woocommerce div.product .product_title {
    font-size: clamp(2rem, 10vw, 2.9rem) !important;
  }
}


/* =========================================================
   FAHABO V9 — direct category storefront
   ========================================================= */

.fh-category-archive {
  padding: 58px 0 88px;
}

.fh-category-archive .woocommerce-breadcrumb {
  margin: 0 0 28px;
  color: #333 !important;
  font-size: 13px;
  font-weight: 500;
}

.fh-category-header {
  max-width: 860px;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.fh-category-header h1 {
  margin: 0;
  color: #111;
  font-size: clamp(2.8rem, 4.5vw, 4.9rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .98;
}

.fh-category-description {
  max-width: 680px;
  margin-top: 18px;
}

.fh-category-description,
.fh-category-description p {
  color: #111 !important;
  font-size: 16px;
  line-height: 1.7;
}

.fh-subcategory-section {
  margin-bottom: clamp(64px, 8vw, 110px);
}

.fh-subcategory-section > h2,
.fh-category-products > h2 {
  margin: 0 0 28px;
  color: #111;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}

.fh-subcategory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 18px;
}

.fh-subcategory-card {
  min-width: 0;
  color: #111;
}

.fh-subcategory-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
  border: 1px solid #e4e4e4;
  border-radius: 18px;
  background: #f3f3f3;
}

.fh-subcategory-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.fh-subcategory-card:hover .fh-subcategory-card__image img {
  transform: scale(1.025);
}

.fh-subcategory-card strong {
  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.fh-category-products {
  margin-top: 0;
}

.fh-category-products .woocommerce-result-count,
.fh-category-products .woocommerce-ordering {
  margin-bottom: 28px;
}

.fh-category-products .woocommerce-ordering select {
  min-height: 44px;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  color: #111;
  background: #fff;
  font-size: 14px;
}

.fh-category-pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(62px, 8vw, 100px);
  padding-top: 28px;
  border-top: 1px solid #dedede;
}

.fh-category-pager__item {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 22px;
  border: 1px solid #d8d8d8;
  border-radius: 16px;
  color: #111;
  background: #fff;
}

.fh-category-pager__item--next {
  text-align: right;
}

.fh-category-pager__item span {
  margin-bottom: 5px;
  color: #555;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.fh-category-pager__item strong {
  color: #111;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.fh-category-pager__item:hover {
  color: #fff;
  background: #111;
  border-color: #111;
}

.fh-category-pager__item:hover span,
.fh-category-pager__item:hover strong {
  color: #fff;
}

/* The category cards are categories, never “collections”. */
.fh-architecture-card__copy > div > span {
  display: none !important;
}

@media (max-width: 1080px) {
  .fh-subcategory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .fh-category-archive {
    padding: 42px 0 70px;
  }

  .fh-subcategory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 12px;
  }

  .fh-category-header h1 {
    font-size: clamp(2.55rem, 10vw, 3.8rem);
  }

  .fh-category-description,
  .fh-category-description p {
    font-size: 15px;
  }

  .fh-category-pager {
    grid-template-columns: 1fr;
  }

  .fh-category-pager__item--next {
    text-align: left;
  }
}

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


/* =========================================================
   FAHABO V10 — subcategory-only parent pages and top arrow
   ========================================================= */

/* Old Back / Next navigation is fully removed */
.fh-category-pager {
  display: none !important;
}

/* Parent category pages finish neatly after their cards */
.fh-subcategory-section {
  margin-bottom: 0;
}

/* Sleek back-to-top control near the footer */
.fh-footer .fh-shell {
  position: relative;
}

.fh-back-to-top {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 16px 0 0 auto;
  padding: 0;
  border: 1px solid #111;
  border-radius: 50%;
  color: #111;
  background: #fff;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.fh-back-to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fh-back-to-top:hover {
  color: #fff;
  background: #111;
  transform: translateY(-3px);
}

.fh-back-to-top:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .fh-back-to-top {
    width: 44px;
    height: 44px;
    margin-top: 14px;
  }
}


/* =========================================================
   FaHaBo V11 — category-only parent pages and slim footer
   ========================================================= */

/* Parent category pages contain category cards only */
.fh-category-archive--parent .fh-category-products,
.fh-category-archive--parent .woocommerce-result-count,
.fh-category-archive--parent .woocommerce-ordering,
.fh-category-archive--parent ul.products {
  display: none !important;
}

.fh-category-archive--parent {
  padding-bottom: clamp(64px, 7vw, 92px);
}

.fh-category-archive--parent .fh-category-header {
  margin-bottom: clamp(36px, 5vw, 58px);
}

.fh-category-archive--parent .fh-subcategory-section {
  margin-bottom: 0;
}

/* Tall editorial category cards only on category-selection pages */
.fh-category-archive--parent .fh-subcategory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 20px;
}

.fh-category-archive--parent .fh-subcategory-card__image {
  aspect-ratio: 4 / 5;
  margin-bottom: 15px;
  border-radius: 20px;
}

.fh-category-archive--parent .fh-subcategory-card strong {
  display: block;
  color: #111;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

/* Slim footer: no giant card, title or empty block */
.fh-footer {
  margin: 0;
  padding: 28px 0 20px;
  border-top: 1px solid #dcdcdc;
  background: #fff;
}

.fh-footer-slim {
  display: grid;
  gap: 18px;
}

.fh-footer-topline,
.fh-footer-bottomline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.fh-footer-newsletter {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 auto;
}

.fh-footer-newsletter > strong {
  flex: 0 0 auto;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.fh-footer .fh-newsletter {
  width: min(440px, 100%);
  min-height: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0;
  padding: 4px;
  border: 1px solid #cfcfcf;
  border-radius: 12px;
  background: #fff;
}

.fh-footer .fh-newsletter input {
  min-width: 0;
  height: 36px;
  padding: 0 12px;
  border: 0;
  outline: 0;
  color: #111;
  background: transparent;
  font-size: 14px;
}

.fh-footer .fh-newsletter button {
  min-height: 36px;
  padding: 0 15px;
  border: 0;
  border-radius: 9px;
  color: #fff;
  background: #111;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.fh-footer .fh-footer-social {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.fh-footer .fh-social-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  color: #111 !important;
  background: #fff;
}

.fh-footer .fh-social-link svg {
  width: 17px;
  height: 17px;
  fill: #111;
}

.fh-footer .fh-social-link span {
  font-size: 13px;
  font-weight: 600;
}

.fh-footer-bottomline {
  padding-top: 16px;
  border-top: 1px solid #e5e5e5;
}

.fh-footer-copyright {
  flex: 0 0 auto;
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

.fh-footer .fh-footer-links {
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.fh-footer .fh-footer-links a {
  color: #222;
  font-size: 13px;
  font-weight: 500;
}

.fh-footer .fh-back-to-top {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  margin: 0;
}

.fh-footer .fh-newsletter-status {
  margin: -5px 0 0;
  color: #111;
  font-size: 12px;
}

@media (max-width: 900px) {
  .fh-category-archive--parent .fh-subcategory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fh-footer-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .fh-footer-newsletter {
    width: 100%;
  }

  .fh-footer .fh-footer-social {
    width: 100%;
  }

  .fh-footer-bottomline {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .fh-footer .fh-footer-links {
    justify-content: flex-start;
    order: 3;
    width: 100%;
  }
}

@media (max-width: 640px) {
  /* Exactly one tall category card per row on mobile */
  .fh-category-archive--parent .fh-subcategory-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .fh-category-archive--parent .fh-subcategory-card__image {
    aspect-ratio: 4 / 5;
    border-radius: 18px;
  }

  .fh-category-archive--parent .fh-subcategory-card strong {
    font-size: 17px;
  }

  .fh-footer {
    padding: 24px 0 18px;
  }

  .fh-footer-newsletter {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .fh-footer .fh-newsletter {
    width: 100%;
  }

  .fh-footer .fh-footer-social {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fh-footer .fh-social-link {
    justify-content: center;
  }

  .fh-footer-bottomline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
  }

  .fh-footer .fh-footer-links {
    grid-column: 1 / -1;
    gap: 9px 15px;
  }
}


/* =========================================================
   FaHaBo V12 — show complete category posters without cropping
   ========================================================= */

/*
 * These uploaded category posters already contain their own border and text.
 * Use a tall 9:16 stage and contain the entire artwork instead of cropping it.
 */
.fh-category-archive--parent .fh-subcategory-card__image {
  aspect-ratio: 9 / 16 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #f6f2ec;
}

.fh-category-archive--parent .fh-subcategory-card__image img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

.fh-category-archive--parent .fh-subcategory-card:hover .fh-subcategory-card__image img {
  transform: none !important;
}

/* Keep one complete, tall poster per row on phones. */
@media (max-width: 640px) {
  .fh-category-archive--parent .fh-subcategory-card__image {
    aspect-ratio: 9 / 16 !important;
    border-radius: 16px;
  }
}


/* =========================================================
   FaHaBo V13 — cleaner parent category intro
   ========================================================= */

.fh-category-archive--parent .fh-category-header {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.fh-category-archive--parent .fh-subcategory-section {
  margin-top: 0;
}


/* =========================================================
   FaHaBo V14 — poster cards with one clear Shop button
   ========================================================= */

.fh-category-archive--parent .fh-subcategory-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
}

.fh-category-archive--parent .fh-subcategory-card__poster {
  display: block;
  width: 100%;
}

.fh-category-archive--parent .fh-subcategory-card__image {
  width: 100%;
  margin-bottom: 0 !important;
}

.fh-category-archive--parent .fh-subcategory-card strong {
  display: none !important;
}

.fh-category-archive--parent .fh-subcategory-card__shop {
  display: inline-flex;
  min-width: 132px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 10px 24px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.fh-category-archive--parent .fh-subcategory-card__shop:hover,
.fh-category-archive--parent .fh-subcategory-card__shop:focus-visible {
  background: #fff;
  color: #111;
  transform: translateY(-1px);
}

.fh-category-archive--parent .fh-subcategory-card__poster:focus-visible,
.fh-category-archive--parent .fh-subcategory-card__shop:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .fh-category-archive--parent .fh-subcategory-card__shop {
    min-width: 144px;
    margin-top: 14px;
  }
}


/* =========================================================
   FaHaBo V16 — natural poster sizing and softer Shop buttons
   ========================================================= */

/*
 * Remove the fixed 9:16 stage. Each uploaded poster now keeps its
 * original proportions, so no beige letterboxing appears around it.
 */
.fh-category-archive--parent .fh-subcategory-card {
  width: 100%;
  max-width: 350px;
  justify-self: center;
  overflow: visible;
}

.fh-category-archive--parent .fh-subcategory-card__poster,
.fh-category-archive--parent .fh-subcategory-card__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.fh-category-archive--parent .fh-subcategory-card__image {
  aspect-ratio: auto !important;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
}

.fh-category-archive--parent .fh-subcategory-card__image img {
  display: block;
  width: 100% !important;
  max-width: 100%;
  height: auto !important;
  max-height: none !important;
  object-fit: initial !important;
  object-position: initial !important;
  border-radius: 0;
}

/* Softer grey instead of loud black. */
.fh-category-archive--parent .fh-subcategory-card__shop {
  min-width: 124px;
  min-height: 42px;
  margin-top: 14px;
  padding: 10px 22px;
  border-color: #747474;
  background: #747474;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.fh-category-archive--parent .fh-subcategory-card__shop:hover,
.fh-category-archive--parent .fh-subcategory-card__shop:focus-visible {
  border-color: #5f5f5f;
  background: #5f5f5f;
  color: #fff;
}

/* Keep category cards compact and contained on tablets. */
@media (max-width: 900px) {
  .fh-category-archive--parent .fh-subcategory-card {
    max-width: 340px;
  }
}

/*
 * Mobile cards are deliberately narrower than the screen.
 * This prevents horizontal bleeding and keeps the Shop button
 * visible without an excessively long scroll.
 */
@media (max-width: 640px) {
  .fh-category-archive--parent .fh-subcategory-grid {
    justify-items: center;
    gap: 34px;
  }

  .fh-category-archive--parent .fh-subcategory-card {
    width: min(82vw, 310px);
    max-width: min(82vw, 310px);
  }

  .fh-category-archive--parent .fh-subcategory-card__shop {
    min-width: 126px;
    min-height: 42px;
    margin-top: 12px;
  }
}
