/* ==========================================================================
   Kairalmas storefront theme system

   Every colour, font, spacing and radius value comes from theme tokens that the
   merchant controls in the console. Nothing in here is hard-coded to a brand so
   one stylesheet can serve every store and every preset.
   ========================================================================== */

:root {
  --sf-container: 1400px;
  --sf-space: 80px;
  --sf-gap: 10px;
  --sf-radius: 0px;
  --sf-cols: 4;
  --sf-m-cols: 2;

  --sf-h-font: Baskervville, Georgia, serif;
  --sf-b-font: "Instrument Sans", system-ui, sans-serif;
  --sf-h-weight: 400;
  --sf-h-case: none;
  --sf-h-tracking: 0px;
  --sf-h-scale: 1.2;
  --sf-b-size: 16px;

  --sf-s1-bg: #f4f6f7;
  --sf-s1-heading: #151313;
  --sf-s1-text: #857c7c;
  --sf-s1-btn-bg: #ffe4e3;
  --sf-s1-btn-text: #2b2828;
  --sf-s1-btn-hover: #e5d2d1;

  --sf-s2-bg: #f7e8f1;
  --sf-s2-heading: #000000;
  --sf-s2-text: #4a2c2f;
  --sf-s2-btn-bg: #000000;
  --sf-s2-btn-text: #ffffff;
  --sf-s2-btn-hover: #2e2e2e;

  --sf-s3-bg: #f7e4e4;
  --sf-s3-heading: #0c0c0c;
  --sf-s3-text: #807373;
  --sf-s3-btn-bg: #ffffff;
  --sf-s3-btn-text: #2b2828;
  --sf-s3-btn-hover: #e7e7e7;

  --sf-ink-bg: #151313;
  --sf-ink-heading: #f7f4f4;
  --sf-ink-text: #c9c2c2;

  --sf-ann-bg: #f7e4e4;
  --sf-ann-text: #221414;
  --sf-border: #e2e3e4;
  --sf-sale: #a81920;
  --sf-card-ratio: 3 / 4;
}

/* --- base ---------------------------------------------------------------- */

body.storefront {
  margin: 0;
  background: var(--sf-s1-bg);
  color: var(--sf-s1-text);
  font-family: var(--sf-b-font);
  font-size: var(--sf-b-size);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.storefront a {
  color: inherit;
  text-decoration: none;
}

body.storefront button {
  font: inherit;
  cursor: pointer;
}

body.storefront img {
  display: block;
  max-width: 100%;
}

.sf-container {
  width: 100%;
  max-width: var(--sf-container);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
}

.sf-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: var(--sf-kicker-case, uppercase);
  opacity: 0.85;
  margin: 0 0 12px;
}

.sf-h1,
.sf-h2,
.sf-h3,
.sf-h4 {
  font-family: var(--sf-h-font);
  font-weight: var(--sf-h-weight);
  color: var(--sf-heading);
  text-transform: var(--sf-h-case);
  letter-spacing: var(--sf-h-tracking);
  line-height: 1.14;
  margin: 0;
}

.sf-h1 {
  font-size: clamp(2.4rem, calc(3.1rem * var(--sf-h-scale)), 5.4rem);
}
.sf-h2 {
  font-size: clamp(1.85rem, calc(2.3rem * var(--sf-h-scale)), 3.6rem);
}
.sf-h3 {
  font-size: clamp(1.25rem, calc(1.5rem * var(--sf-h-scale)), 2rem);
}
.sf-h4 {
  font-size: clamp(1.05rem, calc(1.2rem * var(--sf-h-scale)), 1.4rem);
}

.sf-lead {
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 52ch;
  margin: 0;
  color: var(--sf-text);
}

.sf-center {
  text-align: center;
  margin-inline: auto;
}

.sf-muted {
  opacity: 0.72;
}

/* --- colour schemes ------------------------------------------------------ */

.sf-scheme-main {
  --sf-bg: var(--sf-s1-bg);
  --sf-heading: var(--sf-s1-heading);
  --sf-text: var(--sf-s1-text);
  --sf-btn-bg: var(--sf-s1-btn-bg);
  --sf-btn-text: var(--sf-s1-btn-text);
  --sf-btn-hover: var(--sf-s1-btn-hover);
}
.sf-scheme-accent {
  --sf-bg: var(--sf-s2-bg);
  --sf-heading: var(--sf-s2-heading);
  --sf-text: var(--sf-s2-text);
  --sf-btn-bg: var(--sf-s2-btn-bg);
  --sf-btn-text: var(--sf-s2-btn-text);
  --sf-btn-hover: var(--sf-s2-btn-hover);
}
.sf-scheme-soft {
  --sf-bg: var(--sf-s3-bg);
  --sf-heading: var(--sf-s3-heading);
  --sf-text: var(--sf-s3-text);
  --sf-btn-bg: var(--sf-s3-btn-bg);
  --sf-btn-text: var(--sf-s3-btn-text);
  --sf-btn-hover: var(--sf-s3-btn-hover);
}
.sf-scheme-ink {
  --sf-bg: var(--sf-ink-bg);
  --sf-heading: var(--sf-ink-heading);
  --sf-text: var(--sf-ink-text);
  --sf-btn-bg: transparent;
  --sf-btn-text: var(--sf-ink-heading);
  --sf-btn-hover: var(--sf-ink-heading);
}

