:root {
  --fs-accent: #22c1c9;
  --fs-text: #000;
  --fs-muted: #6f6f6f;
  --fs-border: #e7e7e7;
  --fs-bg: #fff;
  --fs-soft: #f7f7f7;
  --fs-container: 1270px;
  --fs-body-font: "Roboto", Arial, sans-serif;
  --fs-heading-font: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--fs-bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--fs-text);
  background: var(--fs-bg);
  font-family: var(--fs-body-font);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

a:hover,
a:focus-visible {
  color: var(--fs-accent);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.screen-reader-text:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 100000;
  display: block;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  color: #111;
  background: #fff;
  border: 2px solid var(--fs-accent);
}

.fs-container {
  width: min(calc(100% - 32px), var(--fs-container));
  margin-inline: auto;
}

.fs-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--fs-border);
}

.admin-bar .fs-header {
  top: 32px;
}

.fs-header-main {
  background: #fff;
}

.fs-header-main-inner {
  min-height: 178px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  position: relative;
  border-bottom: 1px solid var(--fs-border);
}

.fs-logo {
  justify-self: center;
  width: min(301px, 42vw);
  text-align: center;
}

.fs-logo img,
.fs-logo .custom-logo {
  display: block;
  max-height: 158px;
  width: auto;
  margin: 0 auto;
  padding: 10px 0;
}

.fs-header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.fs-header-tools-left {
  justify-self: start;
}

.fs-header-tools-right {
  justify-self: end;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.fs-divider {
  width: 1px;
  height: 18px;
  background: var(--fs-border);
}

.fs-icon-button,
.fs-mobile-toggle,
.fs-back-to-top,
.fs-search-submit,
.button,
button.single_add_to_cart_button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border: 1px solid var(--fs-accent);
  background: var(--fs-accent);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  min-height: 42px;
  padding: 10px 16px;
}

.fs-icon-button:hover,
.fs-icon-button:focus-visible,
.fs-mobile-toggle:hover,
.fs-mobile-toggle:focus-visible,
.fs-search-submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  border-color: #000;
  background: #000;
  color: #fff;
}

.fs-search-toggle span[aria-hidden="true"]::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  vertical-align: -2px;
}

.fs-search-toggle span[aria-hidden="true"]::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 2px;
  margin-left: -4px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
  vertical-align: -1px;
}

.fs-header-search {
  position: absolute;
  left: 0;
  top: calc(50% + 30px);
  width: min(360px, calc(100vw - 32px));
  padding: 14px;
  background: #fff;
  border: 1px solid var(--fs-border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.fs-search-form {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}

.fs-search-field,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="tel"],
textarea,
select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--fs-border);
  background: #fff;
  color: var(--fs-text);
  padding: 10px 12px;
}

.fs-primary-nav {
  background: #fff;
}

.fs-primary-nav-inner {
  min-height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fs-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.fs-menu li {
  position: relative;
  margin: 0;
}

.fs-menu a {
  display: block;
  padding: 10px 13px;
  color: var(--fs-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.fs-menu > li:hover > a,
.fs-menu > li.current-menu-item > a,
.fs-menu > li.current_page_item > a,
.fs-menu > li.current-menu-ancestor > a {
  color: var(--fs-accent);
}

.fs-menu .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 30;
  min-width: 220px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background: #fff;
  border: 1px solid var(--fs-border);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.13);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.fs-menu li:hover > .sub-menu,
.fs-menu li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.fs-menu .sub-menu a {
  padding: 9px 16px;
  text-transform: none;
  white-space: nowrap;
}

.fs-mobile-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  min-height: 44px;
  padding: 0;
}

.fs-mobile-bars,
.fs-mobile-bars::before,
.fs-mobile-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  position: relative;
}

.fs-mobile-bars::before,
.fs-mobile-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.fs-mobile-bars::before {
  top: -6px;
}

.fs-mobile-bars::after {
  top: 6px;
}

.fs-mobile-panel {
  background: #fff;
  border-top: 1px solid var(--fs-border);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}

.fs-mobile-panel-inner {
  width: min(calc(100% - 32px), 520px);
  margin-inline: auto;
  padding: 18px 0 24px;
}

.fs-mobile-panel .fs-menu {
  display: block;
  margin-top: 16px;
}

.fs-mobile-panel .fs-menu a {
  padding: 11px 0;
  border-bottom: 1px solid var(--fs-border);
}

.fs-mobile-panel .fs-menu .sub-menu {
  position: static;
  visibility: visible;
  opacity: 1;
  transform: none;
  border: 0;
  box-shadow: none;
  padding: 0 0 0 18px;
}

.fs-mobile-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  font-weight: 700;
}

.fs-main {
  min-height: 45vh;
}

.fs-content {
  padding-block: 52px;
}

.fs-home-content {
  padding: 0;
}

.fs-page-title,
.fs-entry-title,
.woocommerce-products-header__title,
.woocommerce div.product .product_title {
  margin: 0 0 24px;
  color: var(--fs-text);
  font-family: var(--fs-heading-font);
  font-weight: 700;
  line-height: 1.15;
}

.fs-page-title,
.woocommerce-products-header__title {
  font-size: clamp(30px, 4vw, 52px);
}

.fs-entry-title {
  font-size: clamp(26px, 3vw, 42px);
}

.fs-entry,
.fs-page {
  max-width: 980px;
  margin-inline: auto;
}

.fs-home-page {
  max-width: none;
}

.fs-entry + .fs-entry {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--fs-border);
}

.fs-featured-image {
  margin-bottom: 24px;
}

/* Blog page */
.fs-blog-content {
  background: #fff;
}

.fs-blog-hero {
  padding: 58px 0 46px;
  border-bottom: 1px solid var(--fs-border);
  background: #f7f7f7;
  text-align: center;
}

.fs-blog-hero h1 {
  margin: 0;
  color: #000;
  font-family: var(--fs-heading-font);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
}

.fs-blog-hero p:not(.fs-contact-eyebrow) {
  width: min(680px, 100%);
  margin: 16px auto 0;
  color: #333;
  font-size: 18px;
  line-height: 1.55;
}

.fs-blog-archive {
  padding-top: 46px;
  padding-bottom: 64px;
}

