:root {
  --color-bg: #FAFAF8;
  --color-surface: #FFFFFF;
  --color-text: #1C1B1A;
  --color-muted: #6B6762;
  --color-border: #E8E4DE;
  --color-accent: #1C1B1A;
  --color-beige: #F3EEE6;
  --container-width: 1320px;
  --section-spacing: clamp(3rem, 6vw, 5rem);
  --radius-small: 4px;
  --radius-medium: 8px;
  --ink: var(--color-text);
  --muted: var(--color-muted);
  --paper: var(--color-beige);
  --line: var(--color-border);
  --white: var(--color-surface);
  --beige: var(--color-beige);
  --danger: #8a3b32;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body.storefront {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button,
input,
select {
  font: inherit;
  color: inherit;
}

main {
  flex: 1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
}

.sf-wrap {
  width: min(var(--container-width), calc(100% - 2rem));
  margin-inline: auto;
}

.announce {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
}

.announce a {
  color: inherit;
  text-decoration: none;
}

.announce a:hover {
  text-decoration: underline;
}

.sf-wordmark .sf-logo {
  display: block;
  width: auto;
  height: 32px;
  max-width: 120px;
  object-fit: contain;
}

.sf-drawer__head .sf-logo {
  height: 28px;
  max-width: 100px;
}

.product-card__badges .badge {
  position: static;
  top: auto;
  left: auto;
}

.sf-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.sf-header__bar {
  width: min(1280px, calc(100% - 2.5rem));
  margin: 0 auto;
  min-height: 4.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.sf-wordmark {
  font-size: 0.92rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  justify-self: center;
}

.sf-wordmark--footer {
  justify-self: start;
  margin: 0 0 0.75rem;
}

.sf-nav {
  display: none;
  gap: 1.4rem;
  justify-self: start;
}

.sf-nav__link {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}

.sf-nav__link.is-active,
.sf-nav__link:hover {
  color: var(--ink);
  text-decoration: none;
}

.sf-header__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.15rem;
}

.sf-icon-btn {
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sf-icon-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.sf-icon-btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

.sf-header__menu {
  flex-direction: column;
  gap: 4px;
}

.sf-header__menu span {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--ink);
}

.sf-drawer {
  position: fixed;
  inset: 0;
  background: rgba(22, 21, 19, 0.28);
  z-index: 60;
}

.sf-drawer__panel {
  width: min(22rem, 100%);
  height: 100%;
  background: var(--white);
  padding: 1.25rem;
  overflow: auto;
}

.sf-drawer__panel--search {
  margin-left: auto;
}

.sf-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.sf-drawer__nav a,
.sf-footer a {
  display: block;
  padding: 0.45rem 0;
  color: var(--ink);
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: min(78vh, 760px);
  display: flex;
  align-items: flex-end;
  background: var(--paper);
  overflow: hidden;
}

.hero--plain {
  min-height: 62vh;
  align-items: center;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero__content {
  position: relative;
  padding: 4.5rem 0;
  max-width: 36rem;
}

.hero--plain .hero__content {
  text-align: left;
}

.eyebrow {
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
}

.hero h1,
.sf-page h1,
.sf-section h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0 0 0.8rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.hero__lead,
.muted {
  color: var(--muted);
  line-height: 1.6;
}

.sf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--ink);
  background: transparent;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  text-decoration: none;
  cursor: pointer;
}

.sf-btn:hover {
  text-decoration: none;
  background: var(--paper);
}

.sf-btn--dark {
  background: var(--ink);
  color: var(--white);
}

.sf-btn--dark:hover {
  background: #2c2926;
}

.sf-btn--ghost {
  border-color: var(--line);
}

.sf-btn--block {
  width: 100%;
}

.sf-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.sf-section {
  padding: 4.5rem 0;
}

.sf-section__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.sf-section__head a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 0.85rem;
}

.product-card {
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  text-decoration: none;
}

.product-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--paper);
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.03);
}

.product-card__fallback,
.gallery__fallback,
.category-card__media,
.category-card__fallback {
  aspect-ratio: 3 / 4;
  background: linear-gradient(180deg, var(--paper), var(--beige));
}

.product-card__body {
  padding-top: 0.75rem;
}

.product-card__cat,
.pdp__cat {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.25rem;
}

.product-card h3,
.category-card span {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
}

.price {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: baseline;
  font-size: 0.92rem;
}

