@font-face {
  font-family: "IRANSansXFaNum";
  src: url("/fonts/iran-sansx-fanum/IRANSANSXFANUM-THIN.TTF") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSansXFaNum";
  src: url("/fonts/iran-sansx-fanum/IRANSANSXFANUM-ULTRALIGHT.TTF") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSansXFaNum";
  src: url("/fonts/iran-sansx-fanum/IRANSANSXFANUM-LIGHT.TTF") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSansXFaNum";
  src: url("/fonts/iran-sansx-fanum/IRANSANSXFANUM-REGULAR.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSansXFaNum";
  src: url("/fonts/iran-sansx-fanum/IRANSANSXFANUM-MEDIUM.TTF") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSansXFaNum";
  src: url("/fonts/iran-sansx-fanum/IRANSANSXFANUM-DEMIBOLD.TTF") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSansXFaNum";
  src: url("/fonts/iran-sansx-fanum/IRANSANSXFANUM-BOLD.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSansXFaNum";
  src: url("/fonts/iran-sansx-fanum/IRANSANSXFANUM-EXTRABOLD.TTF") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSansXFaNum";
  src: url("/fonts/iran-sansx-fanum/IRANSANSXFANUM-BLACK.TTF") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --storefront-navy: #1a2b4a;
  --storefront-navy-dark: #0f1a2e;
  --storefront-orange: #f58220;
  --storefront-orange-dark: #d96d10;
  --storefront-bg: #f0f0f0;
  --storefront-card: #ffffff;
  --storefront-border: #e2e8f0;
  --storefront-shadow: 0 4px 24px rgba(15, 26, 46, 0.08);
  --storefront-radius: 12px;
  --storefront-link: #3b82c4;
  --sf-color-primary: var(--storefront-orange);
  --sf-color-primary-600: var(--storefront-orange-dark);
  --sf-color-primary-700: #b85a0c;
  --sf-color-success: #0f766e;
  --sf-color-warning: #b45309;
  --sf-color-danger: #b91c1c;
  --sf-color-bg: var(--storefront-bg);
  --sf-color-surface: var(--storefront-card);
  --sf-color-surface-soft: #f8f9fb;
  --sf-color-border: var(--storefront-border);
  --sf-color-text: #1a2b4a;
  --sf-color-muted: #64748b;
  --sf-font-base: "Segoe UI", Tahoma, Arial, sans-serif;
  --sf-space-1: 0.25rem;
  --sf-space-2: 0.5rem;
  --sf-space-3: 0.75rem;
  --sf-space-4: 1rem;
  --sf-space-5: 1.25rem;
  --sf-space-6: 1.5rem;
  --sf-space-8: 2rem;
  --sf-radius-sm: 0.5rem;
  --sf-radius-md: 0.75rem;
  --sf-radius-lg: 1rem;
  --sf-radius-xl: 1.25rem;
  --sf-shadow-sm: 0 6px 20px rgba(15, 23, 42, 0.06);
  --sf-shadow-md: 0 12px 28px rgba(15, 23, 42, 0.1);
  --sf-shadow-focus: 0 0 0 0.2rem rgba(245, 130, 32, 0.28);
  --sf-z-header: 50;
  --sf-z-drawer: 70;
  --sf-z-toast: 80;
  --sf-motion-fast: 180ms ease;
  --sf-motion-normal: 260ms ease;
  --sf-container-max: 1200px;
}

html[dir="rtl"] {
  --sf-font-base: "IRANSansXFaNum", Tahoma, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: var(--sf-font-base);
  color: var(--sf-color-text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--storefront-bg);
}

a {
  color: var(--sf-color-primary-600);
  text-decoration: none;
  transition: color var(--sf-motion-fast), background var(--sf-motion-fast);
}

a:hover {
  color: var(--sf-color-primary-700);
}

img {
  max-width: 100%;
}

.container {
  width: min(var(--sf-container-max), 95%);
  margin-inline: auto;
}

.shell-container {
  padding-block: var(--sf-space-5) calc(var(--sf-space-8) + 1rem);
  flex: 1 0 auto;
}

.skip-link {
  position: absolute;
  inset-inline-start: var(--sf-space-3);
  top: -100px;
  z-index: var(--sf-z-toast);
  background: #0f172a;
  color: #fff;
  border-radius: var(--sf-radius-sm);
  padding: var(--sf-space-2) var(--sf-space-3);
}

.skip-link:focus {
  top: var(--sf-space-3);
}

.offline-banner {
  position: sticky;
  top: 0;
  z-index: var(--sf-z-toast);
  display: none;
  text-align: center;
  background: #7f1d1d;
  color: #fff;
  padding: var(--sf-space-2);
  font-size: 0.9rem;
}

.offline-banner.is-visible {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--sf-z-header);
}

.site-topbar {
  background: var(--storefront-navy-dark);
  color: #f1f5f9;
}

.site-topbar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sf-space-4);
  padding-block: 0.5rem;
  font-size: 0.86rem;
}

.site-topbar__message {
  text-align: center;
}

.site-topbar__actions {
  display: inline-flex;
  gap: var(--sf-space-4);
  flex-wrap: wrap;
}

.site-topbar a {
  color: #cbd5e1;
}

.site-topbar a:hover {
  color: #fff;
}

.navbar-shell {
  padding-block: var(--sf-space-3);
  background: var(--storefront-bg);
}

.navbar-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sf-space-3);
  background: var(--storefront-card);
  border: 1px solid var(--storefront-border);
  border-radius: var(--storefront-radius);
  box-shadow: var(--storefront-shadow);
  padding: var(--sf-space-3) var(--sf-space-4);
  min-height: 72px;
  position: relative;
}

.navbar-card__brand {
  flex: 0 0 auto;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--storefront-navy);
  letter-spacing: 0.02em;
}

.navbar-card__panel {
  display: flex;
  justify-content: center;
  flex: 1 1 auto;
}

.navbar-card__actions {
  display: inline-flex;
  align-items: center;
  gap: var(--sf-space-2);
  flex: 0 0 auto;
}

.mobile-menu-toggle {
  display: none;
}