.fs-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.fs-blog-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--fs-border);
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.fs-blog-card:hover,
.fs-blog-card:focus-within {
  border-color: rgba(34, 193, 201, 0.7);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.fs-blog-card-media {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  background: #f6f6f6;
}

.fs-blog-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.fs-blog-card:hover .fs-blog-card-image,
.fs-blog-card:focus-within .fs-blog-card-image {
  transform: scale(1.035);
}

.fs-blog-card-fallback-text {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #000;
  font-family: var(--fs-heading-font);
  font-size: 34px;
  line-height: 1;
}

.fs-blog-card-date {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 58px;
  min-height: 58px;
  place-items: center;
  border: 2px solid #000;
  background: rgba(255, 255, 255, 0.92);
  color: #000;
  text-align: center;
  text-transform: uppercase;
}

.fs-blog-card-date strong {
  margin-top: 6px;
  font-size: 24px;
  line-height: 1;
}

.fs-blog-card-date em {
  margin-bottom: 6px;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.fs-blog-card-body {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 24px 22px 26px;
  text-align: center;
}

.fs-blog-card-body h2 {
  min-height: 62px;
  margin: 0;
  font-family: var(--fs-heading-font);
  font-size: clamp(24px, 2.2vw, 31px);
  line-height: 1.12;
}

.fs-blog-card-body h2 a {
  color: #000;
}

.fs-blog-card-body h2 a:hover,
.fs-blog-card-body h2 a:focus-visible {
  color: var(--fs-accent);
}

.fs-blog-card-divider {
  display: block;
  width: 42px;
  height: 2px;
  background: var(--fs-accent);
}

.fs-blog-card-excerpt {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}

.fs-blog-card-excerpt p {
  margin: 0;
}

.fs-blog-card-link {
  margin-top: 4px;
  color: #000;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.fs-blog-card-link:hover,
.fs-blog-card-link:focus-visible {
  color: var(--fs-accent);
}

.fs-blog-empty {
  margin: 0;
  text-align: center;
}

.fs-blog-archive .navigation.pagination {
  margin-top: 42px;
  text-align: center;
}

.fs-blog-archive .nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.fs-blog-archive .page-numbers {
  display: inline-grid;
  min-width: 40px;
  min-height: 40px;
  place-items: center;
  border: 1px solid var(--fs-border);
  padding: 8px 10px;
  color: #000;
  font-weight: 800;
}

.fs-blog-archive .page-numbers.current,
.fs-blog-archive .page-numbers:hover,
.fs-blog-archive .page-numbers:focus-visible {
  border-color: var(--fs-accent);
  background: var(--fs-accent);
  color: #fff;
}

.fs-footer {
  background: #fff;
  border-top: 1px solid var(--fs-border);
}

.fs-footer-widgets {
  padding: 42px 0 28px;
}

.fs-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 30px;
}

.fs-footer-column,
.fs-widget {
  min-width: 0;
}

.fs-footer-logo-column img,
.fs-footer .widget_text img[src*="logo"] {
  width: 200px;
  max-width: 100%;
}

.fs-footer-care {
  width: min(100%, 360px);
}

.fs-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.fs-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--fs-border);
  font-size: 13px;
  font-weight: 700;
}

.fs-footer-contact {
  font-size: 20px;
  line-height: 1.45;
}

.fs-ssl-badge {
  display: inline-grid;
  gap: 4px;
  justify-items: start;
  font-size: 12px;
  font-weight: 700;
  color: #77bae4;
}

.fs-ssl-badge img {
  width: 100px;
}

.fs-footer-bottom {
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid var(--fs-border);
}

.fs-footer-bottom p {
  margin: 0;
}

.fs-back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  border-radius: 999px;
  min-width: 52px;
  min-height: 52px;
  padding: 0 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.fs-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.woocommerce .products ul,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin: 0;
  align-items: stretch;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
  content: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products[class*="columns-"] li.product,
.woocommerce-page ul.products[class*="columns-"] li.product {
  float: none;
  width: auto;
  margin: 0;
  text-align: left;
}

.woocommerce ul.products li.product .fs-product-card-price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--fs-text);
  font-weight: 700;
}

.woocommerce nav.woocommerce-pagination ul {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 1px solid var(--fs-border);
  margin: 0 3px;
}

.woocommerce div.product form.cart .button {
  border-color: var(--fs-accent);
  background: var(--fs-accent);
  color: #fff;
  min-height: 44px;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce div.product form.cart .button:focus-visible {
  border-color: #000;
  background: #000;
  color: #fff;
}

.woocommerce table.shop_table {
  border-color: var(--fs-border);
  border-radius: 0;
}

body.woocommerce-checkout .fs-page {
  max-width: none;
}

body.woocommerce-checkout .fs-page-title {
  margin-bottom: 28px;
}

body.woocommerce-checkout .woocommerce-form-login-toggle,
body.woocommerce-checkout .woocommerce-form-login {
  margin-bottom: 24px;
}

body.woocommerce-checkout form.checkout.woocommerce-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.46fr);
  gap: 38px;
  align-items: start;
}

body.woocommerce-checkout form.checkout.woocommerce-checkout::before,
body.woocommerce-checkout form.checkout.woocommerce-checkout::after {
  display: none;
  content: none;
}

body.woocommerce-checkout #customer_details {
  display: grid;
  grid-column: 1;
  gap: 24px;
  width: 100%;
}

body.woocommerce-checkout #customer_details::before,
body.woocommerce-checkout #customer_details::after {
  display: none;
  content: none;
}

body.woocommerce-checkout #customer_details .col-1,
body.woocommerce-checkout #customer_details .col-2 {
  float: none;
  width: 100%;
  min-width: 0;
}

body.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-shipping-fields,
body.woocommerce-checkout .woocommerce-additional-fields,
body.woocommerce-checkout #order_review {
  padding: 24px;
  border: 1px solid var(--fs-border);
  background: #fff;
}

body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-additional-fields h3,
body.woocommerce-checkout #order_review_heading {
  margin: 0 0 20px;
  color: #000;
  font-family: var(--fs-heading-font);
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.12;
}

body.woocommerce-checkout #order_review_heading {
  display: none;
}

body.woocommerce-checkout #order_review {
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: 172px;
}

body.woocommerce-checkout #order_review::before {
  content: "Your order";
  display: block;
  margin: 0 0 20px;
  color: #000;
  font-family: var(--fs-heading-font);
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.12;
}

body.woocommerce-checkout .form-row {
  margin-bottom: 16px;
}

body.woocommerce-checkout .form-row-first,
body.woocommerce-checkout .form-row-last {
  width: calc(50% - 8px);
}

body.woocommerce-checkout .form-row-first {
  float: left;
}

body.woocommerce-checkout .form-row-last {
  float: right;
}

body.woocommerce-checkout .form-row-wide,
body.woocommerce-checkout .notes {
  clear: both;
}

body.woocommerce-checkout .woocommerce-input-wrapper {
  display: block;
}