.sf-section {
  background: var(--sf-bg, var(--sf-s1-bg));
  color: var(--sf-text, var(--sf-s1-text));
  padding: var(--sf-space) 0;
}
.sf-section .sf-h1,
.sf-section .sf-h2,
.sf-section .sf-h3,
.sf-section .sf-h4 {
  color: var(--sf-heading, var(--sf-s1-heading));
}

/* --- buttons ------------------------------------------------------------- */

.sf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--sf-radius);
  background: var(--sf-btn-bg, var(--sf-s1-btn-bg));
  color: var(--sf-btn-text, var(--sf-s1-btn-text));
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.sf-btn:hover {
  background: var(--sf-btn-hover, var(--sf-s1-btn-hover));
}
.sf-btn--outline {
  background: transparent;
  border-color: currentColor;
  color: var(--sf-heading, var(--sf-s1-heading));
}
.sf-btn--outline:hover {
  background: var(--sf-heading, var(--sf-s1-heading));
  color: var(--sf-bg, var(--sf-s1-bg));
}
.sf-btn--light {
  background: #fff;
  color: #1b1b1b;
  border-color: #fff;
}
.sf-btn--light:hover {
  background: rgba(255, 255, 255, 0.85);
}
.sf-btn--ghost {
  background: transparent;
  border-color: transparent;
  padding: 8px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.sf-btn--ghost:hover {
  background: transparent;
  opacity: 0.7;
}
.sf-btn--block {
  width: 100%;
}
.sf-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.sf-link {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 0.84rem;
  font-weight: 500;
}

/* --- announcement -------------------------------------------------------- */

.sf-announce {
  background: var(--sf-ann-bg);
  color: var(--sf-ann-text);
  font-size: 0.78rem;
  text-align: center;
  padding: 9px 16px;
  position: relative;
  z-index: 3;
}
.sf-announce .sf-announce-item {
  display: none;
}
.sf-announce .sf-announce-item.is-active {
  display: block;
}
.sf-announce p {
  margin: 0;
}

/* --- header -------------------------------------------------------------- */

.sf-header {
  background: var(--sf-s1-bg);
  color: var(--sf-s1-heading);
  border-bottom: 1px solid var(--sf-border);
  position: relative;
  z-index: 20;
}
.sf-header.is-sticky {
  position: sticky;
  top: 0;
}
.sf-header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 74px;
}
.sf-header--center .sf-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}
.sf-header--center .sf-nav {
  justify-content: flex-start;
}
.sf-header--center .sf-tools {
  justify-content: flex-end;
}

.sf-logo {
  font-family: var(--sf-h-font);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.sf-logo--serif {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.sf-logo--sans {
  font-family: var(--sf-b-font);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
}
.sf-logo--lowercase {
  text-transform: lowercase;
  letter-spacing: -0.03em;
}

.sf-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.84rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sf-nav a {
  padding: 6px 0;
  opacity: 0.9;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.sf-nav a:hover {
  border-color: currentColor;
  opacity: 1;
}

.sf-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  margin-left: auto;
}
.sf-header--center .sf-tools {
  margin-left: 0;
}
.sf-icon-btn {
  background: none;
  border: 0;
  padding: 6px;
  color: inherit;
  font-size: 1.05rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sf-icon-btn:hover {
  opacity: 0.65;
}
.sf-cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding: 0 4px;
  border-radius: 99px;
  background: var(--sf-s1-heading);
  color: var(--sf-s1-bg);
  font-size: 0.66rem;
  font-weight: 600;
}
.sf-currency {
  border: 0;
  background: transparent;
  font-size: 0.78rem;
  color: inherit;
}
.sf-menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: inherit;
  font-size: 1.3rem;
}

/* --- search -------------------------------------------------------------- */

.sf-searchbar {
  border-top: 1px solid var(--sf-border);
  padding: 14px 0;
  display: none;
}
.sf-searchbar.is-open {
  display: block;
}
.sf-searchbar form {
  display: flex;
  gap: 10px;
}
.sf-searchbar input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  background: #fff;
  font: inherit;
}
.sf-search-results {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.sf-search-results a {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.82rem;
}
.sf-search-results img {
  width: 48px;
  height: 60px;
  object-fit: cover;
}

/* --- hero ---------------------------------------------------------------- */

.sf-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.sf-hero--small {
  min-height: 42vh;
}
.sf-hero--medium {
  min-height: 56vh;
}
.sf-hero--large {
  min-height: 72vh;
}
.sf-hero--full {
  min-height: 92vh;
}
.sf-slide {
  position: relative;
  min-height: inherit;
  display: none;
}
.sf-slide.is-active {
  display: grid;
}
.sf-slide-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.sf-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: var(--sf-hero-overlay, 0.28);
}
.sf-slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 6vw, 90px) 0;
  min-height: inherit;
  max-width: 640px;
  color: var(--sf-hero-text, #fff);
}
.sf-slide-content .sf-h1 {
  color: inherit;
  margin-bottom: 16px;
}
.sf-slide-content p {
  font-size: 1.05rem;
  max-width: 46ch;
  margin: 0 0 26px;
}
.sf-slide-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.sf-hero--right .sf-slide-content {
  margin-left: auto;
  text-align: right;
  align-items: flex-end;
}
.sf-hero--right .sf-slide-content p {
  margin-left: auto;
}
.sf-hero--center .sf-slide-content {
  margin-inline: auto;
  text-align: center;
  align-items: center;
}
.sf-hero--center .sf-slide-content p {
  margin-inline: auto;
}
.sf-hero-nav {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
}
.sf-hero-nav button {
  width: 34px;
  height: 3px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
}
.sf-hero-nav button.is-active {
  background: #fff;
}
.sf-hero-arrows {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 14px;
}
.sf-hero-arrows button {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}