.navbar-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: var(--sf-space-1);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  display: inline-flex;
  border-radius: 0.5rem;
  padding: 0.45rem 0.7rem;
  color: var(--storefront-navy);
  font-weight: 500;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: #f1f5f9;
  color: var(--storefront-navy);
}

.nav-lang,
.culture-switcher {
  min-width: 5.5rem;
}

.navbar-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.55rem;
  border: 1px solid var(--storefront-border);
  background: #fff;
  color: var(--storefront-navy);
  cursor: pointer;
  text-decoration: none;
}

.navbar-icon-btn:hover,
.navbar-icon-btn:focus-visible {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.navbar-signout-form {
  margin: 0;
}

.global-search-panel {
  margin-top: var(--sf-space-2);
  background: var(--storefront-card);
  border: 1px solid var(--storefront-border);
  border-radius: var(--storefront-radius);
  box-shadow: var(--storefront-shadow);
  padding: var(--sf-space-3);
}

.global-search-panel__form {
  display: flex;
  gap: var(--sf-space-2);
  align-items: center;
}

.global-search-panel__form .form-control {
  border-radius: 999px;
}

.mobile-bottom-nav {
  display: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sf-space-3);
  margin-bottom: var(--sf-space-6);
}

.trust-strip__item {
  background: #f8fbff;
  border: 1px solid #d5e5ff;
  border-radius: var(--sf-radius-md);
  padding: var(--sf-space-4);
}

.trust-strip__item h2 {
  margin: 0 0 var(--sf-space-2);
  font-size: 1rem;
}

.trust-strip__item p {
  margin: 0;
  color: var(--sf-color-muted);
  font-size: 0.9rem;
}

.footer {
  background: var(--storefront-navy);
  color: #e2e8f0;
  margin-top: auto;
  padding-block: var(--sf-space-8) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sf-space-6);
  padding-bottom: var(--sf-space-6);
}

.footer-heading {
  margin: 0 0 var(--sf-space-3);
  font-size: 1rem;
  color: #fff;
}

.footer-heading--spaced {
  margin-top: var(--sf-space-4);
}

.footer-brand__logo {
  display: inline-block;
  background: #fff;
  color: var(--storefront-navy);
  font-weight: 800;
  padding: 0.45rem 0.8rem;
  border-radius: 0.45rem;
  margin-bottom: var(--sf-space-3);
}

.footer-brand__text {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0 0 var(--sf-space-3);
}

.footer-links a,
.footer-contact a {
  color: #cbd5e1;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-links li + li,
.footer-contact li + li {
  margin-top: var(--sf-space-2);
}

.footer-social {
  display: flex;
  gap: var(--sf-space-2);
  flex-wrap: wrap;
}

.footer-social__icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--storefront-orange);
  display: inline-block;
}

.footer-trust-badges {
  display: flex;
  gap: var(--sf-space-2);
  flex-wrap: wrap;
}

.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  min-height: 4.5rem;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 0.5rem;
  color: #94a3b8;
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.06);
}

.footer-copy {
  background: #e8edf3;
  color: #475569;
  text-align: center;
  padding: var(--sf-space-3);
  font-size: 0.86rem;
}

.hero-card,
.card,
.product-card,
.listing-sidebar,
.cms-page {
  background: linear-gradient(180deg, #fff, #fcfdff);
  border: 1px solid var(--sf-color-border);
  border-radius: var(--sf-radius-lg);
  box-shadow: var(--sf-shadow-sm);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--sf-radius-xl);
  padding: clamp(1.3rem, 2vw, 2.4rem);
  color: #fff;
  background: linear-gradient(126deg, #0f172a, #1e3a8a 52%, #2563eb);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset-inline-end: -60px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.hero-card .text-muted {
  color: rgba(226, 232, 240, 0.95) !important;
}

.hero-card .btn-outline-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
  background: transparent;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sf-space-3);
  margin-top: var(--sf-space-5);
}

.hero-stats__item {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--sf-radius-md);
  padding: var(--sf-space-3);
}

.hero-stats__value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
}

.hero-stats__label {
  font-size: 0.82rem;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sf-space-3);
  margin-bottom: var(--sf-space-3);
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sf-space-2);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  opacity: 0.86;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sf-space-1);
  border: 1px solid #cfe0ff;
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  background: linear-gradient(180deg, #fff, #f7fbff);
  color: #1e3a8a;
  font-size: 0.86rem;
}

.chip span {
  color: var(--sf-color-muted);
}

.chip:hover {
  background: #eff6ff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
  gap: var(--sf-space-4);
}

.product-card {
  padding: var(--sf-space-4);
  transition: transform var(--sf-motion-fast), box-shadow var(--sf-motion-fast);
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sf-shadow-md);
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sf-space-2);
  margin-bottom: var(--sf-space-2);
}

.card {
  overflow: hidden;
}

.card-body {
  padding: var(--sf-space-4);
}

.card-soft {
  background: var(--sf-color-surface-soft);
}

.listing-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: var(--sf-space-5);
}

.listing-content {
  min-width: 0;
}

.listing-sidebar {
  position: sticky;
  top: 6.8rem;
  align-self: start;
}

.listing-toolbar {
  position: sticky;
  top: 6rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--sf-color-border);
  border-radius: var(--sf-radius-md);
  padding: var(--sf-space-3);
  margin-bottom: var(--sf-space-4);
  backdrop-filter: blur(6px);
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sf-space-2);
}

.pdp-page {
  margin-bottom: var(--sf-space-4);
}

.pdp-breadcrumb {
  margin-bottom: var(--sf-space-4);
}

.pdp-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.35fr) minmax(280px, 320px);
  gap: var(--sf-space-4);
  align-items: start;
}

.pdp-gallery-card,
.pdp-info-card,
.pdp-buybox-card {
  background: var(--storefront-card);
  border: 1px solid var(--storefront-border);
  border-radius: var(--storefront-radius);
  box-shadow: var(--storefront-shadow);
  padding: var(--sf-space-4);
}

.pdp-gallery__media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: calc(var(--storefront-radius) - 2px);
  overflow: hidden;
  background: #f8fafc;
}

.pdp-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-gallery__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.86rem;
  font-weight: 600;
  background: repeating-linear-gradient(
    -45deg,
    #f8fafc,
    #f8fafc 10px,
    #f1f5f9 10px,
    #f1f5f9 20px
  );
}

