:root {
  --fh-green: #18d51b;
  --fh-green-dark: #103f19;
  --fh-leaf: #d7ecd7;
  --fh-mist: #edf2eb;
  --fh-ink: #111510;
  --fh-muted: #4d5a4c;
  --fh-white: #fff;
  --fh-pink: #e30076;
  --fh-line: rgba(16, 63, 25, .12);
  --fh-shadow: 0 26px 70px rgba(17, 50, 18, .18);
  --fh-soft-shadow: 0 16px 34px rgba(17, 50, 18, .12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(24, 213, 27, .14), rgba(255, 255, 255, 0) 28%),
    var(--fh-mist);
  color: var(--fh-ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body,
button,
input,
select,
textarea {
  font: 16px/1.5 Inter, Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.screen-reader-text,
.fh-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fh-skip-link:focus {
  z-index: 999;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--fh-white);
}

.fh-page,
.fh-main {
  width: min(1320px, calc(100% - 52px));
  margin: 32px auto 70px;
}

.fh-main {
  margin-top: 0;
}

.fh-site-header {
  position: relative;
  z-index: 40;
  margin-bottom: 0;
}

.fh-region-wash {
  position: relative;
  min-height: 150px;
  padding: 54px 28px;
  border-radius: 28px 28px 0 0;
  background:
    linear-gradient(rgba(215, 236, 215, .42), rgba(215, 236, 215, .42)),
    var(--fh-leaf);
}

.fh-region-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: min(1000px, 100%);
  min-height: 34px;
  margin: 0 auto 12px;
  color: var(--fh-green-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.fh-region-strip a {
  color: var(--fh-ink);
}

.fh-strip-icon svg {
  width: 18px;
  height: 18px;
}

.fh-nav-pill {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  width: min(1000px, 100%);
  min-height: 64px;
  margin: 0 auto;
  padding: 9px 12px 9px 18px;
  border: 1px solid var(--fh-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 36px rgba(16, 63, 25, .12);
  backdrop-filter: blur(10px);
}

.fh-identity {
  display: flex;
  gap: 11px;
  align-items: center;
  min-width: 210px;
}

.fh-logo-dot {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--fh-green);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .55);
}

.fh-logo-dot .custom-logo-link,
.fh-logo-dot img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.fh-logo-fallback {
  font-size: 13px;
  font-weight: 950;
}

.fh-domain {
  display: grid;
  gap: 2px;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
}

.fh-domain small {
  color: var(--fh-green-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.fh-nav-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.fh-primary-menu,
.fh-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fh-primary-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  font-size: 13px;
  font-weight: 850;
}

.fh-primary-menu li {
  position: relative;
}

.fh-primary-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
}

.fh-primary-menu a:hover,
.fh-primary-menu .current-menu-item > a {
  background: var(--fh-leaf);
  color: var(--fh-green-dark);
}

.fh-primary-menu a[href*="submit"] {
  color: var(--fh-pink);
}

.fh-primary-menu .sub-menu {
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 0;
  display: grid;
  min-width: 210px;
  margin: 0;
  padding: 10px;
  padding-top: 18px;
  list-style: none;
  border: 1px solid var(--fh-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--fh-soft-shadow);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  visibility: hidden;
}

.fh-primary-menu .sub-menu a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  border-radius: 12px;
  color: var(--fh-ink);
}

.fh-primary-menu .menu-item-has-children:hover > .sub-menu,
.fh-primary-menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.fh-utility-icons {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: flex-end;
}

.fh-icon-button,
.fh-social-icon,
.fh-social-row a,
.fh-ribbon-socials a,
.fh-ribbon-go {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--fh-green-dark);
  color: var(--fh-white);
}

.fh-icon-button {
  position: relative;
  background: transparent;
  color: var(--fh-ink);
}

.fh-social-icon {
  width: 36px;
  height: 36px;
  background: var(--fh-green);
  color: var(--fh-green-dark);
}

.fh-utility-icons .fh-icon-button {
  width: 36px;
  height: 36px;
}

.fh-icon-button svg,
.fh-social-icon svg,
.fh-social-row svg,
.fh-ribbon-socials svg,
.fh-ribbon-go svg {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}

.fh-icon-fill {
  fill: currentColor;
  stroke: none;
}

.fh-icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fh-icon-fill-dot {
  fill: currentColor;
  stroke: none;
}

.fh-cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--fh-green);
  color: var(--fh-ink);
  font-size: 11px;
  font-weight: 900;
}