/* --- icon strip / marquee ------------------------------------------------ */

.sf-strip {
  border-top: 1px solid var(--sf-border);
  border-bottom: 1px solid var(--sf-border);
  padding: 20px 0;
}
.sf-strip-items {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  justify-content: center;
  align-items: center;
}
.sf-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
}
.sf-strip-item svg {
  width: 20px;
  height: 20px;
  flex: none;
}
.sf-strip-items--marquee {
  flex-wrap: nowrap;
  justify-content: flex-start;
  animation: sf-marquee var(--sf-marquee-speed, 26s) linear infinite;
  width: max-content;
}
.sf-strip--marquee {
  overflow: hidden;
}

.sf-marquee {
  overflow: hidden;
  padding: calc(var(--sf-space) * 0.32) 0;
}
.sf-marquee-track {
  display: flex;
  gap: 34px;
  width: max-content;
  animation: sf-marquee var(--sf-marquee-speed, 26s) linear infinite;
  font-family: var(--sf-h-font);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  white-space: nowrap;
}
.sf-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 34px;
}
@keyframes sf-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* --- product cards ------------------------------------------------------- */

.sf-grid {
  display: grid;
  gap: var(--sf-gap);
  grid-template-columns: repeat(var(--sf-cols), minmax(0, 1fr));
}
.sf-grid--related {
  grid-template-columns: repeat(min(var(--sf-cols), 4), minmax(0, 1fr));
}
.sf-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  text-align: var(--sf-card-align, left);
}
.sf-card-media {
  position: relative;
  display: block;
  aspect-ratio: var(--sf-card-ratio);
  background: rgba(0, 0, 0, 0.045);
  border-radius: var(--sf-radius);
  overflow: hidden;
}
.sf-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.sf-card-media:hover img {
  transform: scale(1.05);
}
body.sf-no-zoom .sf-card-media:hover img {
  transform: none;
}
.sf-card-noimg {
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.45;
}
.sf-card-flags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}
.sf-flag {
  background: var(--sf-sale);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--sf-radius);
}
.sf-flag--stock {
  background: rgba(20, 20, 20, 0.78);
}
.sf-card-body {
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sf-card-tag {
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.6;
}
.sf-card-title {
  font-family: var(--sf-h-font);
  font-size: 1.02rem;
  font-weight: var(--sf-h-weight);
  color: var(--sf-heading, var(--sf-s1-heading));
  margin: 0;
  line-height: 1.35;
}
.sf-card-price {
  font-size: 0.88rem;
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.sf-card-price del {
  opacity: 0.5;
}
.sf-card-price ins {
  text-decoration: none;
  color: var(--sf-sale);
}
.sf-quick {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  border: 0;
  background: rgba(255, 255, 255, 0.94);
  color: #1b1b1b;
  padding: 12px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateY(101%);
  transition: transform 0.28s ease;
}
.sf-card-media:hover .sf-quick,
.sf-quick:focus-visible {
  transform: none;
}
.sf-quick--circle {
  left: auto;
  right: 10px;
  bottom: 10px;
  width: 42px;
  height: 42px;
  border-radius: 99px;
  padding: 0;
  transform: none;
  opacity: 0;
  font-size: 1.1rem;
}
.sf-card-media:hover .sf-quick--circle {
  opacity: 1;
}
.sf-quick--text {
  position: static;
  background: none;
  transform: none;
  padding: 6px 0 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: inherit;
  font-size: 0.76rem;
}
.sf-section-foot {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.sf-headrow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.sf-headrow--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sf-count {
  font-size: 0.78rem;
  opacity: 0.65;
  white-space: nowrap;
}

.sf-filters {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  margin-bottom: 24px;
  padding-bottom: 4px;
}
.sf-filters button {
  white-space: nowrap;
  border: 1px solid var(--sf-border);
  border-radius: 99px;
  background: transparent;
  color: inherit;
  padding: 9px 18px;
  font-size: 0.8rem;
}
.sf-filters button.is-active,
.sf-filters button:hover {
  background: var(--sf-heading, var(--sf-s1-heading));
  border-color: var(--sf-heading, var(--sf-s1-heading));
  color: var(--sf-bg, var(--sf-s1-bg));
}

/* --- category tiles ------------------------------------------------------ */

.sf-tiles {
  display: grid;
  gap: var(--sf-gap);
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.sf-tile {
  display: block;
  text-align: center;
}
.sf-tile-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
  margin-bottom: 12px;
}
.sf-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sf-tile:hover .sf-tile-media img {
  transform: scale(1.04);
}
.sf-tile--arch .sf-tile-media {
  border-radius: 999px 999px var(--sf-radius) var(--sf-radius);
}
.sf-tile--circle .sf-tile-media {
  aspect-ratio: 1;
  border-radius: 999px;
}
.sf-tile--square .sf-tile-media {
  border-radius: var(--sf-radius);
}
.sf-tile b {
  font-family: var(--sf-h-font);
  font-weight: var(--sf-h-weight);
  font-size: 1.02rem;
  color: var(--sf-heading, var(--sf-s1-heading));
}

/* --- rich text ----------------------------------------------------------- */

.sf-richtext-inner {
  max-width: 70ch;
  margin-inline: auto;
}
.sf-richtext--left .sf-richtext-inner {
  margin-inline: 0;
}
.sf-richtext--small .sf-richtext-inner {
  max-width: 48ch;
}
.sf-richtext--wide .sf-richtext-inner {
  max-width: 92ch;
}
.sf-richtext .sf-lead {
  margin-top: 16px;
}
.sf-richtext .sf-btn {
  margin-top: 26px;
}

/* --- image with text ----------------------------------------------------- */

.sf-imagetext-row {
  display: grid;
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
  grid-template-columns: 1fr 1fr;
}
.sf-imagetext-row + .sf-imagetext-row {
  margin-top: calc(var(--sf-space) * 0.7);
}
.sf-imagetext-row--wide {
  grid-template-columns: 2fr 1fr;
}
.sf-imagetext-row--narrow {
  grid-template-columns: 1fr 2fr;
}
.sf-imagetext-media {
  aspect-ratio: 4 / 5;
  background: rgba(0, 0, 0, 0.05);
  border-radius: var(--sf-radius);
  overflow: hidden;
}
.sf-imagetext-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sf-imagetext-row.is-flipped .sf-imagetext-media {
  order: 2;
}

/* --- promo grid ---------------------------------------------------------- */

.sf-promogrid {
  display: grid;
  gap: var(--sf-gap);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.sf-promo-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 340px;
  border-radius: var(--sf-radius);
  overflow: hidden;
  color: #fff;
  background: rgba(0, 0, 0, 0.06);
}
.sf-promo-card--short {
  min-height: 210px;
}
.sf-promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sf-promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55));
}
.sf-promo-card-body {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 3vw, 36px);
}
.sf-promo-card .sf-h3 {
  color: #fff;
  margin: 8px 0 6px;
}
.sf-promo-card p {
  margin: 0 0 14px;
  font-size: 0.9rem;
  max-width: 40ch;
}