.pdp-gallery__placeholder--fallback {
  display: none;
}

.pdp-gallery__media--empty .pdp-gallery__placeholder--fallback,
.pdp-gallery__media:has(.pdp-gallery__image[hidden]) .pdp-gallery__placeholder--fallback {
  display: flex;
}

.pdp-gallery__media--empty .pdp-gallery__image {
  display: none;
}

.pdp-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pdp-gallery__thumb {
  width: 64px;
  height: 64px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  cursor: pointer;
}

.pdp-gallery__thumb--active {
  border-color: var(--storefront-primary, #1d4ed8);
  box-shadow: 0 0 0 2px rgba(29, 78, 216, 0.15);
}

.pdp-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-title {
  margin: 0 0 var(--sf-space-2);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 700;
  color: var(--storefront-navy);
  line-height: 1.45;
}

.pdp-subtitle {
  margin: 0 0 var(--sf-space-3);
  line-height: 1.7;
}

.pdp-rating {
  display: inline-flex;
  align-items: center;
  gap: var(--sf-space-1);
  margin-bottom: var(--sf-space-3);
  color: var(--sf-color-muted);
  font-size: 0.9rem;
}

.pdp-rating__star {
  color: #f59e0b;
}

.pdp-price-block {
  margin-bottom: var(--sf-space-4);
  padding-bottom: var(--sf-space-3);
  border-bottom: 1px solid var(--storefront-border);
}

.pdp-price {
  display: block;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  color: var(--storefront-navy);
  margin-bottom: var(--sf-space-2);
}

.pdp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sf-space-2);
}

.pdp-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.22rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.pdp-badge--stock {
  background: #e0f2fe;
  color: #0369a1;
}

.pdp-badge--out {
  background: #f1f5f9;
  color: #64748b;
}

.pdp-badge--bnpl {
  background: #dcfce7;
  color: #166534;
}

.pdp-badge--verified {
  background: #dcfce7;
  color: #166534;
}

.pdp-badge--buybox {
  background: #ffedd5;
  color: #c2410c;
}

.pdp-description {
  margin-bottom: var(--sf-space-4);
  line-height: 1.8;
  color: #334155;
}

.pdp-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sf-space-3);
  margin-bottom: var(--sf-space-4);
}

.pdp-highlight-card {
  background: #f8fafc;
  border: 1px solid var(--storefront-border);
  border-radius: var(--storefront-radius);
  padding: var(--sf-space-3);
}

.pdp-highlight-card__title {
  margin: 0 0 var(--sf-space-1);
  font-size: 0.92rem;
  color: var(--storefront-navy);
}

.pdp-highlight-card__text {
  margin: 0;
  font-size: 0.84rem;
  color: var(--sf-color-muted);
  line-height: 1.6;
}

.pdp-specs__title {
  margin: 0 0 var(--sf-space-3);
  font-size: 1rem;
  color: var(--storefront-navy);
}

.pdp-specs__list {
  margin: 0;
  border: 1px solid var(--storefront-border);
  border-radius: var(--storefront-radius);
  overflow: hidden;
}

.pdp-specs__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sf-space-3);
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--storefront-border);
  background: #fff;
}

.pdp-specs__row:nth-child(even) {
  background: #f8fafc;
}

.pdp-specs__row:last-child {
  border-bottom: 0;
}

.pdp-specs__row dt {
  margin: 0;
  color: var(--sf-color-muted);
  font-weight: 500;
}

.pdp-specs__row dd {
  margin: 0;
  text-align: end;
  color: var(--storefront-navy);
  font-weight: 600;
}

.pdp-buybox-card {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.pdp-buybox-card__title {
  margin: 0 0 var(--sf-space-3);
  font-size: 1rem;
  color: var(--storefront-navy);
}

.pdp-offer-list {
  list-style: none;
  margin: 0 0 var(--sf-space-3);
  padding: 0;
  display: grid;
  gap: var(--sf-space-2);
}

.pdp-offer-list__item {
  border: 1px solid var(--storefront-border);
  border-radius: var(--storefront-radius);
  padding: var(--sf-space-3);
  background: #fff;
}

.pdp-offer-list__item--buybox {
  border-color: #fdba74;
  background: #fff7ed;
}

.pdp-offer-list__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sf-space-2);
  margin-bottom: var(--sf-space-1);
}

.pdp-offer-list__seller {
  font-weight: 600;
  color: var(--storefront-navy);
}

.pdp-offer-list__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.pdp-offer-list__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.8rem;
  color: var(--sf-color-muted);
  margin-bottom: var(--sf-space-1);
}

.pdp-offer-list__price {
  color: var(--storefront-navy);
  font-size: 1rem;
}

.pdp-buybox-card__form {
  margin-top: var(--sf-space-3);
}

.btn-storefront-cta--block {
  width: 100%;
  justify-content: center;
  padding-block: 0.65rem;
  font-size: 0.95rem;
}

.checkout-steps {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sf-space-2);
  list-style: none;
  margin: var(--sf-space-3) 0 0;
  padding: 0;
}

.checkout-steps li {
  border: 1px solid #c7dcff;
  background: #f0f6ff;
  border-radius: 999px;
  padding: 0.35rem 0.68rem;
  font-size: 0.8rem;
  color: #1e3a8a;
  font-weight: 600;
}

.order-summary {
  border: 1px solid #cfe0ff;
  border-radius: var(--sf-radius-md);
  background: linear-gradient(180deg, #f8fbff, #f3f8ff);
  padding: var(--sf-space-4);
}

.timeline {
  position: relative;
}

.timeline-item {
  position: relative;
  padding-inline-start: 1.1rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.38rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sf-color-primary);
  box-shadow: 0 0 0 3px #dbeafe;
}

.empty-state {
  padding: var(--sf-space-6);
  border: 1px dashed #cbd5e1;
  border-radius: var(--sf-radius-md);
  background: #fff;
  text-align: center;
}

.skeleton {
  position: relative;
  overflow: hidden;
  background: #e5eaf2;
  border-radius: var(--sf-radius-sm);
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: sf-skeleton 1.6s infinite;
}

@keyframes sf-skeleton {
  to {
    transform: translateX(100%);
  }
}

