/* ============================================================
   eTech Storefront — Mobile Responsive
   Loaded after styles.css + styles-pages.css.
   Breakpoints: 1024px (tablet), 768px (mobile), 480px (small mobile)
   ============================================================ */

/* Drawer + mobile-only buttons are hidden on desktop by default;
   the @media (max-width:768px) block below switches them on. */
.sf-drawer,
.sf-drawer-backdrop,
.sf-mobile-actions { display: none; }

/* ── Universal horizontal-overflow guard for mobile/tablet ──
   Decorative absolute-positioned elements (banner-art, promo-art,
   auth ring/printer, drawer at right:-85vw) can extend past the
   viewport on narrow screens. Clip the document so the page never
   scrolls right. Internal scroll containers (.sf-megacat overflow-x:auto,
   tables overflow-x:auto) keep working because they're scoped. */
@media (max-width: 1024px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  .sf-banner,
  .sf-promo,
  .sf-section,
  .sf-auth-form,
  .sf-auth-art { overflow: hidden; }
}

/* ──────────────────────────────────────────────────────────
   TABLET (≤ 1024px) — small adjustments
   ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sf-prod-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .sf-cat-layout { grid-template-columns: 240px 1fr !important; }
  .sf-pdp { grid-template-columns: 1fr 1.2fr !important; }
  .sf-pdp-side { display: none; }
  .sf-footer-grid { grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
  .sf-headnav a { font-size: 13px; padding: 0 8px; }
  .sf-container { padding-left: 16px; padding-right: 16px; }
}

/* ──────────────────────────────────────────────────────────
   MOBILE (≤ 768px) — major layout shift
   ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* — Topbar: hide — */
  .sf-topbar { display: none !important; }

  /* — Header: show only logo + cart + burger — */
  .sf-headerbar { padding: 8px 0; }
  .sf-header-row {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 12px !important;
  }
  .sf-headnav { display: none !important; } /* nav goes into drawer */
  .sf-headcta { gap: 6px !important; }
  .sf-headcta .sf-lang { display: none !important; }
  .sf-headcta .sf-btn-ghost.wishlist-trigger,
  .sf-headcta .sf-btn-primary { display: none !important; }
  .sf-logo img { max-height: 32px !important; width: auto; }

  /* Mobile-only burger + cart icons (rendered by JS) */
  .sf-mobile-actions {
    display: flex !important;
    gap: 10px;
    align-items: center;
  }
  .sf-mobile-iconbtn {
    width: 40px; height: 40px;
    border-radius: 10px; border: 1px solid var(--border);
    background: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--ink-700);
    position: relative;
    -webkit-tap-highlight-color: transparent;
  }
  .sf-mobile-iconbtn:active { transform: scale(.94); }
  .sf-mobile-iconbtn .badge {
    position: absolute; top: -4px; right: -4px;
    background: var(--brand); color: #fff;
    font-size: 10px; font-weight: 700;
    min-width: 16px; height: 16px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px;
  }

  /* — Mobile drawer (slides from right) — */
  .sf-drawer-backdrop {
    display: block;
    position: fixed; inset: 0;
    background: rgba(15,26,43,0.5);
    z-index: 9000; opacity: 0; pointer-events: none;
    transition: opacity .25s ease;
  }
  .sf-drawer-backdrop.open { opacity: 1; pointer-events: auto; }
  /* Bottom-sheet drawer: slides UP from bottom edge */
  .sf-drawer {
    position: fixed; left: 0; right: 0; bottom: 0; top: auto;
    width: 100%; max-width: none;
    height: auto; max-height: 85vh;
    background: #fff; z-index: 9001;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -10px 32px rgba(15,26,43,0.20);
    transform: translateY(100%);
    transition: transform .3s cubic-bezier(.2,.8,.2,1);
    display: flex; flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .sf-drawer.open { transform: translateY(0); }
  /* Drag handle (visual cue) — drag-down dismiss wired in JS */
  .sf-drawer-handle {
    width: 44px; height: 5px;
    background: var(--ink-200);
    border-radius: 999px;
    margin: 10px auto 4px;
    flex: 0 0 auto;
    cursor: grab;
    touch-action: none; /* prevent page scroll while dragging */
  }
  .sf-drawer-handle:active { cursor: grabbing; background: var(--ink-300); }
  .sf-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px; border-bottom: 1px solid var(--border);
  }
  .sf-drawer-head .logo img { max-height: 30px; }
  .sf-drawer-close {
    width: 36px; height: 36px; border-radius: 50%;
    border: 0; background: var(--ink-50); cursor: pointer;
    font-size: 18px; color: var(--ink-700);
    display: flex; align-items: center; justify-content: center;
  }
  .sf-drawer-acc {
    padding: 14px 18px; border-bottom: 1px solid var(--border);
    display: flex; gap: 10px; align-items: center;
  }
  .sf-drawer-acc .av {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--brand); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
  }
  .sf-drawer-acc .info b { font-size: 13.5px; color: var(--ink-900); }
  .sf-drawer-acc .info small { display: block; font-size: 11.5px; color: var(--ink-500); }
  .sf-drawer-acc .login-cta {
    margin-left: auto;
    padding: 8px 14px; border-radius: 8px;
    background: var(--brand); color: #fff;
    text-decoration: none; font-size: 12.5px; font-weight: 600;
  }
  .sf-drawer nav { padding: 8px 0; flex: 1; }
  .sf-drawer nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px;
    color: var(--ink-800); text-decoration: none;
    font-size: 14.5px; font-weight: 500;
    border-bottom: 1px solid var(--ink-50);
  }
  .sf-drawer nav a i { color: var(--ink-500); width: 20px; text-align: center; }
  .sf-drawer nav a:active,
  .sf-drawer nav a:hover { background: var(--ink-50); color: var(--brand); }
  .sf-drawer .lang-row {
    display: flex; gap: 8px; padding: 14px 18px;
    border-top: 1px solid var(--border);
  }
  .sf-drawer .lang-row span {
    flex: 1; padding: 10px;
    border: 1px solid var(--border); border-radius: 8px;
    text-align: center; font-weight: 600; font-size: 13px;
    color: var(--ink-700); cursor: pointer;
  }
  .sf-drawer .lang-row span.on {
    background: var(--brand); color: #fff; border-color: var(--brand);
  }

  /* — Search bar: full width below header — */
  .sf-searchbar { padding: 8px 12px !important; }
  .sf-search-row {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .sf-cat-trigger {
    order: 2;
    flex: 0 0 auto !important;
    padding: 0 12px !important;
    min-width: 44px;
  }
  .sf-cat-trigger span { display: none; } /* show only icon */
  .sf-cat-trigger i.arr { display: none; }
  .sf-search-field {
    order: 1;
    flex: 1 1 100% !important;
    min-width: 0;
  }
  .sf-search-go {
    padding: 0 12px !important;
  }
  .sf-search-go span,
  .sf-search-go { font-size: 0 !important; }
  .sf-search-go i { font-size: 14px !important; }
  .sf-search-icons {
    order: 3;
    margin-left: auto;
  }

  /* — Container padding — */
  .sf-container { padding: 0 12px !important; }
  .ab.sf-root { padding: 12px 0 !important; }

  /* — Page title — */
  .sf-page-title {
    flex-wrap: wrap !important;
    gap: 12px !important;
  }
  .sf-page-title h1 { font-size: 20px !important; }

  /* — Breadcrumb — */
  .sf-crumb {
    font-size: 12px;
    flex-wrap: wrap;
    gap: 4px;
  }

  /* — Catalog page (mehsullar.html) — */
  .sf-cat-layout {
    grid-template-columns: 1fr !important;
  }
  .sf-filters {
    position: fixed !important;
    top: 0; right: -100vw; bottom: 0;
    width: 92vw; max-width: 380px;
    z-index: 9001;
    background: #fff;
    transition: right .28s cubic-bezier(.2,.8,.2,1);
    overflow-y: auto;
    box-shadow: -8px 0 28px rgba(15,26,43,0.18);
    border: 0 !important;
    border-radius: 0 !important;
  }
  .sf-filters.open { right: 0; }
  .sf-filter-head { padding: 14px 18px !important; }

  /* Filter toggle button (rendered by JS on mehsullar.html) */
  .sf-filter-toggle {
    display: flex !important;
    align-items: center; gap: 8px;
    padding: 10px 14px;
    background: #fff; border: 1px solid var(--border); border-radius: 10px;
    font-size: 13px; font-weight: 600; color: var(--ink-800);
    cursor: pointer; margin-bottom: 12px;
  }

  /* — Product grid — */
  .sf-prod-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .sf-prod {
    padding: 10px !important;
  }
  .sf-prod-img { height: 120px !important; }
  .sf-prod-title { font-size: 12.5px !important; min-height: 32px !important; }
  .sf-prod-price { font-size: 14px !important; }
  .sf-prod-add {
    height: 34px !important; font-size: 12px !important;
  }

  /* — Product Detail Page — */
  .sf-pdp {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .sf-pdp-gallery { position: static !important; }
  .sf-pdp-main-img { aspect-ratio: 1; }
  .sf-pdp-thumbs { grid-template-columns: repeat(4, 1fr) !important; }
  .sf-pdp-side { display: none !important; }
  .sf-pdp-info h1 { font-size: 20px !important; }
  .sf-pdp-meta { gap: 6px; font-size: 11.5px; flex-wrap: wrap; }
  .sf-pdp-price-now { font-size: 28px !important; }
  .sf-pdp-cta {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .sf-pdp-cta .sf-pdp-add {
    flex: 1 1 100% !important;
    order: 2;
  }
  .sf-pdp-cta .sf-qty { order: 1; }

  /* — Cart (sifaris.html) — */
  .sf-cart-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .sf-cart-summary {
    position: sticky; bottom: 0;
    z-index: 100;
    box-shadow: 0 -8px 24px rgba(15,26,43,0.10);
    border-radius: 0 !important;
  }

  /* — Account (hesab.html) — */
  .sf-acc-grid {
    grid-template-columns: 1fr !important;
  }
  .sf-acc-side {
    position: static !important;
    margin-bottom: 14px;
  }
  .sf-acc-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .adm-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .adm-stat { padding: 12px !important; }

  /* — About / Contact — */
  .sf-contact-strip {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .sf-value-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .sf-card { padding: 16px !important; }

  /* — Footer collapse — 5 cols → 1 col, accordion — */
  .sf-footer-top-inner {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 14px !important;
  }
  .sf-newsletter {
    flex-direction: column !important;
    width: 100%;
  }
  .sf-newsletter input,
  .sf-newsletter button { width: 100% !important; }
  .sf-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .sf-footer-brand {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 18px; margin-bottom: 8px;
  }
  .sf-footer-col {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .sf-footer-col h5 {
    cursor: pointer;
    padding: 14px 0;
    margin: 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .sf-footer-col h5::after {
    content: '+';
    font-size: 22px; font-weight: 300;
    transition: transform .2s;
  }
  .sf-footer-col.open h5::after { transform: rotate(45deg); }
  .sf-footer-col ul {
    max-height: 0; overflow: hidden;
    margin: 0; padding: 0;
    transition: max-height .28s cubic-bezier(.2,.8,.2,1), padding .28s;
  }
  .sf-footer-col.open ul {
    max-height: 400px;
    padding-bottom: 14px;
  }
  .sf-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* — Login / Register cards — */
  .auth-card,
  .adm-login-card { padding: 28px 22px !important; }

  /* — Forms — prevent iOS zoom on focus by ensuring 16px+ — */
  input, select, textarea,
  .sf-input, .sf-m-input {
    font-size: 16px !important;
  }

  /* — Buttons / tap targets ≥ 44px — */
  .sf-btn { min-height: 40px; }
  .sf-prod-add { min-height: 38px; }

  /* — Map iframe — auto height — */
  iframe[src*="google.com/maps"] {
    height: 280px !important;
  }

  /* ── Index.html — Hero grid (megacat + banner + side promos) ── */
  .sf-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .sf-megacat {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    flex-wrap: nowrap !important;
    gap: 8px;
    padding: 6px 2px 10px !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    height: auto !important;
    min-height: 0 !important;
  }
  .sf-megacat::-webkit-scrollbar { display: none; }
  .sf-megacat li {
    flex: 0 0 auto !important;
    padding: 8px 14px !important;
    border-radius: 999px !important;
    background: #fff !important;
    border: 1px solid var(--border) !important;
    font-size: 12.5px !important;
    white-space: nowrap;
    color: var(--ink-700) !important;
  }
  .sf-megacat li i { display: none; }
  .sf-megacat li:hover { background: var(--brand-50); color: var(--brand); }

  /* Main banner — compact */
  .sf-banner {
    padding: 24px 18px !important;
    border-radius: 14px !important;
    min-height: auto !important;
  }
  .sf-banner h1 { font-size: 22px !important; line-height: 1.2 !important; }
  .sf-banner h1 em { font-size: inherit !important; }
  .sf-banner p { font-size: 13.5px !important; }
  .sf-banner-eyebrow { font-size: 11px !important; }
  .sf-banner-meta {
    flex-wrap: wrap !important;
    gap: 8px !important;
    font-size: 11.5px !important;
  }
  .sf-banner-meta div { padding: 4px 8px !important; }
  .sf-banner-actions {
    flex-direction: column !important;
    gap: 8px !important;
    width: 100%;
  }
  .sf-banner-actions a {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 16px !important;
    font-size: 13.5px !important;
  }
  .sf-banner-art {
    font-size: 100px !important;
    right: -12px !important;
    bottom: -10px !important;
    opacity: 0.15 !important;
  }

  /* Side promos — single column stacked */
  .sf-side-promos {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
    gap: 10px !important;
  }
  .sf-promo {
    padding: 14px !important;
    border-radius: 12px !important;
    min-height: auto !important;
  }
  .sf-promo h4 { font-size: 13.5px !important; }
  .sf-promo p { font-size: 11.5px !important; }
  .sf-promo .price-from { font-size: 11px !important; }
  .sf-promo .price-from b { font-size: 16px !important; }
  .sf-promo .promo-art { font-size: 70px !important; opacity: 0.13 !important; }
  .sf-promo .tag { font-size: 9.5px !important; padding: 2px 8px !important; }

  /* Section heads */
  .sf-section-head {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 14px !important;
  }
  .sf-section-head .left { width: 100%; }
  .sf-section-head h2 { font-size: 18px !important; }
  .sf-section-head .eyebrow { font-size: 10.5px !important; }
  .sf-section-head .right {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px !important;
  }
  .sf-tabs {
    overflow-x: auto;
    flex-wrap: nowrap !important;
    width: 100%;
    scrollbar-width: none;
  }
  .sf-tabs::-webkit-scrollbar { display: none; }
  .sf-tabs button {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 12px !important;
    padding: 6px 12px !important;
  }
  .sf-see-all { font-size: 13px !important; }

  /* Brands grid */
  .sf-brands {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }
  .sf-brand-tile {
    padding: 16px 8px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
  }
  .sf-brand-tile small { font-size: 10.5px !important; }

  /* Featured cards row */
  .sf-cards-row,
  .sf-features {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .sf-feature {
    padding: 14px !important;
    flex-direction: column !important;
    text-align: center;
  }
  .sf-feature i { font-size: 24px !important; margin-bottom: 8px; }
  .sf-feature .text b { font-size: 13px !important; }
  .sf-feature .text small { font-size: 11px !important; }

  /* Partner slider — smaller logos */
  .sf-partners-track img,
  .sf-partner-logo { max-height: 36px !important; }

  /* Newsletter / CTA sections — compact */
  .sf-cta-banner,
  .sf-cta-section {
    padding: 24px 18px !important;
    border-radius: 14px !important;
  }

  /* Section spacing */
  .sf-section { margin: 28px 0 0 !important; }
}

/* ──────────────────────────────────────────────────────────
   SMALL MOBILE (≤ 480px) — extra tightening
   ────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .sf-prod-grid { gap: 10px !important; }
  .sf-prod { padding: 8px !important; }
  .sf-prod-img { height: 100px !important; }

  .sf-page-title h1 { font-size: 18px !important; }
  .sf-pdp-info h1 { font-size: 18px !important; }
  .sf-pdp-price-now { font-size: 24px !important; }

  .sf-acc-nav { grid-template-columns: 1fr; }
  .sf-value-grid { grid-template-columns: 1fr !important; }
  .adm-stats { grid-template-columns: 1fr !important; }

  .sf-container { padding: 0 10px !important; }
}

/* ============================================================
   PHASE 2 — Targeted mobile fixes (auth, checkout, PDP, etc.)
   Audit-driven additions covering critical UX gaps.
   ============================================================ */

/* ── Touch-device-only rules (no hover capability) ────────────
   Show product card actions (wishlist/compare/eye) by default
   on touch since hover never fires. Critical for mobile users. */
@media (hover: none), (pointer: coarse) {
  .sf-prod-actions { opacity: 1 !important; transform: none !important; }
  /* Show FAB tip on tap-focus too (was hover-only) */
  .etech-fab:focus-within .tip { opacity: 1; }
}

/* ── Tap-target sizing (Apple HIG min 44×44, applies on touch) ── */
@media (max-width: 768px) {
  .sf-prod-act {
    width: 38px !important; height: 38px !important;
    font-size: 14px !important;
  }
  /* Footer link tap targets */
  .sf-footer-col li a {
    padding: 10px 0 !important;
    min-height: 40px !important;
    display: flex !important;
    align-items: center !important;
  }
}

/* ── AUTH pages (daxil-ol, qeydiyyat) — was 2-col on mobile ── */
@media (max-width: 900px) {
  .sf-auth-grid {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }
  .sf-auth-art { display: none !important; }
  .sf-auth-form { padding: 32px 22px !important; }
  .sf-auth-form .brand { margin-bottom: 20px !important; }
  .sf-auth-form h1 { font-size: 22px !important; }
}

/* ── CHECKOUT (sifaris.html) — delivery / payment radio cards ── */
@media (max-width: 600px) {
  .sf-radio-card {
    flex-wrap: wrap !important;
    padding: 12px 14px !important;
    gap: 10px !important;
  }
  .sf-radio-card .info { flex: 1 1 calc(100% - 60px); min-width: 0; }
  .sf-radio-card .info b { font-size: 13px !important; }
  .sf-radio-card .info p { font-size: 11.5px !important; }
  .sf-radio-card .price {
    flex: 1 1 100%;
    text-align: right;
    margin-top: 4px;
  }
}

/* ── PDP qty stepper — was width:50px fixed ── */
@media (max-width: 600px) {
  #pd-qty,
  .sf-pdp-qty input,
  .sf-pdp-qty input[type="number"] {
    width: 56px !important;
    min-width: 56px !important;
    flex: 0 0 56px !important;
  }
  .sf-pdp-qty { flex: 0 0 auto !important; }
  .sf-pdp-actions {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .sf-pdp-actions .sf-btn-primary {
    flex: 1 1 100% !important;
    order: 2;
  }
  .sf-pdp-actions .sf-pdp-qty { order: 1; }
}

/* ── COMPARISON table (muqayise.html) — horizontal scroll ── */
@media (max-width: 768px) {
  .sf-compare-wrap,
  .sf-compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -12px;
    padding: 0 12px;
  }
  .sf-compare-table { min-width: 640px; }
  .sf-compare-cols {
    grid-template-columns: repeat(2, minmax(180px, 1fr)) !important;
    gap: 10px !important;
  }
}

/* ── WISHLIST / generic 2-col on mobile ── */
@media (max-width: 600px) {
  .sf-wishlist-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}

/* ── AKSIYALAR hero — absolute decorations escape viewport ── */
@media (max-width: 768px) {
  .sf-aksiya-hero,
  [class*="aksiya"] [style*="position:absolute"][style*="right:-"],
  [class*="aksiya"] [style*="position:absolute"][style*="bottom:-"] {
    display: none !important;
  }
  .sf-section { overflow: hidden; }
}

/* ── Filter toggle button (mehsullar.html) — compact ── */
@media (max-width: 480px) {
  .sf-filter-toggle span:not(.badge) { display: none !important; }
  .sf-filter-toggle {
    min-width: 44px !important;
    padding: 0 12px !important;
  }
}

/* ── Inline max-width hardcoded values reset on small screens ── */
@media (max-width: 768px) {
  .sf-info-section,
  .sf-page-content,
  [style*="max-width:880px"],
  [style*="max-width: 880px"],
  [style*="max-width:820px"],
  [style*="max-width: 820px"],
  [style*="max-width:640px"],
  [style*="max-width: 640px"] {
    max-width: 100% !important;
  }
}

/* ── Drawer logout link (was full path display issue) ── */
@media (max-width: 768px) {
  .sf-drawer .lang-row { padding: 14px 18px 28px !important; }
}

/* ============================================================
   PHASE 3 — New mobile design system (sf-m-* namespace)
   Ported from Claude Design package (May 2026).
   All classes are NEW — no conflict with existing styles.
   Active only on mobile (≤768px) via .sf-m-page wrapper visibility.
   ============================================================ */

/* Visibility: new mobile sections only render on mobile */
.sf-m-page { display: none; }
@media (max-width: 768px) {
  .sf-m-page { display: block; }
  /* sf-d-only hides on mobile ONLY when page has new mobile markup (body.has-mpage).
     Pages without new mobile design keep their existing responsive layout. */
  body.has-mpage .sf-d-only { display: none !important; }
}

/* Phase 3 v2 — TOP segmented nav (replaces bottom tab bar).
   Bottom-bar related rules (FAB push, body padding, chat hide) removed
   because there's no longer anything fixed at the bottom of the viewport. */
@media (max-width: 768px) {
  /* Top segmented nav — static (not sticky) to avoid stacking with sticky appbar.
     Both elements at sticky top:0 caused click hijacking on iOS Safari. */
  .sf-m-topnav {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
    padding: 8px 12px; background: #fff;
    border-bottom: 1px solid var(--border);
    position: relative; z-index: 1;
  }
  /* Also remove sticky from app bar — let user scroll naturally */
  .sf-m-appbar { position: relative !important; z-index: auto !important; }
  .sf-m-topnav-item {
    position: relative;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 9px 6px;
    background: var(--ink-50); border: 1px solid transparent; border-radius: 10px;
    color: var(--ink-700);
    font-family: inherit; font-size: 11.5px; font-weight: 600;
    text-decoration: none; cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .sf-m-topnav-item i { font-size: 13px; }
  .sf-m-topnav-item.on {
    background: var(--brand-50); color: var(--brand);
    border-color: var(--brand-200, #BBD2F6);
  }
  .sf-m-topnav-item:active { transform: scale(.97); }
  .sf-m-topnav-badge {
    position: absolute; top: 4px; right: 6px;
    background: var(--orange); color: #fff;
    font-size: 9px; font-weight: 700;
    padding: 1px 5px; border-radius: 8px;
    min-width: 14px; text-align: center; line-height: 1.4;
  }

  /* Old bottom tab bar — explicitly hidden if any legacy markup remains. */
  .sf-m-tabbar { display: none !important; }

  /* Hide Odoo livechat on mobile (defensive). Chat shadow DOM may have an
     invisible welcome-popup or panel overlay that intercepts taps across the
     viewport. Without site CSS access into shadow tree we can't verify; safest
     is to hide the host. WhatsApp FAB remains the mobile contact channel. */
  .o-livechat-root { display: none !important; }

  /* Defensive: ensure no parent silently disables pointer events. */
  html, body { pointer-events: auto !important; }
  body.has-mpage,
  body.has-mpage .sf-m-page,
  body.has-mpage .sf-m-page * { pointer-events: auto; }

  /* ── Audit polish (Phase 3) — tap targets, readability, safe area ── */

  /* Stepper buttons (cart qty +/-) — was 28×28 (too small for HIG) */
  .sf-m-stepper button { min-width: 36px; min-height: 36px; }
  .sf-m-stepper span { min-width: 36px; }

  /* Product card actions — favorite + add-to-cart enlarged */
  .sf-m-pcard-fav { width: 36px !important; height: 36px !important; font-size: 14px; }
  .sf-m-pcard-add { min-height: 40px; }

  /* Readability: lift smallest secondary text from 9–9.5px to 11px */
  .sf-m-trust small,
  .sf-m-cat small,
  .sf-m-pdp-trust small,
  .sf-m-pcard-tag,
  .sf-m-pcard-brand { font-size: 11px !important; }
  .sf-m-cat b { font-size: 12px !important; }

  /* App bar icon buttons standardised to 40×40 (was 36) */
  .sf-m-iconbtn { width: 40px; height: 40px; }

  /* Backdrop: prevent stale full-viewport coverage when not open
     (defensive — opacity:0 + pointer-events:none already make it click-through,
      but visibility:hidden also takes it out of accessibility tree). */
  .sf-drawer-backdrop { visibility: hidden; }
  .sf-drawer-backdrop.open { visibility: visible; }

  /* Migration safety: when page has new mobile markup (.sf-m-page is rendered
     on body.has-mpage), legacy desktop product/category grids must not also
     render — would cause double content and CSS conflicts. */
  body.has-mpage .sf-prod-grid,
  body.has-mpage .sf-megacat,
  body.has-mpage .sf-hero-grid,
  body.has-mpage .sf-side-promos,
  body.has-mpage .sf-trust,
  body.has-mpage .sf-brands { display: none !important; }
}

/* Hide tab bar + bottom-CTA on desktop (they only exist inside .sf-m-page anyway,
   but be defensive in case of stray markup) */
@media (min-width: 769px) {
  .sf-m-tabbar, .sf-m-cart-cta, .sf-m-pdp-buy { display: none !important; }
}

/* ============================================================
   eTech — Mobile (storefront) styles
   Optimised for iPhone-class viewport (~402px wide)
   All rules scoped under .sf-m to avoid conflicts with desktop styles
   ============================================================ */

.sf-m { background: var(--bg-soft); min-height: 100%; padding-bottom: 80px;
  font-family: var(--font-sans); color: var(--ink-900);
  font-size: 14px; line-height: 1.45; }

/* ---------- App bar ---------- */
.sf-m-appbar { position: sticky; top: 0; z-index: 30;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 10px 14px 8px; }
.sf-m-appbar-row { display: flex; align-items: center; gap: 10px; }
.sf-m-appbar-logo { height: 26px; width: auto; }
.sf-m-appbar-spacer { flex: 1; }
.sf-m-iconbtn { width: 36px; height: 36px; display: grid; place-content: center;
  border-radius: 50%; background: var(--ink-50); color: var(--ink-700);
  position: relative; border: 0; cursor: pointer; }
.sf-m-iconbtn .badge { position: absolute; top: -2px; right: -2px;
  min-width: 16px; height: 16px; padding: 0 4px; border-radius: 8px;
  background: var(--orange); color: #fff; font-size: 10px; font-weight: 700;
  display: grid; place-content: center; line-height: 1; border: 1.5px solid #fff; }
.sf-m-search { display: flex; align-items: center; gap: 8px; height: 38px;
  padding: 0 12px; background: var(--ink-50); border-radius: var(--r-pill);
  margin-top: 10px; border: 1px solid var(--border); }
.sf-m-search i { color: var(--ink-400); font-size: 13px; }
.sf-m-search input { flex: 1; border: 0; outline: 0; background: transparent;
  font-family: inherit; font-size: 13px; color: var(--ink-700); }
.sf-m-search .scan { color: var(--brand); font-size: 14px; }

/* ---------- Top contact strip ---------- */
.sf-m-contact { background: var(--ink-900); color: rgba(255,255,255,0.78);
  display: flex; gap: 10px; padding: 7px 14px; font-size: 11px;
  align-items: center; justify-content: space-between; }
.sf-m-contact a { color: inherit; display: inline-flex; align-items: center; gap: 6px; }
.sf-m-contact i { color: var(--brand); font-size: 10px; }
.sf-m-contact .sep { width: 1px; height: 11px; background: rgba(255,255,255,0.16); }

/* ---------- Section header ---------- */
.sf-m-section { padding: 18px 14px 10px; }
.sf-m-section-head { display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 10px; }
.sf-m-section-head h2 { font-size: 16px; font-weight: 700;
  color: var(--ink-900); letter-spacing: -0.01em; margin: 0; }
.sf-m-section-head a { font-size: 12px; color: var(--brand); font-weight: 600; }
.sf-m-section-head small { font-size: 11px; color: var(--ink-500); display: block; margin-top: 2px; }

/* ---------- Hero card ---------- */
.sf-m-hero { margin: 12px 14px 0; padding: 18px 16px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%);
  border-radius: var(--r-lg); color: #fff; position: relative; overflow: hidden; }
.sf-m-hero::after { content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; background: rgba(255,255,255,0.08);
  border-radius: 50%; }
.sf-m-hero::before { content: ''; position: absolute; bottom: -50px; right: 30px;
  width: 110px; height: 110px; background: rgba(255,255,255,0.06);
  border-radius: 50%; }
.sf-m-hero-eyebrow { font-size: 10.5px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.85); display: inline-flex;
  align-items: center; gap: 6px; margin-bottom: 8px; }
.sf-m-hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: #FFD06B; }
.sf-m-hero h1 { font-size: 19px; font-weight: 700; line-height: 1.25;
  letter-spacing: -0.01em; margin: 0 0 6px; max-width: 80%; }
.sf-m-hero h1 em { font-style: normal; color: #FFD06B; }
.sf-m-hero p { font-size: 12.5px; color: rgba(255,255,255,0.85); margin: 0 0 14px;
  max-width: 85%; line-height: 1.45; }
.sf-m-hero-cta { display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--brand); font-size: 12.5px; font-weight: 700;
  padding: 9px 16px; border-radius: var(--r-pill); border: 0;
  position: relative; z-index: 2; }
.sf-m-hero-pager { position: absolute; bottom: 14px; right: 14px;
  display: flex; gap: 4px; z-index: 2; }
.sf-m-hero-pager span { width: 16px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.4); }
.sf-m-hero-pager span.on { background: #fff; width: 22px; }

/* ---------- Quick stats / trust ---------- */
.sf-m-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin: 14px 14px 0; }
.sf-m-trust > div { background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 12px 8px; text-align: center; }
.sf-m-trust i { color: var(--brand); font-size: 17px; display: block; margin-bottom: 6px; }
.sf-m-trust b { font-size: 11px; font-weight: 600; color: var(--ink-900); display: block; }
.sf-m-trust small { font-size: 9.5px; color: var(--ink-500); display: block; line-height: 1.3; margin-top: 2px; }

/* ---------- Category chip rail ---------- */
.sf-m-chips { display: flex; gap: 8px; padding: 0 14px;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.sf-m-chips::-webkit-scrollbar { display: none; }
.sf-m-chip { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-pill); font-size: 12.5px; font-weight: 500;
  color: var(--ink-700); white-space: nowrap; }
.sf-m-chip.on { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }
.sf-m-chip i { font-size: 11px; color: var(--ink-400); }
.sf-m-chip.on i { color: rgba(255,255,255,0.8); }

/* ---------- Category tile grid ---------- */
.sf-m-cats { display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; padding: 0 14px; }
.sf-m-cat { display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 12px 4px 10px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--r-md); text-align: center; }
.sf-m-cat-icon { width: 40px; height: 40px; border-radius: 12px;
  background: var(--brand-50); color: var(--brand);
  display: grid; place-content: center; font-size: 16px; }
.sf-m-cat b { font-size: 10.5px; font-weight: 600; color: var(--ink-900); line-height: 1.2; }
.sf-m-cat small { font-size: 9px; color: var(--ink-400); }

/* ---------- Product rail (horizontal scroll) ---------- */
.sf-m-rail { display: flex; gap: 12px; padding: 0 14px;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.sf-m-rail::-webkit-scrollbar { display: none; }
.sf-m-rail .sf-m-pcard { flex: 0 0 168px; }

/* ---------- Product card (mobile) ---------- */
.sf-m-pcard { background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden; display: flex; flex-direction: column; position: relative; }
.sf-m-pcard-img { aspect-ratio: 1; background: var(--ink-50);
  display: flex; align-items: center; justify-content: center;
  color: #C8D1DF; font-size: 38px; position: relative;
  padding: 14px; overflow: hidden; }
.sf-m-pcard-img img { max-width: 100%; max-height: 100%;
  width: auto; height: auto; object-fit: contain; display: block; }
.sf-m-pcard-tag { position: absolute; top: 8px; left: 8px;
  padding: 3px 7px; background: var(--orange); color: #fff;
  font-size: 9.5px; font-weight: 700; border-radius: 4px; }
.sf-m-pcard-tag.new { background: var(--success); }
.sf-m-pcard-fav { position: absolute; top: 8px; right: 8px; width: 28px; height: 28px;
  background: rgba(255,255,255,0.92); border-radius: 50%; display: grid; place-content: center;
  color: var(--ink-500); font-size: 12px; border: 0; }
.sf-m-pcard-body { padding: 10px 11px 12px; display: flex; flex-direction: column; gap: 4px; }
.sf-m-pcard-brand { font-size: 9.5px; font-weight: 700; color: var(--brand);
  text-transform: uppercase; letter-spacing: 0.08em; }
.sf-m-pcard-title { font-size: 12px; font-weight: 500; color: var(--ink-900);
  line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 32px; }
.sf-m-pcard-rating { display: flex; align-items: center; gap: 4px; font-size: 10.5px;
  color: var(--ink-500); }
.sf-m-pcard-rating i { color: #F5A623; font-size: 9.5px; }
.sf-m-pcard-price { display: flex; align-items: baseline; gap: 6px; margin-top: 2px; }
.sf-m-pcard-price b { font-size: 14px; font-weight: 700; color: var(--ink-900);
  letter-spacing: -0.01em; }
.sf-m-pcard-price s { font-size: 11px; color: var(--ink-400); }
.sf-m-pcard-add { margin-top: 8px; height: 32px; border: 0; background: var(--brand);
  color: #fff; border-radius: var(--r-sm); font-family: inherit; font-size: 11.5px;
  font-weight: 600; display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
.sf-m-pcard-add.ghost { background: var(--ink-50); color: var(--ink-700); border: 1px solid var(--border); }

/* ---------- Brand row ---------- */
.sf-m-brands { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  padding: 0 14px; }
.sf-m-brand { background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 14px 6px; text-align: center;
  font-size: 11px; font-weight: 700; color: var(--ink-700);
  letter-spacing: 0.05em; }

/* ---------- Banner ad ---------- */
.sf-m-banner-ad { margin: 16px 14px 0; padding: 16px;
  background: var(--ink-900); border-radius: var(--r-lg);
  display: flex; gap: 14px; align-items: center; color: #fff; position: relative; overflow: hidden; }
.sf-m-banner-ad-text { flex: 1; min-width: 0; }
.sf-m-banner-ad-text small { font-size: 10px; color: var(--orange);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; display: block; }
.sf-m-banner-ad-text b { font-size: 14px; font-weight: 700; line-height: 1.3;
  display: block; margin-top: 4px; }
.sf-m-banner-ad-icon { width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,255,255,0.1); display: grid; place-content: center;
  color: var(--brand); font-size: 22px; }

/* ---------- Bottom tab bar ---------- */
.sf-m-tabbar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  background: rgba(255,255,255,0.92); -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 8px 8px 22px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
.sf-m-tabbar-item { display: flex; flex-direction: column; align-items: center;
  gap: 3px; padding: 6px 4px; background: transparent; border: 0;
  color: var(--ink-400); font-family: inherit; font-size: 9.5px;
  font-weight: 500; cursor: pointer; }
.sf-m-tabbar-item i { font-size: 17px; }
.sf-m-tabbar-item.on { color: var(--brand); }
.sf-m-tabbar-item.center i { width: 44px; height: 44px;
  background: var(--brand); color: #fff; border-radius: 50%;
  display: grid; place-content: center; font-size: 16px;
  margin-bottom: -4px; box-shadow: 0 6px 16px rgba(31,111,235,0.35); }
.sf-m-tabbar-item.center.on i { background: var(--brand-700); }
.sf-m-tabbar-item .dot { position: relative; }
.sf-m-tabbar-item .dot::after { content: ''; position: absolute; top: -2px; right: -6px;
  width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

/* ============================================================
   CATALOG (mobile)
   ============================================================ */
.sf-m-catalog-head { padding: 12px 14px 10px; background: #fff;
  border-bottom: 1px solid var(--border); }
.sf-m-catalog-head h1 { font-size: 18px; font-weight: 700; margin: 0;
  color: var(--ink-900); letter-spacing: -0.01em; }
.sf-m-catalog-head small { font-size: 11.5px; color: var(--ink-500); }
.sf-m-catalog-tools { display: flex; gap: 8px; padding: 10px 14px;
  background: #fff; border-bottom: 1px solid var(--border);
  position: sticky; top: 110px; z-index: 20; }
.sf-m-tool { flex: 1; height: 36px; padding: 0 12px;
  background: var(--ink-50); border: 1px solid var(--border);
  border-radius: var(--r-sm); display: inline-flex; align-items: center;
  justify-content: center; gap: 6px; font-size: 12px; font-weight: 600;
  color: var(--ink-700); }
.sf-m-tool i { font-size: 11px; color: var(--ink-400); }
.sf-m-tool .pill { background: var(--brand); color: #fff;
  font-size: 9.5px; padding: 1px 6px; border-radius: 8px; font-weight: 700; margin-left: 2px; }
.sf-m-prods { display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 14px; }

/* ============================================================
   PDP (product detail mobile)
   ============================================================ */
.sf-m-pdp { padding-bottom: 110px; }
.sf-m-pdp-back { position: absolute; top: 14px; left: 14px; z-index: 35;
  width: 38px; height: 38px; background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border-radius: 50%; display: grid; place-content: center;
  color: var(--ink-900); font-size: 14px; border: 0; }
.sf-m-pdp-fav { position: absolute; top: 14px; right: 60px; z-index: 35;
  width: 38px; height: 38px; background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border-radius: 50%; display: grid; place-content: center;
  color: var(--ink-900); font-size: 14px; border: 0; }
.sf-m-pdp-share { position: absolute; top: 14px; right: 14px; z-index: 35;
  width: 38px; height: 38px; background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border-radius: 50%; display: grid; place-content: center;
  color: var(--ink-900); font-size: 14px; border: 0; }
.sf-m-pdp-gallery { position: relative; aspect-ratio: 1; background: #fff;
  display: grid; place-content: center; color: #D5DDEA; font-size: 130px; }
.sf-m-pdp-gallery::after { content: ''; position: absolute; bottom: 14px; left: 50%;
  transform: translateX(-50%); padding: 4px 10px; background: rgba(15,26,43,0.55);
  color: #fff; font-size: 10.5px; font-weight: 600; border-radius: var(--r-pill); }
.sf-m-pdp-pager { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; }
.sf-m-pdp-pager span { width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink-200); }
.sf-m-pdp-pager span.on { background: var(--brand); width: 18px; border-radius: 3px; }
.sf-m-pdp-body { background: #fff; padding: 18px 14px 14px;
  border-radius: 18px 18px 0 0; margin-top: -16px; position: relative; z-index: 5; }
.sf-m-pdp-brand { display: inline-block; padding: 3px 10px;
  background: var(--brand-50); color: var(--brand);
  font-size: 10px; font-weight: 700; border-radius: var(--r-pill);
  text-transform: uppercase; letter-spacing: 0.08em; }
.sf-m-pdp-title { font-size: 17px; font-weight: 700; color: var(--ink-900);
  line-height: 1.3; letter-spacing: -0.01em; margin: 8px 0 6px; }
.sf-m-pdp-meta { display: flex; align-items: center; gap: 10px;
  font-size: 11.5px; color: var(--ink-500); margin-bottom: 12px; }
.sf-m-pdp-meta i { color: #F5A623; font-size: 11px; }
.sf-m-pdp-meta b { color: var(--ink-900); font-weight: 700; margin-right: 1px; }
.sf-m-pdp-meta .sep { width: 3px; height: 3px; border-radius: 50%;
  background: var(--ink-200); }
.sf-m-pdp-pricerow { display: flex; align-items: baseline; gap: 10px;
  flex-wrap: wrap; padding: 12px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); }
.sf-m-pdp-price { font-size: 24px; font-weight: 800; color: var(--ink-900);
  letter-spacing: -0.02em; }
.sf-m-pdp-price s { font-size: 14px; font-weight: 500; color: var(--ink-400);
  margin-left: 6px; }
.sf-m-pdp-save { padding: 3px 9px; background: var(--orange-soft);
  color: var(--orange); font-size: 11px; font-weight: 700;
  border-radius: var(--r-pill); }
.sf-m-pdp-stock { margin-left: auto; font-size: 11.5px;
  color: var(--success); font-weight: 600; display: inline-flex;
  align-items: center; gap: 5px; }
.sf-m-pdp-stock .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }
.sf-m-pdp-section { padding: 14px 0; border-bottom: 1px solid var(--border); }
.sf-m-pdp-section h3 { font-size: 13px; font-weight: 700; color: var(--ink-900);
  margin: 0 0 10px; letter-spacing: -0.005em; }
.sf-m-pdp-swatch-row { display: flex; gap: 8px; flex-wrap: wrap; }
.sf-m-pdp-swatch { padding: 8px 14px; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); background: #fff;
  font-size: 12px; color: var(--ink-700); font-weight: 500; }
.sf-m-pdp-swatch.on { border-color: var(--brand); background: var(--brand-50);
  color: var(--brand); font-weight: 700; }
.sf-m-pdp-spec { display: grid; grid-template-columns: 1fr auto; gap: 8px;
  padding: 8px 0; font-size: 12.5px; }
.sf-m-pdp-spec span { color: var(--ink-500); }
.sf-m-pdp-spec b { color: var(--ink-900); font-weight: 600; }
.sf-m-pdp-spec + .sf-m-pdp-spec { border-top: 1px solid var(--border); }
.sf-m-pdp-trust { display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--border); }
.sf-m-pdp-trust > div { flex: 1; display: flex; gap: 8px; align-items: center; }
.sf-m-pdp-trust i { width: 32px; height: 32px; border-radius: 8px;
  background: var(--brand-50); color: var(--brand); display: grid; place-content: center;
  font-size: 13px; flex-shrink: 0; }
.sf-m-pdp-trust b { font-size: 11px; color: var(--ink-900); display: block; font-weight: 600; }
.sf-m-pdp-trust small { font-size: 9.5px; color: var(--ink-500); display: block; line-height: 1.3; }
.sf-m-pdp-buy { position: fixed; bottom: 0; left: 0; right: 0; z-index: 30;
  background: rgba(255,255,255,0.96); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 10px 14px 30px; display: flex; gap: 8px; }
.sf-m-pdp-buy-fav { width: 46px; height: 46px; border-radius: var(--r-sm);
  background: var(--ink-50); color: var(--ink-700); border: 1px solid var(--border);
  display: grid; place-content: center; font-size: 16px; flex-shrink: 0; }
.sf-m-pdp-buy-add { flex: 1; height: 46px; border: 0;
  background: var(--brand); color: #fff; border-radius: var(--r-sm);
  font-family: inherit; font-size: 13.5px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 14px rgba(31,111,235,0.32); }
.sf-m-pdp-buy-now { width: 46px; height: 46px; border-radius: var(--r-sm);
  background: var(--ink-900); color: #fff; border: 0;
  display: grid; place-content: center; font-size: 14px; flex-shrink: 0; }

/* ============================================================
   CART (mobile)
   ============================================================ */
.sf-m-cart-head { padding: 14px 14px 12px; background: #fff;
  border-bottom: 1px solid var(--border); }
.sf-m-cart-head h1 { font-size: 18px; font-weight: 700; margin: 0;
  letter-spacing: -0.01em; color: var(--ink-900); }
.sf-m-cart-head small { font-size: 11.5px; color: var(--ink-500); }
.sf-m-cart-list { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.sf-m-cart-item { background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 12px;
  display: grid; grid-template-columns: 64px 1fr; gap: 12px; }
.sf-m-cart-item-img { width: 64px; height: 64px; border-radius: 8px;
  background: var(--ink-50); display: grid; place-content: center;
  color: #C8D1DF; font-size: 22px; }
.sf-m-cart-item-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.sf-m-cart-item-brand { font-size: 9.5px; color: var(--brand);
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.sf-m-cart-item-title { font-size: 12.5px; color: var(--ink-900); font-weight: 500;
  line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; }
.sf-m-cart-item-row { display: flex; justify-content: space-between; align-items: center;
  margin-top: 6px; }
.sf-m-cart-item-price { font-size: 14px; font-weight: 700; color: var(--ink-900); }
.sf-m-cart-item-price s { font-size: 11px; color: var(--ink-400); font-weight: 500; margin-left: 4px; }
.sf-m-stepper { display: inline-flex; align-items: center;
  border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.sf-m-stepper button { width: 28px; height: 28px; background: var(--ink-50);
  border: 0; color: var(--ink-700); font-size: 12px; cursor: pointer; }
.sf-m-stepper span { width: 32px; text-align: center; font-size: 12px;
  font-weight: 600; color: var(--ink-900); }
.sf-m-cart-promo { margin: 0 14px 14px; padding: 14px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  display: flex; gap: 8px; align-items: center; }
.sf-m-cart-promo i { color: var(--orange); font-size: 16px; }
.sf-m-cart-promo input { flex: 1; border: 0; outline: 0; background: transparent;
  font-family: inherit; font-size: 12.5px; }
.sf-m-cart-promo button { background: var(--ink-900); color: #fff; border: 0;
  padding: 7px 14px; border-radius: var(--r-sm); font-family: inherit;
  font-size: 11.5px; font-weight: 600; cursor: pointer; }
.sf-m-cart-summary { background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); margin: 0 14px; padding: 14px; }
.sf-m-cart-row { display: flex; justify-content: space-between;
  padding: 6px 0; font-size: 12.5px; color: var(--ink-700); }
.sf-m-cart-row b { font-weight: 600; color: var(--ink-900); }
.sf-m-cart-row.total { padding-top: 12px; margin-top: 6px;
  border-top: 1px solid var(--border); font-size: 15px; }
.sf-m-cart-row.total b { font-size: 18px; font-weight: 800; color: var(--ink-900); letter-spacing: -0.01em; }
.sf-m-cart-row.total small { display: block; font-size: 10px;
  color: var(--ink-400); font-weight: 500; }
.sf-m-cart-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 30;
  background: rgba(255,255,255,0.96); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 10px 14px 30px; }
.sf-m-cart-cta-row { display: flex; align-items: center; gap: 10px; }
.sf-m-cart-cta-total { flex: 1; }
.sf-m-cart-cta-total small { font-size: 10px; color: var(--ink-500); display: block; }
.sf-m-cart-cta-total b { font-size: 18px; color: var(--ink-900); font-weight: 800;
  letter-spacing: -0.01em; }
.sf-m-cart-cta-btn { padding: 0 22px; height: 46px; border: 0;
  background: var(--brand); color: #fff; border-radius: var(--r-sm);
  font-family: inherit; font-size: 13.5px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 14px rgba(31,111,235,0.32); }

/* ============================================================
   ACCOUNT (mobile)
   ============================================================ */
.sf-m-account-hero { background: linear-gradient(180deg, var(--ink-900) 0%, #1a2638 100%);
  padding: 28px 18px 60px; color: #fff; }
.sf-m-account-greet { font-size: 12.5px; color: rgba(255,255,255,0.65); }
.sf-m-account-name { font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em; margin: 4px 0 14px; }
.sf-m-account-tier { display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--r-pill);
  font-size: 11px; font-weight: 600; color: #FFD06B; }
.sf-m-account-tier i { font-size: 10px; }
.sf-m-account-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin: -45px 14px 0; }
.sf-m-account-stats > div { background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 12px 8px; text-align: center;
  box-shadow: var(--shadow-sm); }
.sf-m-account-stats b { font-size: 18px; color: var(--ink-900);
  font-weight: 700; letter-spacing: -0.01em; display: block; }
.sf-m-account-stats small { font-size: 10px; color: var(--ink-500); display: block; }
.sf-m-account-stats i { color: var(--brand); font-size: 13px; margin-bottom: 4px; }
.sf-m-account-list { margin-top: 18px; padding: 0 14px; display: flex; flex-direction: column; gap: 1px; }
.sf-m-account-list-group { background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden; }
.sf-m-account-list-group + .sf-m-account-list-group { margin-top: 12px; }
.sf-m-account-row { display: grid; grid-template-columns: 32px 1fr auto;
  gap: 12px; align-items: center; padding: 13px 14px;
  border-bottom: 1px solid var(--border); cursor: pointer; }
.sf-m-account-row:last-child { border-bottom: 0; }
.sf-m-account-row .ico { width: 32px; height: 32px; border-radius: 8px;
  background: var(--brand-50); color: var(--brand); display: grid; place-content: center;
  font-size: 13px; }
.sf-m-account-row .ico.danger { background: var(--danger-soft); color: var(--danger); }
.sf-m-account-row b { font-size: 13px; color: var(--ink-900); font-weight: 600; display: block; }
.sf-m-account-row small { font-size: 11px; color: var(--ink-500); display: block; }
.sf-m-account-row .arr { color: var(--ink-300, var(--ink-400)); font-size: 11px; }
.sf-m-account-row .pill { background: var(--orange); color: #fff;
  font-size: 10px; padding: 2px 7px; border-radius: 8px;
  font-weight: 700; margin-right: 4px; }
/* ============================================================
   MOBILE — part 2 styles
   ============================================================ */

/* Generic mobile chrome reuses .sf-m-appbar and .sf-m-tabbar */

/* ---------- Step header (checkout) ---------- */
.sf-m-steps { display: flex; align-items: center; gap: 6px; padding: 14px;
  background: #fff; border-bottom: 1px solid var(--border); }
.sf-m-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.sf-m-step .num { width: 26px; height: 26px; border-radius: 50%;
  background: var(--ink-100); color: var(--ink-500); font-size: 11px;
  font-weight: 700; display: grid; place-content: center; }
.sf-m-step.on .num { background: var(--brand); color: #fff; }
.sf-m-step.done .num { background: var(--success); color: #fff; }
.sf-m-step small { font-size: 9.5px; color: var(--ink-500); font-weight: 500; }
.sf-m-step.on small { color: var(--brand); font-weight: 700; }
.sf-m-step-line { flex: 1; height: 1px; background: var(--border); margin: 0 -2px; align-self: center;
  margin-bottom: 16px; }
.sf-m-step.done + .sf-m-step-line { background: var(--success); }

/* ---------- Form blocks ---------- */
.sf-m-card { background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 14px; margin: 12px 14px 0; }
.sf-m-card h3 { font-size: 13px; font-weight: 700; color: var(--ink-900);
  margin: 0 0 12px; letter-spacing: -0.005em; display: flex;
  align-items: center; justify-content: space-between; }
.sf-m-card h3 .right { font-size: 11.5px; color: var(--brand); font-weight: 600; }
.sf-m-field { margin-bottom: 10px; }
.sf-m-field:last-child { margin-bottom: 0; }
.sf-m-field label { display: block; font-size: 11px; color: var(--ink-500);
  margin-bottom: 4px; font-weight: 500; }
.sf-m-input { width: 100%; height: 40px; padding: 0 12px;
  background: var(--ink-50); border: 1px solid var(--border);
  border-radius: var(--r-sm); font-family: inherit; font-size: 13px;
  color: var(--ink-900); outline: 0; box-sizing: border-box; }
.sf-m-input:focus { border-color: var(--brand); background: #fff; }
.sf-m-input::placeholder { color: var(--ink-400); }
.sf-m-textarea { min-height: 70px; padding: 10px 12px; resize: none; }
.sf-m-fieldrow { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* ---------- Address / payment radio cards ---------- */
.sf-m-radio { display: flex; gap: 12px; align-items: flex-start;
  padding: 12px; border: 1.5px solid var(--border); border-radius: var(--r-md);
  background: #fff; cursor: pointer; }
.sf-m-radio.on { border-color: var(--brand); background: var(--brand-50); }
.sf-m-radio + .sf-m-radio { margin-top: 8px; }
.sf-m-radio .ico { width: 36px; height: 36px; border-radius: 8px;
  background: var(--ink-50); color: var(--ink-700); display: grid; place-content: center;
  font-size: 14px; flex-shrink: 0; }
.sf-m-radio.on .ico { background: var(--brand); color: #fff; }
.sf-m-radio .body { flex: 1; min-width: 0; }
.sf-m-radio .body b { font-size: 12.5px; color: var(--ink-900); display: block; font-weight: 600; }
.sf-m-radio .body small { font-size: 11px; color: var(--ink-500); display: block; line-height: 1.35; }
.sf-m-radio .price { font-size: 12px; font-weight: 700; color: var(--ink-900); }
.sf-m-radio .check { width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--ink-300); flex-shrink: 0; align-self: center; }
.sf-m-radio.on .check { border-color: var(--brand); background: var(--brand);
  box-shadow: inset 0 0 0 4px #fff; }

/* ---------- Order success ---------- */
.sf-m-success { padding: 60px 24px 24px; text-align: center; }
.sf-m-success-icon { width: 88px; height: 88px; border-radius: 50%;
  background: var(--success-soft); color: var(--success);
  display: grid; place-content: center; font-size: 38px; margin: 0 auto 20px;
  position: relative; }
.sf-m-success-icon::after { content: ''; position: absolute; inset: -8px;
  border-radius: 50%; border: 2px solid var(--success); opacity: 0.3; }
.sf-m-success h1 { font-size: 22px; font-weight: 700; color: var(--ink-900);
  margin: 0 0 8px; letter-spacing: -0.01em; }
.sf-m-success p { font-size: 13px; color: var(--ink-500); margin: 0;
  line-height: 1.5; max-width: 280px; margin: 0 auto; }
.sf-m-success-num { display: inline-block; margin-top: 16px;
  padding: 8px 16px; background: var(--ink-50); border: 1px dashed var(--border);
  border-radius: var(--r-sm); font-family: var(--font-mono);
  font-size: 13px; color: var(--ink-900); font-weight: 600; }

/* ---------- Order tracking ---------- */
.sf-m-track-progress { display: flex; padding: 14px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%);
  color: #fff; gap: 0; }
.sf-m-track-progress > div { flex: 1; padding: 14px 8px;
  text-align: center; position: relative; }
.sf-m-track-progress > div + div::before { content: ''; position: absolute;
  left: 0; top: 28px; width: 100%; height: 2px;
  background: rgba(255,255,255,0.25); transform: translateX(-50%); z-index: 0; }
.sf-m-track-progress .ico { width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.2); display: grid; place-content: center;
  margin: 0 auto 6px; position: relative; z-index: 1; font-size: 12px; }
.sf-m-track-progress > .done .ico { background: #fff; color: var(--brand); }
.sf-m-track-progress > .on .ico { background: #FFD06B; color: var(--ink-900);
  box-shadow: 0 0 0 4px rgba(255,208,107,0.3); }
.sf-m-track-progress small { font-size: 9.5px; opacity: 0.85;
  display: block; font-weight: 500; }

.sf-m-track-list { padding: 14px; display: flex; flex-direction: column; gap: 0; }
.sf-m-track-list .row { display: grid; grid-template-columns: 24px 1fr;
  gap: 12px; padding: 10px 0; position: relative; }
.sf-m-track-list .row::before { content: ''; position: absolute;
  left: 11px; top: 32px; bottom: -10px; width: 2px;
  background: var(--ink-200); }
.sf-m-track-list .row:last-child::before { display: none; }
.sf-m-track-list .dot { width: 24px; height: 24px; border-radius: 50%;
  background: var(--ink-100); color: var(--ink-400); display: grid;
  place-content: center; font-size: 9.5px; z-index: 1; }
.sf-m-track-list .row.on .dot { background: var(--brand); color: #fff; }
.sf-m-track-list .row.done .dot { background: var(--success); color: #fff; }
.sf-m-track-list .row.done::before { background: var(--success); }
.sf-m-track-list .body b { font-size: 12.5px; color: var(--ink-900); font-weight: 600; display: block; }
.sf-m-track-list .body small { font-size: 11px; color: var(--ink-500); display: block; }
.sf-m-track-list .body .time { font-size: 10.5px; color: var(--ink-400); margin-top: 2px; display: block; }

/* ---------- Search & Empty ---------- */
.sf-m-searchhead { padding: 10px 14px 14px; background: #fff;
  border-bottom: 1px solid var(--border); }
.sf-m-searchhead .input { display: flex; align-items: center; gap: 10px;
  height: 42px; padding: 0 14px; background: var(--ink-50);
  border-radius: var(--r-pill); border: 1px solid var(--border); }
.sf-m-searchhead .input i { color: var(--ink-400); font-size: 13px; }
.sf-m-searchhead .input input { flex: 1; border: 0; outline: 0;
  background: transparent; font-family: inherit; font-size: 13px; }
.sf-m-searchhead .input b { color: var(--brand); font-size: 12px; font-weight: 600; }
.sf-m-search-suggest { padding: 14px; }
.sf-m-search-suggest h4 { font-size: 12px; font-weight: 700;
  color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.06em;
  margin: 0 0 10px; }
.sf-m-search-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.sf-m-search-recent { background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); }
.sf-m-search-recent .row { display: grid; grid-template-columns: 16px 1fr 16px;
  gap: 12px; align-items: center; padding: 11px 14px;
  border-bottom: 1px solid var(--border); font-size: 12.5px; color: var(--ink-700); }
.sf-m-search-recent .row:last-child { border: 0; }
.sf-m-search-recent .row i:first-child { color: var(--ink-400); font-size: 11px; }
.sf-m-search-recent .row i:last-child { color: var(--ink-300, var(--ink-400)); font-size: 10px; }

.sf-m-empty { padding: 60px 24px 24px; text-align: center; }
.sf-m-empty-icon { width: 80px; height: 80px; border-radius: 50%;
  background: var(--ink-50); color: var(--ink-300, var(--ink-400));
  display: grid; place-content: center; font-size: 30px; margin: 0 auto 16px; }
.sf-m-empty h2 { font-size: 16px; font-weight: 700; color: var(--ink-900);
  margin: 0 0 6px; }
.sf-m-empty p { font-size: 12.5px; color: var(--ink-500); margin: 0 0 16px;
  line-height: 1.5; max-width: 260px; margin-left: auto; margin-right: auto; }

/* ---------- Auth ---------- */
.sf-m-auth-hero { padding: 50px 24px 30px; text-align: center;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-700) 100%);
  color: #fff; }
.sf-m-auth-hero img { height: 36px; margin-bottom: 28px; filter: brightness(0) invert(1); }
.sf-m-auth-hero h1 { font-size: 24px; font-weight: 700; margin: 0 0 6px;
  letter-spacing: -0.015em; }
.sf-m-auth-hero p { font-size: 13px; opacity: 0.88; margin: 0; line-height: 1.5; }
.sf-m-auth-tabs { display: flex; gap: 4px; padding: 4px; background: var(--ink-50);
  border-radius: var(--r-pill); margin: -22px 24px 0; position: relative;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.sf-m-auth-tabs button { flex: 1; height: 38px; border: 0;
  background: transparent; border-radius: var(--r-pill);
  font-family: inherit; font-size: 13px; font-weight: 600;
  color: var(--ink-500); cursor: pointer; }
.sf-m-auth-tabs button.on { background: #fff; color: var(--ink-900);
  box-shadow: var(--shadow-xs); }
.sf-m-auth-form { padding: 22px 24px 0; }
.sf-m-auth-cta { width: 100%; height: 48px; border: 0;
  background: var(--brand); color: #fff; border-radius: var(--r-sm);
  font-family: inherit; font-size: 14px; font-weight: 700;
  margin-top: 8px; cursor: pointer; box-shadow: 0 4px 14px rgba(31,111,235,0.32); }
.sf-m-auth-divider { display: flex; align-items: center; gap: 10px;
  margin: 18px 0; color: var(--ink-400); font-size: 11px; }
.sf-m-auth-divider::before, .sf-m-auth-divider::after { content: '';
  flex: 1; height: 1px; background: var(--border); }
.sf-m-auth-social { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sf-m-auth-social button { height: 44px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  font-family: inherit; font-size: 12.5px; font-weight: 600;
  color: var(--ink-900); display: inline-flex; align-items: center;
  justify-content: center; gap: 8px; cursor: pointer; }
.sf-m-auth-social i { font-size: 14px; }
.sf-m-auth-foot { text-align: center; padding: 20px 24px; font-size: 11.5px;
  color: var(--ink-500); }

/* ---------- Notifications ---------- */
.sf-m-notif-list { padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; }
.sf-m-notif { background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 12px;
  display: grid; grid-template-columns: 36px 1fr; gap: 12px;
  position: relative; }
.sf-m-notif.unread { background: var(--brand-50); border-color: var(--brand-200); }
.sf-m-notif .ico { width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand-50); color: var(--brand); display: grid;
  place-content: center; font-size: 14px; }
.sf-m-notif.order .ico { background: var(--success-soft); color: var(--success); }
.sf-m-notif.promo .ico { background: var(--orange-soft); color: var(--orange); }
.sf-m-notif.alert .ico { background: var(--warning-soft); color: var(--warning); }
.sf-m-notif b { font-size: 12.5px; color: var(--ink-900); display: block; font-weight: 600; }
.sf-m-notif p { font-size: 11.5px; color: var(--ink-500); margin: 4px 0 0;
  line-height: 1.4; }
.sf-m-notif .time { font-size: 10.5px; color: var(--ink-400); margin-top: 6px; display: block; }
.sf-m-notif.unread::after { content: ''; position: absolute; top: 14px; right: 12px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }

/* ---------- Compare (mobile) ---------- */
.sf-m-cmp-head { padding: 12px 14px; background: #fff;
  border-bottom: 1px solid var(--border); display: flex; gap: 8px;
  overflow-x: auto; scrollbar-width: none; }
.sf-m-cmp-head::-webkit-scrollbar { display: none; }
.sf-m-cmp-card { flex: 0 0 130px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 10px; position: relative; }
.sf-m-cmp-card .x { position: absolute; top: 4px; right: 4px;
  width: 22px; height: 22px; border: 0; background: var(--ink-50);
  border-radius: 50%; color: var(--ink-500); font-size: 10px; }
.sf-m-cmp-card .img { aspect-ratio: 1; background: var(--ink-50);
  border-radius: 6px; display: grid; place-content: center;
  color: #C8D1DF; font-size: 22px; margin-bottom: 6px; }
.sf-m-cmp-card .ttl { font-size: 11px; color: var(--ink-900);
  font-weight: 600; line-height: 1.3; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 28px; }
.sf-m-cmp-card .price { font-size: 12.5px; font-weight: 700; color: var(--ink-900);
  margin-top: 4px; }
.sf-m-cmp-add { flex: 0 0 130px; aspect-ratio: 0.85;
  border: 2px dashed var(--border); border-radius: var(--r-md);
  display: grid; place-content: center; gap: 4px; background: var(--ink-50);
  color: var(--ink-500); font-size: 11px; font-weight: 600; cursor: pointer; }
.sf-m-cmp-add i { font-size: 18px; display: block; }
.sf-m-cmp-spec-group { background: #fff; margin-top: 10px;
  border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.sf-m-cmp-spec-group h4 { font-size: 11px; font-weight: 700;
  color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--ink-50); padding: 10px 14px; margin: 0;
  border-bottom: 1px solid var(--border); }
.sf-m-cmp-spec { display: grid; grid-template-columns: 110px 1fr 1fr 1fr;
  font-size: 11px; border-bottom: 1px solid var(--border); }
.sf-m-cmp-spec:last-child { border: 0; }
.sf-m-cmp-spec > div { padding: 9px 8px; border-right: 1px solid var(--border); }
.sf-m-cmp-spec > div:last-child { border: 0; }
.sf-m-cmp-spec .label { color: var(--ink-500); font-weight: 500; background: var(--ink-50); }
.sf-m-cmp-spec b { color: var(--ink-900); font-weight: 600; font-size: 11px; }
.sf-m-cmp-spec .yes { color: var(--success); }
.sf-m-cmp-spec .no { color: var(--ink-400); }

/* ---------- Promo / Campaign landing ---------- */
.sf-m-promo-hero { padding: 30px 18px 26px;
  background: linear-gradient(135deg, var(--orange) 0%, #B83A0E 100%);
  color: #fff; position: relative; overflow: hidden; }
.sf-m-promo-hero::before { content: ''; position: absolute;
  top: -40px; right: -40px; width: 200px; height: 200px;
  background: rgba(255,255,255,0.08); border-radius: 50%; }
.sf-m-promo-hero::after { content: ''; position: absolute;
  bottom: -60px; left: -20px; width: 140px; height: 140px;
  background: rgba(255,255,255,0.06); border-radius: 50%; }
.sf-m-promo-hero .badge { display: inline-block;
  padding: 4px 12px; background: rgba(255,255,255,0.18);
  backdrop-filter: blur(20px); border-radius: var(--r-pill);
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 14px;
  position: relative; z-index: 2; }
.sf-m-promo-hero h1 { font-size: 26px; font-weight: 800;
  letter-spacing: -0.02em; margin: 0 0 8px; line-height: 1.15;
  position: relative; z-index: 2; }
.sf-m-promo-hero h1 em { font-style: normal; color: #FFD06B; font-size: 36px; display: block; }
.sf-m-promo-hero p { font-size: 13px; opacity: 0.92; margin: 0;
  line-height: 1.5; position: relative; z-index: 2; max-width: 90%; }
.sf-m-promo-countdown { display: flex; gap: 6px; margin-top: 16px;
  position: relative; z-index: 2; }
.sf-m-promo-countdown > div { flex: 1; background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px); border-radius: var(--r-sm);
  padding: 8px 4px; text-align: center; }
.sf-m-promo-countdown b { font-size: 18px; font-weight: 700;
  font-feature-settings: 'tnum'; display: block; line-height: 1.1; }
.sf-m-promo-countdown small { font-size: 9px; opacity: 0.85;
  text-transform: uppercase; letter-spacing: 0.06em; display: block; }