.fh-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--fh-leaf);
}

.fh-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--fh-ink);
}

.fh-landing-shell,
.fh-content-shell,
.fh-site-footer {
  overflow: hidden;
  border: 1px solid var(--fh-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--fh-shadow);
}

.fh-landing-shell {
  margin-top: -52px;
  padding-top: 54px;
}

.fh-nature-hero {
  position: relative;
  width: min(1130px, calc(100% - 76px));
  min-height: 560px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  background: var(--fh-green-dark);
  box-shadow: var(--fh-soft-shadow);
}

.fh-nature-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fh-nature-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 45%, rgba(255, 255, 255, .08), transparent 25%),
    linear-gradient(90deg, rgba(8, 41, 14, .78), rgba(8, 41, 14, .22) 52%, rgba(8, 41, 14, .04));
}

.fh-hero-copy {
  position: absolute;
  z-index: 2;
  top: 49%;
  left: 54px;
  width: min(520px, calc(100% - 108px));
  transform: translateY(-50%);
  color: var(--fh-white);
}

.fh-kicker {
  margin: 0 0 8px;
  color: var(--fh-green-dark);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.15;
  text-transform: uppercase;
}

.fh-hero-copy .fh-kicker {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  text-transform: none;
}

.fh-hero-copy h1,
.fh-page-content h1,
.fh-single-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(48px, 5.8vw, 84px);
  font-weight: 950;
  line-height: .9;
}

.fh-archive-head h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 950;
  line-height: .98;
}

.fh-single-hero h1 {
  max-width: 920px;
  font-size: clamp(42px, 5.2vw, 76px);
}

.fh-hero-copy p {
  width: min(380px, 100%);
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
  line-height: 1.35;
}

.fh-button,
.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wpforms-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--fh-green);
  color: var(--fh-ink);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.fh-button:hover,
.button:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wpforms-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(16, 63, 25, .18);
}

.fh-button-light {
  background: var(--fh-white);
}

.fh-logo-orb {
  position: absolute;
  z-index: 2;
  top: 58px;
  right: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: clamp(214px, 24vw, 276px);
  height: clamp(214px, 24vw, 276px);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, .84), rgba(255, 255, 255, .18) 30%, rgba(255, 255, 255, .06) 62%),
    rgba(255, 255, 255, .12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .24);
  backdrop-filter: blur(8px);
}

.fh-logo-orb .custom-logo-link,
.fh-logo-orb img {
  display: grid;
  place-items: center;
  width: 78%;
  height: 78%;
  object-fit: contain;
  transform: none;
}

.fh-orb-fallback {
  font-size: 42px;
  font-weight: 950;
  line-height: .95;
  text-align: center;
}

.fh-cta-ribbon {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  width: min(900px, calc(100% - 150px));
  min-height: 64px;
  margin: 18px auto 44px;
  padding: 10px 14px 10px 28px;
  border-radius: 22px;
  background: var(--fh-green);
  box-shadow: 0 18px 38px rgba(16, 63, 25, .16);
  font-size: 18px;
}

.fh-cta-ribbon strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.fh-ribbon-go {
  background: var(--fh-white);
  color: var(--fh-ink);
}

.fh-ribbon-socials {
  display: flex;
  gap: 9px;
}

.fh-home-intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 0 58px 58px;
}

.fh-home-intro h2,
.fh-section-head h2,
.fh-footer-cta h2 {
  margin: 0;
  color: var(--fh-green);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 950;
  line-height: .98;
}

.fh-home-intro p,
.fh-section-head p,
.fh-footer-cta p {
  color: var(--fh-muted);
  font-size: 19px;
}

.fh-mini-grid,
.fh-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.fh-mini-card,
.fh-card-image,
.fh-product-image {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--fh-leaf);
}

.fh-mini-card::after,
.fh-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .62));
}

.fh-mini-card span {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  font-size: 13px;
  font-weight: 950;
}

.fh-content-shell {
  margin-top: 26px;
  padding: 34px;
}