body.woocommerce-checkout .woocommerce-billing-fields label,
body.woocommerce-checkout .woocommerce-additional-fields label {
  display: inline-block;
  margin-bottom: 7px;
  color: #000;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

body.woocommerce-checkout .woocommerce-billing-fields .optional,
body.woocommerce-checkout .woocommerce-additional-fields .optional {
  color: var(--fs-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: none;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table {
  margin: 0 0 20px;
  border: 0;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table td {
  padding: 13px 0;
  border-color: var(--fs-border);
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
  color: #000;
  font-size: 13px;
  text-transform: uppercase;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
  text-align: right;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td {
  color: #000;
  font-size: 18px;
}

body.woocommerce-checkout #payment {
  border: 0;
  background: #f6f6f6;
}

body.woocommerce-checkout #payment ul.payment_methods {
  padding: 18px;
  border-bottom: 1px solid var(--fs-border);
}

body.woocommerce-checkout #payment div.payment_box {
  background: #fff;
  color: #000;
}

body.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #fff;
}

body.woocommerce-checkout #payment .place-order {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 18px;
}

body.woocommerce-checkout #place_order {
  width: 100%;
  min-height: 52px;
  background: var(--fs-accent);
  border-color: var(--fs-accent);
  color: #fff;
}

body.woocommerce-checkout #place_order:hover,
body.woocommerce-checkout #place_order:focus-visible {
  background: #000;
  border-color: #000;
  color: #fff;
}

@media (max-width: 1024px) {
  .fs-header-main-inner {
    min-height: 104px;
    grid-template-columns: auto 1fr auto;
  }

  .fs-logo {
    width: min(220px, 50vw);
  }

  .fs-logo img,
  .fs-logo .custom-logo {
    max-height: 84px;
  }

  .fs-header-tools-left,
  .fs-header-tools-right,
  .fs-primary-nav {
    display: none;
  }

  .fs-mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .fs-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fs-social-links,
  .fs-ssl-badge {
    justify-content: center;
    justify-items: center;
  }

  .woocommerce .products ul,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fs-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.woocommerce-checkout form.checkout.woocommerce-checkout {
    grid-template-columns: 1fr;
  }

  body.woocommerce-checkout #order_review_heading,
  body.woocommerce-checkout #order_review {
    grid-column: 1;
  }

  body.woocommerce-checkout #order_review {
    grid-row: auto;
    position: static;
  }
}

@media (max-width: 600px) {
  .admin-bar .fs-header {
    top: 0;
  }

  .fs-container {
    width: min(calc(100% - 24px), var(--fs-container));
  }

  .fs-header-main-inner {
    min-height: 78px;
  }

  .fs-logo {
    width: min(178px, 55vw);
  }

  .fs-logo img,
  .fs-logo .custom-logo {
    max-height: 66px;
    padding: 6px 0;
  }

  .fs-content {
    padding-block: 34px;
  }

  .fs-search-form {
    display: grid;
  }

  .woocommerce .products ul,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .fs-blog-hero {
    padding: 40px 0 34px;
  }

  .fs-blog-archive {
    padding-top: 32px;
    padding-bottom: 46px;
  }

  .fs-blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fs-blog-card-body h2 {
    min-height: 0;
  }

  body.woocommerce-checkout .woocommerce-billing-fields,
  body.woocommerce-checkout .woocommerce-shipping-fields,
  body.woocommerce-checkout .woocommerce-additional-fields,
  body.woocommerce-checkout #order_review {
    padding: 18px;
  }

  body.woocommerce-checkout .form-row-first,
  body.woocommerce-checkout .form-row-last {
    float: none;
    width: 100%;
  }
}
.fs-header-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--fs-text);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  padding: 8px 0;
  min-height: 0;
  cursor: pointer;
}

.fs-header-action:hover,
.fs-header-action:focus-visible,
.fs-account-menu.is-open .fs-account-toggle {
  color: var(--fs-accent);
  background: transparent;
  border: 0;
}

.fs-icon-svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  display: block;
}

.fs-chevron {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
}

.fs-account-menu {
  position: relative;
}

.fs-account-toggle {
  font: inherit;
}

.fs-account-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 50;
  min-width: 210px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background: #fff;
  border: 1px solid var(--fs-border);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.13);
  text-align: left;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.fs-account-menu:hover .fs-account-dropdown,
.fs-account-menu:focus-within .fs-account-dropdown,
.fs-account-menu.is-open .fs-account-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.fs-account-dropdown a {
  display: block;
  padding: 10px 15px;
  color: var(--fs-text);
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
  white-space: nowrap;
}

.fs-account-dropdown a:hover,
.fs-account-dropdown a:focus-visible {
  color: var(--fs-accent);
}

.fs-cart-link {
  position: relative;
}

.fs-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--fs-accent);
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.fs-cart-total .woocommerce-Price-amount {
  color: inherit;
}

.fs-mobile-actions a {
  display: flex;
  align-items: center;
  gap: 9px;
}

.fs-mobile-actions .fs-cart-count {
  margin-left: auto;
}

/* Header search refinement */
.fs-header-tools-left {
  position: relative;
  min-height: 44px;
}

.fs-search-toggle.fs-icon-button {
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: var(--fs-text);
  box-shadow: none;
}

.fs-search-toggle.fs-icon-button:hover,
.fs-search-toggle.fs-icon-button:focus-visible,
.fs-search-toggle.fs-icon-button[aria-expanded="true"] {
  border-color: var(--fs-border);
  background: var(--fs-soft);
  color: var(--fs-accent);
}

.fs-search-icon {
  position: relative;
  width: 21px;
  height: 21px;
  display: block;
}

.fs-search-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.fs-search-icon::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 3px;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
  border-radius: 999px;
}

.fs-search-toggle span[aria-hidden="true"]::before,
.fs-search-toggle span[aria-hidden="true"]::after {
  content: none;
}

.fs-header-search {
  left: 0;
  top: calc(100% - 30px);
  width: min(410px, calc(100vw - 32px));
  padding: 16px;
  border-top: 3px solid var(--fs-accent);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.fs-header-search::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 18px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-left: 1px solid var(--fs-border);
  border-top: 1px solid var(--fs-border);
  transform: rotate(45deg);
}

.fs-header-search .fs-search-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.fs-header-search .fs-search-field {
  min-height: 46px;
  border-color: #d9d9d9;
  font-size: 15px;
}

.fs-header-search .fs-search-field:focus {
  border-color: var(--fs-accent);
  outline: 2px solid rgba(34, 193, 201, 0.18);
  outline-offset: 0;
}

.fs-header-search .fs-search-submit {
  min-height: 46px;
  padding-inline: 18px;
  border-color: var(--fs-accent);
  background: var(--fs-accent);
  color: #fff;
}

.fs-header-search .fs-search-submit:hover,
.fs-header-search .fs-search-submit:focus-visible {
  border-color: var(--fs-text);
  background: var(--fs-text);
  color: #fff;
}