.skeleton-line {
  height: 0.8rem;
  margin-bottom: var(--sf-space-2);
}

.skeleton-line:last-child {
  margin-bottom: 0;
}

.table-responsive {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  text-align: start;
  padding: 0.56rem;
  border-bottom: 1px solid #e5e7eb;
}

.table th {
  color: #475569;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.table tr:hover td {
  background: #f8fbff;
}

.table-striped tbody tr:nth-child(odd) td {
  background: #fbfdff;
}

.align-middle td,
.align-middle th {
  vertical-align: middle;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 var(--sf-space-3);
  padding: 0;
  gap: 0.45rem;
  color: var(--sf-color-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  margin-inline-end: 0.45rem;
  color: #94a3b8;
}

.pagination {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: var(--sf-space-2);
}

.page-link {
  border: 1px solid #cbd5e1;
  border-radius: var(--sf-radius-sm);
  padding: 0.36rem 0.62rem;
  color: #334155;
  background: #fff;
}

.page-item.disabled .page-link {
  opacity: 0.45;
  pointer-events: none;
}

.list-group,
.list-group-flush {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-group-item {
  border-bottom: 1px solid #e2e8f0;
  padding: var(--sf-space-2) 0;
}

.list-group-item:last-child {
  border-bottom: 0;
}

.form-control,
.form-select,
textarea {
  width: 100%;
  border: 1px solid #d1d9e6;
  border-radius: var(--sf-radius-sm);
  background: #fff;
  color: var(--sf-color-text);
  padding: 0.5rem 0.66rem;
  font-family: inherit;
}

.form-control-sm,
.form-select-sm {
  padding: 0.35rem 0.56rem;
  font-size: 0.84rem;
}

.form-label {
  display: block;
  margin-bottom: var(--sf-space-1);
}

.form-check {
  display: flex;
  align-items: center;
  gap: var(--sf-space-2);
}

.form-check-input {
  width: 1rem;
  height: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sf-space-1);
  border-radius: var(--sf-radius-sm);
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  padding: 0.45rem 0.78rem;
  font-weight: 600;
  transition: transform var(--sf-motion-fast), box-shadow var(--sf-motion-fast), background var(--sf-motion-fast), color var(--sf-motion-fast);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.6;
  pointer-events: none;
}

.btn-sm {
  padding: 0.33rem 0.6rem;
  font-size: 0.84rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--sf-color-primary), var(--sf-color-primary-600));
  border-color: var(--sf-color-primary-600);
}

.btn-outline-primary {
  border-color: var(--sf-color-primary);
  color: var(--sf-color-primary-600);
  background: #fff;
}

.btn-outline-secondary {
  border-color: #94a3b8;
  color: #334155;
  background: #fff;
}

.btn-outline-success {
  border-color: #0d9488;
  color: #0f766e;
  background: #fff;
}

.btn-outline-danger {
  border-color: #ef4444;
  color: #b91c1c;
  background: #fff;
}

.btn-ghost {
  border-color: transparent;
  color: #334155;
  background: transparent;
}

.btn-link {
  border: 0;
  background: none;
  color: var(--sf-color-primary-600);
  padding: 0;
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  font-size: 0.76rem;
  padding: 0.2rem 0.5rem;
}