.fh-section-head {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.fh-card,
.fh-product-card {
  overflow: hidden;
  border: 1px solid var(--fh-line);
  border-radius: 22px;
  background: var(--fh-white);
  box-shadow: var(--fh-soft-shadow);
}

.fh-card-image {
  display: block;
  min-height: 210px;
  border-radius: 0;
}

.fh-card-image img,
.fh-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fh-card-body,
.fh-product-body {
  padding: 22px;
}

.fh-tag {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--fh-leaf);
  color: var(--fh-green-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.fh-card h2,
.fh-product-card h2 {
  margin: 12px 0 8px;
  font-size: 28px;
  font-weight: 950;
  line-height: 1.05;
}

.fh-card p {
  margin-bottom: 0;
  color: var(--fh-muted);
}

.fh-page-content,
.fh-archive-head,
.fh-shop-hero {
  max-width: 980px;
}

.fh-archive-head {
  padding: 28px 32px;
}

.fh-page-content h1 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.fh-blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 24px;
  align-items: start;
  max-width: none;
}

.fh-card-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fh-blog-sidebar {
  position: sticky;
  top: 20px;
  box-shadow: none;
}

.fh-blog-sidebar h3,
.fh-field-panel h3 {
  margin: 18px 0 8px;
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
  color: var(--fh-green-dark);
}

.fh-sidebar-list {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.fh-sidebar-list a {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(215, 236, 215, .72);
  font-weight: 850;
}

.fh-category-count {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--fh-green-dark);
  font-size: 12px;
  font-weight: 950;
}

.fh-shop-landing {
  max-width: none;
  padding: 0;
}

.fh-shop-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  min-height: 430px;
}

.fh-shop-copy {
  align-self: center;
  padding: 54px;
}

.fh-shop-copy h1 {
  max-width: 740px;
  margin: 0 0 18px;
  font-size: clamp(58px, 7vw, 106px);
  font-weight: 950;
  line-height: .86;
}

.fh-shop-copy p {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--fh-muted);
  font-size: 21px;
}

.fh-shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fh-shop-feature {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 63, 25, .08), rgba(16, 63, 25, .46)),
    var(--fh-leaf);
}

.fh-shop-feature img {
  width: min(260px, 72%);
  filter: drop-shadow(0 22px 34px rgba(16, 63, 25, .22));
}

.fh-shop-feature div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 2px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--fh-soft-shadow);
}

.fh-shop-feature span {
  color: var(--fh-green-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.fh-shop-feature strong {
  font-size: 27px;
  line-height: 1;
}

.fh-store-note {
  display: inline-flex;
  max-width: 360px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--fh-leaf);
  color: var(--fh-green-dark);
  font-size: 13px;
  font-weight: 850;
}

.fh-store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.fh-store-card {
  overflow: hidden;
  border: 1px solid var(--fh-line);
  border-radius: 24px;
  background: var(--fh-white);
  box-shadow: var(--fh-soft-shadow);
}

.fh-store-card-image {
  display: grid;
  place-items: center;
  min-height: 250px;
  overflow: hidden;
  background: var(--fh-leaf);
}

.fh-store-card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.fh-store-card-logo .fh-store-card-image img {
  width: 210px;
  height: 210px;
  object-fit: contain;
}

.fh-store-card-body {
  padding: 22px;
}

.fh-store-card h2 {
  margin: 12px 0 8px;
  font-size: 31px;
  font-weight: 950;
  line-height: 1;
}

.fh-store-card p {
  margin: 0;
  color: var(--fh-muted);
}

.fh-shop-region-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 34px;
  border-radius: 28px;
  background: var(--fh-green);
  color: var(--fh-ink);
  box-shadow: var(--fh-shadow);
}

.fh-shop-region-band h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 950;
  line-height: .96;
}

.fh-shop-region-band nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: 420px;
}

.fh-shop-region-band a {
  display: grid;
  place-items: center;
  min-width: 54px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--fh-white);
  font-weight: 950;
}

.fh-storefront-pane-shell {
  margin-top: 8px;
}

.fh-storefront-panes,
.fh-store-activity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.fh-pane-card {
  position: relative;
  display: flex;
  min-height: 250px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 18px;
  background: var(--fh-leaf);
  box-shadow: var(--fh-soft-shadow);
  isolation: isolate;
}

.fh-pane-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .03), rgba(0, 0, 0, .72));
}

.fh-pane-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.fh-pane-card:hover img {
  transform: scale(1.035);
}

.fh-pane-card .fh-pane-kicker,
.fh-pane-card strong,
.fh-pane-card em {
  position: relative;
  z-index: 2;
  margin-left: 22px;
  margin-right: 22px;
  color: var(--fh-white);
  text-shadow: 0 1px 12px rgba(0, 0, 0, .35);
}