.price--lg {
  font-size: 1.15rem;
  margin: 1rem 0;
}

.price__regular {
  color: var(--muted);
  font-weight: 400;
}

.price__off {
  color: var(--danger);
  font-size: 0.75rem;
}

.badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: var(--white);
  padding: 0.2rem 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge--muted {
  left: auto;
  right: 0.7rem;
  background: var(--ink);
  color: var(--white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.category-card {
  text-decoration: none;
}

.category-card__media {
  margin-bottom: 0.7rem;
  overflow: hidden;
}

.category-card img {
  width: 100%;
  height: 100%;
}

.sf-page {
  padding: 2rem 0 4.5rem;
}

.catalog-head,
.catalog-tools {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.catalog-head {
  margin: 1rem 0 2rem;
}

.catalog-layout {
  display: grid;
  gap: 2rem;
}

.filters fieldset {
  border: 0;
  padding: 0 0 1.25rem;
  margin: 0 0 1rem;
  border-bottom: 1px solid var(--line);
}

.filters legend {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.filters label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.filter-price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.filter-price input,
.sort-form select,
.sf-search input {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.55rem 0.65rem;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.filters-desktop {
  display: none;
}

.sf-only-mobile {
  display: inline-flex;
}

.pager {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  font-size: 0.85rem;
}

.empty-state {
  text-align: center;
  padding: 4rem 1rem;
}

.crumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.crumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
}

.pdp__grid {
  display: grid;
  gap: 2rem;
}

.gallery__main {
  display: grid;
  gap: 0.5rem;
}

.gallery__shot,
.gallery__thumbs button {
  border: 0;
  padding: 0;
  background: var(--paper);
  cursor: zoom-in;
}

.gallery__shot img,
.gallery__thumbs img {
  width: 100%;
  aspect-ratio: 3 / 4;
}

.gallery__thumbs {
  display: none;
}

.pdp__info h1 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.option-block {
  margin: 1.4rem 0;
}

.option-block p {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.swatches,
.sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.swatch,
.size-btn {
  border: 1px solid var(--line);
  background: var(--white);
  min-height: 2.4rem;
  padding: 0.35rem 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}

.swatch.is-active,
.size-btn.is-active {
  border-color: var(--ink);
}

.size-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.swatch__dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.stock {
  font-size: 0.88rem;
  color: var(--muted);
}

.hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

.accordion details {
  border-top: 1px solid var(--line);
  padding: 0.9rem 0;
}

.accordion summary {
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.pre-line {
  white-space: pre-line;
  line-height: 1.7;
  color: #3b3834;
}

.sf-footer {
  background: var(--paper);
  padding: 3.5rem 0 1.5rem;
  margin-top: auto;
}

.sf-footer__grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
}

.sf-footer h2 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
}

.sf-footer__lead {
  color: var(--muted);
  max-width: 18rem;
}

.sf-footer__base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.subcats {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.subcats a {
  border-bottom: 1px solid var(--ink);
  font-size: 0.85rem;
}

.category-banner img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

.sf-search {
  display: grid;
  gap: 0.75rem;
}

.sf-search--page {
  max-width: 32rem;
  margin-bottom: 2rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(22, 21, 19, 0.92);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.is-broken {
  background: var(--paper);
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.25rem;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sf-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }

  .gallery__main {
    grid-template-columns: 1fr 1fr;
  }

  .pdp__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .sf-nav {
    display: flex;
  }

  .sf-header__menu {
    display: none;
  }

  .sf-only-mobile {
    display: none;
  }

  .catalog-layout {
    grid-template-columns: 220px 1fr;
  }

  .filters-desktop {
    display: block;
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .hero {
    min-height: 820px;
  }
}

@media (max-width: 767px) {
  .gallery__main {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.5rem;
  }

  .gallery__shot {
    min-width: 100%;
    scroll-snap-align: start;
  }

  .sf-header__bar {
    grid-template-columns: auto 1fr auto;
  }

  .sf-wordmark {
    justify-self: start;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
  }
}

/* Hero slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--color-beige);
}
.hero-slider__track {
  position: relative;
}
.hero-slide {
  display: none;
  position: relative;
  min-height: clamp(420px, 72vh, 820px);
}
.hero-slide.is-active {
  display: block;
  animation: heroFade 500ms ease;
}
@keyframes heroFade {
  from { opacity: 0.65; }
  to { opacity: 1; }
}
.hero-slide__image {
  width: 100%;
  height: clamp(420px, 72vh, 820px);
  object-fit: cover;
}
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--hero-overlay, 0.25));
}
.hero-slide__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--hero-text, #fff);
  padding: 2rem 0;
  max-width: min(36rem, 92%);
}
.hero-slide__content h1,
.hero-slide__content .hero-slide__title {
  line-height: 1.15;
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  margin: 0.35rem 0 0.75rem;
  font-weight: inherit;
}
.hero-slide--center .hero-slide__content {
  margin-inline: auto;
  text-align: center;
  align-items: center;
}
.hero-slide--right .hero-slide__content {
  margin-left: auto;
  text-align: right;
  align-items: flex-end;
}
.hero-slide__lead {
  opacity: 0.92;
  max-width: 32rem;
}
.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.hero-slider__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.hero-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.8);
  background: transparent;
  padding: 0;
}
.hero-slider__dot.is-active {
  background: #fff;
}

.sf-btn--light {
  background: #fff;
  color: var(--color-text);
  border: none;
}
.sf-btn--ghost-light {
  background: transparent;
  color: inherit;
  border: 1px solid rgba(255,255,255,0.7);
}

/* Product card 2.0 */
.product-card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--color-beige);
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.product-card__img--secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.product-card:hover .product-card__img--secondary {
  opacity: 1;
}
.product-card__inspect {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  background: rgba(255,255,255,0.95);
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.product-card:hover .product-card__inspect {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.badge--sale {
  background: var(--color-text);
  color: #fff;
}

.promo-banner, .dual-promo, .promo-tile, .instagram-cta {
  border-radius: var(--radius-medium);
  overflow: hidden;
}
.dual-promo {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.promo-tile {
  display: block;
  position: relative;
  aspect-ratio: 4/5;
  text-decoration: none;
}
.promo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45), transparent 55%);
}
.promo-tile__content {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: #fff;
}
.reveal {
  animation: sfReveal 0.5s ease both;
}
@keyframes sfReveal {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .product-card__img, .product-card__inspect { animation: none; transition: none; }
  .hero-slide.is-active { animation: none; }
  .sf-mega__panel { transition: none; }
}

.pdp-buy-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.96);
  border-top: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}
@media (max-width: 767px) {
  .dual-promo { grid-template-columns: 1fr; }
  .pdp-buy-bar { display: flex; }
  .product-card__inspect { display: none; }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- Premium experience --- */
.sf-mega { position: relative; }
.sf-mega__panel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 0.35rem);
  min-width: 28rem;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease;
  z-index: 40;
}
.sf-mega.is-open .sf-mega__panel { opacity: 1; pointer-events: auto; }
.sf-mega__inner { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: start; }
.sf-mega__links { display: grid; gap: 0.5rem; }
.sf-mega__title { font-weight: 600; margin: 0 0 0.35rem; }
.sf-mega__all { font-weight: 600; margin-top: 0.5rem; }
.sf-mega__visual img { width: 10rem; aspect-ratio: 4/5; object-fit: cover; border-radius: 2px; }
.sf-icon-btn--badge { position: relative; }
.sf-badge {
  position: absolute; top: 0.1rem; right: 0.1rem;
  min-width: 1rem; height: 1rem; padding: 0 0.25rem;
  border-radius: 999px; background: var(--color-text); color: #fff;
  font-size: 0.65rem; line-height: 1rem; text-align: center;
}
.sf-drawer__panel--nav { display: flex; flex-direction: column; min-height: 100%; }
.sf-drawer__foot { margin-top: auto; padding: 1rem 0; display: flex; gap: 1rem; border-top: 1px solid var(--color-border); }
.sf-mobile-nav__link, .sf-mobile-nav summary, .sf-drawer__nav a { min-height: 44px; display: flex; align-items: center; }
.sf-mobile-nav__sub { padding-left: 0.75rem; display: grid; gap: 0.25rem; }
.sf-search-overlay__input { width: 100%; padding: 0.85rem 0; border: 0; border-bottom: 1px solid var(--color-border); font-size: 1rem; }
.sf-search-overlay__results { list-style: none; margin: 0.75rem 0 0; padding: 0; display: grid; gap: 0.35rem; }
.sf-search-result { display: flex; gap: 0.75rem; align-items: center; min-height: 44px; padding: 0.35rem 0; }
.sf-search-result img { width: 3rem; aspect-ratio: 4/5; object-fit: cover; border-radius: 2px; }
.sf-search-overlay__all { display: inline-block; margin-top: 0.75rem; font-weight: 600; }
.sf-modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; }
.sf-modal[hidden] { display: none !important; }
.sf-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.sf-modal__panel {
  position: relative; background: #fff; width: min(920px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem); overflow: auto; padding: 1.25rem;
}
.sf-modal__panel--narrow { width: min(640px, calc(100% - 2rem)); }
.sf-modal__close { position: absolute; top: 0.75rem; right: 0.75rem; }
.quick-view__grid { display: grid; gap: 1.25rem; }
.quick-view__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.quick-view__chip { display: inline-block; margin: 0.15rem; padding: 0.2rem 0.5rem; border: 1px solid var(--color-border); border-radius: 999px; font-size: 0.85rem; }
.product-card { position: relative; }
.product-card__media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #f3f2f0; }
.product-card__img { width: 100%; height: 100%; object-fit: cover; transition: opacity 250ms ease; }
.product-card__favorite {
  position: absolute; top: 0.5rem; right: 0.5rem; z-index: 2;
  width: 2.25rem; height: 2.25rem; border: 0; border-radius: 999px;
  background: rgba(255,255,255,0.92); display: grid; place-items: center;
  transition: transform 150ms ease;
}
.product-card__favorite.is-active svg { fill: currentColor; }
.product-card__favorite.is-pulse { transform: scale(1.08); }
.product-card__quickview {
  position: absolute; left: 50%; bottom: 0.75rem; transform: translateX(-50%);
  border: 0; background: rgba(255,255,255,0.95); padding: 0.45rem 0.85rem;
  font-size: 0.8rem; letter-spacing: 0.04em; opacity: 0; transition: opacity 150ms ease;
}
.product-card:hover .product-card__quickview { opacity: 1; }
.product-card__badges { position: absolute; top: 0.5rem; left: 0.5rem; display: flex; gap: 0.35rem; z-index: 1; }
.product-card__soldout {
  position: absolute; inset: auto 0 0; padding: 0.45rem; text-align: center;
  background: rgba(255,255,255,0.92); font-size: 0.8rem; letter-spacing: 0.06em;
}
.product-card__swatches { display: flex; align-items: center; gap: 0.35rem; margin-top: 0.35rem; }
.product-card__swatch {
  width: 1rem; height: 1rem; border-radius: 999px; border: 1px solid rgba(0,0,0,0.15);
  padding: 0; background: transparent;
}
.product-card__swatch-dot { display: block; width: 100%; height: 100%; border-radius: inherit; background: var(--swatch, #ddd); }
.product-card__swatch.is-active { box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--color-text); }
.product-card__swatch-more { font-size: 0.75rem; color: var(--color-muted); }
.active-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.filter-chip {
  border: 1px solid var(--color-border); background: #fff; border-radius: 999px;
  padding: 0.35rem 0.75rem; font-size: 0.85rem; min-height: 44px;
}
.filter-chip--clear { border-style: dashed; }
.sort-pills { display: none; flex-wrap: wrap; gap: 0.35rem; }
.sort-pill { border: 1px solid var(--color-border); background: #fff; border-radius: 999px; padding: 0.35rem 0.65rem; font-size: 0.85rem; }
.sort-pill.is-active { background: var(--color-text); color: #fff; border-color: var(--color-text); }
.sort-form__select { display: block; }
.sf-drawer__panel--filters { display: flex; flex-direction: column; max-height: 100vh; }
.sf-drawer__body { overflow: auto; flex: 1; }
.sf-drawer__sticky {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
  padding: 0.75rem 0 0; border-top: 1px solid var(--color-border);
  position: sticky; bottom: 0; background: #fff;
}
.category-showcase {
  display: grid; gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.category-showcase__item { position: relative; display: block; overflow: hidden; }
.category-showcase__media { aspect-ratio: 4/5; overflow: hidden; background: #f3f2f0; }
.category-showcase__media img { width: 100%; height: 100%; object-fit: cover; }
.category-showcase__label {
  position: absolute; left: 0.75rem; bottom: 0.75rem; color: #fff;
  font-weight: 600; text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.gallery__mobile-track {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; gap: 0; scrollbar-width: none;
}
.gallery__mobile-track::-webkit-scrollbar { display: none; }
.gallery__slide { flex: 0 0 100%; scroll-snap-align: start; }
.gallery__counter { text-align: center; font-size: 0.85rem; margin-top: 0.5rem; color: var(--color-muted); }
.gallery__dots { display: flex; justify-content: center; gap: 0.35rem; margin-top: 0.35rem; }
.gallery__dots span { width: 0.35rem; height: 0.35rem; border-radius: 999px; background: #ccc; }
.gallery__dots span.is-active { background: var(--color-text); }
.gallery__desktop { display: none; }
.pdp__title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; }
.pdp__favorite { border: 0; background: transparent; width: 2.5rem; height: 2.5rem; }
.pdp__favorite.is-active svg { fill: currentColor; }
.pdp__shopier-trust { font-size: 0.85rem; color: var(--color-muted); margin-top: 0.5rem; }
.pdp-trust { margin-top: 1rem; }
.pdp-section { margin-top: 3rem; }
.product-grid--scroll {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(42vw, 11rem);
  overflow-x: auto; gap: 0.65rem; scroll-snap-type: x mandatory; padding-bottom: 0.25rem;
}
.product-grid--scroll .product-card { scroll-snap-align: start; }
.sf-footer__col h2 { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }
.sf-only-desktop { display: none; }
.rich-text :is(p, ul, ol) { margin-bottom: 0.75rem; }
@media (min-width: 768px) {
  .category-showcase {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .category-showcase__item--hero { grid-row: span 2; }
  .quick-view__grid { grid-template-columns: 1fr 1fr; }
  .gallery__mobile-track, .gallery__counter, .gallery__dots { display: none; }
  .gallery__desktop { display: block; }
  .sf-only-desktop { display: inline-flex; }
  .sort-pills { display: flex; }
  .sort-form__select { display: none; }
}
@media (max-width: 767px) {
  .sf-nav--desktop { display: none; }
  .sf-footer__col:not(.sf-footer__col--brand) h2 { cursor: pointer; }
  .sf-footer__col:not(.sf-footer__col--brand):not(.is-open) a { display: none; }
  .sf-drawer--search .sf-drawer__panel { width: 100%; max-width: none; min-height: 100vh; border-radius: 0; }
}
.sf-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 45;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.sf-whatsapp svg { width: 1.4rem; height: 1.4rem; }
@media (max-width: 767px) {
  .sf-whatsapp { bottom: calc(4.5rem + env(safe-area-inset-bottom)); }
}
.sf-campaign { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; }
.sf-campaign[hidden] { display: none !important; }
.sf-campaign__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.sf-campaign__panel {
  position: relative; background: #fff; width: min(520px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem); overflow: auto;
}
.sf-campaign__close { position: absolute; top: 0.5rem; right: 0.5rem; z-index: 1; }
.sf-campaign__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.sf-campaign__body { padding: 1.25rem; }
.sf-consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  padding: 1rem; background: rgba(255,255,255,0.98); border-top: 1px solid var(--color-border);
}
.sf-consent[hidden] { display: none !important; }
.sf-consent__panel { max-width: 960px; margin: 0 auto; }
.sf-consent__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.sf-consent__prefs { display: grid; gap: 0.5rem; margin-top: 0.75rem; }
.sf-footer__linkbtn { background: none; border: 0; padding: 0; text-decoration: underline; cursor: pointer; color: inherit; }
.landing-hero { position: relative; min-height: clamp(320px, 50vh, 560px); background: #f3f2f0; }
.landing-hero img { width: 100%; height: clamp(320px, 50vh, 560px); object-fit: cover; }
.landing-hero__content {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem 0; color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,0.35); max-width: 36rem;
}
.landing-seo { max-width: 42rem; }
.pdp__actions { display: flex; align-items: center; gap: 0.5rem; }
.pdp__share { border: 1px solid var(--color-border); background: #fff; padding: 0.4rem 0.75rem; min-height: 44px; }
.sf-shipping-note { font-size: 0.9rem; color: var(--color-muted); margin-top: 0.5rem; }
.sf-contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 1.75rem;
}
.sf-contact-card {
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
}
.sf-contact-card h2 {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  color: var(--color-muted);
}
.sf-contact-card p { margin: 0; }
.content-page__body { max-width: 42rem; }
.content-page__body a { text-decoration: underline; }