@media (max-width: 600px) {
  .fs-header-search .fs-search-form {
    grid-template-columns: 1fr;
  }
}

.fs-header-search {
  top: calc(100% + 8px);
}

.fs-search-toggle .fs-search-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.fs-search-toggle .fs-search-icon::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 3px;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
  border-radius: 999px;
}

/* Header cart basket badge */
.fs-cart-link {
  gap: 10px;
  padding-right: 2px;
}

.fs-cart-link .fs-cart-summary {
  order: 1;
}

.fs-cart-link .fs-cart-icon-wrap {
  order: 2;
}

.fs-cart-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  color: currentColor;
}

.fs-cart-svg {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
  stroke: currentColor;
}

.fs-cart-icon-wrap .fs-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.fs-mobile-cart-link {
  justify-content: space-between;
}

.fs-mobile-cart-link .fs-cart-icon-wrap {
  margin-left: auto;
}

.fs-mobile-actions .fs-mobile-cart-link .fs-cart-count {
  margin-left: 0;
}

/* Search icon SVG restore */
.fs-search-svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: block;
  stroke: currentColor;
}

.fs-search-toggle .fs-search-svg {
  pointer-events: none;
}

/* Mobile header: menu / logo / cart */
.fs-mobile-header-cart {
  display: none;
}

@media (max-width: 1024px) {
  .fs-header-main-inner {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 8px;
  }

  .fs-mobile-toggle {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .fs-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .fs-mobile-header-cart {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--fs-text);
  }

  .fs-mobile-header-cart:hover,
  .fs-mobile-header-cart:focus-visible {
    color: var(--fs-accent);
  }

  .fs-mobile-header-cart .fs-cart-icon-wrap {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .fs-mobile-header-cart .fs-cart-count {
    top: -7px;
    right: -7px;
  }
}

@media (max-width: 600px) {
  .fs-header-main-inner {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
  }
}

/* Homepage hero rebuild */
.fs-home-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--fs-border);
}

.fs-home-hero-track {
  position: relative;
  min-height: clamp(520px, 58vw, 650px);
}

.fs-home-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 360ms ease, visibility 360ms ease;
  background: #fff;
}

.fs-home-hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.fs-home-hero-media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 34%, rgba(255, 255, 255, 0.18) 62%, rgba(255, 255, 255, 0) 100%), var(--fs-hero-image);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.fs-home-hero-inner {
  position: relative;
  z-index: 2;
  min-height: clamp(520px, 58vw, 650px);
  display: flex;
  align-items: center;
  padding-block: 54px 72px;
}

.fs-home-hero-copy {
  width: min(510px, 48vw);
}

.fs-home-hero-eyebrow {
  margin: 0 0 12px;
  color: var(--fs-accent);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.fs-home-hero h1 {
  margin: 0;
  color: #000;
  font-family: var(--fs-heading-font);
  font-size: clamp(42px, 5.2vw, 74px);
  font-weight: 700;
  line-height: 0.98;
}

.fs-home-hero-body {
  max-width: 480px;
  margin: 20px 0 0;
  color: #111;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
}

.fs-home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.fs-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 20px;
  border: 2px solid #000;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.fs-hero-button-primary {
  background: #000;
  color: #fff;
}

.fs-hero-button-secondary {
  background: transparent;
  color: #000;
}

.fs-hero-button:hover,
.fs-hero-button:focus-visible {
  border-color: var(--fs-accent);
  background: var(--fs-accent);
  color: #fff;
}

.fs-home-hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  pointer-events: none;
}

.fs-hero-arrow,
.fs-hero-dot {
  pointer-events: auto;
  cursor: pointer;
}

.fs-hero-arrow {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: #000;
  font-size: 28px;
  line-height: 1;
}

.fs-hero-arrow:hover,
.fs-hero-arrow:focus-visible {
  border-color: var(--fs-accent);
  background: var(--fs-accent);
  color: #fff;
}

.fs-hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
}

.fs-hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid #000;
  border-radius: 50%;
  background: transparent;
}

.fs-hero-dot.is-active {
  background: var(--fs-accent);
  border-color: var(--fs-accent);
}