.text-bg-primary { background: #1d4ed8; color: #fff; }
.text-bg-success { background: #0f766e; color: #fff; }
.text-bg-light { background: #eef2ff; color: #334155; }

.alert {
  border: 1px solid #fecaca;
  background: #fef2f2;
  border-radius: var(--sf-radius-sm);
  color: #991b1b;
  padding: var(--sf-space-3);
}

.alert-warning {
  border-color: #fde68a;
  background: #fffbeb;
  color: #92400e;
}

.alert-light {
  border-color: #dbe4f0;
  background: #fff;
  color: #334155;
}

.alert-danger {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--sf-space-2);
}

.h1, h1 { font-size: clamp(1.6rem, 3.3vw, 2.2rem); }
.h2, h2 { font-size: clamp(1.35rem, 2.6vw, 1.75rem); }
.h3, h3 { font-size: clamp(1.2rem, 2.1vw, 1.45rem); }
.h4, h4 { font-size: 1.15rem; }
.h5, h5 { font-size: 1rem; }
.h6, h6 { font-size: 0.92rem; }

.text-center { text-align: center !important; }
.text-muted { color: var(--sf-color-muted) !important; }
.text-success { color: #0f766e !important; }
.text-danger { color: #b91c1c !important; }
.small { font-size: 0.86rem; }
.fw-bold { font-weight: 700; }
.fw-semibold { font-weight: 600; }

.d-flex { display: flex !important; }
.d-block { display: block !important; }
.d-none { display: none !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-center { justify-content: center !important; }
.align-items-center { align-items: center !important; }
.align-items-end { align-items: flex-end !important; }
.flex-wrap { flex-wrap: wrap !important; }
.gap-2 { gap: var(--sf-space-2) !important; }
.gap-3 { gap: var(--sf-space-3) !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--sf-space-1) !important; }
.mb-2 { margin-bottom: var(--sf-space-2) !important; }
.mb-3 { margin-bottom: var(--sf-space-3) !important; }
.mb-4 { margin-bottom: var(--sf-space-4) !important; }
.mt-1 { margin-top: var(--sf-space-1) !important; }
.mt-2 { margin-top: var(--sf-space-2) !important; }
.mt-3 { margin-top: var(--sf-space-3) !important; }
.mt-4 { margin-top: var(--sf-space-4) !important; }
.mt-5 { margin-top: var(--sf-space-6) !important; }
.ms-2 { margin-inline-start: var(--sf-space-2) !important; }
.me-1 { margin-inline-end: var(--sf-space-1) !important; }
.pt-3 { padding-top: var(--sf-space-3) !important; }
.py-3 { padding-block: var(--sf-space-3) !important; }
.px-0 { padding-inline: 0 !important; }
.rounded { border-radius: var(--sf-radius-sm); }
.border { border: 1px solid var(--sf-color-border) !important; }
.shadow-sm { box-shadow: var(--sf-shadow-sm) !important; }
.bg-white { background: #fff !important; }
.border-top { border-top: 1px solid var(--sf-color-border) !important; }
.border-bottom { border-bottom: 1px solid var(--sf-color-border) !important; }
.list-unstyled { list-style: none; margin: 0; padding: 0; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--sf-space-3);
}

.g-2 { gap: var(--sf-space-2) !important; }
.g-3 { gap: var(--sf-space-3) !important; }
.g-4 { gap: var(--sf-space-4) !important; }

.col-12 { grid-column: span 12; }
.col-md-2, .col-md-3, .col-md-4, .col-md-6,
.col-lg-4, .col-lg-6, .col-lg-8 { grid-column: span 12; }

@media (min-width: 768px) {
  .col-md-2 { grid-column: span 2; }
  .col-md-3 { grid-column: span 3; }
  .col-md-4 { grid-column: span 4; }
  .col-md-6 { grid-column: span 6; }
}

@media (min-width: 992px) {
  .col-lg-4 { grid-column: span 4; }
  .col-lg-6 { grid-column: span 6; }
  .col-lg-8 { grid-column: span 8; }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 0;
  box-shadow: var(--sf-shadow-focus);
}

@media (min-width: 992px) {
  .navbar-card__panel {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .site-topbar__actions {
    display: none;
  }

  .navbar-card__panel {
    display: none;
  }

  .navbar-card__panel.is-open {
    display: flex;
  }

  .navbar-card {
    flex-wrap: wrap;
    padding: var(--sf-space-2) var(--sf-space-3);
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-inline-start: auto;
  }

  .navbar-card__panel {
    position: fixed;
    inset-inline: 0;
    top: 7.5rem;
    bottom: 0;
    z-index: var(--sf-z-drawer);
    background: #fff;
    border-top: 1px solid var(--sf-color-border);
    padding: var(--sf-space-4);
    flex-direction: column;
    align-items: stretch;
    gap: var(--sf-space-4);
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--sf-motion-normal), opacity var(--sf-motion-normal);
    justify-content: flex-start;
    flex: none;
    width: 100%;
  }

  .navbar-card__panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .navbar-signout-form {
    display: none;
  }

  .navbar-nav {
    flex-wrap: wrap;
  }

  .listing-layout {
    grid-template-columns: 1fr;
  }

  .listing-sidebar {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    top: auto;
    z-index: var(--sf-z-drawer);
    border-radius: var(--sf-radius-lg) var(--sf-radius-lg) 0 0;
    max-height: 78vh;
    overflow: auto;
    transform: translateY(100%);
    transition: transform var(--sf-motion-normal);
  }

  .listing-sidebar.is-open {
    transform: translateY(0);
  }

  .pdp-layout {
    grid-template-columns: 1fr;
  }

  .pdp-buybox-card {
    position: static;
    order: 2;
  }

  .pdp-info-card {
    order: 3;
  }

  .pdp-gallery-card {
    order: 1;
  }

  .pdp-highlight-grid {
    grid-template-columns: 1fr;
  }

  .pdp-specs__row {
    grid-template-columns: 1fr;
    gap: var(--sf-space-1);
  }

  .pdp-specs__row dd {
    text-align: start;
  }

  .mobile-bottom-nav {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: var(--sf-z-header);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--sf-color-border);
    background: #fff;
  }

  .mobile-bottom-nav__item {
    text-align: center;
    padding: var(--sf-space-3) var(--sf-space-2);
    color: #334155;
    font-size: 0.82rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .product-grid--marketplace {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .product-grid--listing:has(> :only-child) {
    grid-template-columns: minmax(200px, 100%);
    justify-content: stretch;
  }

  .category-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sf-product-card__actions {
    flex-wrap: wrap;
  }

  .btn-storefront-cart span:last-child {
    display: none;
  }

  .floating-support-btn {
    inset-inline-end: 1rem;
    bottom: 4.5rem;
  }
}

/* CMS widgets + hero carousel */
.header-banner-strip {
  background: linear-gradient(90deg, var(--storefront-navy-dark), var(--storefront-navy));
  color: #fff;
}

.header-banner-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sf-space-2);
  flex-wrap: wrap;
  padding: 0.45rem 1rem;
  font-size: 0.84rem;
}

.header-banner-strip__title {
  font-weight: 700;
}

.cms-widget__body {
  color: inherit;
}

.cms-widget__body a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cms-widget__body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.home-hero {
  margin-bottom: var(--sf-space-4);
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--storefront-radius) + 4px);
  box-shadow: var(--storefront-shadow);
  background: var(--storefront-navy);
}

.hero-carousel__track {
  position: relative;
  min-height: clamp(240px, 34vw, 420px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 480ms ease, visibility 480ms ease;
  background: linear-gradient(135deg, var(--storefront-navy-dark), var(--storefront-navy));
}

.hero-slide--orange {
  background: linear-gradient(135deg, var(--storefront-orange-dark), var(--storefront-navy));
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero-slide__layout {
  display: grid;
  grid-template-columns: 1fr;
  min-height: clamp(240px, 34vw, 420px);
}

.hero-slide--has-image .hero-slide__layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.hero-slide__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sf-space-3);
  padding: clamp(1.75rem, 4vw, 3.5rem);
  color: #fff;
  max-width: 44rem;
}

.hero-carousel--interactive .hero-slide__layout {
  padding-inline: clamp(3.5rem, 6vw, 4.75rem);
  padding-bottom: 2.75rem;
}

.hero-slide--has-image .hero-slide__content {
  padding-inline-end: clamp(1rem, 2.5vw, 2rem);
}

.hero-slide__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  background: rgba(255, 255, 255, 0.05);
}

.hero-slide__image {
  width: 100%;
  max-width: min(100%, 22rem);
  height: auto;
  max-height: clamp(180px, 28vw, 340px);
  object-fit: contain;
  border-radius: calc(var(--storefront-radius) + 2px);
  filter: drop-shadow(0 12px 28px rgba(15, 26, 46, 0.28));
}

.hero-slide__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1.35;
}

.hero-slide__subtitle {
  margin: 0;
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
}

.hero-slide__cta {
  align-self: flex-start;
  margin-top: var(--sf-space-1);
}