.fh-pane-card .fh-pane-kicker {
  margin-bottom: 6px;
  color: var(--fh-green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.fh-storefront-panes .fh-pane-kicker {
  display: none;
}

.fh-pane-card strong {
  font-size: clamp(29px, 3.3vw, 48px);
  font-weight: 950;
  line-height: .88;
  text-transform: uppercase;
}

.fh-pane-card em {
  width: max-content;
  margin-top: 8px;
  margin-bottom: 22px;
  border-bottom: 4px solid var(--fh-green);
  font-size: 14px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.fh-store-featured-drop .fh-section-head h2,
.fh-store-region-layer .fh-section-head h2,
.fh-store-activity-layer .fh-section-head h2 {
  max-width: 780px;
}

.fh-store-drop-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.fh-store-drop-copy {
  display: grid;
  align-content: center;
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(215, 236, 215, .94), rgba(255, 255, 255, .86));
}

.fh-store-drop-copy h2 {
  margin: 12px 0;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 950;
  line-height: .94;
}

.fh-store-drop-copy p {
  margin: 0;
  color: var(--fh-muted);
  font-size: 18px;
}

.fh-card-grid-compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fh-card-grid-compact .fh-pane-card {
  min-height: 340px;
}

.fh-store-region-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.fh-store-region-grid a:not(.fh-pane-card) {
  display: grid;
  min-height: 258px;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--fh-line);
  border-radius: 18px;
  background: var(--fh-ink);
  color: var(--fh-white);
  box-shadow: var(--fh-soft-shadow);
}

.fh-store-region-grid .fh-pane-card {
  min-height: 258px;
}

.fh-store-region-grid .fh-pane-card .fh-pane-kicker {
  display: block;
  color: var(--fh-green);
}

.fh-store-region-grid strong {
  font-size: clamp(34px, 3.5vw, 58px);
  font-weight: 950;
  line-height: .92;
}

.fh-store-region-grid span {
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.fh-store-activity-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fh-store-activity-grid .fh-pane-card {
  min-height: 245px;
}

.fh-store-activity-grid .fh-pane-card strong {
  max-width: 240px;
  font-size: clamp(24px, 2.6vw, 36px);
}

.fh-store-activity-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.fh-store-activity-link-grid a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(215, 236, 215, .96), rgba(255, 255, 255, .84));
  padding: 14px 18px;
  color: var(--fh-green-dark);
  font-weight: 950;
  text-transform: uppercase;
}

.fh-store-activity-link-grid a::after {
  content: ">";
  color: var(--fh-ink);
}

.fh-store-collection-hero {
  margin-top: 8px;
}

.fh-store-collection-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .72fr);
  gap: 18px;
  align-items: stretch;
}

.fh-store-collection-copy,
.fh-store-layer-panel {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(215, 236, 215, .96), rgba(255, 255, 255, .9));
  box-shadow: var(--fh-soft-shadow);
}

.fh-store-collection-copy {
  display: grid;
  align-content: center;
  min-height: 390px;
  padding: clamp(28px, 5vw, 64px);
}

.fh-store-collection-copy h1 {
  max-width: 760px;
  margin: 10px 0 12px;
  font-size: clamp(50px, 7vw, 96px);
  font-weight: 950;
  line-height: .88;
  text-transform: uppercase;
}

.fh-store-collection-copy p {
  max-width: 660px;
  margin: 0;
  color: var(--fh-muted);
  font-size: 20px;
}

.fh-store-collection-image {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  background: var(--fh-ink);
  box-shadow: var(--fh-soft-shadow);
}

.fh-store-collection-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .64));
}

.fh-store-collection-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.fh-store-collection-image figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: var(--fh-white);
}

.fh-store-collection-image span {
  display: block;
  color: var(--fh-green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.fh-store-collection-image strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 950;
  line-height: .9;
  text-transform: uppercase;
}

.fh-store-layer-panel {
  padding: clamp(22px, 3vw, 34px);
}

.fh-store-layer-panel .fh-section-head {
  margin-bottom: 18px;
}

.fh-store-layer-panel .fh-section-head h2 {
  max-width: 720px;
  color: var(--fh-ink);
  font-size: clamp(34px, 4vw, 58px);
  line-height: .94;
}

.fh-store-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fh-store-chip-grid a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid rgba(17, 27, 18, .1);
  border-radius: 999px;
  background: var(--fh-white);
  padding: 0 18px;
  color: var(--fh-green-dark);
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(18, 35, 20, .08);
}

.fh-entry-content {
  color: #202720;
  font-size: 19px;
}

