/* ==========================================================================
   Storefront (buyer-facing shop) — loaded after app.css, only on /s/:slug pages.
   Every colour is derived from the tenant's accent (--color-primary-500, set
   inline in <head>), so each shop keeps its own brand while sharing one layout.
   New components are prefixed `sf-`; the few overrides of app.css classes are
   scoped to the product page and the store header/footer.
   ========================================================================== */

:root {
  --sf-brand: var(--color-primary-500);
  --sf-strong: color-mix(in oklab, var(--sf-brand) 84%, #0b1024);
  --sf-mid: hsl(from var(--sf-brand) h s calc(l * 0.8));   /* same hue as the brand, only darker */
  --sf-deep: hsl(from var(--sf-brand) h calc(s * 0.85) calc(l * 0.48));
  --sf-tint: color-mix(in oklab, var(--sf-brand) 9%, #fff);
  --sf-tint-2: color-mix(in oklab, var(--sf-brand) 17%, #fff);
  --sf-ring: color-mix(in srgb, var(--sf-brand) 38%, transparent);
  --sf-line: rgb(20 24 60 / .05);
  --sf-hot: #ff5a3c;
  --sf-shadow: 0 1px 2px rgb(20 24 60 / .04), 0 10px 30px rgb(20 24 60 / .07);
  --sf-shadow-lift: 0 2px 6px rgb(20 24 60 / .06), 0 22px 48px rgb(20 24 60 / .14);
}

/* ---------------------------------------------------------------- Modern edges (fields, cards, secondary buttons) */

input:not([type]), input[type=text], input[type=email], input[type=password], input[type=number],
input[type=search], input[type=tel], input[type=url], select, textarea {
  border: 0; border-radius: 14px; background: #eff1f9; box-shadow: inset 0 0 0 1px transparent;
}
input:hover, select:hover, textarea:hover { border: 0; background: #e8ebf6; }
input:focus, select:focus, textarea:focus { border: 0; background: #fff; box-shadow: 0 0 0 2px var(--sf-brand), 0 0 0 6px var(--sf-ring); }
input[readonly] { background: #e6e9f4; box-shadow: none; }
.card { border: 0; border-radius: 22px; box-shadow: 0 0 0 1px rgb(20 24 60 / 0.035), 0 1px 2px rgb(20 24 60 / 0.05), 0 14px 34px -14px rgb(20 24 60 / 0.18); }
.btn-secondary { color: var(--sf-strong); background: var(--sf-tint-2); box-shadow: none; }
.btn-secondary:hover { color: var(--sf-strong); background: color-mix(in oklab, var(--sf-brand) 26%, #fff); box-shadow: none; }
.alert { border: 0; border-radius: 16px; }

body { background: linear-gradient(180deg, var(--sf-tint) 0, #f6f7fb 520px); }
.sf-icon { flex: 0 0 auto; display: inline-block; vertical-align: -0.2em; }

/* ---------------------------------------------------------------- Buttons */

.sf-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 22px; border: 0; border-radius: var(--radius-pill);
  font: inherit; font-size: 14.5px; font-weight: 650; letter-spacing: -.005em; white-space: nowrap;
  cursor: pointer; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.sf-btn:hover { transform: translateY(-1px); }
.sf-btn:active { transform: translateY(0); }
.sf-btn-sm { height: 38px; padding: 0 16px; font-size: 13.5px; }
.sf-btn-lg { height: 52px; padding: 0 28px; font-size: 15.5px; }
.sf-btn-brand { color: #fff; background: linear-gradient(135deg, var(--sf-brand), var(--sf-strong)); box-shadow: 0 8px 20px var(--sf-ring); }
.sf-btn-brand:hover { color: #fff; box-shadow: 0 12px 26px var(--sf-ring); }
.sf-btn-light { color: var(--sf-deep); background: #fff; box-shadow: 0 10px 26px rgb(0 0 0 / .22); }
.sf-btn-light:hover { color: var(--sf-deep); box-shadow: 0 14px 32px rgb(0 0 0 / .28); }
.sf-btn-ghost { color: #fff; background: rgb(255 255 255 / .1); box-shadow: inset 0 0 0 1.5px rgb(255 255 255 / .38); }
.sf-btn-ghost:hover { color: #fff; background: rgb(255 255 255 / .2); }
.sf-btn-soft { color: var(--sf-strong); background: var(--sf-tint-2); }
.sf-btn-soft:hover { color: var(--sf-strong); background: color-mix(in oklab, var(--sf-brand) 26%, #fff); }

/* ---------------------------------------------------------------- Header */

.sf-header { background: rgb(255 255 255 / .88); box-shadow: 0 1px 0 var(--sf-line), 0 8px 24px rgb(20 24 60 / .04); }
.sf-header .store-header-inner { min-height: 72px; gap: 14px; }
.sf-header .store-name { font-size: 17px; font-weight: 750; letter-spacing: -.02em; }
.sf-header .store-logo { border-radius: 14px; box-shadow: 0 0 0 1px var(--sf-line); }
.sf-logo-fallback {
  display: grid; place-items: center; color: #fff; font-weight: 750; font-size: 18px;
  background: linear-gradient(145deg, var(--sf-brand), var(--sf-strong));
}
.sf-header .store-nav a { font-weight: 600; border-radius: 999px; }
.sf-header .store-nav a:hover { background: var(--sf-tint); color: var(--sf-strong); }
.sf-header-search {
  display: flex; align-items: center; gap: 8px; width: 240px; height: 40px; padding: 0 14px;
  border-radius: 999px; background: #f2f4fa; color: var(--color-text-muted);
  box-shadow: inset 0 0 0 1px transparent; transition: box-shadow .18s ease, background .18s ease, width .25s ease;
}
.sf-header-search:focus-within { background: #fff; width: 290px; box-shadow: inset 0 0 0 2px var(--sf-brand); color: var(--sf-strong); }
.sf-header-search input { flex: 1; min-width: 0; height: 100%; border: 0; outline: 0; background: transparent; box-shadow: none; padding: 0; font: inherit; font-size: 13.5px; color: var(--color-text); }
.sf-header-link { display: inline-flex; align-items: center; gap: 6px; padding: 0 12px; height: 38px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--color-text-secondary); }
.sf-header-link:hover { background: var(--sf-tint); color: var(--sf-strong); }

/* ---------------------------------------------------------------- Hero */

.sf-hero {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: 32px; padding: 56px 52px 84px; margin-bottom: 0; color: #fff;
  background:
    radial-gradient(58% 90% at 92% 0%, color-mix(in srgb, var(--sf-brand) 62%, transparent), transparent 62%),
    radial-gradient(46% 70% at 0% 100%, hsl(from var(--sf-brand) h s calc(l * 0.95)), transparent 60%),
    linear-gradient(135deg, var(--sf-mid), var(--sf-deep));
  box-shadow: 0 30px 70px color-mix(in srgb, var(--sf-deep) 45%, transparent);
}
.sf-hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.sf-hero-bg::before {
  content: ''; position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(rgb(255 255 255 / .22) 1.2px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(115deg, transparent 20%, #000 90%);
  mask-image: linear-gradient(115deg, transparent 20%, #000 90%);
}
.sf-hero-bg::after {
  content: ''; position: absolute; width: 420px; height: 420px; right: -120px; bottom: -180px; border-radius: 50%;
  background: rgb(255 255 255 / .09); filter: blur(4px);
}
.sf-hero-bg.has-banner { background: var(--sf-banner) center / cover; }
.sf-hero-bg.has-banner::before { opacity: 1; background: linear-gradient(100deg, var(--sf-deep) 8%, color-mix(in srgb, var(--sf-deep) 55%, transparent) 60%, color-mix(in srgb, var(--sf-deep) 30%, transparent)); -webkit-mask-image: none; mask-image: none; background-size: auto; }

.sf-hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 44px; align-items: center; }
.sf-live {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px 7px 12px; margin-bottom: 20px;
  border-radius: 999px; background: rgb(255 255 255 / .13); backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / .2); font-size: 12.5px; font-weight: 600; color: rgb(255 255 255 / .92);
}
.sf-live i { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgb(74 222 128 / .6); animation: sfPulse 2s infinite; }
@keyframes sfPulse { 70% { box-shadow: 0 0 0 9px rgb(74 222 128 / 0); } 100% { box-shadow: 0 0 0 0 rgb(74 222 128 / 0); } }
.sf-hero h1 { font-size: clamp(36px, 5vw, 60px); line-height: 1.04; font-weight: 780; letter-spacing: -.035em; color: #fff; margin: 0 0 14px; text-wrap: balance; }
.sf-hero-sub { max-width: 540px; margin: 0 0 26px; font-size: 17px; line-height: 1.6; color: rgb(255 255 255 / .82); }

.sf-search {
  display: flex; align-items: center; gap: 10px; max-width: 560px; padding: 6px 6px 6px 20px;
  border-radius: 999px; background: #fff; color: var(--color-text-muted);
  box-shadow: 0 18px 40px rgb(0 0 0 / .25);
}
.sf-search input { flex: 1; min-width: 0; height: 46px; border: 0; outline: 0; background: transparent; box-shadow: none; padding: 0; font: inherit; font-size: 15px; color: var(--color-text); }
.sf-search button {
  height: 46px; padding: 0 26px; border: 0; border-radius: 999px; cursor: pointer;
  font: inherit; font-size: 14.5px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--sf-brand), var(--sf-strong)); transition: filter .18s ease;
}
.sf-search button:hover { filter: brightness(1.08); }
.sf-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

.sf-stats { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 34px; padding-top: 22px; border-top: 1px solid rgb(255 255 255 / .18); }
.sf-stats div { display: flex; flex-direction: column; gap: 1px; }
.sf-stats b { font-size: 26px; font-weight: 750; letter-spacing: -.03em; line-height: 1.1; }
.sf-stats span { font-size: 12.5px; color: rgb(255 255 255 / .7); }

/* Hero showcase: real products floating on glass cards */
.sf-showcase { display: flex; flex-direction: column; gap: 12px; }
.sf-showcase-label { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgb(255 255 255 / .75); padding-left: 6px; }
.sf-mini {
  display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: 20px; color: var(--color-text);
  background: rgb(255 255 255 / .95); box-shadow: 0 18px 44px rgb(0 0 0 / .26);
  transition: transform .25s ease, box-shadow .25s ease;
}
.sf-mini:hover { color: var(--color-text); transform: translateX(-6px) scale(1.015); box-shadow: 0 24px 54px rgb(0 0 0 / .34); }
.sf-mini-1 { margin-left: 26px; }
.sf-mini-2 { margin-left: 8px; }
.sf-mini-thumb { width: 58px; height: 58px; flex: 0 0 58px; border-radius: 16px; overflow: hidden; display: grid; place-items: center; background: var(--sf-tint); }
.sf-mini-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sf-mini-thumb .product-initial { width: 100%; height: 100%; border-radius: 0; box-shadow: none; background: transparent; font-size: 22px; }
.sf-mini-info { display: flex; flex-direction: column; min-width: 0; flex: 1; line-height: 1.3; }
.sf-mini-info b { font-size: 14.5px; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sf-mini-info small { font-size: 12px; color: var(--color-text-muted); }
.sf-mini-price { font-size: 14px; font-weight: 750; color: var(--sf-strong); white-space: nowrap; }

/* ---------------------------------------------------------------- Trust strip (overlaps the hero edge) */

.sf-trust {
  position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: -40px 26px 0; padding: 8px; border-radius: 24px; background: #fff; box-shadow: var(--sf-shadow-lift);
}
.sf-trust-item { display: flex; align-items: center; gap: 13px; padding: 16px 18px; position: relative; }
.sf-trust-item + .sf-trust-item::before { content: ''; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--sf-line); }
.sf-trust-icon { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 15px; display: grid; place-items: center; color: var(--sf-strong); background: var(--sf-tint-2); }
.sf-trust-item b { display: block; font-size: 14.5px; font-weight: 700; line-height: 1.25; }
.sf-trust-item small { display: block; font-size: 12px; line-height: 1.4; color: var(--color-text-muted); }

/* ---------------------------------------------------------------- Categories */

.sf-cats { display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 8px; margin: 34px 0 0; scrollbar-width: none; }
.sf-cats::-webkit-scrollbar { display: none; }
.sf-cat {
  flex: 0 0 auto; padding: 10px 20px; border-radius: 999px; background: #fff; color: var(--color-text-secondary);
  font-size: 14px; font-weight: 650; box-shadow: 0 1px 3px rgb(20 24 60 / .1);
  transition: all .18s ease;
}
.sf-cat:hover { color: var(--sf-strong); box-shadow: 0 0 0 2px var(--sf-ring); }
.sf-cat.active { color: #fff; background: linear-gradient(135deg, var(--sf-brand), var(--sf-strong)); box-shadow: 0 8px 18px var(--sf-ring); }

/* ---------------------------------------------------------------- Section headings */

.sf-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin: 42px 0 20px; }
.sf-head h2 { margin: 0; font-size: clamp(22px, 2.6vw, 30px); font-weight: 760; letter-spacing: -.03em; }
.sf-head-sub { margin: 6px 0 0; color: var(--color-text-muted); font-size: 14px; }
.sf-head-center { justify-content: center; text-align: center; }
.sf-eyebrow {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 8px; padding: 4px 12px;
  border-radius: 999px; background: var(--sf-tint-2); color: var(--sf-strong); font-size: 12px; font-weight: 700; letter-spacing: .02em;
}

/* ---------------------------------------------------------------- Product cards */

.sf-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.sf-card {
  display: flex; flex-direction: column; overflow: hidden; border-radius: 22px; background: #fff; color: inherit;
  box-shadow: 0 0 0 1px var(--sf-line), var(--sf-shadow);
  transition: transform .25s cubic-bezier(.2, .7, .2, 1), box-shadow .25s ease;
}
.sf-card:hover { color: inherit; transform: translateY(-6px); box-shadow: 0 0 0 2px var(--sf-ring), var(--sf-shadow-lift); }
.sf-card-media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; display: grid; place-items: center; background: var(--sf-tint); }
.sf-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2, .7, .2, 1); }
.sf-card:hover .sf-card-media img { transform: scale(1.07); }
.sf-card-media .product-initial { width: 76px; height: 76px; border-radius: 24px; font-size: 32px; font-weight: 750; }
.sf-card-soldout { position: absolute; inset: 0; display: grid; place-items: center; background: rgb(246 247 251 / .72); backdrop-filter: grayscale(1) blur(1px); }
.sf-card-soldout span { padding: 8px 18px; border-radius: 999px; background: rgb(20 24 60 / .85); color: #fff; font-size: 13px; font-weight: 700; }
.sf-card.is-out .sf-card-name { color: var(--color-text-muted); }

.sf-card-body { display: flex; flex-direction: column; gap: 4px; flex: 1; padding: 16px 16px 16px; }
/* Badges live beside the name, not over the photo — an overlay hid whatever
   artwork sat in that corner (a logo, a mascot) instead of just labelling it. */
.sf-card-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 1px; }
.sf-tag { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; line-height: 1.2; color: #fff; }
.sf-tag-hot { background: linear-gradient(135deg, #ff7a3c, var(--sf-hot)); }
.sf-tag-low { background: rgb(20 24 60 / .82); }
.sf-card-cat { font-size: 11.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--sf-strong); opacity: .85; }
.sf-card-name { margin: 0; font-size: 16px; font-weight: 700; line-height: 1.32; letter-spacing: -.015em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sf-card-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 4px 12px; margin-top: 2px; font-size: 12px; color: var(--color-text-muted); }
.sf-auto { display: inline-flex; align-items: center; gap: 3px; color: var(--color-success); font-weight: 650; }
.sf-card-foot { margin-top: auto; padding-top: 14px; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.sf-price { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.sf-price small { font-size: 11px; color: var(--color-text-muted); }
.sf-price b { font-size: 19px; font-weight: 780; letter-spacing: -.03em; color: var(--color-text); white-space: nowrap; }
.sf-card-btn {
  display: inline-flex; align-items: center; gap: 5px; height: 38px; padding: 0 15px; border-radius: 999px; flex: 0 0 auto;
  font-size: 13px; font-weight: 700; color: var(--sf-strong); background: var(--sf-tint-2); transition: all .2s ease;
}
.sf-card:hover .sf-card-btn { color: #fff; background: linear-gradient(135deg, var(--sf-brand), var(--sf-strong)); box-shadow: 0 8px 18px var(--sf-ring); }
.sf-card:hover .sf-card-btn .sf-icon { transform: translateX(2px); }
.sf-card-btn .sf-icon { transition: transform .2s ease; }

.sf-empty { text-align: center; padding: 56px 20px; border-radius: 24px; background: #fff; box-shadow: var(--sf-shadow); }
.sf-empty-icon { width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 20px; display: grid; place-items: center; color: var(--sf-strong); background: var(--sf-tint-2); }
.sf-empty h3 { font-size: 19px; margin-bottom: 4px; }
.sf-empty p { color: var(--color-text-muted); margin-bottom: 16px; }

/* ---------------------------------------------------------------- How to buy */

.sf-steps-wrap { margin-top: 72px; padding: 6px 0 4px; }
.sf-steps { list-style: none; margin: 8px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; position: relative; counter-reset: none; }
.sf-steps::before { content: ''; position: absolute; left: 12%; right: 12%; top: 46px; border-top: 2px dashed color-mix(in srgb, var(--sf-brand) 40%, transparent); }
.sf-steps li { position: relative; text-align: center; padding: 26px 20px 24px; border-radius: 24px; background: #fff; box-shadow: 0 0 0 1px var(--sf-line), var(--sf-shadow); }
.sf-step-num {
  display: grid; place-items: center; width: 42px; height: 42px; margin: 0 auto 14px; border-radius: 50%;
  font-size: 17px; font-weight: 780; color: #fff; background: linear-gradient(135deg, var(--sf-brand), var(--sf-strong));
  box-shadow: 0 0 0 6px var(--sf-tint-2), 0 8px 18px var(--sf-ring); position: relative;
}
.sf-steps h3 { font-size: 16.5px; font-weight: 720; margin-bottom: 4px; }
.sf-steps p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--color-text-muted); }

/* ---------------------------------------------------------------- FAQ */

.sf-faq { margin-top: 56px; }
.sf-faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.sf-faq details { border-radius: 18px; background: #fff; box-shadow: 0 0 0 1px var(--sf-line), var(--shadow-xs); transition: box-shadow .2s ease; }
.sf-faq details[open] { box-shadow: 0 0 0 2px var(--sf-ring), var(--sf-shadow); }
.sf-faq summary { list-style: none; cursor: pointer; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 15.5px; font-weight: 680; }
.sf-faq summary::-webkit-details-marker { display: none; }
/* Drawn from two bars instead of a "+"/"−" glyph: text characters never sit
   perfectly centred in a circle (font metrics put "+" and "−" at different
   optical heights), so the icon looked off no matter how it was nudged. Bars
   sized in flat pixels centre exactly, and shrinking the vertical one to 0
   animates "+" into "−" for free. */
.sf-faq summary::after {
  content: '';
  flex: 0 0 30px; height: 30px; border-radius: 50%;
  background-color: var(--sf-tint-2);
  background-image: linear-gradient(var(--sf-strong), var(--sf-strong)), linear-gradient(var(--sf-strong), var(--sf-strong));
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 2px, 2px 12px;
  transition: background-size .18s ease;
}
.sf-faq details[open] summary::after { background-size: 12px 2px, 2px 0; }
.sf-faq details p { margin: 0; padding: 0 22px 20px; color: var(--color-text-secondary); line-height: 1.75; white-space: pre-line; }

/* ---------------------------------------------------------------- CTA band */

.sf-cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin-top: 60px; padding: 38px 44px; border-radius: 30px; color: #fff; position: relative; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(50% 120% at 100% 0%, color-mix(in srgb, var(--sf-brand) 60%, transparent), transparent 65%),
    linear-gradient(135deg, var(--sf-mid), var(--sf-deep));
  box-shadow: 0 24px 56px color-mix(in srgb, var(--sf-deep) 40%, transparent);
}
.sf-cta-band h2 { margin: 0 0 4px; color: #fff; font-size: clamp(20px, 2.6vw, 28px); font-weight: 760; }
.sf-cta-band p { margin: 0; color: rgb(255 255 255 / .8); }

/* ---------------------------------------------------------------- Footer */

.sf-footer { margin-top: 72px; border-top: 0; background: var(--sf-deep); color: rgb(255 255 255 / .75); }
.sf-footer .store-footer-inner { padding: 52px 20px 30px; }
.sf-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.sf-footer .store-name { color: #fff; }
.sf-footer .header-brand:hover .store-name { color: #fff; }
.sf-footer-brand p { margin: 14px 0 0; max-width: 340px; font-size: 14px; line-height: 1.7; color: rgb(255 255 255 / .68); }
.sf-footer h4 { margin: 0 0 14px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgb(255 255 255 / .95); }
.sf-footer-grid a:not(.header-brand) { display: block; padding: 5px 0; font-size: 14px; color: rgb(255 255 255 / .7); }
.sf-footer-grid a:not(.header-brand):hover { color: #fff; }
.sf-footer-muted { font-size: 13.5px; color: rgb(255 255 255 / .6); }
.sf-footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgb(255 255 255 / .12); font-size: 12.5px; color: rgb(255 255 255 / .55); }

/* ---------------------------------------------------------------- Floating WhatsApp */

.sf-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 40; display: inline-flex; align-items: center; gap: 0;
  height: 56px; padding: 0 16px; border-radius: 999px; color: #fff; background: #25d366; font-weight: 700; font-size: 14px;
  box-shadow: 0 12px 28px rgb(37 211 102 / .45); overflow: hidden; transition: all .25s ease;
}
.sf-fab span { max-width: 0; opacity: 0; white-space: nowrap; transition: all .25s ease; }
.sf-fab:hover { color: #fff; gap: 8px; transform: translateY(-2px); }
.sf-fab:hover span { max-width: 140px; opacity: 1; }

/* ---------------------------------------------------------------- Product page */

.pd-image { border-radius: 30px; box-shadow: 0 0 0 1px var(--sf-line), var(--sf-shadow-lift); }
.pd-summary h1 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 780; letter-spacing: -.035em; }
.pd-price-line b { font-size: 36px; font-weight: 790; letter-spacing: -.035em; color: var(--sf-strong); }
.sf-pd-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.sf-pd-chips span { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: var(--sf-tint-2); color: var(--sf-strong); font-size: 12.5px; font-weight: 650; }

.sf-buy-card { position: sticky; overflow: hidden; border-radius: 26px; padding: 28px; box-shadow: 0 0 0 1px var(--sf-line), var(--sf-shadow-lift); }
.sf-buy-card::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: linear-gradient(90deg, var(--sf-brand), color-mix(in oklab, var(--sf-brand) 55%, #b46bff)); }
.sf-buy-card .btn:not(.btn-secondary) { background: linear-gradient(135deg, var(--sf-brand), var(--sf-strong)); box-shadow: 0 10px 24px var(--sf-ring); color: #fff; border: 0; }
.sf-buy-card .btn:not(.btn-secondary):hover:not(:disabled) { filter: brightness(1.08); transform: translateY(-1px); }
.sf-buy-card .btn:disabled { background: #e3e5ee; box-shadow: none; color: #9a9cad; }
.sf-buy-card .btn-secondary { color: var(--sf-strong); background: var(--sf-tint-2); box-shadow: inset 0 0 0 1.5px color-mix(in oklab, var(--sf-brand) 22%, transparent); }
.sf-buy-card .btn-secondary:hover { box-shadow: inset 0 0 0 1.5px color-mix(in oklab, var(--sf-brand) 22%, transparent); }
.sf-buy-card .total-row { border-top: 1px solid var(--sf-line); }
.sf-buy-card .total-row b { font-size: 28px; font-weight: 790; color: var(--sf-strong); }
.sf-buy-assure { list-style: none; display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap; margin: 18px 0 0; padding: 14px 0 0; border-top: 1px solid var(--sf-line); font-size: 12px; font-weight: 600; color: var(--color-text-secondary); }
.sf-buy-assure li { display: inline-flex; align-items: center; gap: 6px; }
.sf-buy-assure .sf-icon { color: var(--color-success); }

.variant-option { border-radius: 16px; padding: 14px 14px 14px 16px; background: #fff; box-shadow: 0 0 0 1px var(--sf-line), 0 2px 8px rgb(20 24 60 / .06); }
.variant-option:hover { box-shadow: 0 0 0 2px var(--sf-ring); }
.variant-option.selected { background: var(--sf-tint); box-shadow: 0 0 0 2.5px var(--sf-brand), 0 8px 20px var(--sf-ring); }
.variant-option .variant-price { color: var(--sf-strong); font-weight: 750; }
.variant-check { flex: 0 0 22px; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--sf-brand); opacity: 0; transform: scale(.5); transition: all .18s ease; }
.variant-option.selected .variant-check { opacity: 1; transform: scale(1); }
.variant-option:has(input:focus-visible) { outline: 3px solid var(--sf-ring); }

.buy-bar { border-radius: 22px; box-shadow: 0 0 0 1px var(--sf-line), var(--sf-shadow-lift); }
.buy-bar b { color: var(--sf-strong); }
.buy-bar .btn { background: linear-gradient(135deg, var(--sf-brand), var(--sf-strong)); color: #fff; border: 0; border-radius: 999px; }
body:has(.buy-bar) .sf-fab { bottom: 96px; }

/* ---------------------------------------------------------------- Responsive */

@media (max-width: 1100px) {
  .sf-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sf-header-search { display: none; }
}

@media (max-width: 900px) {
  .sf-hero { padding: 40px 30px 70px; border-radius: 28px; }
  .sf-hero-grid { grid-template-columns: 1fr; gap: 0; }
  .sf-showcase { display: none; }
  .sf-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); margin: -34px 14px 0; }
  .sf-trust-item:nth-child(3)::before { display: none; }
  .sf-trust-item:nth-child(n + 3) { border-top: 1px solid var(--sf-line); }
  .sf-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sf-steps::before { display: none; }
  .sf-footer-grid { grid-template-columns: 1fr 1fr; }
  .sf-footer-brand { grid-column: 1 / -1; }
  .sf-buy-card { position: relative; top: auto; }
  .sf-header-link span { display: none; }
  .sf-header-link { padding: 0 10px; }
}

@media (max-width: 640px) {
  .sf-header .store-header-inner { min-height: 62px; }
  .sf-header .store-name { max-width: 120px; font-size: 15.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .sf-hero { padding: 30px 20px 64px; border-radius: 26px; }
  .sf-hero h1 { font-size: 34px; }
  .sf-hero-sub { font-size: 15px; margin-bottom: 20px; }
  .sf-live { font-size: 11.5px; margin-bottom: 16px; }
  .sf-search { padding-left: 16px; }
  .sf-search input { height: 44px; font-size: 14.5px; }
  .sf-search button { height: 44px; padding: 0 18px; }
  .sf-cta-row { margin-top: 16px; }
  .sf-cta-row .sf-btn { flex: 1; padding: 0 14px; }
  .sf-stats { gap: 22px; margin-top: 26px; padding-top: 18px; }
  .sf-stats b { font-size: 21px; }
  .sf-trust { margin: -30px 8px 0; border-radius: 20px; padding: 4px; }
  .sf-trust-item { padding: 13px 12px; gap: 10px; }
  .sf-trust-icon { width: 38px; height: 38px; flex-basis: 38px; border-radius: 12px; }
  .sf-trust-icon .sf-icon { width: 18px; height: 18px; }
  .sf-trust-item b { font-size: 13px; }
  .sf-trust-item small { font-size: 11px; }
  .sf-cats { margin: 26px -16px 0; padding: 4px 16px 8px; }
  .sf-head { margin: 32px 0 16px; }
  .sf-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .sf-card { border-radius: 18px; }
  .sf-tag { padding: 4px 9px; font-size: 10.5px; }
  .sf-card-body { padding: 12px 12px 13px; }
  .sf-card-name { font-size: 14px; }
  .sf-card-cat { font-size: 10.5px; }
  .sf-price b { font-size: 16px; }
  .sf-card-body { padding: 12px 12px 14px; }
  .sf-card-foot { padding-top: 12px; align-items: center; gap: 8px; }
  /* Icon-only on a phone. `gap: 0` matters: the label collapses to zero width
     but its gap would not, shunting the arrow off the circle's centre. */
  .sf-card-btn {
    height: 34px; width: 34px; flex: 0 0 34px; padding: 0; gap: 0;
    justify-content: center; font-size: 0; line-height: 0;
  }
  .sf-card-btn .sf-icon { vertical-align: middle; }
  .sf-steps-wrap { margin-top: 54px; }
  .sf-steps { grid-template-columns: 1fr; }
  .sf-steps li { display: grid; grid-template-columns: 42px 1fr; column-gap: 14px; text-align: left; padding: 18px; }
  .sf-steps li .sf-step-num { grid-row: span 2; margin: 0; align-self: start; box-shadow: 0 0 0 4px var(--sf-tint-2); }
  .sf-faq summary { padding: 16px 16px; font-size: 14.5px; }
  .sf-faq details p { padding: 0 16px 16px; font-size: 14px; }
  .sf-cta-band { padding: 28px 22px; border-radius: 24px; }
  .sf-cta-band .sf-btn { width: 100%; }
  /* Brand blurb full width, then Belanja + Hubungi kami side by side in one row. */
  .sf-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 16px; }
  .sf-footer-grid > * { min-width: 0; }
  .sf-footer-grid a:not(.header-brand), .sf-footer-muted { overflow-wrap: anywhere; }
  .sf-footer h4 { margin-bottom: 10px; }
  .sf-footer .store-footer-inner { padding: 40px 16px 26px; }
  .sf-fab { right: 14px; bottom: 16px; width: 52px; height: 52px; padding: 0; justify-content: center; }
  .sf-fab span { display: none; }
  body:has(.buy-bar) .sf-fab { display: none; }
  .pd-price-line b { font-size: 30px; }
  .sf-buy-card { padding: 22px 18px; border-radius: 22px; }
  .sf-buy-assure { justify-content: center; gap: 10px 16px; }
}

/* Old browsers without relative-colour syntax: fixed tones at the logo's hue (219deg). */
@supports not (color: hsl(from red h s l)) {
  :root { --sf-mid: #0c5ef5; --sf-deep: #113b89; }
}

/* ==========================================================================
   Colour punch (the storefront used to read pale): tinted page, darker greys,
   solid brand buttons and icon tiles. Everything derives from --sf-brand.
   ========================================================================== */

:root {
  --color-text-muted: #56607f;
  --color-text-secondary: #333a5e;
  --sf-tint: color-mix(in oklab, var(--sf-brand) 13%, #fff);
  --sf-tint-2: color-mix(in oklab, var(--sf-brand) 24%, #fff);
  --sf-line: rgb(20 24 60 / .08);
}
body {
  background: linear-gradient(180deg, color-mix(in oklab, var(--sf-brand) 24%, #fff) 0, color-mix(in oklab, var(--sf-brand) 11%, #f3f5fb) 760px, color-mix(in oklab, var(--sf-brand) 8%, #f3f5fb) 100%);
}
.sf-eyebrow { background: var(--sf-tint-2); }
.sf-cat { background: var(--sf-tint-2); color: var(--sf-strong); box-shadow: none; }
.sf-cat:hover { background: color-mix(in oklab, var(--sf-brand) 32%, #fff); box-shadow: none; }
.sf-cat.active { color: #fff; background: linear-gradient(135deg, var(--sf-brand), var(--sf-strong)); box-shadow: 0 8px 18px var(--sf-ring); }
.sf-trust-icon { color: #fff; background: linear-gradient(135deg, var(--sf-brand), var(--sf-strong)); box-shadow: 0 8px 18px -6px var(--sf-ring); }
.sf-price b { color: var(--sf-strong); }
.sf-card-btn { color: #fff; background: linear-gradient(135deg, var(--sf-brand), var(--sf-strong)); box-shadow: 0 8px 16px -6px var(--sf-ring); }
.sf-card:hover .sf-card-btn { box-shadow: 0 10px 22px -6px var(--sf-ring); filter: brightness(1.06); }
.sf-steps li { background: linear-gradient(180deg, #fff, var(--sf-tint)); }
.sf-faq summary::after {
  /* First-listed background layer paints on top, so the bars have to come
     before the brand fill or the fill just covers them. */
  background-color: transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff), linear-gradient(135deg, var(--sf-brand), var(--sf-strong));
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 2px, 2px 12px, 100% 100%;
}
.sf-faq details[open] summary::after { background-size: 12px 2px, 2px 0, 100% 100%; }

/* ================================================================ Product detail */

.pdx-band {
  position: relative; isolation: isolate; overflow: hidden; border-radius: 30px; color: #fff;
  padding: 24px 44px 118px;
  background:
    radial-gradient(58% 90% at 92% 0%, color-mix(in srgb, var(--sf-brand) 62%, transparent), transparent 62%),
    radial-gradient(46% 70% at 0% 100%, hsl(from var(--sf-brand) h s calc(l * 0.95)), transparent 60%),
    linear-gradient(135deg, var(--sf-mid), var(--sf-deep));
  box-shadow: 0 30px 70px color-mix(in srgb, var(--sf-deep) 45%, transparent);
}
.pdx-band::before {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: .45; pointer-events: none;
  background-image: radial-gradient(rgb(255 255 255 / .22) 1.2px, transparent 1.4px); background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(115deg, transparent 20%, #000 90%); mask-image: linear-gradient(115deg, transparent 20%, #000 90%);
}
.pdx-crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: rgb(255 255 255 / .8); }
.pdx-crumbs a { color: rgb(255 255 255 / .88); }
.pdx-crumbs a:hover { color: #fff; text-decoration: underline; }
.pdx-crumbs b { color: #fff; font-weight: 650; max-width: 42ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pdx-head { margin-top: 26px; max-width: 780px; }
.pdx-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.pdx-chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 13px; border-radius: 999px; color: #fff;
  background: rgb(255 255 255 / .16); box-shadow: inset 0 0 0 1px rgb(255 255 255 / .25); backdrop-filter: blur(8px);
  font-size: 12.5px; font-weight: 650;
}
.pdx-chip-hot { background: linear-gradient(135deg, #ff7a3c, var(--sf-hot)); box-shadow: none; }
.pdx-chip-low { background: rgb(20 24 60 / .5); box-shadow: none; }
.pdx-chip-out { background: rgb(190 40 40 / .88); box-shadow: none; }
.pdx-chip-ok i { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgb(74 222 128 / .3); }
.pdx-head h1 { margin: 0 0 14px; color: #fff; font-size: clamp(30px, 4.4vw, 50px); line-height: 1.06; font-weight: 780; letter-spacing: -.035em; text-wrap: balance; }
.pdx-sub { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 0; font-size: 14.5px; font-weight: 600; color: rgb(255 255 255 / .94); }
.pdx-sub span { display: inline-flex; align-items: center; gap: 6px; }

.pdx { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 30px; align-items: start; margin: -86px 26px 0; }
.pdx-media {
  aspect-ratio: 1 / 1; display: grid; place-items: center; overflow: hidden; border-radius: 30px; background: var(--sf-tint);
  box-shadow: 0 0 0 7px #fff, 0 30px 60px -20px rgb(20 24 60 / .4);
}
.pdx-media img { width: 100%; height: 100%; object-fit: cover; }
.pdx-media .product-initial { width: 120px; height: 120px; border-radius: 34px; font-size: 48px; font-weight: 780; }
.pdx-perks { list-style: none; display: grid; gap: 12px; margin: 30px 0 0; padding: 0; }
.pdx-perks li { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 20px; background: #fff; box-shadow: var(--sf-shadow); }
.pdx-perks li > span { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 44px; border-radius: 14px; color: #fff; background: linear-gradient(135deg, var(--sf-brand), var(--sf-strong)); box-shadow: 0 8px 16px -6px var(--sf-ring); }
.pdx-perks b { display: block; font-size: 14.5px; font-weight: 720; line-height: 1.3; }
.pdx-perks small { display: block; font-size: 12.5px; line-height: 1.45; color: var(--color-text-muted); }

.pdx-buy { padding: 30px 28px 26px; }
.pdx-price { display: flex; align-items: flex-end; flex-wrap: wrap; gap: 6px 12px; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--sf-line); }
.pdx-price small { display: block; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--color-text-muted); }
.pdx-price b { display: block; font-size: 42px; line-height: 1.05; font-weight: 800; letter-spacing: -.04em; color: var(--sf-strong); }
.pdx-from { margin-left: auto; padding: 5px 11px; border-radius: 999px; background: var(--sf-tint-2); color: var(--sf-strong); font-size: 12.5px; font-weight: 700; }
.pdx-field-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; font-size: 14px; font-weight: 750; }

.pdx .variant-list { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 22px; }
.pdx .variant-option { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 18px; background: var(--sf-tint); box-shadow: none; cursor: pointer; transition: background .15s ease, box-shadow .15s ease; }
.pdx .variant-option:hover { background: var(--sf-tint-2); box-shadow: none; }
.pdx .variant-option.selected { background: #fff; box-shadow: 0 0 0 2px var(--sf-brand), 0 14px 28px -14px var(--sf-ring); }
.pdx .variant-option.sold-out { opacity: .5; cursor: not-allowed; }
.pdx .variant-check { order: -1; width: 24px; height: 24px; flex: 0 0 24px; opacity: 1; transform: none; color: transparent; background: #fff; box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--sf-brand) 45%, transparent); }
.pdx .variant-option.selected .variant-check { color: #fff; background: var(--sf-brand); box-shadow: none; }
.pdx .variant-info { display: flex; flex-direction: column; flex: 1; min-width: 0; line-height: 1.35; }
.pdx .variant-name { font-size: 15px; font-weight: 700; }
.pdx .variant-stock { font-size: 12px; color: var(--color-text-muted); }
.pdx .variant-price { font-size: 16px; font-weight: 800; color: var(--sf-strong); white-space: nowrap; }

.pdx-row { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 18px; margin-bottom: 20px; }
.pdx-field > label { display: block; margin: 0 0 8px; font-size: 13px; font-weight: 700; }
.pdx-stepper { display: inline-flex; align-items: center; height: 50px; border-radius: 16px; background: var(--sf-tint); }
.pdx-stepper button { width: 46px; height: 50px; border: 0; border-radius: 16px; background: transparent; color: var(--sf-strong); font: inherit; font-size: 22px; font-weight: 600; cursor: pointer; transition: background .15s ease; }
.pdx-stepper button:hover { background: var(--sf-tint-2); }
.pdx-stepper button:disabled { color: var(--color-text-muted); cursor: not-allowed; background: transparent; }
.pdx-stepper input { width: 50px; height: 50px; padding: 0; border-radius: 0; background: transparent; box-shadow: none; text-align: center; font-size: 16px; font-weight: 750; -moz-appearance: textfield; appearance: textfield; }
.pdx-stepper input::-webkit-outer-spin-button, .pdx-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdx-stepper input:focus { background: #fff; box-shadow: 0 0 0 2px var(--sf-brand); }
.pdx-seg { display: flex; gap: 4px; height: 50px; padding: 4px; border-radius: 16px; background: var(--sf-tint); }
.pdx-seg label { position: relative; flex: 1; margin: 0; }
.pdx-seg input { position: absolute; opacity: 0; pointer-events: none; }
.pdx-seg span { display: grid; place-items: center; height: 100%; border-radius: 12px; color: var(--color-text-secondary); font-size: 13.5px; font-weight: 700; cursor: pointer; transition: all .15s ease; }
.pdx-seg input:checked + span { background: #fff; color: var(--sf-strong); box-shadow: 0 6px 14px -6px var(--sf-ring); }
.pdx-seg input:disabled + span { opacity: .4; cursor: not-allowed; }
.pdx-seg input:focus-visible + span { outline: 3px solid var(--sf-ring); }

.pdx-total { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; padding: 18px 20px; border-radius: 18px; background: linear-gradient(135deg, var(--sf-tint), var(--sf-tint-2)); }
.pdx-total span { font-weight: 650; color: var(--color-text-secondary); }
.pdx-total b { font-size: 30px; font-weight: 800; letter-spacing: -.03em; color: var(--sf-strong); }
/* Two full-width pill buttons stacked this close read as one fused capsule —
   there's nothing but a thin gap and a colour change between them. A wider
   gap, a less extreme corner radius, and a visible edge on the second button
   give the eye enough to read them as two separate actions. */
.pdx-cta { display: grid; gap: 14px; }
.pdx-cta .btn { border-radius: 18px; }

.pdx-info { margin: 46px 26px 0; }
.pdx-tabs { padding: 14px 14px 34px; border-radius: 28px; background: #fff; box-shadow: var(--sf-shadow); }
.pdx-tabs > input { position: absolute; opacity: 0; pointer-events: none; }
.pdx-tabbar { display: flex; gap: 6px; width: fit-content; max-width: 100%; overflow-x: auto; padding: 6px; border-radius: 18px; background: var(--sf-tint); scrollbar-width: none; }
.pdx-tabbar::-webkit-scrollbar { display: none; }
.pdx-tabbar label { margin: 0; padding: 10px 20px; border-radius: 13px; color: var(--color-text-secondary); font-size: 14px; font-weight: 700; white-space: nowrap; cursor: pointer; transition: all .15s ease; }
.pdx-tabbar label:hover { color: var(--sf-strong); }
.pdx-tabs:has(#pdx-tab-desc:checked) label[for="pdx-tab-desc"],
.pdx-tabs:has(#pdx-tab-terms:checked) label[for="pdx-tab-terms"],
.pdx-tabs:has(#pdx-tab-how:checked) label[for="pdx-tab-how"] { color: #fff; background: linear-gradient(135deg, var(--sf-brand), var(--sf-strong)); box-shadow: 0 8px 18px -6px var(--sf-ring); }
.pdx-tabs:has(input:focus-visible) .pdx-tabbar { outline: 3px solid var(--sf-ring); }
.pdx-panel { display: none; padding: 26px 18px 0; }
.pdx-tabs:has(#pdx-tab-desc:checked) .pdx-panel-desc,
.pdx-tabs:has(#pdx-tab-terms:checked) .pdx-panel-terms,
.pdx-tabs:has(#pdx-tab-how:checked) .pdx-panel-how { display: block; }
.pdx-panel .prose { font-size: 15.5px; line-height: 1.85; color: var(--color-text-secondary); }
.pdx-panel-title { margin: 22px 0 10px; font-size: 15px; font-weight: 750; }
.pdx-how { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 32px; margin: 0; padding: 0; }
.pdx-how li { display: flex; gap: 14px; align-items: flex-start; }
.pdx-how li > span { display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 38px; border-radius: 13px; color: #fff; font-weight: 800; background: linear-gradient(135deg, var(--sf-brand), var(--sf-strong)); box-shadow: 0 8px 16px -6px var(--sf-ring); }
.pdx-how b { display: block; font-size: 15px; font-weight: 720; }
.pdx-how small { display: block; margin-top: 2px; font-size: 13.5px; line-height: 1.55; color: var(--color-text-muted); }
.pdx-help { margin: 22px 0 0; font-size: 13.5px; color: var(--color-text-muted); }

@media (max-width: 900px) {
  .pdx { grid-template-columns: 1fr; gap: 24px; margin: -74px 10px 0; }
  .pdx-media { max-width: 540px; margin-inline: auto; }
  .pdx-buy.sf-buy-card { position: relative; top: auto; }
  .pdx-info { margin: 36px 4px 0; }
  .pdx-how { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pdx-band { padding: 20px 20px 100px; border-radius: 26px; }
  .pdx-head { margin-top: 20px; }
  .pdx-crumbs b { max-width: 24ch; }
  .pdx-price b { font-size: 34px; }
  .pdx-row { grid-template-columns: 1fr; }
  .pdx-stepper { width: 100%; justify-content: space-between; }
  .pdx-stepper input { flex: 1; }
  .pdx-tabs { padding: 10px 10px 26px; border-radius: 24px; }
  .pdx-tabbar { width: 100%; }
  .pdx-tabbar label { flex: 1; padding: 10px 8px; text-align: center; font-size: 13px; }
  .pdx-panel { padding: 22px 10px 0; }
}

.pdx-buy { background: #fff; border-radius: 28px; }