/* --- value columns ------------------------------------------------------- */

.sf-columns {
  display: grid;
  gap: clamp(20px, 3vw, 42px);
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.sf-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sf-columns--center .sf-column {
  align-items: center;
  text-align: center;
}
.sf-column svg {
  width: 30px;
  height: 30px;
  color: var(--sf-heading, var(--sf-s1-heading));
}
.sf-column h3 {
  margin: 0;
}
.sf-column p {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.85;
}

/* --- countdown ----------------------------------------------------------- */

.sf-countdown {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.sf-count-unit {
  min-width: 92px;
  padding: 16px 10px;
  border: 1px solid currentColor;
  border-radius: var(--sf-radius);
  text-align: center;
}
.sf-count-unit b {
  display: block;
  font-family: var(--sf-h-font);
  font-size: 2rem;
  line-height: 1;
  font-weight: var(--sf-h-weight);
}
.sf-count-unit span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* --- testimonials -------------------------------------------------------- */

.sf-quotes {
  display: grid;
  gap: var(--sf-gap);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.sf-quotes--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.sf-quote {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(20px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
}
.sf-stars {
  color: var(--sf-sale);
  letter-spacing: 3px;
  font-size: 0.85rem;
}
.sf-quote blockquote {
  margin: 0;
  font-family: var(--sf-h-font);
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--sf-heading, var(--sf-s1-heading));
}
.sf-quote-by {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
}
.sf-quote-by img {
  width: 38px;
  height: 38px;
  border-radius: 99px;
  object-fit: cover;
}

/* --- shoppable look ------------------------------------------------------ */

.sf-look {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}
.sf-look.is-right .sf-look-media {
  order: 2;
}
.sf-look-media {
  aspect-ratio: 4 / 5;
  background: rgba(0, 0, 0, 0.05);
  border-radius: var(--sf-radius);
  overflow: hidden;
}
.sf-look-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sf-look-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--sf-border);
}
.sf-look-item img {
  width: 64px;
  height: 78px;
  object-fit: cover;
  border-radius: var(--sf-radius);
  background: rgba(0, 0, 0, 0.05);
  flex: none;
}
.sf-look-item div {
  flex: 1;
  min-width: 0;
}
.sf-look-item b {
  display: block;
  font-family: var(--sf-h-font);
  font-weight: var(--sf-h-weight);
  font-size: 1rem;
  color: var(--sf-heading, var(--sf-s1-heading));
}
.sf-look-item small {
  opacity: 0.7;
}

/* --- comparison table ---------------------------------------------------- */

.sf-compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.sf-compare th,
.sf-compare td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--sf-border);
  text-align: left;
  vertical-align: top;
  white-space: normal;
}
.sf-compare thead th {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 600;
}
.sf-compare .sf-compare-feature {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  padding-top: 26px;
  border-bottom: 0;
}
.sf-compare td:first-child {
  font-weight: 600;
  color: var(--sf-heading, var(--sf-s1-heading));
}
.sf-compare-col-media {
  width: 150px;
}
.sf-compare-col-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 8px;
  border-radius: var(--sf-radius);
}
.sf-compare-scroll {
  overflow-x: auto;
}