.fh-entry-content > *:first-child {
  margin-top: 0;
}

.fh-entry-content .fh-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.fh-entry-content .fh-link-grid a {
  display: block;
  min-height: 50px;
  padding: 13px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(24, 213, 27, .18), rgba(255, 255, 255, .88));
  color: var(--fh-green-dark);
  font-weight: 950;
}

.fh-single-layout {
  margin-top: 26px;
}

.fh-single-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--fh-green-dark);
  box-shadow: var(--fh-shadow);
}

.fh-single-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fh-single-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 41, 14, .78), rgba(8, 41, 14, .18));
}

.fh-single-hero > div {
  position: absolute;
  z-index: 2;
  left: 54px;
  right: 54px;
  bottom: 44px;
  color: var(--fh-white);
}

.fh-single-hero .fh-kicker,
.fh-single-hero .fh-meta {
  color: rgba(255, 255, 255, .82);
}

.fh-single-grid,
.fh-submit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  margin-top: 26px;
}

.fh-article-body,
.fh-field-panel {
  padding: 34px;
  border: 1px solid var(--fh-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--fh-soft-shadow);
}

.fh-article-body {
  color: #202720;
  font-size: 19px;
}

.fh-field-panel h2 {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 950;
  line-height: 1;
}

.fh-fact {
  margin-bottom: 12px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(215, 236, 215, .96), rgba(255, 255, 255, .82));
  font-weight: 850;
}

.fh-search-form {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.fh-search-form label {
  flex: 1;
}

.fh-search-form input,
.fh-entry-content input,
.fh-entry-content textarea,
.fh-entry-content select,
.fh-preview-form input,
.fh-preview-form textarea,
.fh-preview-form select {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--fh-line);
  border-radius: 14px;
  background: var(--fh-white);
}

.fh-entry-content textarea {
  min-height: 160px;
}

.fh-preview-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.fh-preview-form label {
  display: grid;
  gap: 8px;
  color: var(--fh-green-dark);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.fh-preview-form textarea {
  min-height: 170px;
}

.fh-form-grid {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 16px;
}

.fh-site-footer {
  margin-top: 24px;
  background: var(--fh-ink);
  color: var(--fh-white);
}

.fh-footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.fh-footer-cta .fh-kicker,
.fh-footer-grid h3,
.fh-footer-cta h2,
.fh-footer-cta p {
  color: var(--fh-white);
}

.fh-footer-cta p,
.fh-footer-grid p {
  opacity: .76;
}

.fh-footer-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.fh-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1.36fr);
  gap: 28px;
  align-items: start;
  padding: 20px 28px 16px;
}

.fh-footer-grid h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.fh-footer-brand {
  max-width: 560px;
}

.fh-footer-about {
  display: grid;
  gap: 7px;
}

.fh-footer-link-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.fh-footer-grid a,
.fh-footer-menu a {
  display: block;
  margin: 4px 0;
  color: rgba(255, 255, 255, .78);
  font-weight: 750;
  font-size: 14px;
}

.fh-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 11px;
}

.fh-footer-grid .fh-social-row a {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0;
  background: var(--fh-green);
  color: var(--fh-green-dark);
}

.fh-footer-grid .fh-social-row svg {
  width: 17px;
  height: 17px;
}

.fh-footer-legal {
  padding: 9px 28px 10px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
}

.fh-footer-dmm {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .72);
  font-weight: 750;
}

.fh-footer-dmm img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
}

.fh-footer-dmm span {
  display: inline-block;
}

.woocommerce .woocommerce-result-count {
  margin: 0 0 12px;
  color: var(--fh-muted);
  font-weight: 800;
}

.woocommerce .woocommerce-ordering {
  margin: 0 0 18px;
}

.woocommerce .woocommerce-ordering select {
  min-height: 44px;
  min-width: 220px;
  border: 1px solid rgba(17, 27, 18, .12);
  border-radius: 999px;
  background: var(--fh-white);
  padding: 0 42px 0 16px;
  color: var(--fh-ink);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(18, 35, 20, .08);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce .fh-product-card {
  float: none;
  width: auto;
  margin: 0;
}

.fh-product-image {
  display: grid;
  place-items: center;
  min-height: 230px;
  border-radius: 0;
}

.fh-product-image img {
  padding: 20px;
  object-fit: contain;
}

.woocommerce-loop-product__title {
  color: var(--fh-ink);
}

.woocommerce .price {
  display: block;
  margin: 8px 0 14px;
  color: var(--fh-green-dark);
  font-weight: 900;
}

.fh-single-product-shell {
  margin-top: 8px;
}

.fh-single-product-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
  gap: 24px;
  align-items: start;
}