.fs-home-lead {
  background: var(--fs-accent);
  color: #fff;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.fs-home-lead p {
  margin: 0;
  padding: 12px 0;
  text-align: center;
  font-size: clamp(17px, 2.1vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

@media (max-width: 900px) {
  .fs-home-hero-track,
  .fs-home-hero-inner {
    min-height: auto;
  }

  .fs-home-hero-slide {
    background: #fff;
  }

  .fs-home-hero-media {
    position: relative;
    height: 300px;
    background-image: var(--fs-hero-image);
    background-size: contain;
    background-position: center;
    background-color: #fff;
  }

  .fs-home-hero-inner {
    display: block;
    padding-block: 26px 82px;
  }

  .fs-home-hero-copy {
    width: 100%;
    max-width: 620px;
  }

  .fs-home-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.02;
  }

  .fs-home-hero-body {
    max-width: none;
    margin-top: 14px;
    font-size: 16px;
  }

  .fs-home-hero-actions {
    margin-top: 20px;
  }
}

@media (max-width: 520px) {
  .fs-home-hero-media {
    height: 260px;
  }

  .fs-home-hero-inner {
    padding-block: 22px 74px;
  }

  .fs-home-hero-eyebrow {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .fs-home-hero h1 {
    font-size: 34px;
  }

  .fs-home-hero-body {
    font-size: 15px;
    line-height: 1.45;
  }

  .fs-home-hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .fs-hero-button {
    min-height: 42px;
    padding-inline: 10px;
  }

  .fs-hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .fs-home-hero-controls {
    bottom: 18px;
    gap: 12px;
  }

  .fs-home-lead p {
    font-size: 17px;
  }
}

/* Homepage sections */
.fs-home-section {
  padding: 72px 0;
  background: #fff;
}

.fs-home-section:nth-of-type(even) {
  background: #f8fbfb;
}

.fs-home-section-heading {
  max-width: 760px;
}

.fs-home-section-heading > p {
  margin: 0 0 8px;
  color: var(--fs-accent);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.fs-home-section-heading h2 {
  margin: 0;
  color: #000;
  font-family: var(--fs-heading-font);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

.fs-home-section-heading span {
  display: block;
  margin-top: 14px;
  color: #4b4b4b;
  font-size: 17px;
  line-height: 1.65;
}

.fs-home-section-headline-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.fs-home-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 2px solid #000;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.fs-home-text-link:hover,
.fs-home-text-link:focus-visible {
  border-color: var(--fs-accent);
  background: var(--fs-accent);
  color: #fff;
}

.fs-home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.fs-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.fs-product-card {
  display: flex;
  position: relative;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.fs-product-card:hover,
.fs-product-card:focus-within {
  border-color: rgba(0, 190, 200, 0.7);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.fs-product-card-media {
  display: grid;
  position: relative;
  min-height: 280px;
  place-items: center;
  padding: 14px;
  border-bottom: 1px solid #ededed;
  background: #fff;
}

.fs-product-card-image {
  width: auto;
  max-width: 100%;
  max-height: 258px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.fs-product-card:hover .fs-product-card-image,
.fs-product-card:focus-within .fs-product-card-image {
  transform: scale(1.025);
}

.fs-product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 7px 10px;
  background: var(--fs-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.fs-product-card-badge-muted {
  background: #333;
}

.fs-product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 11px;
  padding: 18px 18px 20px;
}

.fs-product-card-title {
  min-height: 46px;
  margin: 0;
  font-family: var(--fs-body-font);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.32;
  text-transform: uppercase;
}

.fs-product-card-title a {
  color: #000;
}

.fs-product-card-title a:hover,
.fs-product-card-title a:focus-visible {
  color: var(--fs-accent);
}

.fs-product-card-price {
  margin-top: auto;
  color: #000;
  font-size: 16px;
  font-weight: 800;
}

.fs-product-card-price-note {
  color: var(--fs-muted);
  font-size: 14px;
}

.fs-product-card-actions {
  margin-top: 2px;
}

.fs-product-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 10px 14px;
  border: 2px solid var(--fs-accent);
  background: var(--fs-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.woocommerce ul.products li.product .fs-product-card-button {
  margin-top: 0;
}

.fs-product-card-button:hover,
.fs-product-card-button:focus-visible {
  border-color: #000;
  background: #000;
  color: #fff;
}

.fs-home-about {
  overflow: hidden;
}

/* Contact page */
.fs-contact-content {
  background: #fff;
}

.fs-contact-hero {
  padding: 58px 0 68px;
}

.fs-contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: stretch;
  gap: 42px;
}

.fs-contact-media {
  min-width: 0;
  background: #f6f6f6;
}

.fs-contact-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.fs-contact-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
  border: 1px solid var(--fs-border);
  background: #fff;
}

.fs-contact-eyebrow {
  margin: 0 0 10px;
  color: var(--fs-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fs-contact-panel h1,
.fs-contact-locator h2 {
  margin: 0;
  color: #000;
  font-family: var(--fs-heading-font);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.02;
}

.fs-contact-panel h2 {
  margin: 14px 0 0;
  color: #000;
  font-family: var(--fs-body-font);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.fs-contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.fs-contact-method {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--fs-border);
  color: #000;
}

.fs-contact-method:hover,
.fs-contact-method:focus-visible {
  border-color: var(--fs-accent);
  color: #000;
}

.fs-contact-method > span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  grid-row: span 2;
  place-items: center;
  background: #000;
  color: #fff;
}

.fs-contact-method strong {
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.fs-contact-method em {
  min-width: 0;
  color: var(--fs-accent);
  font-style: normal;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.fs-contact-social {
  margin-top: 34px;
}

.fs-contact-social p {
  margin: 0 0 14px;
  color: #000;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.fs-contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fs-contact-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--fs-border);
  color: #000;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.fs-contact-social-links a:hover,
.fs-contact-social-links a:focus-visible {
  border-color: var(--fs-accent);
  background: var(--fs-accent);
  color: #fff;
}

.fs-contact-locator {
  padding: 42px 0;
  border-top: 1px solid var(--fs-border);
  border-bottom: 1px solid var(--fs-border);
  background: #f6f6f6;
}

.fs-contact-locator-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.fs-contact-locator h2 {
  font-size: clamp(30px, 3.4vw, 50px);
}

.fs-contact-locator-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid #000;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.fs-contact-locator-link:hover,
.fs-contact-locator-link:focus-visible {
  border-color: var(--fs-accent);
  background: var(--fs-accent);
  color: #fff;
}

.fs-home-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 52px;
}

.fs-home-about-media {
  position: relative;
}

.fs-home-about-media::before {
  content: "";
  position: absolute;
  inset: 24px -18px -18px 24px;
  background: var(--fs-accent);
  opacity: 0.18;
}

.fs-home-about-image {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid var(--fs-border);
}

.fs-home-about-copy p {
  margin: 18px 0 0;
  color: #333;
  font-size: 17px;
  line-height: 1.72;
}

.fs-home-about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.fs-home-about-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(34, 193, 201, 0.45);
  background: rgba(34, 193, 201, 0.08);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.fs-home-certification {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--fs-border);
}

.fs-home-certification-image {
  width: 92px;
  max-height: 92px;
  object-fit: contain;
}

.fs-home-certification p {
  margin: 0;
  color: #4b4b4b;
  font-size: 15px;
  line-height: 1.55;
}

.fs-home-ingredients .fs-home-section-heading,
.fs-home-comparison .fs-home-section-heading,
.fs-home-testimonials .fs-home-section-heading {
  margin: 0 auto 34px;
  text-align: center;
}

.fs-home-ingredient-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.fs-home-ingredient-card {
  min-width: 0;
  padding: 20px 16px;
  border: 1px solid var(--fs-border);
  background: #fff;
  text-align: center;
}

.fs-home-ingredient-image-wrap {
  display: grid;
  width: 92px;
  height: 92px;
  margin: 0 auto 14px;
  place-items: center;
  border-radius: 50%;
  background: #f7f7f7;
}

.fs-home-ingredient-image {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 50%;
}

.fs-home-ingredient-card h3 {
  margin: 0;
  font-family: var(--fs-body-font);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.fs-home-ingredient-card p {
  margin: 10px 0 0;
  color: #555;
  font-size: 13px;
  line-height: 1.55;
}

.fs-home-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.fs-home-ba-card {
  border: 1px solid var(--fs-border);
  background: #fff;
}

.fs-home-ba-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 340px;
  overflow: hidden;
  background: #f2f2f2;
}

.fs-home-ba-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-home-ba-after {
  clip-path: inset(0 0 0 var(--fs-ba-position, 50%));
}

.fs-home-ba-label {
  position: absolute;
  top: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.74);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.fs-home-ba-label-before {
  left: 12px;
}

.fs-home-ba-label-after {
  right: 12px;
  background: rgba(34, 193, 201, 0.9);
}

.fs-home-ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--fs-ba-position, 50%);
  z-index: 4;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  transform: translateX(-1px);
}

.fs-home-ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--fs-accent);
  transform: translate(-50%, -50%);
}

.fs-home-ba-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.fs-home-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.fs-home-testimonial-card {
  min-width: 0;
  padding: 24px 20px;
  border: 1px solid var(--fs-border);
  background: #fff;
  text-align: center;
}

.fs-home-testimonial-avatar {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 16px;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--fs-accent);
  border-radius: 50%;
  background: #f7f7f7;
  color: var(--fs-accent);
  font-weight: 700;
}

.fs-home-testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-home-testimonial-card p {
  margin: 0;
  color: #333;
  font-size: 15px;
  line-height: 1.65;
}

.fs-home-testimonial-card h3 {
  margin: 18px 0 2px;
  font-family: var(--fs-body-font);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.fs-home-testimonial-card > span {
  color: var(--fs-muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.fs-home-review-strip {
  display: grid;
  grid-auto-columns: minmax(240px, 300px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
}

.fs-home-review-card {
  min-height: 220px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--fs-border);
  background: #fff;
  scroll-snap-align: start;
}

.fs-home-review-image {
  display: block;
  width: 100%;
  height: auto;
}

.fs-carousel {
  --fs-carousel-visible: 1;
  --fs-carousel-index: 0;
  position: relative;
}

.fs-carousel-viewport {
  overflow: hidden;
}

.fs-carousel-track {
  display: flex;
  transform: translateX(calc(var(--fs-carousel-index) * -100% / var(--fs-carousel-visible)));
  transition: transform 320ms ease;
}

.fs-carousel-slide {
  flex: 0 0 calc(100% / var(--fs-carousel-visible));
  min-width: 0;
}

.fs-carousel-arrow {
  position: absolute;
  top: 44%;
  z-index: 5;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.fs-carousel-prev {
  left: 10px;
}

.fs-carousel-next {
  right: 10px;
}

.fs-carousel-arrow:hover,
.fs-carousel-arrow:focus-visible {
  border-color: var(--fs-accent);
  background: var(--fs-accent);
  color: #fff;
}

.fs-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  min-height: 18px;
  margin-top: 24px;
}

.fs-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 2px solid #777;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.fs-carousel-dot.is-active {
  border-color: var(--fs-accent);
  background: var(--fs-accent);
}

.fs-ingredient-carousel {
  margin-top: 34px;
}

.fs-ingredient-carousel .fs-carousel-viewport {
  margin: 0 34px;
}

.fs-ingredient-carousel .fs-carousel-track {
  align-items: stretch;
}

.fs-ingredient-carousel .fs-carousel-slide {
  padding: 0 14px;
}

.fs-ingredient-carousel .fs-home-ingredient-card {
  height: 100%;
  padding: 0 0 28px;
  border: 0;
  background: #fff;
  text-align: left;
}

.fs-ingredient-carousel .fs-home-ingredient-image-wrap {
  display: block;
  width: 100%;
  height: 228px;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 0;
  background: #f8f8f8;
}

.fs-ingredient-carousel .fs-home-ingredient-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.fs-ingredient-carousel .fs-home-ingredient-card h3 {
  margin: 0;
  font-family: var(--fs-heading-font);
  font-size: 28px;
  line-height: 1.05;
  text-align: center;
}

.fs-ingredient-carousel .fs-home-ingredient-card p {
  margin: 12px 0 0;
  color: #222;
  font-size: 16px;
  line-height: 1.65;
}

.fs-home-testimonial-band {
  background: #000;
  color: #fff;
}

.fs-home-testimonial-band .fs-container {
  max-width: 1240px;
}

.fs-home-testimonial-title {
  margin: 0 0 22px;
  color: #fff;
  font-family: var(--fs-heading-font);
  font-size: clamp(36px, 4.3vw, 58px);
  line-height: 1;
  text-align: center;
}

.fs-testimonial-carousel .fs-carousel-track {
  align-items: stretch;
}

.fs-testimonial-carousel .fs-home-testimonial-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
  gap: 48px;
  min-height: 420px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
}

.fs-home-testimonial-stars {
  color: var(--fs-accent);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
}

.fs-home-testimonial-card blockquote {
  margin: 18px 0 26px;
  color: #fff;
  font-size: clamp(20px, 2.2vw, 28px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.18;
}

.fs-home-testimonial-card h3 {
  margin: 0;
  color: #fff;
  font-family: var(--fs-body-font);
  font-size: 17px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.35;
}

.fs-home-testimonial-card .fs-home-testimonial-meta,
.fs-home-testimonial-card .fs-home-testimonial-phone {
  margin: 20px 0 0;
  color: #fff;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
}

.fs-home-testimonial-media {
  justify-self: center;
  width: min(100%, 330px);
  aspect-ratio: 0.78;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111;
  color: var(--fs-accent);
  font-size: 44px;
  font-weight: 700;
}

.fs-home-testimonial-media .fs-home-testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-testimonial-carousel .fs-carousel-dots {
  margin-top: 8px;
}

.fs-testimonial-carousel .fs-carousel-dot {
  border-color: #555;
}

.fs-testimonial-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 22px auto 0;
  padding: 11px 22px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.fs-testimonial-button:hover,
.fs-testimonial-button:focus-visible {
  border-color: var(--fs-accent);
  background: var(--fs-accent);
  color: #fff;
}

.fs-review-carousel {
  margin-top: 28px;
  padding: 0 56px;
}

.fs-review-carousel .fs-home-review-card {
  display: grid;
  min-height: 520px;
  margin: 0;
  padding: 0;
  place-items: center;
  border: 0;
  background: #fff;
}

.fs-review-carousel .fs-home-review-image {
  width: 100%;
  max-width: 100%;
  max-height: 680px;
  object-fit: contain;
}

.fs-review-carousel .fs-carousel-arrow {
  top: 50%;
}

@media (max-width: 1100px) {
  .fs-home-product-grid,
  .fs-home-testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fs-home-ingredient-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .fs-home-section {
    padding: 56px 0;
  }

  .fs-contact-hero {
    padding: 42px 0 52px;
  }

  .fs-contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fs-contact-image {
    min-height: 360px;
  }

  .fs-contact-panel {
    padding: 34px;
  }

  .fs-contact-locator-inner {
    display: grid;
    justify-items: start;
  }

  .fs-home-section-headline-row {
    display: block;
  }

  .fs-home-section-headline-row .fs-home-text-link {
    margin-top: 22px;
  }

  .fs-home-product-grid,
  .fs-home-comparison-grid,
  .fs-home-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fs-home-about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fs-home-ingredient-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .fs-home-section {
    padding: 44px 0;
  }

  .fs-contact-hero {
    padding: 28px 0 40px;
  }

  .fs-contact-image {
    min-height: 260px;
  }

  .fs-contact-panel {
    padding: 24px 18px;
  }

  .fs-contact-panel h1 {
    font-size: 38px;
  }

  .fs-contact-panel h2 {
    font-size: 18px;
  }

  .fs-contact-method {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 14px;
  }

  .fs-contact-method > span {
    width: 40px;
    height: 40px;
  }

  .fs-contact-method em {
    font-size: 16px;
  }

  .fs-contact-social-links {
    display: grid;
  }

  .fs-contact-locator {
    padding: 32px 0;
  }

  .fs-contact-locator-link {
    width: 100%;
  }

  .fs-home-section-heading h2 {
    font-size: 31px;
  }

  .fs-home-section-heading span {
    font-size: 15px;
  }

  .fs-home-product-grid,
  .fs-home-comparison-grid,
  .fs-home-testimonial-grid,
  .fs-home-ingredient-grid {
    grid-template-columns: 1fr;
  }

  .fs-product-card-media {
    min-height: 230px;
  }

  .fs-product-card-title {
    min-height: 0;
  }

  .fs-home-about-points {
    display: grid;
  }

  .fs-home-certification {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .fs-home-certification-image {
    width: 72px;
    max-height: 72px;
  }

  .fs-home-ba-frame {
    min-height: 310px;
  }

  .fs-home-review-strip {
    grid-auto-columns: minmax(230px, 82vw);
  }
}

@media (max-width: 900px) {
  .fs-ingredient-carousel .fs-carousel-viewport {
    margin: 0 26px;
  }

  .fs-testimonial-carousel .fs-home-testimonial-card {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    text-align: center;
  }

  .fs-home-testimonial-media {
    order: -1;
    width: min(100%, 300px);
  }
}

@media (max-width: 620px) {
  .fs-carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 28px;
  }

  .fs-ingredient-carousel .fs-carousel-viewport,
  .fs-review-carousel {
    margin-inline: 0;
    padding-inline: 0;
  }

  .fs-ingredient-carousel .fs-home-ingredient-image-wrap {
    height: 220px;
  }

  .fs-home-testimonial-card blockquote {
    font-size: 17px;
    line-height: 1.32;
  }

  .fs-review-carousel .fs-home-review-card {
    min-height: 340px;
  }

  .fs-home-testimonial-title {
    font-size: 34px;
  }

  .fs-home-testimonial-card .fs-home-testimonial-meta,
  .fs-home-testimonial-card .fs-home-testimonial-phone {
    margin-top: 12px;
    font-size: 14px;
  }
}

/* Benefits page */
.fs-benefits-content {
  background: #fff;
}

.fs-benefits-hero {
  width: 100%;
  overflow: hidden;
  background: #000;
}

.fs-benefits-hero-image {
  display: block;
  width: 100%;
  height: clamp(240px, 25vw, 400px);
  object-fit: cover;
  object-position: center;
}

.fs-benefits-products {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 30px;
  padding-top: 40px;
  padding-bottom: 46px;
}

.fs-benefit-product {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.fs-benefit-product-image {
  display: grid;
  width: 100%;
  min-height: 190px;
  padding: 0;
  place-items: center;
  border: 0;
  background: #fff;
  cursor: pointer;
}

.fs-benefit-product-image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 190px;
  object-fit: contain;
}

.fs-benefit-product-button,
.fs-benefit-add-cart,
.fs-benefit-modal-copy .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 11px 15px;
  border: 0;
  border-radius: 4px;
  background: var(--fs-accent);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.34);
  text-transform: uppercase;
  box-shadow: inset 0 -10px 18px rgba(0, 0, 0, 0.08);
}

.fs-benefit-product-button {
  width: 100%;
}

.fs-benefit-product-button:hover,
.fs-benefit-product-button:focus-visible,
.fs-benefit-add-cart:hover,
.fs-benefit-add-cart:focus-visible {
  background: #16aab1;
  color: #fff;
}

.fs-benefits-detail {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.9fr);
  gap: 56px;
  padding-bottom: 64px;
}

.fs-benefits-copy h2,
.fs-benefits-copy h3,
.fs-benefits-lab h2 {
  margin: 0 0 28px;
  color: #000;
  font-family: var(--fs-heading-font);
  font-size: clamp(27px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 1.18;
}

.fs-benefits-copy h3 {
  margin-top: 38px;
}

.fs-benefits-copy ol {
  margin: 0;
  padding-left: 28px;
}

.fs-benefits-copy li {
  margin: 0 0 15px;
  color: #000;
  font-size: 16px;
  line-height: 1.65;
}

.fs-benefits-keratin-image {
  display: block;
  max-width: 100%;
  margin-top: 24px;
}

.fs-benefits-lab {
  text-align: left;
}

.fs-benefits-lab .fs-benefit-product-button {
  width: auto;
  min-height: 32px;
  margin-bottom: 24px;
  padding: 8px 16px;
}

.fs-benefits-osha-image {
  display: block;
  width: min(100%, 280px);
  height: auto;
}

.fs-benefit-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.8);
}

.fs-benefit-modal[hidden] {
  display: none;
}

.fs-benefit-modal-panel {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  padding: 32px;
  background: #fff;
  color: #000;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.fs-benefit-modal-panel h2 {
  margin: 0 42px 24px 0;
  font-family: var(--fs-heading-font);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
}

.fs-benefit-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.fs-benefit-modal-layout {
  display: grid;
  grid-template-columns: minmax(200px, 0.28fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.fs-benefit-modal-media {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.fs-benefit-modal-media img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 340px;
  object-fit: contain;
}

.fs-benefit-add-cart {
  min-height: 40px;
  padding: 10px 18px;
}

.fs-benefit-modal-copy {
  font-size: 16px;
  line-height: 1.7;
}

.fs-benefit-modal-copy p {
  margin: 0 0 14px;
}

.fs-benefit-modal-extra-images {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.fs-benefit-modal-extra-images img {
  width: auto;
  max-width: min(220px, 100%);
  max-height: 180px;
  object-fit: contain;
}

.fs-benefit-lab-panel {
  width: min(900px, 100%);
}

.fs-benefit-lab-image {
  display: block;
  width: 100%;
  height: auto;
}

body.fs-modal-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .fs-benefits-products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .fs-benefits-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 20px;
  }

  .fs-benefits-detail,
  .fs-benefit-modal-layout {
    grid-template-columns: 1fr;
  }

  .fs-benefits-lab {
    text-align: center;
  }

  .fs-benefits-osha-image {
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .fs-benefits-hero-image {
    height: 220px;
  }

  .fs-benefits-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
    padding-top: 28px;
  }

  .fs-benefit-product-image {
    min-height: 150px;
  }

  .fs-benefit-product-image img {
    max-height: 150px;
  }

  .fs-benefit-product-button {
    min-height: 46px;
    padding: 10px 9px;
    font-size: 12px;
  }

  .fs-benefits-detail {
    gap: 34px;
    padding-bottom: 46px;
  }

  .fs-benefits-copy li {
    font-size: 15px;
  }

  .fs-benefit-modal {
    padding: 12px;
  }

  .fs-benefit-modal-panel {
    max-height: 90vh;
    padding: 24px 16px;
  }
}

/* Instructions page */
.fs-instructions-content {
  background: #fff;
}

.fs-instructions-hero {
  position: relative;
  min-height: clamp(360px, 42vw, 520px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #f6f6f6 var(--fs-instructions-hero-bg) center right / cover no-repeat;
}

.fs-instructions-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.82) 38%, rgba(255, 255, 255, 0.12) 72%);
}