/* --- gallery ------------------------------------------------------------- */

.sf-gallery {
  display: grid;
  gap: var(--sf-gallery-gap, 8px);
  grid-template-columns: repeat(var(--sf-gallery-cols, 3), minmax(0, 1fr));
}
.sf-gallery a {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--sf-radius);
  background: rgba(0, 0, 0, 0.05);
}
.sf-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sf-gallery a:hover img {
  transform: scale(1.04);
}
.sf-gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  color: #fff;
  font-size: 0.78rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

/* --- articles ------------------------------------------------------------ */

.sf-articles {
  display: grid;
  gap: var(--sf-gap);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.sf-article {
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sf-article b {
  font-family: var(--sf-h-font);
  font-weight: var(--sf-h-weight);
  font-size: 1.15rem;
  color: var(--sf-heading, var(--sf-s1-heading));
}

/* --- faq ----------------------------------------------------------------- */

.sf-faq-list {
  max-width: 860px;
  margin-inline: auto;
}
.sf-faq-list details {
  border-bottom: 1px solid var(--sf-border);
}
.sf-faq-list details:first-child {
  border-top: 1px solid var(--sf-border);
}
.sf-faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  font-size: 1rem;
  font-family: var(--sf-h-font);
  color: var(--sf-heading, var(--sf-s1-heading));
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.sf-faq-list summary::-webkit-details-marker {
  display: none;
}
.sf-faq-list summary::after {
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
}
.sf-faq-list details[open] summary::after {
  content: "–";
}
.sf-faq-list p {
  margin: 0 0 20px;
  max-width: 68ch;
}

/* --- newsletter ---------------------------------------------------------- */

.sf-newsletter-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
}
.sf-newsletter form {
  display: flex;
  gap: 0;
  border-bottom: 1px solid currentColor;
  min-width: min(430px, 100%);
}
.sf-newsletter input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 14px 0;
  font: inherit;
  outline: none;
}
.sf-newsletter input::placeholder {
  color: inherit;
  opacity: 0.6;
}
.sf-newsletter button {
  border: 0;
  background: none;
  color: inherit;
  font-weight: 600;
  white-space: nowrap;
  padding-left: 14px;
}

/* --- footer -------------------------------------------------------------- */