.hero-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--storefront-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(15, 26, 46, 0.2);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.hero-carousel__nav:hover,
.hero-carousel__nav:focus-visible {
  background: #fff;
  color: var(--storefront-orange-dark);
  box-shadow: 0 10px 26px rgba(15, 26, 46, 0.24);
}

.hero-carousel__nav .sf-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.hero-carousel__nav--prev {
  inset-inline-start: 1rem;
}

.hero-carousel__nav--next {
  inset-inline-end: 1rem;
}

.hero-carousel__dots {
  position: absolute;
  inset-inline: 0;
  bottom: 0.85rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  z-index: 2;
}

.hero-carousel__dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}

.hero-carousel__dot.is-active {
  width: 1.35rem;
  background: var(--storefront-orange);
}

@media (max-width: 767px) {
  .hero-slide--has-image .hero-slide__layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .hero-carousel--interactive .hero-slide__layout {
    padding-inline: clamp(3rem, 8vw, 3.75rem);
    padding-bottom: 2.5rem;
  }

  .hero-slide--has-image .hero-slide__media {
    order: -1;
    padding-block-end: 0;
  }

  .hero-slide__content {
    padding: clamp(1.5rem, 5vw, 2.25rem);
  }

  .hero-slide--has-image .hero-slide__content {
    padding-block-start: 0;
    padding-inline: clamp(1.5rem, 5vw, 2.25rem);
  }

  .hero-slide__image {
    max-height: clamp(140px, 36vw, 220px);
  }

  .hero-carousel__nav {
    width: 2.35rem;
    height: 2.35rem;
  }
}

.campaign-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sf-space-3);
}

.campaign-card {
  border: 1px solid var(--storefront-border);
  border-radius: var(--storefront-radius);
  background: linear-gradient(180deg, #fff, #f8fafc);
  padding: var(--sf-space-4);
}

.campaign-card__title {
  margin: 0 0 var(--sf-space-2);
  font-size: 1rem;
  color: var(--storefront-navy);
}

.trust-strip {
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.trust-badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--sf-space-3);
  margin-bottom: var(--sf-space-3);
}

.trust-badge-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sf-space-2);
  padding: var(--sf-space-3);
  border: 1px solid var(--storefront-border);
  border-radius: var(--storefront-radius);
  background: #fff;
  color: var(--storefront-navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
}

.trust-badge-card img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
}

.trust-content__title {
  margin: 0 0 var(--sf-space-2);
  font-size: 0.95rem;
  color: var(--storefront-navy);
}

.footer-managed-trust .cms-widget + .cms-widget,
.footer-managed-policy .cms-widget + .cms-widget {
  margin-top: var(--sf-space-3);
}

/* Marketplace home + product components */
.home-section-card {
  background: var(--storefront-card);
  border: 1px solid var(--storefront-border);
  border-radius: var(--storefront-radius);
  box-shadow: var(--storefront-shadow);
  padding: var(--sf-space-5);
  margin-bottom: var(--sf-space-4);
}

.home-section-card__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--storefront-navy);
}

.home-section-card__desc {
  margin: 0 0 var(--sf-space-3);
}

.home-section-card--cta {
  padding-block: var(--sf-space-4);
}

.section-head {
  margin-bottom: var(--sf-space-4);
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #e8f2fb;
  color: var(--storefront-link);
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  font-size: 0.84rem;
  text-decoration: none;
}

.btn-view-all:hover,
.btn-view-all:focus-visible {
  background: #dbeafe;
  color: #1d4ed8;
}

.btn-view-all--lg {
  padding: 0.55rem 1.4rem;
  font-size: 0.92rem;
}

.btn-storefront-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sf-space-1);
  border: 0;
  border-radius: 0.55rem;
  background: var(--storefront-orange);
  color: #fff;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
}

.btn-storefront-cta:hover,
.btn-storefront-cta:focus-visible {
  background: var(--storefront-orange-dark);
  color: #fff;
}

.btn-storefront-account {
  border: 1px solid var(--storefront-border);
  background: #fff;
  color: var(--storefront-navy);
  border-radius: 0.55rem;
  font-weight: 600;
}

.btn-storefront-cart {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sf-space-1);
  border: 0;
  border-radius: 0.55rem;
  background: var(--storefront-orange);
  color: #fff;
  font-weight: 700;
  padding: 0.45rem 0.7rem;
  font-size: 0.82rem;
  min-height: 2.35rem;
}

.btn-storefront-cart:hover,
.btn-storefront-cart:focus-visible {
  background: var(--storefront-orange-dark);
  color: #fff;
}

.category-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: var(--sf-space-3);
}

.category-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sf-space-2);
  padding: var(--sf-space-3) var(--sf-space-2);
  border: 1px solid var(--storefront-border);
  border-radius: var(--storefront-radius);
  background: #fff;
  color: var(--storefront-navy);
  text-align: center;
  min-height: 7.5rem;
  transition: transform var(--sf-motion-fast), box-shadow var(--sf-motion-fast);
}

.category-icon-card:hover,
.category-icon-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--storefront-shadow);
  color: var(--storefront-navy);
}

.category-icon-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: #f8fafc;
  border: 1px solid var(--storefront-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.category-icon-card__label {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}

.product-grid--marketplace {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--sf-space-4);
  width: 100%;
}

.product-grid--listing {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.product-grid--listing:has(> :only-child) {
  grid-template-columns: minmax(240px, 300px);
  justify-content: center;
}

@media (min-width: 1200px) {
  .product-grid--marketplace:not(.product-grid--listing) {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  }

  .product-grid--listing {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

.sf-product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  background: var(--storefront-card);
  border: 1px solid var(--storefront-border);
  border-radius: var(--storefront-radius);
  overflow: hidden;
  transition: transform var(--sf-motion-fast), box-shadow var(--sf-motion-fast);
}

.sf-product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--storefront-shadow);
}

.sf-product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: #f8fafc;
  overflow: hidden;
}

.sf-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sf-product-card__media--empty .sf-product-card__placeholder,
.sf-product-card__placeholder {
  display: none;
}

.sf-product-card__media--empty .sf-product-card__placeholder {
  display: flex;
}