.fs-instructions-hero-inner {
  position: relative;
  z-index: 1;
}

.fs-instructions-hero-copy {
  width: min(620px, 100%);
  padding: 54px 0;
}

.fs-instructions-hero-copy h1 {
  margin: 0;
  color: #000;
  font-family: var(--fs-heading-font);
  font-size: clamp(36px, 4.8vw, 66px);
  line-height: 1.02;
  text-transform: uppercase;
}

.fs-instructions-hero-copy p:not(.fs-contact-eyebrow) {
  margin: 20px 0 0;
  color: #000;
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 700;
  line-height: 1.45;
}

.fs-instructions-hero-button,
.fs-instruction-product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 4px;
  background: var(--fs-accent);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.34);
  text-transform: uppercase;
  box-shadow: inset 0 -10px 18px rgba(0, 0, 0, 0.08);
}

.fs-instructions-hero-button {
  margin-top: 26px;
}

.fs-instructions-hero-button:hover,
.fs-instructions-hero-button:focus-visible,
.fs-instruction-product-button:hover,
.fs-instruction-product-button:focus-visible {
  background: #16aab1;
  color: #fff;
}

.fs-instructions-strip {
  padding: 24px 0;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  background: var(--fs-accent);
  text-align: center;
}

.fs-instructions-strip h2 {
  margin: 0;
  color: #fff;
  font-family: var(--fs-heading-font);
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.15;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.42);
  text-transform: uppercase;
}