.sf-footer {
  background: var(--sf-ink-bg);
  color: var(--sf-ink-text);
  padding: calc(var(--sf-space) * 0.8) 0 30px;
}
.sf-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, minmax(120px, 0.8fr)) 1.2fr;
  gap: clamp(20px, 3vw, 46px);
}
.sf-footer h4 {
  font-family: var(--sf-h-font);
  font-weight: var(--sf-h-weight);
  color: var(--sf-ink-heading);
  font-size: 1.5rem;
  margin: 0 0 12px;
}
.sf-footer h5 {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sf-ink-heading);
  margin: 0 0 14px;
  font-weight: 600;
}
.sf-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  font-size: 0.86rem;
}
.sf-footer a:hover {
  color: var(--sf-ink-heading);
}
.sf-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  font-size: 0.8rem;
  flex-wrap: wrap;
}
.sf-footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
}

/* --- cart drawer --------------------------------------------------------- */

.sf-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 60;
}
.sf-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.sf-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(430px, 92vw);
  background: var(--sf-s1-bg);
  color: var(--sf-s1-text);
  z-index: 61;
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform 0.35s cubic-bezier(0.3, 0.8, 0.3, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
}
.sf-drawer.is-open {
  transform: none;
}
.sf-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--sf-border);
}
.sf-drawer-head h2 {
  font-family: var(--sf-h-font);
  font-weight: var(--sf-h-weight);
  font-size: 1.25rem;
  margin: 0;
  color: var(--sf-s1-heading);
}
.sf-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 22px;
}
.sf-drawer-foot {
  border-top: 1px solid var(--sf-border);
  padding: 18px 22px 24px;
}
.sf-line {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--sf-border);
}
.sf-line img {
  width: 72px;
  height: 88px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.05);
  flex: none;
  border-radius: var(--sf-radius);
}
.sf-line-body {
  flex: 1;
  min-width: 0;
}
.sf-line-body b {
  font-family: var(--sf-h-font);
  font-weight: var(--sf-h-weight);
  font-size: 0.98rem;
  color: var(--sf-s1-heading);
}
.sf-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  margin-top: 8px;
}
.sf-qty button {
  width: 30px;
  height: 30px;
  border: 0;
  background: none;
}
.sf-qty input {
  width: 40px;
  border: 0;
  text-align: center;
  font: inherit;
  background: transparent;
}
.sf-line-remove {
  border: 0;
  background: none;
  font-size: 0.74rem;
  text-decoration: underline;
  opacity: 0.7;
  padding: 0;
  margin-top: 6px;
}
.sf-freebar {
  font-size: 0.78rem;
  margin-bottom: 12px;
}
.sf-freebar-track {
  height: 4px;
  background: var(--sf-border);
  margin-top: 8px;
  overflow: hidden;
}
.sf-freebar-track i {
  display: block;
  height: 100%;
  background: var(--sf-heading, var(--sf-s1-heading));
}
.sf-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin: 8px 0;
}

/* --- product page -------------------------------------------------------- */

.sf-pdp {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(24px, 5vw, 70px);
  padding: var(--sf-space) 0;
}
.sf-pdp-gallery {
  display: grid;
  gap: var(--sf-gap);
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
}
.sf-pdp-gallery img {
  width: 100%;
  aspect-ratio: var(--sf-card-ratio);
  object-fit: cover;
  background: rgba(0, 0, 0, 0.05);
  border-radius: var(--sf-radius);
}
.sf-pdp-gallery img:first-child {
  grid-column: 1 / -1;
}
.sf-pdp-info {
  align-self: start;
}
.sf-pdp-info.is-sticky {
  position: sticky;
  top: 96px;
}
.sf-pdp-info h1 {
  margin: 0 0 12px;
}
.sf-pdp-price {
  font-size: 1.4rem;
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin: 0 0 18px;
}
.sf-pdp-price del {
  opacity: 0.5;
  font-size: 1rem;
}
.sf-pdp-price ins {
  text-decoration: none;
  color: var(--sf-sale);
}
.sf-pdp-desc {
  line-height: 1.8;
  margin: 0 0 20px;
}
.sf-specs {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  font-size: 0.88rem;
}
.sf-specs div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--sf-border);
  padding-bottom: 8px;
}
.sf-specs b {
  font-weight: 600;
  color: var(--sf-heading, var(--sf-s1-heading));
}
.sf-buyrow {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin: 22px 0 14px;
}
.sf-buyrow .sf-qty {
  margin: 0;
  height: auto;
}
.sf-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.sf-tag {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--sf-border);
  padding: 5px 10px;
  border-radius: 99px;
  opacity: 0.8;
}
.sf-trust {
  font-size: 0.82rem;
  opacity: 0.75;
  border-top: 1px solid var(--sf-border);
  padding-top: 16px;
}

.sf-crumbs {
  font-size: 0.78rem;
  opacity: 0.65;
  padding: 18px 0 0;
}
.sf-crumbs a:hover {
  text-decoration: underline;
}