.fh-single-product-media,
.fh-single-product-summary,
.fh-product-story-layer,
.fh-product-details-layer,
.fh-product-related-layer,
.woocommerce-cart-form,
.cart-collaterals .cart_totals,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-checkout #order_review_heading {
  border-radius: 24px;
  background: var(--fh-white);
  box-shadow: var(--fh-soft-shadow);
}

.fh-single-product-media {
  overflow: hidden;
  padding: 24px;
}

.fh-single-product-media .woocommerce-product-gallery {
  float: none;
  width: 100%;
  margin: 0;
}

.fh-single-product-media .woocommerce-product-gallery__wrapper {
  margin: 0;
}

.fh-single-product-media .woocommerce-product-gallery__image {
  display: grid;
  overflow: hidden;
  min-height: 520px;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(215, 236, 215, .9), rgba(255, 255, 255, .92));
}

.fh-single-product-media .woocommerce-product-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fh-single-product-media .flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.fh-single-product-media .flex-control-thumbs li {
  width: 74px;
  margin: 0;
}

.fh-single-product-media .flex-control-thumbs img {
  display: block;
  width: 74px;
  height: 74px;
  border: 2px solid transparent;
  border-radius: 14px;
  background: var(--fh-leaf);
  object-fit: contain;
  cursor: pointer;
}

.fh-single-product-media .flex-control-thumbs img.flex-active {
  border-color: var(--fh-green);
}

.fh-single-product-summary {
  display: grid;
  align-content: center;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 56px);
}

.fh-single-product-summary h1 {
  margin: 10px 0 12px;
  color: var(--fh-ink);
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 950;
  line-height: .94;
  overflow-wrap: anywhere;
}

.fh-single-product-price .price {
  margin: 0 0 16px;
  color: var(--fh-green-dark);
  font-size: 25px;
  font-weight: 950;
}

.fh-single-product-short {
  max-width: 620px;
  color: var(--fh-muted);
  font-size: 19px;
}

.fh-single-product-actions form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 22px 0 0;
}

.woocommerce div.product form.cart div.quantity,
.woocommerce .quantity {
  display: inline-flex;
  overflow: hidden;
  min-height: 48px;
  align-items: center;
  border: 1px solid rgba(17, 27, 18, .12);
  border-radius: 999px;
  background: var(--fh-white);
}

.woocommerce .quantity .qty {
  width: 74px;
  min-height: 48px;
  border: 0;
  background: transparent;
  color: var(--fh-ink);
  font-weight: 950;
  text-align: center;
}

.fh-product-trust-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.fh-product-trust-rail span {
  flex: 1 1 150px;
  min-height: 34px;
  border-radius: 999px;
  background: var(--fh-leaf);
  padding: 8px 12px;
  color: var(--fh-green-dark);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.fh-product-taxonomy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fh-product-taxonomy-grid > div {
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(215, 236, 215, .92), rgba(255, 255, 255, .92));
  padding: 22px;
}

.fh-product-taxonomy-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.fh-product-taxonomy-grid a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 999px;
  background: var(--fh-white);
  padding: 0 13px;
  color: var(--fh-green-dark);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.fh-product-details-layer .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.fh-product-details-layer .woocommerce-tabs ul.tabs li {
  border-radius: 999px;
  background: var(--fh-leaf);
  padding: 10px 16px;
  font-weight: 950;
  text-transform: uppercase;
}

.fh-product-details-layer .woocommerce-tabs ul.tabs li.active {
  background: var(--fh-green);
}

.fh-product-details-layer .woocommerce-Tabs-panel {
  color: var(--fh-muted);
  font-size: 18px;
}

.fh-product-related-layer .related > h2 {
  margin: 0 0 22px;
  color: var(--fh-green);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 950;
  line-height: .96;
}

.woocommerce-cart-form,
.cart-collaterals .cart_totals,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
  padding: clamp(22px, 3vw, 34px);
}

.woocommerce-cart-form table.shop_table,
.cart-collaterals table.shop_table,
.woocommerce-checkout table.shop_table {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-cart-form th,
.woocommerce-cart-form td,
.cart-collaterals th,
.cart-collaterals td,
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  border-bottom: 1px solid var(--fh-line);
  padding: 14px 10px;
  text-align: left;
}

