/* Fresh storefront — clean editorial commerce UI */

.wsf-root--fresh {
  --wsf-primary: var(--mk-primary, #2563eb);
  --wsf-accent: var(--mk-accent, #3b82f6);
  --wsf-bg: #fafafa;
  --wsf-surface: #ffffff;
  --wsf-text: #111827;
  --wsf-muted: #6b7280;
  --wsf-border: #e5e7eb;
  --wsf-radius: 12px;
  --wsf-radius-sm: 8px;
  --wsf-shell: min(72rem, 100% - 2rem);
  --wsf-header-h: 4rem;
  font-family: var(--rc-font-family, "Inter", system-ui, sans-serif);
  background: var(--wsf-bg);
  color: var(--wsf-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

html[data-marketing-theme="dark"] .wsf-root--fresh,
.wsf-root--fresh.wsf-theme-dark {
  --wsf-bg: #0a0a0a;
  --wsf-surface: #141414;
  --wsf-text: #f5f5f5;
  --wsf-muted: #a3a3a3;
  --wsf-border: #262626;
  color-scheme: dark;
}

.wsf-root--fresh *,
.wsf-root--fresh *::before,
.wsf-root--fresh *::after {
  box-sizing: border-box;
}

.wsf-shell {
  width: var(--wsf-shell);
  margin-inline: auto;
}

.wsf-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wsf-primary);
}

.wsf-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wsf-primary);
  text-decoration: none;
}

.wsf-link:hover {
  text-decoration: underline;
}

.wsf-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--wsf-border);
  background: var(--wsf-surface);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--wsf-muted);
  white-space: nowrap;
}

/* Buttons */
.wsf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.wsf-btn--primary,
.wsf-root--fresh .wsf-btn-primary {
  background: var(--wsf-primary);
  color: #fff;
  border-color: var(--wsf-primary);
}

.wsf-btn--primary:hover,
.wsf-root--fresh .wsf-btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.wsf-btn--ghost {
  background: transparent;
  color: var(--wsf-text);
  border-color: var(--wsf-border);
}

.wsf-btn--ghost:hover {
  border-color: var(--wsf-primary);
  color: var(--wsf-primary);
}

.wsf-btn--sm {
  min-height: 2.25rem;
  padding: 0 0.9rem;
  font-size: 0.8125rem;
}

.wsf-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--wsf-border);
  border-radius: var(--wsf-radius-sm);
  background: var(--wsf-surface);
  color: var(--wsf-text);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.wsf-icon-btn:hover {
  border-color: var(--wsf-primary);
  color: var(--wsf-primary);
}

.wsf-icon-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Announcement */
.wsf-announce {
  padding: 0.6rem 1rem;
  background: var(--wsf-primary);
  color: #fff;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
}

/* Header */
.wsf-root--fresh .wsf-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--wsf-surface) 92%, transparent);
  border-bottom: 1px solid var(--wsf-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-top: env(safe-area-inset-top, 0);
}

.wsf-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--wsf-header-h);
}

.wsf-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.wsf-brand__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--wsf-radius-sm);
  background: var(--wsf-primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  overflow: hidden;
  flex-shrink: 0;
}

.wsf-brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wsf-brand__text {
  min-width: 0;
}

.wsf-brand__name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wsf-brand__tag {
  display: block;
  font-size: 0.6875rem;
  color: var(--wsf-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wsf-header__nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-inline: auto;
}

.wsf-header__link {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wsf-muted);
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
}

.wsf-header__link:hover {
  color: var(--wsf-text);
}

.wsf-header__link.is-active {
  color: var(--wsf-primary);
  background: color-mix(in srgb, var(--wsf-primary) 10%, transparent);
  font-weight: 600;
}

.wsf-header__actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
}

.wsf-header__search {
  display: none;
  min-width: 12rem;
  max-width: 16rem;
}

.wsf-header-cart {
  position: relative;
}

.wsf-header-cart__count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--wsf-primary);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
  line-height: 1.1rem;
  text-align: center;
}

.wsf-theme-toggle__icon--sun {
  display: none;
}

html[data-marketing-theme="dark"] .wsf-theme-toggle__icon--moon,
.wsf-root--fresh.wsf-theme-dark .wsf-theme-toggle__icon--moon {
  display: none;
}

html[data-marketing-theme="dark"] .wsf-theme-toggle__icon--sun,
.wsf-root--fresh.wsf-theme-dark .wsf-theme-toggle__icon--sun {
  display: block;
}

.wsf-menu-btn {
  display: inline-flex;
}

.wsf-menu-btn__icon--close {
  display: none;
}

body.wsf-menu-open .wsf-menu-btn__icon--open {
  display: none;
}

body.wsf-menu-open .wsf-menu-btn__icon--close {
  display: block;
}

@media (min-width: 768px) {
  .wsf-header__nav {
    display: flex;
  }

  .wsf-header__search {
    display: block;
  }

  .wsf-menu-btn {
    display: none;
  }
}

/* Mobile drawer */
.wsf-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.wsf-menu-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.wsf-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: min(18rem, 90vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--wsf-surface);
  border-left: 1px solid var(--wsf-border);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding-top: env(safe-area-inset-top, 0);
}

.wsf-menu-drawer.is-open {
  transform: translateX(0);
}

.wsf-menu-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--wsf-border);
}

.wsf-menu-drawer__title {
  font-weight: 700;
  font-size: 0.9375rem;
}

.wsf-menu-drawer__links {
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  gap: 0.25rem;
  flex: 1;
}

.wsf-menu-drawer__link {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: var(--wsf-radius-sm);
  background: transparent;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--wsf-text);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.wsf-menu-drawer__link:hover,
.wsf-menu-drawer__link.is-active {
  background: color-mix(in srgb, var(--wsf-primary) 10%, transparent);
  color: var(--wsf-primary);
}