.sf-page-head {
  padding: calc(var(--sf-space) * 0.7) 0 calc(var(--sf-space) * 0.35);
}
.sf-page-head p {
  max-width: 60ch;
  margin: 12px 0 0;
}

/* --- cart & checkout pages ---------------------------------------------- */

.sf-cart-layout,
.sf-checkout-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: clamp(24px, 4vw, 60px);
  padding: var(--sf-space) 0;
  align-items: start;
}
.sf-summary-box {
  background: var(--sf-s3-bg);
  color: var(--sf-s3-text);
  padding: 26px;
  border-radius: var(--sf-radius);
  position: sticky;
  top: 96px;
}
.sf-summary-box h2 {
  font-family: var(--sf-h-font);
  font-weight: var(--sf-h-weight);
  color: var(--sf-s3-heading);
  font-size: 1.2rem;
  margin: 0 0 16px;
}
.sf-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
.sf-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.sf-form-grid input,
.sf-form-grid select,
.sf-form-grid textarea {
  width: 100%;
  border: 1px solid var(--sf-border);
  background: #fff;
  border-radius: var(--sf-radius);
  padding: 12px 13px;
  font: inherit;
  color: inherit;
}
.sf-form-grid .sf-span2 {
  grid-column: 1 / -1;
}
.sf-options {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.sf-options label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid var(--sf-border);
  background: #fff;
  border-radius: var(--sf-radius);
  padding: 14px;
  font-size: 0.86rem;
}
.sf-options small {
  display: block;
  opacity: 0.7;
  margin-top: 4px;
}
.sf-empty {
  text-align: center;
  padding: calc(var(--sf-space) * 0.9) 20px;
}
.sf-empty .sf-h2 {
  margin-bottom: 14px;
}
.sf-success {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--sf-space) 20px;
}
.sf-success .sf-h1 {
  margin-bottom: 14px;
}

/* --- reveal on scroll --------------------------------------------------- */

body.sf-anim .sf-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
body.sf-anim .sf-reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  body.sf-anim .sf-reveal {
    opacity: 1;
    transform: none;
  }
  .sf-marquee-track,
  .sf-strip-items--marquee {
    animation: none;
  }
}

/* --- legacy stylesheet neutralisers -------------------------------------
   app.css still ships an older storefront block. These scoped rules stop its
   .sf-hero and .sf-newsletter declarations from reaching the current markup
   without touching the console styles that share the same file.             */

body.storefront .sf-hero {
  display: block;
  padding: 0;
  background: none;
}
body.storefront .sf-hero > div {
  max-width: none;
}
body.storefront .sf-hero a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #1b1b1b;
  padding: 14px 26px;
  margin-top: 0;
  border: 1px solid #fff;
  border-radius: var(--sf-radius);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}
body.storefront .sf-hero a:hover {
  background: rgba(255, 255, 255, 0.86);
}
body.storefront .sf-hero a.sf-hero-btn2 {
  background: transparent;
  color: var(--sf-hero-text, #fff);
  border-color: currentColor;
}
body.storefront .sf-hero a.sf-hero-btn2:hover {
  background: rgba(255, 255, 255, 0.16);
}
body.storefront .sf-hero p {
  font-size: 1.05rem;
  line-height: 1.6;
}
body.storefront .sf-hero .sf-eyebrow {
  font-size: 11px;
}

/* --- tabbed shelves ------------------------------------------------------ */

.sf-tabbar {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--sf-border);
  margin-bottom: 26px;
  overflow-x: auto;
}
.sf-tabbar button {
  border: 0;
  background: none;
  padding: 12px 2px;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.6;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.sf-tabbar button.is-active,
.sf-tabbar button:hover {
  opacity: 1;
  border-bottom-color: currentColor;
}
.sf-tabpanel {
  display: none;
}
.sf-tabpanel.is-active {
  display: block;
}
.sf-grid.sf-tabs--carousel {
  display: flex;
  overflow-x: auto;
  gap: var(--sf-gap);
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}
.sf-grid.sf-tabs--carousel .sf-card {
  flex: 0 0 clamp(190px, 26%, 300px);
  scroll-snap-align: start;
}

/* --- stat counters ------------------------------------------------------- */

.sf-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(18px, 3vw, 42px);
  text-align: center;
}
.sf-stat b {
  display: block;
  font-family: var(--sf-h-font);
  font-weight: var(--sf-h-weight);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1;
  color: var(--sf-heading, var(--sf-s1-heading));
}
.sf-stat b i {
  font-style: normal;
  font-size: 0.5em;
  margin-left: 2px;
}
.sf-stat span {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  opacity: 0.82;
}

/* --- sticky image cards -------------------------------------------------- */