.woocommerce-cart-form .product-thumbnail img {
  width: 82px;
  height: 82px;
  border-radius: 14px;
  object-fit: contain;
  background: var(--fh-leaf);
}

.woocommerce-cart-form .product-name a,
.woocommerce-checkout-review-order-table .product-name {
  color: var(--fh-ink);
  font-weight: 950;
}

.cart-collaterals {
  display: grid;
  justify-content: end;
  margin-top: 24px;
}

.cart-collaterals .cart_totals {
  width: min(480px, 100%);
}

.cart-collaterals .cart_totals h2,
.woocommerce-checkout #order_review_heading {
  margin: 0 0 16px;
  color: var(--fh-ink);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.woocommerce .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
  min-height: 46px;
  border: 1px solid rgba(17, 27, 18, .12);
  border-radius: 14px;
  background: var(--fh-white);
  padding: 10px 13px;
  color: var(--fh-ink);
  font: inherit;
}

.woocommerce form .form-row label {
  color: var(--fh-green-dark);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.woocommerce-checkout .col2-set {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.woocommerce-checkout #order_review_heading {
  display: inline-block;
  margin-top: 26px;
  padding: 22px 28px 0;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  border: 0;
  border-radius: 18px;
  background: var(--fh-leaf);
  padding: 16px 18px;
  color: var(--fh-green-dark);
  font-weight: 850;
  box-shadow: var(--fh-soft-shadow);
}

.wc-block-cart,
.wc-block-checkout {
  color: var(--fh-ink);
}

.wc-block-components-sidebar-layout {
  gap: 28px;
}

.wc-block-cart__main,
.wc-block-checkout__main,
.wc-block-components-sidebar,
.wc-block-cart__sidebar {
  border-radius: 22px;
  background: var(--fh-white);
}

.wc-block-components-sidebar,
.wc-block-cart__sidebar {
  padding: 22px;
  box-shadow: var(--fh-soft-shadow);
}

.wc-block-components-title,
.wc-block-cart-items__header,
.wp-block-woocommerce-checkout h2,
.wp-block-woocommerce-cart h2 {
  color: var(--fh-ink);
  font-weight: 950;
}

.wc-block-components-text-input input,
.wc-block-components-textarea,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  min-height: 52px;
  border: 1px solid rgba(17, 27, 18, .16) !important;
  border-radius: 14px !important;
  background: var(--fh-white) !important;
  color: var(--fh-ink);
  font: inherit;
}

.wc-block-components-text-input label,
.wc-block-components-combobox label,
.wc-block-components-checkbox label,
.wc-block-components-radio-control__label {
  color: var(--fh-green-dark);
  font-weight: 850;
}

.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
  min-height: 52px;
  border-radius: 999px !important;
  background: var(--fh-green) !important;
  color: var(--fh-ink) !important;
  font-weight: 950;
}

.wc-block-components-button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
  filter: brightness(.96);
}

.wc-block-components-order-summary,
.wc-block-components-totals-wrapper,
.wc-block-components-panel,
.wc-block-components-radio-control {
  border-color: var(--fh-line) !important;
}

.wc-block-cart-items__row img,
.wc-block-components-order-summary-item__image img {
  border-radius: 12px;
  background: var(--fh-leaf);
  object-fit: contain;
}

.wc-block-components-product-name,
.wc-block-cart-item__wrap a {
  color: var(--fh-ink);
  font-weight: 950;
}

.wc-block-components-totals-footer-item,
.wc-block-components-order-summary__button-text {
  color: var(--fh-ink);
  font-weight: 950;
}