.wsf-menu-drawer__foot {
  padding: 1rem;
  border-top: 1px solid var(--wsf-border);
  font-size: 0.8125rem;
  color: var(--wsf-muted);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.wsf-menu-drawer__foot a {
  color: var(--wsf-primary);
  font-weight: 600;
  text-decoration: none;
}

body.wsf-menu-open {
  overflow: hidden;
}

/* Hero */
.wsf-hero {
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid var(--wsf-border);
  background: var(--wsf-surface);
}

.wsf-hero--slideshow {
  position: relative;
  isolation: isolate;
  overflow: visible;
  min-height: 0;
  padding: 1.25rem 0 2.75rem;
  border-bottom: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.wsf-hero--slideshow .wsf-pagehead__slideshow {
  z-index: 0;
}

.wsf-hero--slideshow .wsf-pagehead__scrim {
  z-index: 1;
}

.wsf-hero--slideshow .wsf-hero__stage {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.5vw, 2.5rem);
  width: 100%;
  flex: 1 1 auto;
}

@keyframes wsf-float-panel-in {
  from {
    opacity: 0;
    filter: blur(4px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

.wsf-hero--slideshow .wsf-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  gap: 0.85rem;
  align-items: start;
  min-height: 0;
  padding-top: 0.25rem;
  margin-bottom: 0;
}

.wsf-hero--slideshow .wsf-hero__content--float.wsf-hero__float-panel {
  width: 100%;
  max-width: none;
}

.wsf-hero--slideshow .wsf-hero__lead {
  margin-top: 0.5rem;
}

.wsf-hero--slideshow .wsf-hero__cta {
  margin-top: 0.75rem;
}

.wsf-hero--slideshow .wsf-hero__meta {
  margin-top: 0.65rem;
}

.wsf-hero--slideshow .wsf-hero__aside {
  width: 100%;
  max-width: none;
}

.wsf-hero--slideshow .wsf-hero__float-panel {
  position: relative;
  z-index: 4;
  will-change: transform;
  transform: translate3d(
    calc(var(--wsf-px, 0) * var(--wsf-float-depth, 8) * 1px),
    calc(var(--wsf-py, 0) * var(--wsf-float-depth, 6) * 1px),
    0
  );
  transition: transform 0.22s ease-out, box-shadow 0.28s ease, border-color 0.28s ease;
  animation: wsf-float-panel-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--wsf-float-i, 0) * 90ms);
}

.wsf-hero--slideshow .wsf-hero__float-panel > .wsf-pagehead__slide-ui {
  width: 100%;
}

.wsf-hero--slideshow .wsf-hero__content--float.wsf-hero__float-panel,
.wsf-hero--slideshow .wsf-hero__aside .wsf-hero__float-panel,
.wsf-hero--slideshow .wsf-hero__showcase--float.wsf-hero__float-panel {
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  border-radius: 0;
}

.wsf-hero--slideshow .wsf-hero__aside .wsf-pagehead__slide-ui {
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  margin: 0;
}

.wsf-hero--slideshow .wsf-hero__float-panel:hover,
.wsf-hero--slideshow .wsf-hero__float-panel:focus-within {
  transform: translate3d(
    calc(var(--wsf-px, 0) * var(--wsf-float-depth, 8) * 1px),
    calc(var(--wsf-py, 0) * var(--wsf-float-depth, 6) * 1px - 4px),
    0
  );
}

.wsf-hero--slideshow .wsf-hero__content--float.wsf-hero__float-panel:hover,
.wsf-hero--slideshow .wsf-hero__aside .wsf-hero__float-panel:hover,
.wsf-hero--slideshow .wsf-hero__aside .wsf-hero__float-panel:focus-within {
  box-shadow: none;
  border-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .wsf-hero--slideshow .wsf-hero__float-panel {
    animation: none;
    transform: none;
  }
}

.wsf-hero__content--float {
  max-width: 32rem;
  padding: 1rem 1.15rem;
  border-radius: calc(var(--wsf-radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: color-mix(in srgb, rgba(15, 23, 42, 0.62) 75%, transparent);
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
  box-shadow:
    0 20px 40px -22px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.wsf-hero--slideshow .wsf-hero__content--float.wsf-hero__float-panel {
  max-width: 36rem;
}

.wsf-hero--slideshow .wsf-hero__kicker {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
}

.wsf-hero--slideshow .wsf-hero__showcase--float .wsf-kicker,
.wsf-hero--slideshow .wsf-hero__aside .wsf-pagehead__slide-kicker {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.4rem;
  font-size: 0.6875rem;
}

.wsf-hero--slideshow .wsf-hero__title {
  color: #fff;
  font-size: clamp(1.375rem, 3vw, 2rem);
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.wsf-hero--slideshow .wsf-hero__accent {
  color: color-mix(in srgb, #fff 60%, var(--wsf-primary));
}

.wsf-hero--slideshow .wsf-hero__lead {
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0.6rem;
  font-size: 0.875rem;
  line-height: 1.55;
  max-width: 28rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.wsf-hero--slideshow .wsf-hero__cta {
  margin-top: 0.85rem;
  gap: 0.5rem;
  flex-direction: column;
  align-items: stretch;
}

.wsf-hero--slideshow .wsf-hero__cta .wsf-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.wsf-hero--slideshow .wsf-btn {
  min-height: 2.35rem;
  padding: 0 0.95rem;
  font-size: 0.8125rem;
}

.wsf-hero--slideshow .wsf-hero__cta .wsf-btn--primary {
  color: #fff;
  background: var(--wsf-primary);
  border-color: var(--wsf-primary);
}

.wsf-hero--slideshow .wsf-hero__cta .wsf-btn--primary:hover {
  color: #fff;
  filter: brightness(1.05);
}

.wsf-hero--slideshow .wsf-hero__meta {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  gap: 0.5rem 0.85rem;
}

.wsf-hero--slideshow .wsf-hero__meta a {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.wsf-hero--slideshow .wsf-hero__meta a:hover {
  color: color-mix(in srgb, #fff 85%, var(--wsf-primary));
}

.wsf-hero__cta-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.wsf-hero--slideshow .wsf-hero__cta-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.wsf-hero--slideshow .wsf-hero__cta-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.wsf-hero__cta-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.wsf-hero__aside {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  width: 100%;
  max-width: none;
  position: relative;
  z-index: 4;
}

.wsf-hero--slideshow .wsf-hero__showcase--float .wsf-kicker {
  margin-bottom: 0.45rem;
}

.wsf-hero--slideshow .wsf-hero__showcase--float {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
}

.wsf-hero--slideshow .wsf-hero__showcase-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  max-width: 11.25rem;
}

.wsf-hero--slideshow .wsf-hero__showcase-item {
  display: block;
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(15, 23, 42, 0.35);
  text-decoration: none;
  box-shadow: 0 8px 22px -12px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.wsf-hero--slideshow .wsf-hero__showcase-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 16px 36px -14px rgba(0, 0, 0, 0.55);
}

.wsf-hero--slideshow .wsf-hero__showcase-media {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.wsf-hero--slideshow .wsf-hero__showcase-img,
.wsf-hero--slideshow .wsf-hero__showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wsf-hero--slideshow .wsf-hero__showcase-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.125rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.45);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
}

.wsf-hero--slideshow .wsf-hero__showcase-img {
  background: rgba(15, 23, 42, 0.25);
}

.wsf-hero--slideshow .wsf-hero__showcase-badge {
  position: absolute;
  top: 0.3rem;
  left: 0.3rem;
  z-index: 4;
  padding: 0.12rem 0.32rem;
  border-radius: 4px;
  background: #dc2626;
  color: #fff;
  font-size: 0.5rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.wsf-hero--slideshow .wsf-hero__showcase-float {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 1.35rem 0.35rem 0.35rem;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.55) 55%,
    transparent 100%
  );
  pointer-events: none;
}

.wsf-hero--slideshow .wsf-hero__showcase-name {
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.wsf-hero--slideshow .wsf-hero__showcase-price {
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.wsf-hero--slideshow .wsf-hero__showcase-item--sale .wsf-hero__showcase-price {
  color: #fecaca;
}

.wsf-hero--slideshow .wsf-hero__aside .wsf-pagehead__slide-caption {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  word-break: break-word;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.wsf-hero--slideshow .wsf-hero__aside .wsf-pagehead__slide-kicker {
  font-size: 0.625rem;
  margin: 0;
}

.wsf-hero--slideshow .wsf-hero__aside .wsf-pagehead__dot {
  background: rgba(255, 255, 255, 0.28);
}

.wsf-hero--slideshow .wsf-hero__aside .wsf-pagehead__dot.is-active {
  background: #fff;
}

.wsf-hero--slideshow .wsf-hero__aside .wsf-pagehead__dot:hover {
  background: rgba(255, 255, 255, 0.55);
}

.wsf-hero--slideshow .wsf-hero__aside .wsf-pagehead__dots {
  width: 100%;
  justify-content: flex-start;
}

/* Trust deck — floats over slideshow hero */
.wsf-hero--slideshow .wsf-trust--in-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 0;
  padding: 0;
  background: none;
  border: none;
  overflow: visible;
}

.wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__inner {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__deck {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
}

.wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__grid {
  width: 100%;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__card {
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  padding: 0.25rem 0;
  gap: 0.65rem;
  transition: transform 0.28s ease;
  min-width: 0;
}

.wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: none;
}

.wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__title {
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  font-size: 0.75rem;
  line-height: 1.25;
}

.wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__text {
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  font-size: 0.75rem;
  line-height: 1.45;
}

.wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__text a {
  color: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__text a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.85rem;
  width: 100%;
  max-width: 100%;
  margin: 0.15rem 0 0;
  padding: 0.25rem 0 0;
  border: none;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__social-label {
  color: rgba(255, 255, 255, 0.72);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__social-btn {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__social-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

html[data-marketing-theme="dark"] .wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__title,
.wsf-root--fresh.wsf-theme-dark .wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__title {
  color: #fff;
}

html[data-marketing-theme="dark"] .wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__text,
.wsf-root--fresh.wsf-theme-dark .wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__text {
  color: rgba(255, 255, 255, 0.78);
}

html[data-marketing-theme="dark"] .wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__social,
.wsf-root--fresh.wsf-theme-dark .wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__social {
  background: none;
  border: none;
}

html[data-marketing-theme="dark"] .wsf-hero--slideshow .wsf-hero__title,
.wsf-root--fresh.wsf-theme-dark .wsf-hero--slideshow .wsf-hero__title {
  color: #fff;
}

html[data-marketing-theme="dark"] .wsf-hero--slideshow .wsf-hero__lead,
html[data-marketing-theme="dark"] .wsf-hero--slideshow .wsf-hero__kicker,
.wsf-root--fresh.wsf-theme-dark .wsf-hero--slideshow .wsf-hero__lead,
.wsf-root--fresh.wsf-theme-dark .wsf-hero--slideshow .wsf-hero__kicker {
  color: rgba(255, 255, 255, 0.82);
}

html[data-marketing-theme="dark"] .wsf-hero--slideshow .wsf-hero__showcase--float .wsf-kicker,
html[data-marketing-theme="dark"] .wsf-hero--slideshow .wsf-hero__aside .wsf-pagehead__slide-kicker,
.wsf-root--fresh.wsf-theme-dark .wsf-hero--slideshow .wsf-hero__showcase--float .wsf-kicker,
.wsf-root--fresh.wsf-theme-dark .wsf-hero--slideshow .wsf-hero__aside .wsf-pagehead__slide-kicker {
  color: rgba(255, 255, 255, 0.82);
}

/* ── Hero slideshow: responsive layout (mobile → tablet → desktop) ── */
@media (max-width: 639px) {
  .wsf-hero--slideshow .wsf-hero__showcase--float {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-grid {
    max-width: none;
    width: 100%;
    gap: 0.55rem;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-media {
    aspect-ratio: 3 / 4;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-float {
    padding: 1.55rem 0.5rem 0.5rem;
    gap: 0.12rem;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-name {
    font-size: 0.6875rem;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-price {
    font-size: 0.75rem;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-badge {
    top: 0.35rem;
    left: 0.35rem;
    padding: 0.14rem 0.38rem;
    font-size: 0.5625rem;
  }
}

@media (max-width: 479px) {
  .wsf-root--fresh {
    --wsf-shell: min(72rem, 100% - 1.25rem);
  }

  .wsf-hero--slideshow .wsf-hero__title {
    font-size: 1.25rem;
  }

  .wsf-hero--slideshow .wsf-hero__lead {
    font-size: 0.8125rem;
  }
}

@media (min-width: 480px) {
  .wsf-hero--slideshow {
    padding: 1.35rem 0 3rem;
  }

  .wsf-hero--slideshow .wsf-hero__grid {
    gap: 1rem;
  }

  .wsf-hero--slideshow .wsf-hero__cta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .wsf-hero--slideshow .wsf-hero__cta .wsf-btn {
    width: auto;
    flex: 1 1 auto;
    min-width: 9.5rem;
  }
}

@media (min-width: 640px) {
  .wsf-hero--slideshow {
    min-height: clamp(20rem, 48vh, 32rem);
    padding: 1.5rem 0 3.5rem;
  }

  .wsf-hero--slideshow .wsf-pagehead__slideshow {
    min-height: 100%;
  }

  .wsf-hero--slideshow .wsf-hero__grid {
    gap: 1.1rem;
    min-height: 0;
    margin-bottom: 0;
  }

  .wsf-hero--slideshow .wsf-hero__aside {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: stretch;
  }

  .wsf-hero--slideshow .wsf-hero__aside > :only-child {
    grid-column: 1 / -1;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-grid {
    max-width: none;
    width: 100%;
    gap: 0.45rem;
  }

  .wsf-hero--slideshow .wsf-hero__showcase--float {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-media {
    aspect-ratio: 3 / 4;
  }

  .wsf-hero--slideshow .wsf-trust--in-hero {
    margin-top: 0;
  }

  .wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__grid {
    gap: 1rem;
  }

  .wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__social {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 900px) {
  .wsf-hero--slideshow {
    min-height: clamp(26rem, 58vh, 40rem);
    padding: clamp(1.5rem, 3.5vw, 2.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  }

  .wsf-hero--slideshow .wsf-hero__stage {
    gap: clamp(1.75rem, 4vw, 3rem);
  }

  .wsf-hero--slideshow .wsf-hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(15rem, 21rem);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: start;
    min-height: 0;
    margin-bottom: 0;
  }

  .wsf-hero--slideshow .wsf-hero__content--float.wsf-hero__float-panel {
    max-width: 34rem;
    padding-right: 0.5rem;
  }

  .wsf-hero--slideshow .wsf-hero__aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 21rem;
    margin-left: auto;
    justify-self: end;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-grid {
    max-width: none;
    gap: 0.7rem;
  }

  .wsf-hero--slideshow .wsf-hero__showcase--float {
    width: 100%;
    margin-left: 0;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-item {
    border-radius: 0.7rem;
    box-shadow: 0 12px 32px -14px rgba(0, 0, 0, 0.5);
  }

  .wsf-hero--slideshow .wsf-hero__showcase-media {
    aspect-ratio: 3 / 4;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-badge {
    top: 0.4rem;
    left: 0.4rem;
    padding: 0.15rem 0.42rem;
    font-size: 0.5625rem;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-float {
    padding: 1.75rem 0.5rem 0.5rem;
    gap: 0.15rem;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-name {
    font-size: 0.75rem;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-price {
    font-size: 0.8125rem;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-ph {
    font-size: 1.375rem;
  }

  .wsf-hero--slideshow .wsf-hero__cta .wsf-btn {
    flex: 0 1 auto;
  }

  .wsf-hero--slideshow .wsf-trust--in-hero {
    margin-top: 0;
    padding-top: 0.25rem;
  }

  .wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 2.2vw, 2rem);
  }

  .wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__deck {
    gap: 1.15rem;
  }

  .wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__card {
    padding: 0.35rem 0.15rem;
    gap: 0.7rem;
  }

  .wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__body {
    min-width: 0;
  }
}

@media (min-width: 1200px) {
  .wsf-hero--slideshow .wsf-hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(17rem, 23rem);
    gap: clamp(2rem, 5vw, 4rem);
  }

  .wsf-hero--slideshow .wsf-hero__content--float.wsf-hero__float-panel {
    max-width: 36rem;
  }

  .wsf-hero--slideshow .wsf-hero__title {
    font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  }

  .wsf-hero--slideshow .wsf-hero__aside {
    max-width: 23rem;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-grid {
    gap: 0.8rem;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-item {
    border-radius: 0.8rem;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-media {
    aspect-ratio: 4 / 5;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-name {
    font-size: 0.8125rem;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-price {
    font-size: 0.875rem;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-badge {
    font-size: 0.625rem;
    padding: 0.18rem 0.48rem;
  }

  .wsf-hero--slideshow .wsf-hero__showcase-ph {
    font-size: 1.5rem;
  }

  .wsf-hero--slideshow .wsf-trust--in-hero .wsf-trust__grid {
    gap: clamp(1.25rem, 2.5vw, 2.5rem);
  }
}

.wsf-hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .wsf-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.wsf-hero__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.wsf-hero__accent {
  color: var(--wsf-primary);
}

.wsf-hero__lead {
  margin: 1rem 0 0;
  max-width: 32rem;
  font-size: 1.0625rem;
  color: var(--wsf-muted);
  line-height: 1.65;
}

.wsf-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.wsf-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: var(--wsf-muted);
}

.wsf-hero__meta a {
  color: var(--wsf-text);
  text-decoration: none;
  font-weight: 500;
}

.wsf-hero__meta a:hover {
  color: var(--wsf-primary);
}

.wsf-hero__showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .wsf-hero__showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

.wsf-hero__showcase-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem;
  border: 1px solid var(--wsf-border);
  border-radius: var(--wsf-radius);
  background: var(--wsf-bg);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wsf-hero__showcase-item:hover {
  border-color: var(--wsf-primary);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.2);
}

.wsf-hero__showcase-media {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--wsf-radius-sm);
  overflow: hidden;
  background: var(--wsf-surface);
}

.wsf-hero__showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wsf-hero__showcase-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--wsf-muted);
}

.wsf-hero__showcase-name {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wsf-hero__showcase-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--wsf-primary);
}

/* Sections */
.wsf-section {
  padding: 3rem 0;
}

.wsf-section--alt {
  background: var(--wsf-surface);
  border-block: 1px solid var(--wsf-border);
}

.wsf-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.wsf-section__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.wsf-section__sub {
  margin: 0.35rem 0 0;
  font-size: 0.9375rem;
  color: var(--wsf-muted);
}

.wsf-section__foot {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Search */
.wsf-search {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1px solid var(--wsf-border);
  border-radius: var(--wsf-radius);
  background: var(--wsf-surface);
}

.wsf-search:focus-within {
  border-color: var(--wsf-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--wsf-primary) 15%, transparent);
}

.wsf-search__icon {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--wsf-muted);
  flex-shrink: 0;
}

.wsf-search__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--wsf-text);
  outline: none;
}

.wsf-search__input::placeholder {
  color: var(--wsf-muted);
}

.wsf-toolbar {
  margin-bottom: 1.25rem;
}

.wsf-toolbar--grow {
  flex: 1;
  min-width: 0;
}

/* Category chips */
.wsf-chips__track {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.wsf-chips__track::-webkit-scrollbar {
  display: none;
}

.wsf-chip {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--wsf-border);
  background: var(--wsf-surface);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--wsf-muted);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.wsf-chip:hover,
.wsf-chip.is-active {
  border-color: var(--wsf-primary);
  color: var(--wsf-primary);
  background: color-mix(in srgb, var(--wsf-primary) 8%, var(--wsf-surface));
}

.wsf-chips--compact .wsf-chip {
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
}

/* Homepage category cards — top seller image per category */
.wsf-catalog__categories {
  margin-top: 0.25rem;
}

.wsf-cat-visual--home .wsf-cat-visual__scroll {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  overflow: visible;
  padding: 0;
  scroll-snap-type: none;
}

.wsf-cat-visual--home .wsf-cat-tile--card {
  flex: none;
  width: 100%;
  min-width: 0;
  scroll-snap-align: unset;
}

.wsf-cat-tile--card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  text-decoration: none;
  transition: transform 0.28s cubic-bezier(0.34, 1.15, 0.64, 1);
}

.wsf-cat-tile--card:hover,
.wsf-cat-tile--card:focus-visible {
  transform: translateY(-4px);
}

.wsf-cat-tile__card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--wsf-border);
  background: var(--wsf-surface-2);
  box-shadow: 0 14px 32px -22px rgba(15, 23, 42, 0.45);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.wsf-cat-tile--card:hover .wsf-cat-tile__card,
.wsf-cat-tile--card:focus-visible .wsf-cat-tile__card {
  border-color: color-mix(in srgb, var(--wsf-primary) 35%, transparent);
  box-shadow: 0 22px 40px -18px var(--wsf-glow);
}

.wsf-cat-tile--card .wsf-cat-tile__img,
.wsf-cat-tile--card .wsf-cat-tile__inner {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.wsf-cat-tile--card .wsf-cat-tile__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wsf-cat-tile--card .wsf-cat-tile__inner--ph {
  font-size: 2rem;
  font-weight: 800;
  color: var(--wsf-primary);
  background: linear-gradient(145deg, color-mix(in srgb, var(--wsf-primary) 10%, var(--wsf-surface-2)), var(--wsf-surface));
}

.wsf-cat-tile--card:hover .wsf-cat-tile__img,
.wsf-cat-tile--card:focus-visible .wsf-cat-tile__img {
  transform: scale(1.08);
}

.wsf-cat-tile__shade {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.55) 100%);
  opacity: 0.35;
  transition: opacity 0.25s ease;
}

.wsf-cat-tile--card:hover .wsf-cat-tile__shade,
.wsf-cat-tile--card:focus-visible .wsf-cat-tile__shade {
  opacity: 0.55;
}

.wsf-cat-tile--card .wsf-cat-tile__label {
  max-width: 100%;
  padding: 0 0.15rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--wsf-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

.wsf-cat-tile--card:hover .wsf-cat-tile__label,
.wsf-cat-tile--card:focus-visible .wsf-cat-tile__label {
  color: var(--wsf-primary);
}

@media (min-width: 480px) {
  .wsf-cat-visual--home .wsf-cat-visual__scroll {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .wsf-cat-visual--home .wsf-cat-visual__scroll {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .wsf-cat-visual--home .wsf-cat-visual__scroll {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .wsf-cat-visual--home .wsf-cat-visual__scroll {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

/* Product grid & cards */
.wsf-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .wsf-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .wsf-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }

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

@media (min-width: 1280px) {
  .wsf-root--catalog .wsf-product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.wsf-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--wsf-border);
  border-radius: var(--wsf-radius);
  background: var(--wsf-surface);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.wsf-card:hover,
.wsf-card:focus-within {
  border-color: color-mix(in srgb, var(--wsf-primary) 40%, var(--wsf-border));
  box-shadow: 0 12px 32px -20px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.wsf-card__media {
  position: relative;
  aspect-ratio: 1;
  background: var(--wsf-bg);
}

.wsf-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wsf-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 2rem;
  font-weight: 800;
  color: var(--wsf-muted);
}

.wsf-card__badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: #dc2626;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
}

.wsf-card__add {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  background: var(--wsf-primary);
  color: #fff;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.15s ease, transform 0.15s ease;
  cursor: pointer;
}

.wsf-card__add svg {
  width: 1.125rem;
  height: 1.125rem;
}

.wsf-card:hover .wsf-card__add,
.wsf-card:focus-within .wsf-card__add {
  opacity: 1;
  transform: scale(1);
}

.wsf-card__body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.wsf-card__cat {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--wsf-muted);
}

.wsf-card__name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wsf-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 0.15rem;
}

.wsf-card__price {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--wsf-text);
}

.wsf-card__price-was {
  font-size: 0.75rem;
  color: var(--wsf-muted);
  text-decoration: line-through;
}

.wsf-card--sale .wsf-card__price {
  color: #dc2626;
}

.wsf-product-card.is-hidden-filter,
.wsf-cat-row.is-hidden-filter {
  display: none !important;
}

/* Catalog page */
.wsf-pagehead--full {
  position: relative;
  padding: clamp(1.35rem, 3.5vw, 2.25rem) 0 clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
  border-bottom: none;
}

.wsf-pagehead--immersive {
  min-height: 0;
  display: flex;
  align-items: center;
}

.wsf-pagehead--slideshow {
  isolation: isolate;
}

.wsf-pagehead__slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.wsf-pagehead__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s ease, transform 8s linear;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.65) 100%),
    var(--wsf-slide-img) center / cover no-repeat;
}

.wsf-pagehead__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.wsf-pagehead__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 10% -10%, color-mix(in srgb, var(--wsf-primary) 16%, transparent), transparent 55%),
    radial-gradient(ellipse 70% 55% at 95% 110%, color-mix(in srgb, var(--wsf-accent) 12%, transparent), transparent 50%),
    linear-gradient(180deg, var(--wsf-surface), var(--wsf-bg));
}

.wsf-pagehead__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.45) 42%, rgba(15, 23, 42, 0.72) 100%);
}

html[data-marketing-theme="dark"] .wsf-pagehead__scrim,
.wsf-root--fresh.wsf-theme-dark .wsf-pagehead__scrim {
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.78) 100%);
}

.wsf-pagehead__inner {
  position: relative;
  z-index: 3;
  width: 100%;
}

.wsf-pagehead__hero {
  display: grid;
  gap: 1.75rem;
  align-items: end;
}

@media (min-width: 900px) {
  .wsf-pagehead__hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2.5rem;
    align-items: center;
  }
}

.wsf-pagehead__float {
  max-width: 32rem;
  padding: 1rem 1.15rem;
  border-radius: calc(var(--wsf-radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: color-mix(in srgb, rgba(15, 23, 42, 0.62) 75%, transparent);
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
  box-shadow:
    0 20px 40px -22px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.wsf-pagehead__kicker {
  color: color-mix(in srgb, #fff 85%, var(--wsf-primary));
  font-size: 0.6875rem;
}

.wsf-pagehead--immersive .wsf-pagehead__title {
  color: #fff;
  font-size: clamp(1.5rem, 3.2vw, 2.125rem);
  line-height: 1.12;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.wsf-pagehead--immersive .wsf-pagehead__lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  line-height: 1.55;
  margin-top: 0.5rem;
}

.wsf-pagehead__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.wsf-pagehead__pill {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.95);
}

.wsf-pagehead__pill--muted {
  opacity: 0.88;
}

.wsf-pagehead__cta {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  min-height: 2.5rem;
  padding-inline: 1rem;
  font-size: 0.8125rem;
}

.wsf-pagehead__cta:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.wsf-pagehead__slide-ui {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1.15rem 1.25rem;
  border-radius: calc(var(--wsf-radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (min-width: 900px) {
  .wsf-pagehead__slide-ui {
    align-items: flex-end;
    text-align: right;
    margin-left: auto;
    max-width: 18rem;
  }
}

.wsf-pagehead__slide-kicker {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.wsf-pagehead__slide-caption {
  margin: 0;
  min-height: 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.wsf-pagehead__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.wsf-pagehead__dot {
  width: 2.25rem;
  height: 0.28rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}

.wsf-pagehead__dot.is-active {
  width: 2.75rem;
  background: #fff;
  transform: scaleY(1.15);
}

.wsf-pagehead__dot:hover {
  background: rgba(255, 255, 255, 0.55);
}

.wsf-pagehead__link {
  color: #fff;
}

.wsf-pagehead__link:hover {
  color: color-mix(in srgb, #fff 80%, var(--wsf-primary));
}

.wsf-pagehead {
  padding: 2.5rem 0 1.5rem;
  background: var(--wsf-surface);
  border-bottom: 1px solid var(--wsf-border);
}

.wsf-pagehead__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.wsf-pagehead__lead {
  margin: 0.65rem 0 0;
  color: var(--wsf-muted);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  max-width: 38rem;
  line-height: 1.65;
}

.wsf-pagehead__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.wsf-root--catalog.wsf-root--fresh {
  --wsf-bg: #f4f4f5;
}

html[data-marketing-theme="dark"] .wsf-root--catalog.wsf-root--fresh {
  --wsf-bg: #0c0c0c;
}

.wsf-section.wsf-catalog {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

.wsf-catalog__toolbar {
  position: sticky;
  top: var(--wsf-header-h);
  z-index: 20;
  margin-bottom: 1.75rem;
  padding: 0.85rem;
  border: 1px solid var(--wsf-border);
  border-radius: calc(var(--wsf-radius) + 4px);
  background: color-mix(in srgb, var(--wsf-surface) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  box-shadow: 0 16px 40px -28px rgba(15, 23, 42, 0.35);
}

.wsf-catalog__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  position: static;
  z-index: auto;
  padding: 0;
  background: transparent;
  border-bottom: none;
  margin-bottom: 0;
}

.wsf-catalog__bar-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.wsf-catalog__count--muted {
  opacity: 0.85;
}

.wsf-catalog__filters {
  margin: 0.85rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid color-mix(in srgb, var(--wsf-border) 80%, transparent);
}

.wsf-cat-visual--pills .wsf-cat-visual__scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.15rem 0.1rem 0.35rem;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.wsf-cat-visual--pills .wsf-cat-visual__scroll::-webkit-scrollbar {
  display: none;
}

.wsf-cat-tile--pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--wsf-border);
  background: var(--wsf-surface);
  text-decoration: none;
  scroll-snap-align: start;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.wsf-cat-tile--pill:hover,
.wsf-cat-tile--pill:focus-visible {
  border-color: color-mix(in srgb, var(--wsf-primary) 45%, var(--wsf-border));
  color: var(--wsf-primary);
  transform: translateY(-1px);
}

.wsf-cat-tile--pill.is-active {
  border-color: var(--wsf-primary);
  background: color-mix(in srgb, var(--wsf-primary) 10%, var(--wsf-surface));
  color: var(--wsf-primary);
}

.wsf-cat-tile--pill .wsf-cat-tile__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  color: inherit;
}

.wsf-catalog__group {
  margin-bottom: 2.75rem;
  scroll-margin-top: calc(var(--wsf-header-h) + 7rem);
}

.wsf-catalog__group-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--wsf-border);
}

.wsf-catalog__group-link {
  margin-left: auto;
  font-size: 0.8125rem;
}

.wsf-root--catalog .wsf-product-grid {
  gap: 1rem;
}

.wsf-root--catalog .wsf-product-grid .wsf-card {
  border-radius: calc(var(--wsf-radius) + 2px);
  box-shadow: 0 10px 28px -22px rgba(15, 23, 42, 0.28);
}

.wsf-root--catalog .wsf-product-grid .wsf-card__img {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.wsf-root--catalog .wsf-product-grid .wsf-card:hover .wsf-card__img,
.wsf-root--catalog .wsf-product-grid .wsf-card:focus-within .wsf-card__img {
  transform: scale(1.05);
}

.wsf-card__hover-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  padding: 0.55rem 0.5rem;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(15, 23, 42, 0.55) 45%,
    transparent 100%
  );
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.wsf-card__desc-float {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wsf-card__desc-float--empty {
  opacity: 0.85;
  font-style: italic;
}

.wsf-card__quick {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  align-self: flex-start;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--wsf-primary) 88%, #000);
}

.wsf-card:hover .wsf-card__hover-panel,
.wsf-card:focus-within .wsf-card__hover-panel {
  opacity: 1;
  transform: translateY(0);
}

.wsf-card__offer-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  top: 0.35rem;
  left: 0.35rem;
  padding: 0.25rem 0.35rem;
  border-radius: 6px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  box-shadow: 0 4px 12px -4px rgba(220, 38, 38, 0.65);
  line-height: 1.1;
  transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.3s ease;
}

.wsf-card__offer-label {
  font-size: 0.4375rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wsf-card__offer-pct {
  font-size: 0.6875rem;
  font-weight: 800;
}

.wsf-card--sale:hover .wsf-card__offer-tag,
.wsf-card--sale:focus-within .wsf-card__offer-tag {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 8px 18px -4px rgba(220, 38, 38, 0.75);
  animation: wsf-offer-pulse 0.55s ease;
}

.wsf-card__price-row--deal {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.wsf-card__price-deal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.wsf-card__price-deal-label {
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #dc2626;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.wsf-card__price-row--deal .wsf-card__price {
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), color 0.25s ease;
}

.wsf-card--sale:hover .wsf-card__price-deal-label,
.wsf-card--sale:focus-within .wsf-card__price-deal-label {
  opacity: 1;
  transform: translateY(0);
}

.wsf-card--sale:hover .wsf-card__price-row--deal .wsf-card__price,
.wsf-card--sale:focus-within .wsf-card__price-row--deal .wsf-card__price {
  animation: wsf-deal-pop 0.5s cubic-bezier(0.34, 1.25, 0.64, 1);
  color: #dc2626;
}

.wsf-card--sale:hover .wsf-card__price-was,
.wsf-card--sale:focus-within .wsf-card__price-was {
  opacity: 0.55;
  transform: translateY(-1px) scale(0.96);
}

.wsf-card__save {
  font-size: 0.5rem;
  font-weight: 700;
  color: #059669;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 0.28s ease 0.08s, transform 0.28s ease 0.08s;
}

.wsf-card--sale:hover .wsf-card__save,
.wsf-card--sale:focus-within .wsf-card__save {
  opacity: 1;
  transform: translateY(0);
}

@keyframes wsf-deal-pop {
  0% { transform: scale(0.82); }
  55% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes wsf-offer-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.15); }
}

.wsf-root--catalog .wsf-empty {
  padding: 3rem 1.5rem;
  border: 1px dashed var(--wsf-border);
  border-radius: var(--wsf-radius);
  text-align: center;
  background: var(--wsf-surface);
}

/* Horizontal category scroll */
.wsf-cat-scroll-wrap {
  position: relative;
  margin-inline: -0.25rem;
  padding-inline: 0.25rem;
}

.wsf-cat-scroll {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding: 0.35rem 0.25rem 0.65rem;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--wsf-primary) 35%, transparent) transparent;
}

.wsf-cat-scroll::-webkit-scrollbar {
  height: 5px;
}

.wsf-cat-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: color-mix(in srgb, var(--wsf-primary) 40%, var(--wsf-border));
}

.wsf-root--fresh .wsf-cat-scroll .wsf-card,
.wsf-cat-scroll .wsf-card {
  position: relative;
  flex: 0 0 8.75rem;
  width: 8.75rem;
  min-width: 8.75rem;
  max-width: 8.75rem;
  scroll-snap-align: start;
  border-radius: calc(var(--wsf-radius-sm) + 2px);
  overflow: hidden;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.25s ease,
    z-index 0s;
}

@media (min-width: 480px) {
  .wsf-root--fresh .wsf-cat-scroll .wsf-card,
  .wsf-cat-scroll .wsf-card {
    flex: 0 0 9.5rem;
    width: 9.5rem;
    min-width: 9.5rem;
    max-width: 9.5rem;
  }
}

@media (min-width: 768px) {
  .wsf-cat-scroll {
    gap: 0.85rem;
  }

  .wsf-root--fresh .wsf-cat-scroll .wsf-card,
  .wsf-cat-scroll .wsf-card {
    flex: 0 0 10.5rem;
    width: 10.5rem;
    min-width: 10.5rem;
    max-width: 10.5rem;
  }
}

@media (min-width: 1024px) {
  .wsf-root--fresh .wsf-cat-scroll .wsf-card,
  .wsf-cat-scroll .wsf-card {
    flex: 0 0 11rem;
    width: 11rem;
    min-width: 11rem;
    max-width: 11rem;
  }
}

.wsf-cat-scroll .wsf-card:hover,
.wsf-cat-scroll .wsf-card:focus-within {
  z-index: 4;
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 18px 36px -16px rgba(15, 23, 42, 0.35);
  border-color: color-mix(in srgb, var(--wsf-primary) 35%, var(--wsf-border));
}

.wsf-cat-scroll .wsf-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.wsf-cat-scroll .wsf-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.wsf-cat-scroll .wsf-card:hover .wsf-card__img,
.wsf-cat-scroll .wsf-card:focus-within .wsf-card__img {
  transform: scale(1.06);
}

.wsf-cat-scroll .wsf-card__cat {
  display: none;
}

.wsf-cat-scroll .wsf-card__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: 1.75rem 0.5rem 0.5rem;
  gap: 0.12rem;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(15, 23, 42, 0.55) 55%,
    transparent 100%
  );
  pointer-events: none;
}

.wsf-cat-scroll .wsf-card__name {
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  -webkit-line-clamp: 2;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.wsf-cat-scroll .wsf-card__price-row {
  margin-top: 0.1rem;
  flex-wrap: wrap;
  gap: 0.15rem;
}

.wsf-cat-scroll .wsf-card__price {
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.wsf-cat-scroll .wsf-card__price-was {
  font-size: 0.5625rem;
  color: rgba(255, 255, 255, 0.65);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.wsf-cat-scroll .wsf-card--sale .wsf-card__price {
  color: #fecaca;
}

.wsf-cat-scroll .wsf-card--sale:hover .wsf-card__price-row--deal .wsf-card__price,
.wsf-cat-scroll .wsf-card--sale:focus-within .wsf-card__price-row--deal .wsf-card__price {
  color: #fecaca;
}

.wsf-cat-scroll .wsf-card__price-deal-label {
  color: #fca5a5;
}

/* Keep floating overlay text readable (beats luxury theme dark text) */
.wsf-root--catalog .wsf-cat-scroll .wsf-card__body .wsf-card__name,
.wsf-root--catalog .wsf-cat-scroll .wsf-card__body .wsf-card__price {
  color: #fff;
}

.wsf-root--catalog .wsf-cat-scroll .wsf-card--sale .wsf-card__body .wsf-card__price {
  color: #fecaca;
}

.wsf-root--catalog .wsf-cat-scroll .wsf-card__body .wsf-card__price-was {
  color: rgba(255, 255, 255, 0.65);
}

.wsf-cat-scroll .wsf-card__save {
  color: #86efac;
}

.wsf-cat-scroll .wsf-card__hover-panel {
  z-index: 2;
  padding-bottom: 42%;
}

.wsf-cat-scroll .wsf-card__add {
  z-index: 4;
}

.wsf-cat-scroll .wsf-card__badge {
  z-index: 2;
}

.wsf-cat-scroll .wsf-card__add {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.wsf-cat-scroll .wsf-card:hover .wsf-card__add,
.wsf-cat-scroll .wsf-card:focus-within .wsf-card__add {
  opacity: 1;
  transform: scale(1);
}

.wsf-cat-scroll .wsf-card__placeholder {
  font-size: 1.25rem;
}

.wsf-cat-scroll .wsf-card__desc-float {
  font-size: 0.5625rem;
  -webkit-line-clamp: 5;
}

@media (min-width: 768px) {
  .wsf-cat-scroll .wsf-card__name {
    font-size: 0.75rem;
  }

  .wsf-cat-scroll .wsf-card__price {
    font-size: 0.8125rem;
  }

  .wsf-cat-scroll .wsf-card__desc-float {
    font-size: 0.625rem;
  }
}

.wsf-catalog__group-title {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.wsf-cat-row__count {
  font-size: 0.8125rem;
  color: var(--wsf-muted);
}

.wsf-cat-row__count:not(:empty)::before {
  content: "· ";
}

/* Registered shops — image-backed cards */
.wsf-section--shops {
  position: relative;
  overflow: hidden;
}

.wsf-section--shops::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 12% 0%, color-mix(in srgb, var(--wsf-primary) 14%, transparent), transparent 58%),
    radial-gradient(ellipse 70% 50% at 88% 100%, color-mix(in srgb, var(--wsf-accent) 12%, transparent), transparent 55%);
  opacity: 0.9;
}

.wsf-section--shops .wsf-shell {
  position: relative;
  z-index: 1;
}

.wsf-shops-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .wsf-shops-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

@media (min-width: 1024px) {
  .wsf-shops-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.wsf-root--fresh .wsf-shop-card__inner {
  min-height: 19.5rem;
  border-radius: 1.15rem;
  border-color: color-mix(in srgb, var(--wsf-border) 40%, transparent);
  box-shadow: 0 20px 44px -28px rgba(15, 23, 42, 0.35);
}

.wsf-root--fresh .wsf-shop-card:hover .wsf-shop-card__inner,
.wsf-root--fresh .wsf-shop-card:focus-within .wsf-shop-card__inner {
  box-shadow: 0 28px 56px -22px color-mix(in srgb, var(--wsf-primary) 35%, transparent);
}

.wsf-root--fresh .wsf-shop-card__bg {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--wsf-primary) 42%, #0f172a),
    color-mix(in srgb, var(--wsf-accent) 28%, #1e293b)
  );
}

.wsf-root--fresh .wsf-shop-card__panel {
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.wsf-root--fresh .wsf-shop-card__cta {
  background: var(--wsf-primary);
  border-color: transparent;
  color: #fff;
}

.wsf-root--fresh .wsf-shop-card__cta:hover {
  background: color-mix(in srgb, var(--wsf-primary) 88%, #000);
}

@media (prefers-reduced-motion: reduce) {
  .wsf-shop-card__bg-img,
  .wsf-shop-card__shine,
  .wsf-shop-card__border::before {
    animation: none !important;
  }
}

/* Policies */
.wsf-policies {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .wsf-policies {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.wsf-policy {
  padding: 1.25rem;
  border: 1px solid var(--wsf-border);
  border-radius: var(--wsf-radius);
  background: var(--wsf-bg);
}

.wsf-policy__title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
}

.wsf-policy__body {
  font-size: 0.875rem;
  color: var(--wsf-muted);
  line-height: 1.65;
  white-space: pre-wrap;
}

/* Footer */
.wsf-footer {
  margin-top: 2rem;
  padding: 2.5rem 0 1.5rem;
  background: var(--wsf-text);
  color: #d4d4d4;
}

html[data-marketing-theme="dark"] .wsf-root--fresh .wsf-footer,
.wsf-root--fresh.wsf-theme-dark .wsf-footer {
  background: #000;
  border-top: 1px solid var(--wsf-border);
}

.wsf-footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .wsf-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.wsf-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wsf-footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
  background: var(--wsf-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  overflow: hidden;
}

.wsf-footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wsf-footer__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.wsf-footer__tag {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: #a3a3a3;
}

.wsf-footer__social {
  display: flex;
  gap: 0.75rem;
}

.wsf-footer__social a {
  font-size: 0.75rem;
  font-weight: 700;
  color: #a3a3a3;
  text-decoration: none;
}

.wsf-footer__social a:hover {
  color: #fff;
}

.wsf-footer__heading {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
}

.wsf-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wsf-footer__links a,
.wsf-footer__links button {
  font: inherit;
  font-size: 0.875rem;
  color: #a3a3a3;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.wsf-footer__links a:hover,
.wsf-footer__links button:hover {
  color: #fff;
}

.wsf-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid #262626;
  font-size: 0.8125rem;
  color: #737373;
}

/* FAB */
.wsf-fab {
  position: fixed;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border: none;
  border-radius: 999px;
  background: var(--wsf-primary);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.wsf-fab svg {
  width: 1.35rem;
  height: 1.35rem;
}

.wsf-fab--contact {
  right: 1rem;
  bottom: 1rem;
}

.wsf-fab--cart {
  right: 1rem;
  bottom: 1rem;
}

.wsf-fab--contact + .wsf-fab--cart,
.wsf-fab--stacked {
  bottom: 4.75rem;
}

.wsf-fab__count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: #fff;
  color: var(--wsf-primary);
  font-size: 0.625rem;
  font-weight: 800;
  line-height: 1.15rem;
}

/* Empty state */
.wsf-empty {
  padding: 3rem 1.5rem;
  text-align: center;
  border: 1px dashed var(--wsf-border);
  border-radius: var(--wsf-radius);
}

.wsf-empty__title {
  margin: 0;
  font-weight: 700;
}

.wsf-empty__text {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--wsf-muted);
}

.wsf-preview-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 50;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--wsf-primary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Toast — minimal override */
.wsf-root--fresh .wsf-toast {
  border-radius: var(--wsf-radius-sm);
  font-size: 0.875rem;
}

/* Cart drawer polish */
.wsf-root--fresh .wsf-cart-drawer {
  border-left: 1px solid var(--wsf-border);
}

.wsf-root--fresh .wsf-cart-checkout {
  border-radius: var(--wsf-radius-sm);
}

@media (max-width: 639px) {
  .wsf-catalog__toolbar {
    padding: 0.65rem;
    border-radius: var(--wsf-radius);
  }

  .wsf-catalog__bar {
    flex-direction: column;
    align-items: stretch;
  }

  .wsf-catalog__bar-meta {
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wsf-card,
  .wsf-btn,
  .wsf-menu-drawer {
    transition: none;
  }

  .wsf-card:hover {
    transform: none;
  }

  .wsf-card--sale:hover .wsf-card__price-row--deal .wsf-card__price,
  .wsf-card--sale:focus-within .wsf-card__price-row--deal .wsf-card__price,
  .wsf-card--sale:hover .wsf-card__offer-tag,
  .wsf-card--sale:focus-within .wsf-card__offer-tag {
    animation: none;
  }

  .wsf-pagehead__float {
    animation: none;
  }

  .wsf-pagehead__slide {
    transition: opacity 0.01ms;
  }
}

/* Product detail page */
.wsf-product-page {
  padding-block: 1.5rem 3rem;
}

.wsf-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  color: var(--wsf-muted);
}

.wsf-breadcrumb a {
  color: var(--wsf-primary);
  text-decoration: none;
  font-weight: 600;
}

.wsf-breadcrumb a:hover {
  text-decoration: underline;
}

.wsf-product-detail {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .wsf-product-detail {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2rem;
  }
}

.wsf-product-detail__media {
  position: relative;
  border: 1px solid var(--wsf-border);
  border-radius: var(--wsf-radius);
  background: var(--wsf-surface);
  overflow: hidden;
  aspect-ratio: 1;
}

.wsf-product-detail__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wsf-product-detail__img-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 4rem;
  font-weight: 800;
  color: var(--wsf-muted);
}

.wsf-product-detail__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--wsf-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.wsf-product-detail__cat {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wsf-primary);
}

.wsf-product-detail__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--wsf-text);
}

.wsf-product-detail__price {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--wsf-text);
}

.wsf-product-detail__was {
  margin-left: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--wsf-muted);
  text-decoration: line-through;
}

.wsf-product-detail__desc {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--wsf-muted);
  white-space: pre-line;
}

.wsf-product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.wsf-card__view-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.wsf-card__name-link {
  color: inherit;
  text-decoration: none;
}

.wsf-card__name-link:hover {
  color: var(--wsf-primary);
}