.sf-sticky {
  display: grid;
  gap: clamp(16px, 3vw, 34px);
}
.sf-sticky-card {
  position: sticky;
  top: 96px;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  border-radius: var(--sf-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
}
.sf-sticky--medium .sf-sticky-card {
  min-height: 400px;
}
.sf-sticky-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sf-sticky-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.52));
}
.sf-sticky-body {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 3vw, 44px);
  color: #fff;
  max-width: 54ch;
}
.sf-sticky-body .sf-h3 {
  color: #fff;
  margin: 8px 0 6px;
}
.sf-sticky-body p {
  margin: 0 0 16px;
  font-size: 0.95rem;
}
.sf-sticky-body.is-center {
  align-self: center;
  margin-inline: auto;
  text-align: center;
}
.sf-sticky-card:nth-child(2) {
  top: 112px;
}
.sf-sticky-card:nth-child(3) {
  top: 128px;
}
.sf-sticky-card:nth-child(n + 4) {
  top: 144px;
}

/* --- variant selectors --------------------------------------------------- */

.sf-opts {
  display: grid;
  gap: 16px;
  margin: 4px 0 20px;
}
.sf-opt-name {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}
.sf-opt-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sf-opt-values button {
  border: 1px solid var(--sf-border);
  background: transparent;
  color: inherit;
  padding: 10px 16px;
  border-radius: var(--sf-radius);
  font-size: 0.82rem;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.sf-opt-values button:hover {
  border-color: currentColor;
}
.sf-opt-values button.is-active {
  background: var(--sf-heading, var(--sf-s1-heading));
  border-color: var(--sf-heading, var(--sf-s1-heading));
  color: var(--sf-bg, var(--sf-s1-bg));
}

/* --- responsive --------------------------------------------------------- */


@media (max-width: 1024px) {
  :root {
    --sf-cols: 3;
  }
  .sf-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sf-pdp {
    grid-template-columns: 1fr;
  }
  .sf-look {
    grid-template-columns: 1fr;
  }
  .sf-look.is-right .sf-look-media {
    order: 0;
  }
  .sf-cart-layout,
  .sf-checkout-layout {
    grid-template-columns: 1fr;
  }
  .sf-summary-box {
    position: static;
  }
}

@media (max-width: 860px) {
  .sf-quotes,
  .sf-quotes--2 {
    grid-template-columns: 1fr;
  }
  .sf-newsletter-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 750px) {
  :root {
    --sf-cols: var(--sf-m-cols);
    --sf-space: calc(var(--sf-space) * 0.62);
  }
  .sf-header-inner {
    min-height: 62px;
    gap: 10px;
    flex-wrap: nowrap;
    padding-block: 8px;
  }
  .sf-header--center .sf-header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
  }
  .sf-header--left .sf-header-inner {
    display: flex;
  }
  .sf-logo {
    min-width: 0;
    max-width: 46vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
  }
  .sf-tools {
    gap: 6px;
    flex: none;
  }
  .sf-icon-btn {
    padding: 8px 6px;
  }
  .sf-menu-toggle {
    flex: none;
    padding: 8px 4px;
  }
  .sf-nav {
    display: none;
  }
  .sf-menu-toggle {
    display: inline-flex;
  }
  .sf-header.is-nav-open .sf-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--sf-s1-bg);
    border-bottom: 1px solid var(--sf-border);
    padding: 14px clamp(16px, 4vw, 40px) 22px;
    gap: 2px;
    z-index: 25;
    max-height: 72vh;
    overflow-y: auto;
  }
  .sf-header.is-nav-open .sf-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--sf-border);
    font-size: 0.95rem;
  }
  .sf-announce {
    font-size: 0.72rem;
    padding: 8px 12px;
  }
  .sf-searchbar {
    padding: 12px 0;
  }
  .sf-searchbar form {
    flex-direction: row;
  }
  .sf-slide-content {
    padding-block: clamp(28px, 9vw, 70px);
  }
  .sf-slide-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .sf-slide-actions .sf-btn {
    width: 100%;
  }
  .sf-grid {
    gap: calc(var(--sf-gap) * 0.8);
  }
  .sf-headrow {
    flex-direction: column;
    align-items: flex-start;
  }
  .sf-imagetext-row,
  .sf-imagetext-row--wide,
  .sf-imagetext-row--narrow {
    grid-template-columns: 1fr;
  }
  .sf-imagetext-row.is-flipped .sf-imagetext-media {
    order: 0;
  }
  .sf-form-grid {
    grid-template-columns: 1fr;
  }
  .sf-footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .sf-pdp-gallery {
    grid-template-columns: 1fr;
  }
  .sf-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sf-slide-content {
    max-width: none;
  }
  .sf-hero-arrows {
    display: none;
  }
  .sf-marquee-track {
    font-size: 1.2rem;
    gap: 20px;
  }
}