.fs-instructions-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px 34px;
  padding-top: 46px;
  padding-bottom: 64px;
}

.fs-instruction-product {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.fs-instruction-product-image {
  display: grid;
  width: 100%;
  min-height: 275px;
  padding: 18px;
  place-items: center;
  border: 0;
  background: #fff;
  cursor: pointer;
}

.fs-instruction-product-image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.fs-instruction-product-button {
  width: 100%;
}

.fs-instruction-detail-panel {
  width: min(1120px, 100%);
}

.fs-instruction-detail-copy,
.fs-instruction-modal-copy {
  color: #000;
}

.fs-instruction-detail-copy ol,
.fs-instruction-detail-copy ul,
.fs-instruction-modal-copy ol,
.fs-instruction-modal-copy ul {
  margin: 0;
  padding-left: 26px;
}

.fs-instruction-detail-copy li,
.fs-instruction-modal-copy li {
  margin-bottom: 13px;
  line-height: 1.65;
}

.fs-instruction-modal-media img {
  max-height: 300px;
}

@media (max-width: 1000px) {
  .fs-instructions-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .fs-instructions-hero {
    min-height: 0;
    background-position: center right;
  }

  .fs-instructions-hero::before {
    background: rgba(255, 255, 255, 0.9);
  }

  .fs-instructions-hero-copy {
    padding: 40px 0;
  }

  .fs-instructions-products {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 32px;
    padding-bottom: 46px;
  }

  .fs-instruction-product-image {
    min-height: 220px;
  }

  .fs-instruction-product-image img {
    max-height: 215px;
  }
}

/* Salon list page */
.fs-saloon-content {
  background: #fff;
}

.fs-saloon-alpha {
  position: sticky;
  top: var(--fs-saloon-sticky-top, 0px);
  z-index: 999;
  margin-top: 0;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  background: #aeebee;
}

.admin-bar .fs-saloon-alpha {
  --fs-saloon-sticky-top: 32px;
}

.fs-saloon-alpha .fs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.fs-saloon-alpha a {
  color: #fff;
  font-family: var(--fs-heading-font);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
  transition: color 160ms ease, transform 160ms ease, text-shadow 160ms ease;
}

.fs-saloon-alpha a:hover,
.fs-saloon-alpha a:focus-visible,
.fs-saloon-alpha a.is-active {
  color: #000;
  text-shadow: none;
}

.fs-saloon-alpha a.is-active {
  transform: translateY(-1px) scale(1.18);
}

.fs-saloon-alpha a.is-disabled {
  opacity: 0.42;
}

.fs-saloon-list {
  padding-top: 42px;
  padding-bottom: 72px;
}

.fs-saloon-heading {
  margin-bottom: 22px;
  text-align: left;
}

.fs-saloon-heading h1 {
  margin: 0;
  font-family: var(--fs-heading-font);
  font-size: clamp(32px, 3vw, 43px);
  line-height: 1.1;
  text-transform: uppercase;
}

.fs-saloon-letter-section {
  scroll-margin-top: var(--fs-saloon-scroll-margin, 250px);
  padding-top: 50px;
}

.fs-saloon-letter-section h2 {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin: 0 0 18px;
  place-items: center;
  border: 2px solid var(--fs-accent);
  border-radius: 50%;
  color: var(--fs-accent);
  font-family: var(--fs-heading-font);
  font-size: 26px;
  line-height: 1;
}

.fs-saloon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 92px;
  row-gap: 36px;
}

.fs-saloon-card {
  min-width: 0;
  color: #000;
  font-size: 16px;
  line-height: 1.45;
}

.fs-saloon-card h3 {
  margin: 0 0 12px;
  color: #000;
  font-family: var(--fs-heading-font);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.fs-saloon-card a {
  color: var(--fs-accent);
  font-weight: 700;
}

.fs-saloon-card a:hover,
.fs-saloon-card a:focus-visible {
  color: #000;
}

@media (max-width: 900px) {
  .fs-saloon-alpha .fs-container {
    gap: 8px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .fs-saloon-alpha a {
    font-size: 18px;
  }

  .fs-saloon-grid {
    column-gap: 36px;
  }

  .fs-saloon-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 620px) {
  .fs-saloon-alpha .fs-container {
    gap: 8px 10px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .fs-saloon-alpha a {
    font-size: 16px;
  }

  .fs-saloon-list {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .fs-saloon-grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .fs-saloon-card {
    font-size: 15px;
  }

  .fs-saloon-card h3 {
    font-size: 19px;
  }
}