.sf-product-card__placeholder {
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 600;
  background: repeating-linear-gradient(
    -45deg,
    #f8fafc,
    #f8fafc 10px,
    #f1f5f9 10px,
    #f1f5f9 20px
  );
}

.sf-product-card__body {
  padding: var(--sf-space-3);
  display: flex;
  flex-direction: column;
  gap: var(--sf-space-2);
  flex: 1 1 auto;
}

.sf-product-card__title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.sf-product-card__title a {
  color: var(--storefront-navy);
}

.sf-product-card__price {
  text-align: center;
}

.sf-product-card__price-current {
  font-size: 0.95rem;
  color: var(--storefront-navy);
}

.sf-product-card__actions {
  margin-top: auto;
  display: flex;
  align-items: stretch;
  gap: var(--sf-space-1);
  flex-wrap: wrap;
}

.listing-content .sf-product-card__actions {
  flex-wrap: nowrap;
}

.listing-content .btn-storefront-cart {
  font-size: 0.78rem;
  padding-inline: 0.5rem;
}

.listing-content .btn-storefront-cart span:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sf-product-card__icon-btn {
  width: 2.35rem;
  min-width: 2.35rem;
  height: 2.35rem;
  border: 0;
  border-radius: 0.5rem;
  background: var(--storefront-navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  cursor: not-allowed;
}

.sf-product-card__cart-form {
  flex: 1 1 auto;
  margin: 0;
  min-width: 0;
}

.empty-state--compact {
  padding: var(--sf-space-4);
}

.seller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--sf-space-3);
}

.seller-card {
  border: 1px solid var(--storefront-border);
  border-radius: var(--storefront-radius);
  padding: var(--sf-space-3);
  background: #fff;
}

.seller-card__name {
  margin: 0 0 var(--sf-space-2);
  font-size: 0.95rem;
}

.seller-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.floating-support-btn {
  position: fixed;
  inset-inline-end: 1.5rem;
  bottom: 1.5rem;
  z-index: calc(var(--sf-z-header) - 1);
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.35);
  text-decoration: none;
}

.floating-support-btn:hover,
.floating-support-btn:focus-visible {
  color: #fff;
  transform: translateY(-2px);
}

.sf-icon {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.sf-icon--search {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
}

.sf-icon--cart {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49A1 1 0 0 0 20 4H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49A1 1 0 0 0 20 4H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E");
}

.sf-icon--user {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}

.sf-icon--menu {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z'/%3E%3C/svg%3E");
}

.sf-icon--heart {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='m12 21.35-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='m12 21.35-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}

.sf-icon--compare {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M9 3 5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M9 3 5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z'/%3E%3C/svg%3E");
}

.sf-icon--category {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z'/%3E%3C/svg%3E");
}

.sf-icon--chevron-left {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
}

.sf-icon--chevron-right {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M10 6 8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M10 6 8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
}

.sf-icon--chat {
  width: 1.35rem;
  height: 1.35rem;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E");
}

.article-detail {
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(1rem, 2.5vw, 2rem);
}

.cms-page__header {
  display: flex;
  flex-direction: column;
  gap: var(--sf-space-2);
  margin-bottom: var(--sf-space-4);
}

.cms-page--articles {
  padding: clamp(1rem, 2.6vw, 2rem);
}

.cms-page__lead {
  margin: 0;
  color: #475569;
  line-height: 1.85;
}

.cms-page__meta {
  margin: 0;
  color: var(--sf-color-muted);
  font-size: 0.88rem;
}

.cms-page__empty {
  margin: 0;
  padding: var(--sf-space-4);
  border: 1px dashed #cbd5e1;
  border-radius: var(--sf-radius-md);
  background: #fff;
  color: #64748b;
  text-align: center;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--sf-space-3);
}

@media (max-width: 767px) {
  .cms-page--articles {
    padding: var(--sf-space-3);
  }
}

.article-card {
  border: 1px solid var(--storefront-border);
  border-radius: var(--sf-radius-md);
  background: #fff;
  padding: var(--sf-space-3);
  transition: transform var(--sf-motion-fast), box-shadow var(--sf-motion-fast);
  display: flex;
  flex-direction: column;
  gap: var(--sf-space-2);
}

.article-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sf-shadow-sm);
}

.article-card h2 {
  margin: 0;
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  line-height: 1.6;
}

.article-card h2 a {
  color: #b45309;
}

.article-card h2 a:hover {
  color: #92400e;
}

.article-card p {
  margin: 0;
  color: #334155;
  line-height: 1.8;
}

.article-card__media {
  display: block;
  margin: calc(var(--sf-space-3) * -1) calc(var(--sf-space-3) * -1) 0;
  border-radius: calc(var(--sf-radius-md) - 2px) calc(var(--sf-radius-md) - 2px) 0 0;
  overflow: hidden;
  background: #f8fafc;
}

.article-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.article-card__date {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbe4f0;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  color: var(--sf-color-muted);
  font-size: 0.82rem;
  background: #f8fbff;
}

.article-detail__hero-cover {
  margin: 0 0 var(--sf-space-4);
  border-radius: var(--sf-radius-md);
  overflow: hidden;
  border: 1px solid #dbe4f0;
  background: #f8fafc;
  box-shadow: var(--sf-shadow-sm);
}

.article-detail__hero-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.article-detail__header {
  margin-bottom: var(--sf-space-4);
  padding-bottom: var(--sf-space-3);
  border-bottom: 1px solid var(--storefront-border);
}

.article-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sf-space-2);
  color: var(--sf-color-muted);
  font-size: 0.88rem;
  margin-bottom: var(--sf-space-2);
}

.article-detail__date,
.article-detail__reading-time {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbe4f0;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  background: #f8fbff;
}

.article-detail__summary {
  margin: 0;
  color: #334155;
  font-size: 1rem;
  line-height: 1.9;
}

.article-detail__body {
  color: #0f172a;
  line-height: 2;
}

.article-detail__body > * + * {
  margin-top: var(--sf-space-3);
}

.article-detail__body h1,
.article-detail__body h2,
.article-detail__body h3,
.article-detail__body h4,
.article-detail__body h5,
.article-detail__body h6 {
  margin-top: var(--sf-space-5);
  margin-bottom: var(--sf-space-2);
  color: var(--storefront-navy);
  scroll-margin-top: 8rem;
}