@media (max-width: 980px) {
  body,
  .fh-page {
    overflow-x: hidden;
  }

  .fh-page,
  .fh-main {
    width: min(100% - 24px, 620px);
  }

  .fh-region-wash {
    min-height: 136px;
    padding: 28px 14px 48px;
  }

  .fh-nav-pill {
    grid-template-columns: 1fr auto;
    border-radius: 24px;
  }

  .fh-menu-toggle {
    display: block;
  }

  .fh-nav-area {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .fh-nav-area[data-open] {
    display: grid;
  }

  .fh-primary-menu {
    justify-content: flex-start;
  }

  .fh-primary-menu .sub-menu {
    position: static;
    min-width: 100%;
    margin-top: 4px;
    padding-top: 10px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    visibility: visible;
  }

  .fh-utility-icons {
    justify-content: flex-start;
  }

  .fh-social-icon {
    width: 38px;
    height: 38px;
  }

  .fh-landing-shell {
    margin-top: -42px;
    padding-top: 46px;
  }

  .fh-nature-hero {
    width: calc(100% - 32px);
    min-height: 520px;
  }

  .fh-logo-orb {
    display: none;
  }

  .fh-hero-copy {
    left: 28px;
    width: calc(100% - 56px);
  }

  .fh-hero-copy h1 {
    font-size: 48px;
  }

  .fh-archive-head h1,
  .fh-page-content h1,
  .fh-single-hero h1 {
    font-size: 42px;
    line-height: 1;
  }

  .fh-cta-ribbon {
    display: block;
    box-sizing: border-box;
    width: auto;
    max-width: none;
    min-height: 58px;
    margin-right: 16px;
    margin-left: 16px;
    margin-top: 14px;
    padding-left: 22px;
    padding-right: 22px;
    font-size: 15px;
    overflow: hidden;
  }

  .fh-cta-ribbon strong {
    display: block;
    max-width: 100%;
    line-height: 1.25;
    white-space: normal;
  }

  .fh-ribbon-go {
    display: none;
  }

  .fh-ribbon-socials {
    display: none;
  }

  .fh-home-intro,
  .fh-single-grid,
  .fh-submit-grid,
  .fh-blog-grid,
  .fh-footer-cta,
  .fh-footer-grid {
    grid-template-columns: 1fr;
  }

  .fh-footer-link-columns {
    gap: 14px;
  }

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

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

  .fh-entry-content .fh-link-grid {
    grid-template-columns: 1fr;
  }

  .fh-blog-sidebar {
    position: static;
  }

  .fh-home-intro {
    padding: 0 28px 34px;
  }

  .fh-card-grid,
  .fh-mini-grid,
  .fh-store-grid,
  .fh-storefront-panes,
  .fh-store-drop-grid,
  .fh-card-grid-compact,
  .fh-store-activity-grid,
  .fh-store-activity-link-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .fh-storefront-pane-shell {
    margin-top: 12px;
  }

  .fh-pane-card {
    min-height: 230px;
    border-radius: 18px;
  }

  .fh-pane-card strong {
    font-size: 42px;
  }

  .fh-store-region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fh-store-region-grid a:last-child {
    grid-column: 1 / -1;
  }

  .fh-store-drop-copy {
    padding: 24px;
  }

  .fh-shop-hero-grid,
  .fh-shop-region-band,
  .fh-store-collection-grid,
  .fh-single-product-grid,
  .fh-product-taxonomy-grid,
  .woocommerce-checkout .col2-set {
    grid-template-columns: 1fr;
  }

  .fh-shop-copy {
    padding: 34px;
  }

  .fh-shop-copy h1 {
    font-size: 54px;
  }

  .fh-shop-copy p {
    font-size: 18px;
  }

  .fh-shop-feature {
    min-height: 320px;
  }

  .fh-shop-region-band nav {
    justify-content: flex-start;
  }

  .fh-store-collection-copy,
  .fh-store-collection-image {
    min-height: 320px;
    border-radius: 18px;
  }

  .fh-store-collection-copy {
    padding: 28px;
  }

  .fh-store-collection-copy h1 {
    font-size: 48px;
  }

  .fh-store-collection-copy p {
    font-size: 18px;
  }

  .fh-store-collection-image img {
    min-height: 320px;
  }

  .fh-store-layer-panel {
    padding: 22px;
  }

  .fh-single-product-media,
  .fh-single-product-summary,
  .woocommerce-cart-form,
  .cart-collaterals .cart_totals,
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review {
    border-radius: 18px;
    padding: 22px;
  }

  .fh-single-product-media .woocommerce-product-gallery__image,
  .fh-single-product-summary {
    min-height: 320px;
  }

  .fh-single-product-summary h1 {
    font-size: 40px;
  }

  .fh-single-product-actions form.cart {
    align-items: stretch;
    flex-direction: column;
  }

  .fh-single-product-actions form.cart .button {
    width: 100%;
  }

  .woocommerce-cart-form {
    overflow-x: auto;
  }

  .woocommerce-cart-form table.shop_table {
    min-width: 680px;
  }

  .cart-collaterals {
    justify-content: stretch;
  }

  .fh-store-chip-grid a {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .fh-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .fh-single-hero > div {
    left: 28px;
    right: 28px;
    bottom: 32px;
  }

  .fh-search-form {
    flex-direction: column;
  }

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