.article-detail__body p,
.article-detail__body li,
.article-detail__body blockquote {
  font-size: 1.02rem;
}

.article-detail__body ul,
.article-detail__body ol {
  padding-inline-start: 1.5rem;
}

.article-detail__body blockquote {
  border-inline-start: 4px solid #c7dcff;
  background: #f8fbff;
  margin: 0;
  padding: var(--sf-space-3) var(--sf-space-4);
  border-radius: var(--sf-radius-sm);
}

.article-detail__body code {
  background: #f1f5f9;
  border-radius: 0.35rem;
  padding: 0.05rem 0.35rem;
  font-size: 0.9em;
}

.article-detail__body pre {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: var(--sf-radius-sm);
  padding: var(--sf-space-3);
  overflow-x: auto;
}

.article-detail__body pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}

.article-detail__body table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid #dbe4f0;
  border-radius: var(--sf-radius-sm);
}

.article-detail__body th,
.article-detail__body td {
  border-bottom: 1px solid #e2e8f0;
  text-align: start;
  padding: 0.55rem 0.7rem;
}

.article-detail__body thead th {
  background: #f8fafc;
  color: #334155;
  font-weight: 700;
}

.article-detail__body img {
  border-radius: var(--sf-radius-sm);
  box-shadow: var(--sf-shadow-sm);
  margin-block: var(--sf-space-2);
}

.info-page {
  display: flex;
  flex-direction: column;
  gap: var(--sf-space-4);
  padding: clamp(1rem, 2.6vw, 2rem);
  max-width: var(--sf-container-max);
  margin-inline: auto;
}

.info-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--sf-radius-xl);
  padding: clamp(1.4rem, 3vw, 2.6rem);
  color: #fff;
  background: linear-gradient(126deg, #0f172a, #1e3a8a 52%, #2563eb);
  box-shadow: var(--sf-shadow-md);
}

.info-hero::after {
  content: "";
  position: absolute;
  inset-inline-end: -60px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.info-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sf-space-3);
  max-width: 760px;
}

.info-hero__title {
  margin: 0;
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  line-height: 1.35;
}

.info-hero__lead {
  margin: 0;
  color: rgba(226, 232, 240, 0.95);
  line-height: 1.85;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
}

.info-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sf-space-2);
}

.info-hero__secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.info-hero__secondary:hover,
.info-hero__secondary:focus-visible {
  color: #0f172a;
  background: #fff;
  border-color: #fff;
}

.info-section {
  display: flex;
  flex-direction: column;
  gap: var(--sf-space-3);
}

.info-section__title {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  color: var(--storefront-navy);
}

.info-section__lead {
  margin: 0;
  color: #475569;
  line-height: 1.85;
}

.info-grid {
  display: grid;
  gap: var(--sf-space-3);
}

.info-grid--highlights {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-grid--channels {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.info-grid--trust {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sf-space-3);
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: var(--sf-space-2);
  padding: var(--sf-space-3);
  border: 1px solid var(--storefront-border);
  border-radius: var(--sf-radius-md);
  background: #fff;
  transition: transform var(--sf-motion-fast), box-shadow var(--sf-motion-fast);
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sf-shadow-sm);
}

.info-card__title {
  margin: 0;
  font-size: 1.05rem;
  color: var(--storefront-navy);
}

.info-card__body {
  margin: 0;
  color: #64748b;
  line-height: 1.75;
  flex: 1;
}

.info-card__action {
  align-self: flex-start;
  font-weight: 600;
  color: var(--storefront-orange);
  text-decoration: none;
}

.info-card__action:hover,
.info-card__action:focus-visible {
  text-decoration: underline;
  outline: 2px solid var(--storefront-orange);
  outline-offset: 2px;
}

.info-card--highlight {
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.info-card--trust {
  background: #f8fafc;
}

.info-card--privacy {
  border-inline-start: 4px solid var(--storefront-navy);
}

.info-checklist {
  margin: 0;
  padding-inline-start: 1.2rem;
  color: #475569;
  line-height: 1.85;
}

.info-checklist li + li {
  margin-top: var(--sf-space-1);
}

.info-note {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-toolbar {
  display: flex;
  flex-direction: column;
  gap: var(--sf-space-3);
}

.faq-search__input {
  width: 100%;
  border: 1px solid var(--storefront-border);
  border-radius: var(--sf-radius-md);
  padding: 0.75rem 1rem;
  font: inherit;
  background: #fff;
}

.faq-search__input:focus-visible {
  outline: 2px solid var(--storefront-navy);
  outline-offset: 2px;
  border-color: var(--storefront-navy);
}

.faq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.faq-filter {
  border: 1px solid var(--storefront-border);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  padding: 0.45rem 0.95rem;
  font: inherit;
  cursor: pointer;
  transition: background var(--sf-motion-fast), border-color var(--sf-motion-fast), color var(--sf-motion-fast);
}

.faq-filter:hover,
.faq-filter:focus-visible {
  border-color: var(--storefront-navy);
  outline: none;
}

.faq-filter.is-active {
  background: var(--storefront-navy);
  border-color: var(--storefront-navy);
  color: #fff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sf-space-2);
}

.faq-item {
  border: 1px solid var(--storefront-border);
  border-radius: var(--sf-radius-md);
  background: #fff;
  overflow: hidden;
}

.faq-item[hidden] {
  display: none;
}

.faq-item__question {
  cursor: pointer;
  padding: 0.95rem 1.1rem;
  font-weight: 600;
  color: var(--storefront-navy);
  list-style: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: "+";
  float: inline-end;
  font-weight: 700;
  color: var(--storefront-orange);
}

.faq-item[open] .faq-item__question::after {
  content: "−";
}

.faq-item__question:focus-visible {
  outline: 2px solid var(--storefront-navy);
  outline-offset: -2px;
}

.faq-item__answer {
  padding: 0 1.1rem 1rem;
  color: #475569;
  line-height: 1.8;
}

.faq-item__answer p {
  margin: 0;
}

.faq-empty[hidden] {
  display: none;
}

@media (max-width: 767px) {
  .info-split {
    grid-template-columns: 1fr;
  }

  .info-page {
    padding: var(--sf-space-3);
  }
}