:root {
  --brand: #1e1973;
  --brand-2: #5148d8;
  --brand-3: #8178f2;
  --ink: #17162a;
  --muted: #6d6b7e;
  --line: #e7e6ee;
  --soft: #f6f6fa;
  --surface: #ffffff;
  --success: #1c9b72;
  --warning: #e98c20;
  --danger: #d9485f;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 8px 24px rgba(31, 25, 78, 0.07);
  --shadow: 0 24px 70px rgba(31, 25, 78, 0.12);
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "Manrope", system-ui, sans-serif;
  --container: min(1420px, calc(100vw - 64px));
  --header-h: 60px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; overflow-x: clip; scrollbar-gutter:stable; }
/* Background scroll while an overlay is open is suppressed in JS (see app.ts) so
   the document is never reflow-clamped to the top and the sticky header stays put.
   This class is kept as a state hook only — it must not change root overflow. */
html.is-scroll-locked { }
html.auth-document { scrollbar-gutter:auto; }
body { margin: 0; color: var(--ink); background: #fff; font-family: var(--font-body); -webkit-font-smoothing: antialiased; overflow-x: clip; }
body.menu-open { overscroll-behavior: none; }
body.modal-open, body.cart-open { overscroll-behavior:none; }
body.notification-open { overscroll-behavior:none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(81,72,216,.25); outline-offset: 2px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -.035em; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 110px 0; }
.section--soft { background: #f7f7fb; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-2); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow--light { color: #afaaff; }
.stars { color: #ffb547; letter-spacing: 1px; }
.transition-main { position:relative; opacity:1; }
html.is-changing .transition-main { transition:opacity .12s linear; }
html.is-animating .transition-main { opacity:0; }
.page-loader { position:fixed; inset:0; z-index:10000; display:grid; place-items:center; overflow:hidden; background:rgba(30,25,115,.9); opacity:0; visibility:hidden; pointer-events:none; backdrop-filter:none; -webkit-backdrop-filter:none; will-change:opacity, backdrop-filter; transform:translateZ(0); transition:none; }
html.is-page-loader-entering .page-loader { opacity:0; visibility:visible; pointer-events:auto; backdrop-filter:blur(24px) saturate(1.25); -webkit-backdrop-filter:blur(24px) saturate(1.25); }
html.is-page-booting .page-loader { opacity:1; visibility:visible; pointer-events:auto; backdrop-filter:blur(24px) saturate(1.25); -webkit-backdrop-filter:blur(24px) saturate(1.25); transition:none; }
html.is-page-exiting .page-loader { opacity:1; visibility:visible; pointer-events:auto; backdrop-filter:blur(24px) saturate(1.25); -webkit-backdrop-filter:blur(24px) saturate(1.25); transition:opacity .14s linear, backdrop-filter .3s ease; }
html.is-page-ready .page-loader { opacity:0; visibility:visible; pointer-events:none; backdrop-filter:blur(0px) saturate(1); -webkit-backdrop-filter:blur(0px) saturate(1); transition:opacity .24s linear, backdrop-filter .24s ease; }
html.is-page-loader-hidden .page-loader { opacity:0; visibility:hidden; pointer-events:none; backdrop-filter:none; -webkit-backdrop-filter:none; transition:none; }
.page-loader__spinner { width:42px; height:42px; border:3px solid rgba(255,255,255,.24); border-top-color:#fff; border-radius:50%; opacity:0; animation:pageLoaderSpin .7s linear infinite; animation-play-state:paused; transition:opacity .14s linear; }
html.is-page-loader-entering .page-loader__spinner { opacity:0; animation-play-state:running; }
html.is-page-booting .page-loader__spinner { opacity:1; animation-play-state:running; transition:none; }
html.is-page-exiting .page-loader__spinner { opacity:1; animation-play-state:running; }
html.is-page-ready .page-loader__spinner { opacity:0; animation-play-state:running; }
html.is-page-loader-hidden .page-loader__spinner { opacity:0; animation-play-state:paused; transition:none; }
html.is-page-loader-instant .page-loader,html.is-page-loader-instant .page-loader__spinner { transition:none!important; }
@keyframes pageLoaderSpin { to { transform:rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .page-loader,.transition-main { transition-duration:.01ms!important; }
  .page-loader__spinner { animation:none!important; opacity:1; border-color:rgba(255,255,255,.35); border-top-color:#fff; }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease var(--delay,0s), transform .85s cubic-bezier(.22,1,.36,1) var(--delay,0s); }
.reveal.is-visible { opacity: 1; transform: none; }

.button { min-height: 46px; border: 0; border-radius: 13px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-weight: 700; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button svg { width: 17px; height: 17px; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: linear-gradient(135deg,var(--brand-2),var(--brand)); box-shadow: 0 12px 30px rgba(30,25,115,.23); }
.button--primary:hover { box-shadow: 0 17px 36px rgba(30,25,115,.3); }
.button.is-loading,.add-button.is-loading { pointer-events:none; cursor:wait; }
.button.is-loading { gap:9px; opacity:.92; transform:none; }
.button.is-loading svg,.add-button.is-loading svg { animation:pageLoaderSpin .7s linear infinite; }
.button.is-loading svg { width:17px; height:17px; }
.admin-form-feedback { grid-column:1/-1; display:flex; align-items:center; gap:7px; width:fit-content; max-width:100%; margin-top:8px; padding:8px 10px; border-radius:10px; background:#edf9f2; color:#187044; font-size:11px; font-weight:700; line-height:1.35; animation:toastIn .3s cubic-bezier(.22,1,.36,1); }
.admin-form-feedback svg { width:15px; height:15px; flex:0 0 auto; }
.admin-form-feedback--error { background:#fff0f0; color:var(--danger); }
.admin-form-feedback + .admin-form-feedback { display:none; }
.add-button.is-loading { color:#fff; background:var(--brand); }
.add-button.is-loading svg { width:16px; height:16px; }
.button--secondary { color: var(--brand); background: #ebeaff; }
.button--ghost { color: var(--ink); background: #fff; border: 1px solid var(--line); }
.button--white { color: var(--brand); background: #fff; }
.button--danger { color: var(--danger); background: #fff1f3; }
.button--large { min-height: 54px; padding: 0 23px; border-radius: 15px; }
.button--small { min-height: 38px; padding: 0 14px; font-size: 13px; }
.button--block { width: 100%; }
.button--filter { display: none; background: #fff; border: 1px solid var(--line); }
.icon-button { width: 42px; height: 42px; padding: 0; border: 0; border-radius: 50%; background: transparent; display: inline-grid; place-items: center; cursor: pointer; position: relative; transition: .25s ease; }
.icon-button:hover { color: var(--brand); background: #f1f0fb; }
.icon-button svg { width: 19px; height: 19px; }
.icon-button--surface { background: rgba(255,255,255,.9); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
.icon-button--border { border: 1px solid var(--line); background: #fff; }
.icon-button--large { width: 54px; height: 54px; border-radius: 15px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-weight: 700; font-size: 14px; }
.text-link svg { width: 16px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; color: var(--muted); font-size: 13px; font-weight: 700; }
.back-link svg { width: 16px; }
.pill { display: inline-flex; align-items: center; min-height: 25px; padding: 0 10px; border-radius: 99px; color: var(--brand); background: #ecebff; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.pill--dark { color: #fff; background: var(--ink); }
.status { display: inline-flex; align-items: center; gap: 7px; width: max-content; color: var(--success); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.status > i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px color-mix(in srgb,currentColor 12%,transparent); }
.status--expiring-soon { color: var(--warning); }
.status--expired { color: #92909d; }
.status--large { padding: 10px 14px; border-radius: 99px; background: #eaf8f3; }
.chip { min-height: 34px; padding: 0 13px; border: 1px solid var(--line); border-radius: 99px; background: #fff; font-size: 12px; font-weight: 700; cursor: pointer; }
.chip.is-active { color: #fff; background: var(--brand); border-color: var(--brand); }

.announcement-bar { color: #fff; background: #16124d; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 12px; }
.announcement-bar__inner { height: 37px; display: flex; align-items: center; justify-content: space-between; }
.announcement-bar span, .announcement-bar a { display: flex; align-items: center; gap: 7px; }
.announcement-bar svg { width: 14px; height: 14px; }
.announcement-bar__center { opacity: .72; }
.site-header { position: sticky; top: 0; z-index: 200; isolation:isolate; transform:translateZ(0); background: #16124d; backdrop-filter: none; -webkit-backdrop-filter: none; transition: background-color .4s ease, border-color .35s ease, backdrop-filter .4s ease, box-shadow .3s ease; }
.site-header.is-scrolled { background: rgba(255,255,255,.9); border-bottom-color: rgba(231,230,238,.75); backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4); box-shadow: 0 10px 35px rgba(31,25,78,.08); }
/* Transparent header while it overlays a (dark) hero — homepage and subpages.
   The .is-hero class is toggled in JS the moment the header leaves the hero. */
.site-header.is-hero { background: transparent; border-bottom-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none; }

/* Default (dark navy) — white text/icons for announcement-bar continuity */
.site-header:not(.is-scrolled) .brand__word { color: #fff; }
.site-header:not(.is-scrolled) .desktop-nav > a, .site-header:not(.is-scrolled) .nav-menu > button { color: rgba(255,255,255,.85); transition: color .35s ease; }
.site-header:not(.is-scrolled) .icon-button, .site-header:not(.is-scrolled) .menu-button { color: #fff; }
.site-header:not(.is-scrolled) .icon-button:hover { color: #fff; background: rgba(255,255,255,.14); }
.site-header:not(.is-scrolled) .header-search { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); }
.site-header:not(.is-scrolled) .header-search__placeholder { color: rgba(255,255,255,.7); }
.site-header:not(.is-scrolled) .header-search:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.3); }
.site-header:not(.is-scrolled) .header-search svg { color: rgba(255,255,255,.75); }
.site-header:not(.is-scrolled) .header-search kbd { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); }

/* Scrolled state — revert to dark ink on frosted-white background */
.site-header.is-scrolled .brand__word { color: var(--brand); }
.site-header.is-scrolled .desktop-nav > a, .site-header.is-scrolled .nav-menu > button { color: var(--ink); }
.site-header.is-scrolled .desktop-nav > a:hover::after, .site-header.is-scrolled .nav-menu:hover > button::after { background: #f0eff8; }
.site-header.is-scrolled .desktop-nav > a.is-active::after, .site-header.is-scrolled .nav-menu.is-active > button::after { background: #eeedff; }
.site-header.is-scrolled .desktop-nav > a.is-active, .site-header.is-scrolled .nav-menu.is-active > button { color: var(--brand); }
.site-header.is-scrolled .icon-button, .site-header.is-scrolled .menu-button { color: var(--ink); }
.site-header.is-scrolled .icon-button:hover { color: var(--brand); background: #eeedff; }
.site-header.is-scrolled .header-search { background: #f5f4fb; border-color: var(--line); }
.site-header.is-scrolled .header-search__placeholder { color: var(--muted); }
.site-header.is-scrolled .header-search:hover { background: #ededf3; border-color: rgba(180,175,215,.5); }
.site-header.is-scrolled .header-search svg { color: var(--muted); }
.site-header.is-scrolled .header-search kbd { color: var(--muted); border-color: var(--line); background: #fff; }

/* is-hero rules kept for explicit hero-page transparent overlay (redundant but safe) */
.site-header.is-hero .brand__word { color: #fff; }
.site-header.is-hero .desktop-nav > a, .site-header.is-hero .nav-menu > button { color: #fff; transition: color .35s ease; }
.site-header.is-hero .icon-button, .site-header.is-hero .menu-button { color: #fff; }
.site-header.is-hero .icon-button:hover { color: #fff; background: rgba(255,255,255,.16); }
.site-header.is-hero .header-search { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.26); }
.site-header.is-hero .header-search__placeholder { color: rgba(255,255,255,.78); }
.site-header.is-hero .header-search:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.32); }
.site-header.is-hero .header-search svg { color: rgba(255,255,255,.82); }
.site-header.is-hero .header-search kbd { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.12); }
.site-header__inner { height: 60px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 9px; flex: none; }
.brand__mark { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg,var(--brand-2),var(--brand)); font: 800 18px/1 var(--font-display); transform: rotate(-4deg); box-shadow: 0 8px 18px rgba(30,25,115,.22); }
.brand__word { color: var(--brand); font: 800 22px/1 var(--font-display); letter-spacing: -.07em; }
.brand--light .brand__word { color: #fff; }
.brand--light .brand__mark { color: var(--brand); background: #fff; }
.desktop-nav { display: flex; align-items: center; gap: 25px; }
.desktop-nav > a, .nav-menu > button { height: 78px; padding: 0; border: 0; display: flex; align-items: center; gap: 4px; background: transparent; font-size: 13px; font-weight: 700; white-space: nowrap; cursor: pointer; position: relative; isolation: isolate; }
/* Pill active/hover indicator — sits behind the link label in the element's own
   isolated stacking context so it can never bleed onto the header background.
   Default (dark header) colours; scrolled-state colours are overridden below. */
.desktop-nav > a::after, .nav-menu > button::after { content:""; position: absolute; top: 17px; bottom: 17px; left: -12px; right: -12px; border-radius: 12px; background: transparent; z-index: -1; transition: background .22s ease, box-shadow .22s ease; }
.desktop-nav > a:hover::after, .nav-menu:hover > button::after { background: rgba(255,255,255,.12); }
.desktop-nav > a.is-active::after, .nav-menu.is-active > button::after { background: rgba(255,255,255,.2); }
.desktop-nav > a.is-active, .nav-menu.is-active > button { color: #fff; }
.nav-menu { height:78px; display:flex; align-items:center; position:relative; }
.nav-menu > button svg { width: 14px; }
.nav-menu__panel { position:absolute; top:calc(100% + 14px); left:-18px; width:min(760px,calc(100vw - 48px)); padding:18px; border:1px solid var(--line); border-radius:22px; background:#fff; box-shadow:var(--shadow); display:grid; grid-template-columns:minmax(0,1fr) 250px; gap:18px; opacity:0; visibility:hidden; transform:translateY(12px) scale(.99); transform-origin:top center; transition:opacity .22s ease,transform .26s cubic-bezier(.22,1,.36,1),visibility .26s; }
.nav-menu__panel::before { content:""; position:absolute; left:0; right:0; top:-16px; height:16px; }
.nav-menu__panel::after { content:""; position:absolute; top:-7px; left:34px; width:14px; height:14px; border-left:1px solid var(--line); border-top:1px solid var(--line); border-top-left-radius:3px; background:#fff; transform:rotate(45deg); }
.nav-menu:hover .nav-menu__panel, .nav-menu:focus-within .nav-menu__panel { opacity:1; visibility:visible; transform:translateY(0) scale(1); }
/* Force-close after a dropdown link is clicked, even while the pointer is still
   over the menu (common right after a SWUP navigation). The normal panel
   transition still runs, so it animates shut. Cleared on pointerleave so an
   intentional re-hover can reopen it. */
.nav-menu.is-dismissed .nav-menu__panel { opacity:0; visibility:hidden; transform:translateY(12px) scale(.99); pointer-events:none; }
.nav-menu.is-closing .nav-menu__panel { transition:opacity .2s ease,transform .24s cubic-bezier(.22,1,.36,1),visibility .24s; }
.nav-menu__panel > div:first-child { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.nav-menu__eyebrow { grid-column: 1/-1; padding: 5px 10px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.nav-menu__panel a { min-height: 65px; padding: 10px; border-radius: 13px; display: flex; align-items: center; gap: 12px; transition: background .2s ease; }
.nav-menu__panel a:hover { background: var(--soft); }
.nav-menu__panel a > svg { width: 35px; height: 35px; padding: 9px; color: var(--brand); background: #eeedff; border-radius: 10px; }
.nav-menu__panel a span { display: flex; flex-direction: column; gap: 3px; }
.nav-menu__panel a strong { font-size: 13px; }
.nav-menu__panel a small { color: var(--muted); font-size: 11px; }
.nav-menu__feature { padding: 26px; border-radius: 17px; color: #fff; background: radial-gradient(circle at 85% 10%,#5c55be,transparent 38%),#17134f; display: flex; flex-direction: column; justify-content: flex-end; }
.nav-menu__feature > span { color: #aaa5ff; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.nav-menu__feature > strong { margin: 10px 0 25px; font: 700 23px/1.2 var(--font-display); }
.nav-menu__feature a { min-height: auto; padding: 0; font-size: 12px; }
.nav-menu__feature a:hover { background: none; }
.nav-menu__feature a svg { width: 15px; height: 15px; padding: 0; color: #fff; background: none; }
.header-search { height: 43px; min-width: 220px; max-width: 400px; margin-left: auto; padding: 0 11px; border: 1px solid var(--line); border-radius: 13px; background: #f8f8fb; display: flex; align-items: center; gap: 9px; cursor: pointer; text-align: left; transition: border-color .2s ease, background .2s ease; }
.header-search:hover { border-color: #d6d4e6; background: #f1f0f7; }
.header-search svg { width: 16px; color: var(--muted); }
.header-search__placeholder { flex: 1; min-width: 0; color: var(--muted); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.header-search kbd { padding: 2px 6px; border: 1px solid #dddce5; border-radius: 5px; color: #9694a0; background: #fff; font-size: 10px; }
.header-actions { display: flex; align-items: center; gap: 2px; }
.action-count { position: absolute; top: 1px; right: 0; min-width: 17px; height: 17px; padding: 0 4px; border: 2px solid #fff; border-radius: 99px; display: grid; place-items: center; color: #fff; background: var(--brand-2); font-size: 10px; font-weight: 800; }
.menu-button { display: none; }
.mobile-menu { display: none; }
.nav-drawer-scrim { display: none; }
.mobile-bottom-nav { display: none; }

.site-footer { padding: 80px 0 22px; color: #c9c7db; background: #12103e; }
.footer-promise { padding: 0 0 65px; border-bottom: 1px solid rgba(255,255,255,.1); display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; }
.footer-promise h2 { margin: 12px 0 0; color: #fff; font-size: clamp(32px,4vw,52px); line-height: 1.08; }
.footer-promise__items { display: grid; gap: 15px; min-width: 300px; }
.footer-promise__items span { display: flex; align-items: center; gap: 11px; font-size: 13px; }
.footer-promise__items svg { width: 19px; color: #9f99ff; }
.footer-grid { padding: 65px 0; display: grid; grid-template-columns: 1.35fr .7fr .7fr .7fr 1.2fr; gap: 55px; }
.footer-brand p { max-width: 270px; margin: 23px 0; font-size: 13px; line-height: 1.7; }
.socials { display: flex; gap: 9px; }
.socials a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; display: grid; place-items: center; }
.socials svg { width: 16px; }
.footer-grid h3 { margin-bottom: 19px; color: #fff; font-size: 13px; letter-spacing: 0; }
.footer-grid > div:not(.footer-brand) > a { display: block; margin: 11px 0; font-size: 12px; transition: color .2s ease; }
.footer-grid a:hover { color: #fff; }
.footer-newsletter p { font-size: 12px; line-height: 1.6; }
.footer-newsletter form { height: 45px; margin: 16px 0 9px; padding-left: 13px; border: 1px solid rgba(255,255,255,.17); border-radius: 11px; display: flex; align-items: center; }
.footer-newsletter input { flex: 1; min-width: 0; border: 0; outline: 0; color: #fff; background: transparent; font-size: 12px; }
.footer-newsletter button { width: 42px; height: 100%; border: 0; border-radius: 10px; color: var(--brand); background: #fff; display: grid; place-items: center; }
.footer-newsletter button svg { width: 16px; }
.footer-newsletter small { font-size: 11px; color: #89869f; }
.footer-bottom { padding-top: 21px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 30px; font-size: 10px; }
.footer-bottom div { display: flex; gap: 25px; }

.product-visual { position: relative; width: 100%; height: 100%; min-height: 220px; overflow: hidden; display: grid; place-items: center; background: radial-gradient(circle at 70% 25%,color-mix(in srgb,var(--accent) 45%,#fff),transparent 32%),linear-gradient(145deg,#f4f4fa,#e8e7f0); }
.product-visual--image{background:#fff}.product-visual--image img{width:100%;height:100%;display:block;object-fit:contain;object-position:center;padding:5%;transition:transform .45s cubic-bezier(.22,1,.36,1)}.product-card:hover .product-visual--image img,.product-visual--image:hover img{transform:scale(1.035)}.product-visual--image.is-fallback img{padding:0}
.product-visual__glow { position: absolute; width: 65%; aspect-ratio: 1; border-radius: 50%; background: var(--accent); filter: blur(50px); opacity: .2; }
.product-object { position: relative; width: 58%; height: 58%; display: grid; place-items: center; filter: drop-shadow(0 22px 20px rgba(22,17,65,.2)); transition: transform .6s cubic-bezier(.22,1,.36,1); }
.product-visual:hover .product-object, .product-card:hover .product-object { transform: translateY(-6px) rotate(-2deg) scale(1.035); }
.render-label { position: absolute; left: 12px; bottom: 10px; padding: 5px 8px; border-radius: 99px; color: #747182; background: rgba(255,255,255,.7); backdrop-filter: blur(8px); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; opacity: .75; }
.charger-body { width: 55%; aspect-ratio: .78; border-radius: 17%; background: linear-gradient(145deg,#434451,#1c1d24); box-shadow: inset -10px -10px 20px rgba(0,0,0,.23),inset 6px 6px 12px rgba(255,255,255,.14); transform: rotate(-8deg); position: relative; }
.charger-body::before { content:""; position:absolute; top:18%; left:18%; width:23%; height:7%; border-radius:99px; background:#0d0e12; box-shadow: 0 19px #0d0e12, 0 38px #0d0e12; }
.charger-body::after { content:"GaN"; position:absolute; right:12%; bottom:15%; color:#aaaab4; font:700 9px var(--font-display); }
.charger-body i,.charger-body b { position:absolute; right:-15%; width:21%; height:5%; border-radius:2px; background:linear-gradient(#dedfe2,#8b8d92); }
.charger-body i { top:26%; }.charger-body b { top:56%; }
.charger-body em { position:absolute; left:15%; bottom:-8%; width:70%; height:12%; border-radius:50%; background:rgba(10,10,18,.2); filter:blur(7px); }
.powerbank-body { width: 62%; aspect-ratio: .62; border-radius: 18%; background: linear-gradient(145deg,#3b3c46,#15161c); box-shadow: inset -10px -12px 20px rgba(0,0,0,.24),inset 8px 8px 15px rgba(255,255,255,.12); transform: rotate(8deg); position: relative; }
.powerbank-body::before { content:""; position:absolute; inset:11%; border:1px solid rgba(255,255,255,.12); border-radius:15%; }
.powerbank-body i { position:absolute; inset:0; display:grid; place-items:center; color:var(--accent); font:800 28px var(--font-display); font-style:normal; }
.powerbank-body b { position:absolute; right:10%; top:8%; width:24%; height:4px; border-radius:99px; background:var(--accent); box-shadow:0 7px 0 rgba(255,255,255,.12); }
.cable-body { width: 85%; aspect-ratio: 1.8; position:relative; border:10px solid #31323c; border-left-color:transparent; border-radius:50%; transform:rotate(-14deg); }
.cable-body::before,.cable-body::after { content:""; position:absolute; width:26%; height:30%; border-radius:7px; background:linear-gradient(90deg,#353641,#18191f); }
.cable-body::before { left:-16%; top:10%; }.cable-body::after { right:-15%; bottom:7%; transform:rotate(180deg); }
.cable-body i,.cable-body b { position:absolute; width:12%; height:16%; background:#b8bac1; border-radius:2px; z-index:2; }
.cable-body i { left:-23%; top:17%; }.cable-body b { right:-21%; bottom:14%; }
.earbuds-case { width:72%; aspect-ratio:1.2; border-radius:45% 45% 38% 38%; background:linear-gradient(150deg,#444650,#15161c); box-shadow:inset -12px -14px 22px rgba(0,0,0,.25),inset 9px 8px 14px rgba(255,255,255,.12); position:relative; transform:rotate(-4deg); }
.earbuds-case::before { content:""; position:absolute; left:7%; right:7%; top:45%; height:1px; background:rgba(255,255,255,.17); }
.earbuds-case::after { content:"soundcore"; position:absolute; left:0; right:0; bottom:15%; text-align:center; color:#8e9099; font:700 7px var(--font-display); }
.earbuds-case i,.earbuds-case b { position:absolute; top:-30%; width:24%; height:70%; border-radius:60% 60% 45% 45%; background:linear-gradient(145deg,#4a4c56,#17181e); box-shadow:inset 4px 4px 7px rgba(255,255,255,.1); }
.earbuds-case i { left:17%; transform:rotate(-13deg); }.earbuds-case b { right:17%; transform:rotate(13deg); }
.earbuds-case i::after,.earbuds-case b::after { content:""; position:absolute; width:35%; aspect-ratio:1; border-radius:50%; background:var(--accent); opacity:.65; top:9%; left:32%; }
.earbuds-case em { position:absolute; left:47%; bottom:5%; width:6%; aspect-ratio:1; border-radius:50%; background:var(--accent); box-shadow:0 0 10px var(--accent); }
.speaker-body { width:78%; aspect-ratio:1.75; border-radius:28px; background:linear-gradient(145deg,#343842,#111319); box-shadow:inset -8px -10px 17px rgba(0,0,0,.3),inset 6px 6px 12px rgba(255,255,255,.1); position:relative; transform:rotate(-5deg); overflow:hidden; }
.speaker-body::before { content:""; position:absolute; inset:8px; border-radius:21px; background-image:radial-gradient(circle,#636773 1px,transparent 1.5px); background-size:5px 5px; opacity:.65; }
.speaker-body::after { content:"soundcore"; position:absolute; inset:0; display:grid; place-items:center; color:#d2d4db; font:800 9px var(--font-display); letter-spacing:.08em; }
.speaker-body i { position:absolute; right:10%; top:-12%; width:18%; height:32%; border:4px solid #25272f; border-bottom:0; border-radius:50% 50% 0 0; }
.speaker-body b { position:absolute; left:11%; bottom:11%; width:6px; height:6px; border-radius:50%; background:var(--accent); z-index:2; box-shadow:11px 0 0 rgba(255,255,255,.4); }
.receiver-body { width:65%; aspect-ratio:1.4; border-radius:22%; background:linear-gradient(145deg,#474953,#15161c); position:relative; transform:rotate(7deg); box-shadow:inset -10px -10px 18px rgba(0,0,0,.28),inset 6px 6px 12px rgba(255,255,255,.1); }
.receiver-body::before { content:"Bluetooth"; position:absolute; inset:0; display:grid; place-items:center; color:#9b9da7; font:700 8px var(--font-display); }
.receiver-body i { position:absolute; right:-38%; top:45%; width:40%; height:6px; border-radius:99px; background:#252730; }
.receiver-body i::after { content:""; position:absolute; right:-18%; top:-7px; width:20%; height:20px; border-radius:4px; background:#aeb0b7; }
.receiver-body b { position:absolute; left:15%; bottom:15%; width:7px; height:7px; border-radius:50%; background:var(--accent); box-shadow:0 0 12px var(--accent); }

.hero { height: 100vh; min-height: 600px; overflow: hidden; position: relative; color: #fff; background: radial-gradient(circle at 15% 15%,rgba(102,91,230,.45),transparent 28%),radial-gradient(circle at 80% 60%,rgba(75,66,179,.42),transparent 34%),#15114f; }
.hero, .shop-hero, .simple-hero { margin-top: calc(-1 * var(--header-h)); }
.hero::before { content:""; position:absolute; inset:0; opacity:.25; background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size:58px 58px; mask-image:linear-gradient(to right,#000,transparent 78%); }
.hero__orb { position:absolute; border-radius:50%; filter:blur(20px); opacity:.25; }
.hero__orb--one { width:440px; height:440px; top:-180px; right:12%; background:#736aea; }
.hero__orb--two { width:300px; height:300px; bottom:-140px; left:35%; background:#4b45aa; }
.hero__grid { height:100%; min-height:0; display:flex; align-items:center; justify-content:flex-start; position:relative; z-index:1; }
.hero__copy { padding:calc(var(--header-h) + 20px) 0 40px; max-width:760px; display:flex; flex-direction:column; align-items:flex-start; text-align:left; }
.hero__eyebrow { display:flex; align-items:center; justify-content:flex-start; gap:10px; color:#b8b4f7; font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.13em; }
.hero__eyebrow span { width:25px; height:1px; background:#827bf0; }
.hero h1 { margin:23px 0 25px; font-size:clamp(58px,6vw,90px); line-height:.98; letter-spacing:-.07em; text-align:left; }
.hero h1 em { color:#aaa4ff; font-style:normal; }
.hero__copy > p { max-width:620px; color:#c5c2df; font-size:17px; line-height:1.75; text-align:left; }
.hero__actions { margin:35px 0 42px; display:flex; justify-content:flex-start; gap:12px; }
.hero__actions .button--ghost { color:#fff; border-color:rgba(255,255,255,.18); background:rgba(255,255,255,.08); backdrop-filter:blur(10px); }
.hero__proof { display:flex; align-items:center; justify-content:flex-start; gap:17px; }
.mobile-app-promo { display:none; }
.avatar-stack { display:flex; }
.avatar-stack span { width:33px; height:33px; margin-left:-8px; border:2px solid #292369; border-radius:50%; display:grid; place-items:center; color:#fff; background:linear-gradient(145deg,#6961dc,#363080); font-size:10px; font-weight:800; }
.avatar-stack span:first-child { margin-left:0; }
.hero__proof > div:last-child { display:grid; grid-template-columns:auto auto; align-items:center; gap:2px 8px; }
.hero__proof .stars { font-size:10px; }
.hero__proof strong { font-size:11px; }
.hero__proof small { grid-column:1/-1; color:#9894b8; font-size:10px; }
.hero__stage { height:100%; min-height:650px; position:relative; perspective:1000px; }
.hero__ring { position:absolute; border:1px solid rgba(255,255,255,.1); border-radius:50%; }
.hero__ring--one { width:570px; height:570px; right:2%; top:8%; }
.hero__ring--two { width:410px; height:410px; right:13%; top:20%; border-style:dashed; animation:spin 30s linear infinite; }
@keyframes spin { to { transform:rotate(360deg); } }
.hero-product { position:absolute; }
.hero-product .render-label { display:none; }
.hero-product .product-visual { background:transparent; overflow:visible; }
.hero-product .product-visual__glow { opacity:.38; }
.hero-product--main { width:420px; height:470px; right:14%; top:12%; transform:rotate(6deg); animation:heroFloat 6s ease-in-out infinite; }
.hero-product--main .product-object { width:72%; height:72%; transform:scale(1.25); }
.hero-product--side { width:240px; height:280px; left:3%; bottom:8%; transform:rotate(-8deg); animation:heroFloat 7s ease-in-out 1s infinite reverse; }
.hero-product--side .product-object { width:75%; height:75%; }
@keyframes heroFloat { 0%,100% { translate:0 0; } 50% { translate:0 -16px; } }
.floating-card { position:absolute; padding:12px 15px; border:1px solid rgba(255,255,255,.14); border-radius:15px; display:flex; align-items:center; gap:10px; background:rgba(33,28,94,.62); box-shadow:0 18px 40px rgba(0,0,0,.18); backdrop-filter:blur(14px); }
.floating-card > span:first-child { width:34px; height:34px; border-radius:10px; display:grid; place-items:center; color:#b9b5ff; background:rgba(255,255,255,.1); }
.floating-card svg { width:17px; }
.floating-card div { display:flex; flex-direction:column; }
.floating-card strong { font-size:11px; }.floating-card small { margin-top:2px; color:#aaa6c5; font-size:11px; }
.floating-card--warranty { right:0; top:23%; }
.floating-card--stock { left:4%; top:32%; }
.pulse-dot { width:10px!important; height:10px!important; border-radius:50%!important; background:#63e6b4!important; box-shadow:0 0 0 7px rgba(99,230,180,.12); }
.hero-scroll { position:absolute; right:2%; bottom:33px; display:flex; align-items:center; gap:10px; color:#807ca2; font-size:11px; text-transform:uppercase; letter-spacing:.12em; }
.hero-scroll svg { width:15px; animation:bob 1.5s ease-in-out infinite; }
@keyframes bob { 50% { transform:translateY(5px); } }

.trust-strip { border-bottom:1px solid var(--line); background:#fff; }
.trust-strip__grid { min-height:92px; display:grid; grid-template-columns:repeat(4,1fr); }
.trust-strip__grid > div { padding:20px 28px; border-left:1px solid var(--line); display:flex; align-items:center; gap:13px; }
.trust-strip__grid > div:last-child { border-right:1px solid var(--line); }
.trust-strip svg { width:25px; color:var(--brand-2); }
.trust-strip span { display:flex; flex-direction:column; gap:3px; }
.trust-strip strong { font-size:12px; }.trust-strip small { color:var(--muted); font-size:10px; }
.section-heading { margin-bottom:40px; display:flex; align-items:flex-end; justify-content:space-between; gap:30px; }
.section-heading h2 { margin:9px 0 0; font-size:clamp(33px,4vw,50px); line-height:1.08; }
.section-heading p { max-width:560px; margin:13px 0 0; color:var(--muted); line-height:1.7; }
.home-page .section-heading { margin-bottom:32px; }
.home-page .category-section { padding:82px 0 68px; }
.home-page .home-audio-campaign { padding:16px 0 78px; }
.home-page .section--soft { padding:84px 0; }
.home-page .story-section { padding:88px 0 76px; }
.home-page .brand-promise { padding:16px 0 76px; }
.home-page .brand-promise + .section { padding:82px 0; }
.home-page .newsletter-section { padding:8px 0 76px; }
.category-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.category-card { min-height:155px; padding:25px; border:1px solid var(--line); border-radius:var(--radius); display:flex; align-items:center; gap:16px; position:relative; overflow:hidden; transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease; }
.category-card:hover { transform:translateY(-5px); border-color:#c9c5ef; box-shadow:var(--shadow-sm); }
.category-card__icon { width:52px; height:52px; border-radius:15px; display:grid; place-items:center; color:var(--brand); background:#eeedff; position:relative; z-index:1; }
.category-card__icon svg { width:24px; }
.category-card > span { display:flex; flex-direction:column; gap:6px; position:relative; z-index:1; }
.category-card strong { font:700 17px var(--font-display); }.category-card small { color:var(--muted); font-size:11px; }
.category-card > svg { width:17px; margin-left:auto; align-self:flex-start; color:#aaa8b5; position:relative; z-index:1; }
.category-card__shape { position:absolute; width:120px; height:120px; right:-40px; bottom:-55px; border-radius:50%; background:#f2f1ff; transition:transform .4s ease; }
.category-card:hover .category-card__shape { transform:scale(1.5); }
.product-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.product-grid--scroll { grid-template-columns:repeat(6,calc((100% - 54px)/4)); overflow-x:auto; overflow-y:hidden; overscroll-behavior-x:contain; scrollbar-width:none; scroll-snap-type:x mandatory; padding:18px 8px 44px; margin:-18px -8px -28px; scroll-padding-left:8px; }
.product-grid--scroll::-webkit-scrollbar { display:none; }
.product-grid--scroll .product-card { scroll-snap-align:start; }
.home-audio-campaign { padding:30px 0 105px; }
.home-audio-campaign__inner { min-height:560px; border-radius:34px; overflow:hidden; position:relative; display:flex; align-items:center; color:#fff; background-image:linear-gradient(90deg,rgba(4,5,24,.84) 0%,rgba(5,7,29,.64) 36%,rgba(5,7,29,.12) 64%,rgba(5,7,29,.04) 100%),url("/assets/campaigns/soundcore-r50i-nc-immersive-banner.jpg"); background-size:cover; background-position:center; box-shadow:0 18px 46px rgba(21,17,79,.12); isolation:isolate; }
.home-audio-campaign__inner::after { content:""; position:absolute; inset:0; z-index:0; pointer-events:none; background:linear-gradient(180deg,rgba(255,255,255,.04),transparent 30%,rgba(1,2,14,.2)); }
.home-audio-campaign__copy { width:min(520px,47%); margin-left:7%; position:relative; z-index:1; }
.home-audio-campaign__copy .eyebrow { color:#bcb7ff; font-size:12px; letter-spacing:.13em; }
.home-audio-campaign h2 { margin:15px 0 18px; color:#fff; font-size:clamp(43px,4.7vw,70px); line-height:1.02; letter-spacing:-.045em; }
.home-audio-campaign h2 > span { white-space:nowrap; }
.home-audio-campaign h2 em { color:#b9b4ff; font-style:normal; }
.home-audio-campaign p { max-width:450px; margin:0; color:rgba(255,255,255,.7); font-size:14px; line-height:1.75; }
.home-audio-campaign__actions { margin-top:31px; display:flex; align-items:center; gap:21px; }
.home-audio-campaign__actions > span { display:flex; align-items:center; gap:8px; color:rgba(255,255,255,.62); font-size:11px; font-weight:700; line-height:1.45; white-space:nowrap; }
.home-audio-campaign__actions > span svg { width:16px; flex:none; color:#aaa4ff; }
.carousel-controls { display:flex; gap:8px; }
.product-card { min-width:0; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:#fff; content-visibility:auto; contain-intrinsic-size:360px; transition:transform .35s cubic-bezier(.22,1,.36,1),box-shadow .35s ease,border-color .35s ease; }
.product-card:hover { transform:translateY(-7px); border-color:#d5d2ee; box-shadow:0 22px 50px rgba(31,25,78,.11); }
.product-card__media { height:285px; position:relative; overflow:hidden; }
.product-card__media > a { display:block; width:100%; height:100%; }
.product-card__media .product-visual { min-height:100%; }
.product-card__badges { position:absolute; top:13px; left:13px; display:flex; gap:5px; }
.product-card__actions { position:absolute; top:12px; right:12px; display:grid; gap:7px; opacity:0; transform:translateX(8px); transition:.25s ease; }
.product-card:hover .product-card__actions { opacity:1; transform:none; }
.product-card__content { padding:18px 19px 16px; }
.product-card__meta { display:flex; justify-content:space-between; color:var(--muted); font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.product-card__meta > span:first-child { min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.product-card__points { margin-left:auto; padding-left:8px; display:inline-flex; align-items:center; gap:4px; color:var(--brand-2); white-space:nowrap; }
.product-card__points svg { width:11px; height:11px; flex:none; }
.product-card h3 { min-height:45px; margin:9px 0; font-size:15px; line-height:1.42; letter-spacing:-.025em; }
.product-card__rating { display:flex; align-items:center; gap:7px; }
.product-card__rating span { color:#ffb547; font-size:11px; letter-spacing:0; }
.product-card__rating small { color:#aaa8b3; font-size:11px; }
.product-card__bottom { margin-top:17px; display:flex; align-items:center; justify-content:space-between; }
.product-card__bottom > div { display:flex; flex-direction:column; }
.product-card__bottom strong { font:800 17px var(--font-display); }
.product-card__bottom small { margin-top:2px; color:#aaa8b3; font-size:10px; }
.add-button { width:39px; height:39px; border:0; border-radius:12px; display:grid; place-items:center; color:#fff; background:var(--brand); cursor:pointer; transition:.25s ease; }
.add-button:hover { transform:rotate(8deg) scale(1.07); background:var(--brand-2); }
.add-button svg { width:17px; }
@media(hover:hover) and (pointer:fine){
  .product-card [data-card-tooltip] { position:relative; }
  .product-card [data-card-tooltip]::before,
  .product-card [data-card-tooltip]::after { position:absolute; z-index:5; opacity:0; visibility:hidden; pointer-events:none; transition:opacity .16s ease,transform .16s ease,visibility .16s; }
  .product-card [data-card-tooltip]::before { content:attr(data-card-tooltip); right:calc(100% + 9px); top:50%; max-width:150px; padding:7px 9px; border-radius:7px; color:#fff; background:rgba(19,16,58,.96); box-shadow:0 10px 24px rgba(19,16,58,.18); font:800 9px/1.2 var(--font-body); white-space:nowrap; transform:translate(5px,-50%); }
  .product-card [data-card-tooltip]::after { content:""; right:calc(100% + 4px); top:50%; border:5px solid transparent; border-left-color:rgba(19,16,58,.96); transform:translate(5px,-50%); }
  .product-card [data-card-tooltip]:hover::before,
  .product-card [data-card-tooltip]:hover::after,
  .product-card [data-card-tooltip]:focus-visible::before,
  .product-card [data-card-tooltip]:focus-visible::after { opacity:1; visibility:visible; transform:translate(0,-50%); }
  .product-card__bottom [data-card-tooltip]::before { right:0; top:auto; bottom:calc(100% + 9px); transform:translateY(5px); }
  .product-card__bottom [data-card-tooltip]::after { right:14px; top:auto; bottom:calc(100% + 4px); border-color:rgba(19,16,58,.96) transparent transparent transparent; transform:translateY(5px); }
  .product-card__bottom [data-card-tooltip]:hover::before,
  .product-card__bottom [data-card-tooltip]:hover::after,
  .product-card__bottom [data-card-tooltip]:focus-visible::before,
  .product-card__bottom [data-card-tooltip]:focus-visible::after { transform:translateY(0); }
}
.stock-line { margin-top:14px; padding-top:12px; border-top:1px solid #efeff3; display:flex; align-items:center; gap:6px; color:var(--success); font-size:11px; font-weight:700; }
.stock-line > i { width:6px; height:6px; border-radius:50%; background:currentColor; }
.stock-line--low { color:var(--warning); }
.stock-line span { margin-left:auto; display:flex; align-items:center; gap:4px; color:var(--muted); }
.stock-line--warranty-only span { margin-left:0; }
.stock-line span svg { width:12px; }
.story-grid { display:grid; grid-template-columns:1fr 1fr; gap:110px; align-items:center; }
.story-visual { min-height:620px; position:relative; display:grid; place-items:center; }
.story-visual__halo { position:absolute; width:520px; aspect-ratio:1; border-radius:50%; background:radial-gradient(circle,#dedcff 0,#f2f1ff 52%,transparent 53%); }
.warranty-phone { width:330px; min-height:580px; padding:25px 22px; border:8px solid #20202a; border-radius:42px; background:#fff; box-shadow:0 40px 90px rgba(31,25,78,.2); position:relative; z-index:1; transform:rotate(-3deg); }
.warranty-phone__top { height:48px; display:flex; align-items:flex-start; justify-content:space-between; font-size:11px; }
.warranty-phone__top strong { font:800 14px var(--font-display); color:var(--brand); }
.warranty-phone__top svg { width:14px; }
.warranty-phone h3 { margin:8px 0 25px; font-size:27px; line-height:1.15; }
.mini-warranty { margin-bottom:12px; padding:12px; border:1px solid var(--line); border-radius:15px; display:flex; gap:12px; }
.mini-warranty__art { width:47px; height:47px; border-radius:12px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }
.mini-warranty__art svg { width:22px; }
.mini-warranty > div:last-child { flex:1; display:flex; flex-direction:column; gap:3px; }
.mini-warranty strong { font-size:11px; }.mini-warranty span { color:var(--success); font-size:10px; }.mini-warranty span.warning { color:var(--warning); }
.mini-warranty div > i { height:4px; margin-top:5px; border-radius:99px; background:#eeedf3; overflow:hidden; }
.mini-warranty div > i b { display:block; height:100%; border-radius:inherit; background:var(--brand-2); }
.warranty-phone > a { margin-top:14px; height:42px; border-radius:11px; display:flex; align-items:center; justify-content:center; gap:7px; color:#fff; background:var(--brand); font-size:10px; font-weight:700; }
.warranty-phone > a svg { width:14px; }
.story-float { position:absolute; right:2%; bottom:16%; z-index:2; padding:14px; border:1px solid var(--line); border-radius:14px; display:flex; gap:10px; background:#fff; box-shadow:var(--shadow); }
.story-float > svg { width:20px; color:var(--warning); }
.story-float span { display:flex; flex-direction:column; }.story-float strong { font-size:10px; }.story-float small { margin-top:3px; color:var(--muted); font-size:10px; }
.story-copy h2 { margin:13px 0 24px; font-size:clamp(37px,4vw,56px); line-height:1.1; }
.story-copy > p { color:var(--muted); font-size:15px; line-height:1.8; }
.story-list { margin:32px 0; display:grid; gap:22px; }
.story-list > div { display:grid; grid-template-columns:38px 1fr; gap:12px; }
.story-list > div > span { color:var(--brand-3); font:700 11px var(--font-display); }
.story-list div div { display:flex; flex-direction:column; gap:5px; }
.story-list strong { font-size:14px; }.story-list small { color:var(--muted); font-size:11px; line-height:1.5; }
.brand-promise { padding-top:20px; }
.brand-promise__inner { padding:90px 8%; border-radius:36px; color:#fff; background:radial-gradient(circle at 90% 10%,rgba(109,99,221,.55),transparent 33%),linear-gradient(135deg,#15114f,#211a78); position:relative; overflow:hidden; }
.brand-promise__inner::after { content:"SLiQ"; position:absolute; right:-20px; top:-50px; color:rgba(255,255,255,.03); font:800 230px var(--font-display); letter-spacing:-.1em; }
.brand-promise h2 { margin:15px 0 55px; font-size:clamp(40px,5vw,68px); line-height:1.08; position:relative; z-index:1; }
.brand-promise h2 em { color:#aaa4ff; font-style:normal; }
.brand-promise__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:45px; position:relative; z-index:1; }
.brand-promise__grid svg { width:27px; color:#aaa4ff; }
.brand-promise__grid strong { display:block; margin:18px 0 9px; font:700 15px var(--font-display); }
.brand-promise__grid p { margin:0; color:#aaa7c4; font-size:11px; line-height:1.65; }
.newsletter-section { padding:20px 0 100px; }
.newsletter-card { min-height:280px; padding:60px 7%; border-radius:30px; display:grid; grid-template-columns:1fr .85fr; align-items:center; gap:80px; color:#fff; background:radial-gradient(circle at 80% 30%,rgba(119,109,234,.45),transparent 35%),#191456; }
.newsletter-card h2 { margin:12px 0; font-size:40px; }.newsletter-card p { max-width:500px; margin:0; color:#b9b6d2; line-height:1.7; }
.newsletter-card form > div { height:57px; padding:0 7px 0 17px; border:1px solid rgba(255,255,255,.18); border-radius:16px; display:flex; align-items:center; gap:10px; background:rgba(255,255,255,.07); }
.newsletter-card form > div > svg { width:18px; color:#aaa4ff; }
.newsletter-card input { flex:1; min-width:0; border:0; outline:0; color:#fff; background:transparent; }
.newsletter-card small { display:block; margin-top:10px; color:#8f8baa; font-size:10px; }

.shop-hero,.simple-hero { position:relative; padding:calc(var(--header-h) + 26px) 0 34px; overflow:hidden; color:#fff; }
.simple-hero { background:radial-gradient(circle at 12% 18%,rgba(120,109,234,.5),transparent 42%),radial-gradient(circle at 88% 22%,rgba(75,66,179,.42),transparent 46%),linear-gradient(135deg,#17134f,#241c79); }
.shop-hero { background-color:#15114f; background-image:linear-gradient(90deg,rgba(13,10,57,.98) 0%,rgba(18,14,72,.88) 43%,rgba(18,14,72,.5) 61%,rgba(13,10,57,.08) 86%),url("/assets/hero/sliq-shop-flatlay-hero-v2.png"); background-repeat:no-repeat; background-size:100% 100%,cover; background-position:center,right center; }
.shop-hero::after,.simple-hero::after { content:""; position:absolute; inset:0; pointer-events:none; opacity:.5; background-image:linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px); background-size:46px 46px; mask-image:linear-gradient(to right,#000,transparent 76%); }
.shop-hero > .container,.simple-hero > .container { position:relative; z-index:1; }
.breadcrumbs { margin-bottom:22px; display:flex; align-items:center; gap:8px; color:#9b99a7; font-size:11px; }
.breadcrumbs svg { width:12px; }.breadcrumbs a:hover { color:var(--brand); }
.shop-hero .breadcrumbs,.simple-hero .breadcrumbs { margin-bottom:18px; color:rgba(255,255,255,.6); }
.shop-hero .breadcrumbs a:hover,.simple-hero .breadcrumbs a:hover { color:#fff; }
.shop-hero .eyebrow,.simple-hero .eyebrow { color:#b9b4ff; }
.shop-hero__heading { width:100%; display:flex; align-items:flex-end; justify-content:space-between; gap:30px; }
.shop-hero__heading > div:first-child { max-width:600px; }
.shop-hero h1,.simple-hero h1 { margin:9px 0 7px; font-size:clamp(30px,3.4vw,44px); }
.shop-hero p,.simple-hero p { max-width:600px; margin:0; color:rgba(255,255,255,.72); font-size:13px; line-height:1.6; }
.shop-hero__count { display:flex; flex-direction:column; align-items:flex-end; }
.shop-hero__count strong { color:#fff; font:800 40px var(--font-display); line-height:1; }.shop-hero__count span { color:rgba(255,255,255,.6); font-size:11px; }
.shop-category-nav { position:relative; z-index:3; margin-top:-1px; padding:0 0 8px; background:linear-gradient(180deg,#f7f6ff 0,#fff 100%); }
.shop-category-nav .container { transform:translateY(18px); }
.shop-category-tabs { display:flex; gap:9px; overflow:visible; }
.shop-category-tabs::-webkit-scrollbar { display:none; }
.shop-category-tab { flex:1 0 105px; min-height:72px; padding:9px 8px; border:1px solid #e3e1ed; border-radius:14px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:7px; color:#77748a; text-align:center; background:#fff; box-shadow:0 3px 10px rgba(31,24,91,.04); transition:color .25s ease,background .25s ease,border-color .25s ease,transform .25s ease,box-shadow .25s ease; }
.shop-category-tab > span { width:30px; height:30px; border-radius:10px; display:grid; place-items:center; color:#665ed1; background:#efeeff; transition:color .25s ease,background .25s ease,transform .25s ease; }
.shop-category-tab svg { width:15px; height:15px; }
.shop-category-tab strong { font:700 10px/1.2 var(--font-display); }
.shop-category-tab:hover { color:var(--brand); border-color:#cfcbee; background:#f8f7ff; transform:translateY(-1px); box-shadow:0 5px 13px rgba(31,24,91,.07); }
.shop-category-tab:hover > span { transform:scale(1.06); }
.shop-category-tab.is-active { color:#fff; border-color:#554cc0; background:linear-gradient(135deg,#675ed8,#28206f); box-shadow:0 5px 14px rgba(69,58,174,.16); }
.shop-category-tab.is-active > span { color:#fff; background:rgba(255,255,255,.16); }
.shop-layout { padding-top:55px; }
.shop-layout__grid { display:grid; grid-template-columns:245px 1fr; gap:40px; align-items:start; }
.filters { position:sticky; top:105px; max-height:calc(100vh - 130px); padding:2px 8px 18px 0; overflow-y:auto; overscroll-behavior:contain; scrollbar-width:thin; scrollbar-color:#dedcea transparent; }
.filters::-webkit-scrollbar { width:7px; }
.filters::-webkit-scrollbar-thumb { border-radius:99px; background:#dedcea; }
.filters::-webkit-scrollbar-thumb:hover { background:#c9c6dd; }
.filters__mobile-head { display:none; }
.filter-search { height:43px; padding:0 12px; border:1px solid var(--line); border-radius:11px; display:flex; align-items:center; gap:8px; background:#fff; }
.filter-search svg { width:15px; color:#9896a3; }.filter-search input { width:100%; border:0; outline:0; background:transparent; font-size:11px; }
.filter-group { border-bottom:1px solid var(--line); }
.filter-group__head { width:100%; height:57px; padding:0; border:0; display:flex; align-items:center; justify-content:space-between; background:transparent; font-weight:700; cursor:pointer; }
.filter-group__head svg { width:15px; transition:transform .2s; }
.filter-group.is-open .filter-group__head svg { transform:rotate(180deg); }
.filter-group__body { display:grid; gap:0; max-height:0; padding:0; overflow:hidden; opacity:0; visibility:hidden; transition:max-height .32s cubic-bezier(.22,1,.36,1),padding .24s ease,gap .24s ease,opacity .22s ease,visibility .32s; }
.filter-group.is-open .filter-group__body { max-height:720px; gap:11px; padding:0 0 17px; opacity:1; visibility:visible; }
.check-row,.radio-row { display:flex; align-items:center; gap:9px; font-size:11px; cursor:pointer; }
.check-row input,.radio-row input { display:none; }
.check-row > span,.radio-row > span { width:17px; height:17px; border:1px solid #cac8d4; border-radius:5px; background:#fff; position:relative; }
.radio-row > span { border-radius:50%; }
.check-row input:checked + span,.radio-row input:checked + span { border-color:var(--brand); background:var(--brand); }
.check-row input:checked + span::after { content:""; position:absolute; left:5px; top:2px; width:4px; height:8px; border:solid #fff; border-width:0 2px 2px 0; transform:rotate(45deg); }
.radio-row input:checked + span::after { content:""; position:absolute; inset:5px; border-radius:50%; background:#fff; }
.price-fields { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.price-fields label { color:var(--muted); font-size:11px; }
.price-fields input { width:100%; height:38px; margin-top:5px; padding:0 9px; border:1px solid var(--line); border-radius:8px; }
.range-visual { height:4px; margin:8px 4px; border-radius:99px; background:#e6e5eb; position:relative; }
.range-visual i { position:absolute; top:0; height:100%; border-radius:inherit; background:var(--brand-2); }
.range-visual i::before,.range-visual i::after { content:""; position:absolute; top:50%; width:13px; height:13px; border:3px solid var(--brand); border-radius:50%; background:#fff; transform:translateY(-50%); }
.range-visual i::before { left:0; }.range-visual i::after { right:0; }
.filters .button { margin-top:18px; }
.clear-filters { display:block; margin-top:12px; text-align:center; color:var(--muted); font-size:11px; text-decoration:underline; }
.shop-toolbar { min-height:50px; margin-bottom:22px; display:flex; align-items:center; gap:10px; }
.shop-toolbar__search { width:min(400px,42vw); height:46px; padding:0 6px 0 14px; border:1px solid #dedce9; border-radius:13px; display:flex; align-items:center; gap:9px; background:#fff; box-shadow:0 8px 25px rgba(28,23,79,.06); transition:border-color .25s ease,box-shadow .25s ease; }
.shop-toolbar__search:focus-within { border-color:#9e98ee; box-shadow:0 0 0 4px rgba(103,94,216,.1),0 10px 28px rgba(28,23,79,.08); }
.shop-toolbar__search > svg { width:17px; color:#77738e; }
.shop-toolbar__search input[type="search"] { min-width:0; flex:1; border:0; outline:0; color:var(--ink); background:transparent; font:600 11px var(--font-body); }
.shop-toolbar__search input[type="search"]::placeholder { color:#aaa7b7; font-weight:500; }
.shop-toolbar__search button { width:34px; height:34px; flex:0 0 auto; border:0; border-radius:10px; display:grid; place-items:center; color:#fff; background:var(--brand); cursor:pointer; transition:transform .2s ease,background .2s ease; }
.shop-toolbar__search button:hover { background:var(--brand-2); transform:translateX(1px); }
.shop-toolbar__search button svg { width:15px; }
.active-filters { flex:1; display:flex; gap:7px; }
.active-filters a { padding:7px 9px; border-radius:8px; display:flex; align-items:center; gap:6px; color:var(--brand); background:#eeedff; font-size:10px; font-weight:700; }
.active-filters svg { width:11px; }
.sort-form label { display:flex; align-items:center; gap:10px; color:var(--muted); font-size:11px; }
.sort-form select { height:40px; padding:0 34px 0 11px; border:1px solid var(--line); border-radius:10px; color:var(--ink); background:#fff; font-weight:600; }
.product-grid--shop { grid-template-columns:repeat(3,1fr); }
.empty-state { min-height:420px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.empty-state > span { width:75px; height:75px; border-radius:50%; display:grid; place-items:center; color:var(--brand); background:#eeedff; }
.empty-state > span svg { width:30px; }.empty-state h2 { margin:22px 0 8px; font-size:30px; }.empty-state p { color:var(--muted); }
.empty-state--large { min-height:500px; }
.quick-view { position:fixed; inset:0; z-index:500; visibility:hidden; opacity:1; transition:visibility .36s; }
.quick-view.is-open { visibility:visible; }
.quick-view__backdrop { position:absolute; inset:0; width:100%; border:0; background:rgba(15,12,49,.5); }
.quick-view__panel { position:absolute; top:0; right:0; width:min(620px,100%); height:100%; padding:65px 42px; overflow-y:auto; background:#fff; transform:translateX(100%); transition:transform .45s cubic-bezier(.22,1,.36,1); }
.quick-view.is-open .quick-view__panel { transform:none; }
.quick-view__close { position:absolute; top:18px; right:18px; }
.quick-product { display:grid; gap:28px; }
.quick-product__art { height:390px; border-radius:22px; overflow:hidden; }
.quick-product__content > span { color:var(--brand-2); font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.1em; }
.quick-product h2 { margin:10px 0; font-size:34px; }.quick-product p { color:var(--muted); line-height:1.7; }
.quick-product__footer { display:flex; align-items:center; gap:12px; }.quick-product__footer strong { margin-right:auto; font:800 22px var(--font-display); }

.product-detail { padding-top:45px; }
.product-detail__grid { display:grid; grid-template-columns:1.02fr .98fr; gap:75px; align-items:start; }
.product-gallery { display:grid; grid-template-columns:80px 1fr; gap:13px; }
.product-gallery__main { grid-column:2; grid-row:1; height:630px; border-radius:26px; overflow:hidden; position:relative; }
.product-gallery__main .product-visual { min-height:100%; }
.product-gallery__main .product-visual--image img{padding:4%}
.product-gallery__main .product-object { width:64%; height:64%; transform:scale(1.25); transition:transform .55s cubic-bezier(.22,1,.36,1); }
/* Switchable "angles" for the placeholder render — gives the thumbnail/arrow
   navigation a real, visible effect until official imagery is wired in. */
.product-gallery__main[data-gallery-view="2"] .product-object { transform:scale(1.12) rotate(-9deg) translateX(-5%); }
.product-gallery__main[data-gallery-view="3"] .product-object { transform:scale(1.6); }
.product-gallery__main[data-gallery-view="4"] .product-object { transform:scale(1.12) rotate(9deg) translateX(5%); }
.gallery-nav { position:absolute; top:50%; transform:translateY(-50%); width:40px; height:40px; display:grid; place-items:center; border:0; border-radius:50%; color:var(--ink); background:rgba(255,255,255,.82); box-shadow:var(--shadow-sm); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); cursor:pointer; opacity:0; transition:opacity .25s ease, background .2s ease; z-index:2; }
.gallery-nav svg { width:18px; }
.gallery-nav--prev { left:14px; }
.gallery-nav--next { right:14px; }
.product-gallery__main:hover .gallery-nav, .product-gallery__main:focus-within .gallery-nav { opacity:1; }
.gallery-nav:hover { background:#fff; }
@media (hover:none) { .gallery-nav { opacity:1; } }
.gallery-badge { position:absolute; left:17px; bottom:17px; padding:9px 12px; border-radius:10px; display:flex; align-items:center; gap:7px; color:#6e6b7d; background:rgba(255,255,255,.76); backdrop-filter:blur(9px); font-size:11px; font-weight:700; }
.gallery-badge svg { width:14px; }
.product-gallery__thumbs { grid-column:1; grid-row:1; display:grid; align-content:start; gap:11px; }
.product-gallery__thumbs button { height:80px; padding:0; border:1px solid var(--line); border-radius:12px; overflow:hidden; background:#fff; cursor:pointer; }
.product-gallery__thumbs button.is-active { border:2px solid var(--brand); }
.product-gallery__thumbs .product-visual { min-height:100%; }.product-gallery__thumbs .render-label { display:none; }
.product-gallery__thumbs .product-visual--image img{padding:7%}
.product-gallery__thumbs button { transition:border-color .2s ease, transform .2s ease; }
.product-gallery__thumbs button:hover { transform:translateY(-2px); }
.product-gallery__thumbs .product-object { transition:transform .3s ease; }
.product-gallery__thumbs button[data-gallery-view="2"] .product-object { transform:rotate(-9deg) scale(.92); }
.product-gallery__thumbs button[data-gallery-view="3"] .product-object { transform:scale(1.3); }
.product-gallery__thumbs button[data-gallery-view="4"] .product-object { transform:rotate(9deg) scale(.92); }
.product-info { padding-top:15px; }
.product-info__top { display:flex; align-items:center; justify-content:space-between; }
.brand-chip { padding:7px 10px; border-radius:7px; color:var(--brand); background:#eeedff; font-size:10px; font-weight:800; letter-spacing:.08em; }
.sku { color:var(--muted); font-size:10px; }
.product-info h1 { margin:20px 0 14px; font-size:clamp(38px,4vw,58px); line-height:1.06; }
.product-rating { display:flex; align-items:center; gap:9px; }.product-rating span { color:#ffb547; font-size:12px; }.product-rating a { color:var(--muted); font-size:11px; text-decoration:underline; }
.product-lead { margin:25px 0; color:var(--muted); font-size:15px; line-height:1.75; }
.product-price { padding:22px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); display:grid; grid-template-columns:auto 1fr; gap:1px 13px; align-items:center; }
.product-price strong { font:800 30px var(--font-display); }.product-price span { width:max-content; padding:5px 8px; border-radius:6px; color:var(--warning); background:#fff4e7; font-size:11px; font-weight:800; }.product-price small { grid-column:1/-1; color:#aaa8b4; font-size:11px; }
.product-option { padding:22px 0 3px; }.product-option > span { display:block; margin-bottom:11px; color:var(--muted); font-size:11px; }.product-option strong { color:var(--ink); }
.color-swatch { width:34px; height:34px; border:5px solid #fff; border-radius:50%; background:var(--swatch); box-shadow:0 0 0 2px var(--brand); }
.purchase-row { margin-top:24px; display:flex; gap:10px; }
.quantity-control { height:54px; border:1px solid var(--line); border-radius:14px; display:flex; align-items:center; overflow:hidden; background:#fff; }
.quantity-control button { width:36px; height:100%; border:0; background:transparent; cursor:pointer; font-size:18px; }
.quantity-control input { width:36px; border:0; outline:0; text-align:center; font-weight:700; -moz-appearance:textfield; }
.quantity-control input::-webkit-inner-spin-button { display:none; }
.purchase-button { flex:1; }
.availability { margin:13px 0 25px; display:flex; justify-content:space-between; color:var(--muted); font-size:10px; }
.availability span { display:flex; align-items:center; gap:6px; }.availability span:first-child > i { width:7px; height:7px; border-radius:50%; background:var(--success); }.availability svg { width:14px; }
.product-assurance { border:1px solid var(--line); border-radius:15px; overflow:hidden; }
.product-assurance > div { min-height:68px; padding:12px 14px; display:flex; align-items:center; gap:12px; }
.product-assurance > div + div { border-top:1px solid var(--line); }
.product-assurance > div > span { width:38px; height:38px; border-radius:11px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }
.product-assurance > div > span svg { width:18px; }
.product-assurance div div { flex:1; display:flex; flex-direction:column; gap:2px; }.product-assurance strong { font-size:11px; }.product-assurance small { color:var(--muted); font-size:11px; }.product-assurance > div > svg { width:15px; color:#aaa8b3; }
.share-row { margin-top:20px; display:flex; align-items:center; gap:8px; color:var(--muted); font-size:10px; }
.share-row button { width:31px; height:31px; border:1px solid var(--line); border-radius:50%; display:grid; place-items:center; background:#fff; cursor:pointer; }.share-row svg { width:13px; }
.product-tabs__nav { margin-bottom:45px; border-bottom:1px solid var(--line); display:flex; gap:40px; }
.product-tabs__nav button { height:60px; padding:0; border:0; border-bottom:2px solid transparent; color:var(--muted); background:transparent; font-weight:700; cursor:pointer; }
.product-tabs__nav button.is-active { color:var(--brand); border-color:var(--brand); }
.product-tab { display:none; }.product-tab.is-active { display:grid; }
.product-tab[data-tab-panel="overview"] { grid-template-columns:.9fr 1.1fr; gap:80px; align-items:center; }
.product-tab h2 { margin:13px 0 20px; font-size:42px; line-height:1.13; }.product-tab p { color:var(--muted); line-height:1.8; }
.tag-list { margin-top:25px; display:flex; flex-wrap:wrap; gap:7px; }.tag-list span { padding:7px 10px; border-radius:99px; color:var(--brand); background:#eae9ff; font-size:10px; font-weight:700; }
.product-feature-art { height:430px; border-radius:24px; overflow:hidden; }.product-feature-art .product-visual { min-height:100%; }
.spec-card { max-width:900px; }.spec-card dl { border:1px solid var(--line); border-radius:17px; overflow:hidden; }.spec-card dl div { min-height:55px; padding:0 18px; border-bottom:1px solid var(--line); display:grid; grid-template-columns:1fr 1fr; align-items:center; }.spec-card dl div:last-child { border:0; }.spec-card dt { color:var(--muted); font-size:11px; }.spec-card dd { margin:0; font-weight:700; font-size:12px; }
.warranty-explainer { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }.linear-warranty { padding:40px; border-radius:24px; color:#fff; background:var(--brand); display:flex; align-items:center; }.linear-warranty > span { width:50px; height:50px; flex:none; border-radius:50%; display:grid; place-items:center; background:rgba(255,255,255,.14); }.linear-warranty > span svg { width:22px; }.linear-warranty > div { display:flex; flex-direction:column; gap:8px; font-size:11px; }.linear-warranty > div i { width:70px; height:2px; background:rgba(255,255,255,.3); }.review-summary { text-align:center; }.review-summary > strong { font:800 70px var(--font-display); }

.cart-section { padding-top:65px; }.cart-grid { display:grid; grid-template-columns:1fr 380px; gap:65px; align-items:start; }
.cart-list__head { height:45px; padding:0 0 12px; border-bottom:1px solid var(--line); display:grid; grid-template-columns:1fr 130px 110px; color:var(--muted); font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; }
.cart-item { min-height:160px; padding:20px 35px 20px 0; border-bottom:1px solid var(--line); display:grid; grid-template-columns:125px 1fr 130px 110px; align-items:center; gap:18px; position:relative; }
.cart-item__media { height:120px; border-radius:15px; overflow:hidden; }.cart-item__media .product-visual { min-height:100%; }.cart-item__media .render-label { display:none; }
.cart-item__info { display:flex; flex-direction:column; align-items:flex-start; }.cart-item__info > span { color:var(--muted); font-size:11px; text-transform:uppercase; }.cart-item__info h3 { margin:7px 0; font-size:14px; line-height:1.35; }.cart-item__info small { display:flex; align-items:center; gap:5px; color:var(--success); font-size:11px; }.cart-item__info small svg { width:12px; }.cart-item__info > strong { display:none; }
.cart-item .quantity-control { width:112px; height:42px; }.cart-line-total { font:700 14px var(--font-display); }
.cart-remove { position:absolute; right:0; width:30px; height:30px; border:0; border-radius:50%; display:grid; place-items:center; color:#9b99a5; background:transparent; cursor:pointer; }.cart-remove:hover { color:var(--danger); background:#fff1f3; }.cart-remove svg { width:15px; }
.cart-list > .text-link { margin-top:25px; }
.order-summary { position:sticky; top:110px; padding:30px; border:1px solid var(--line); border-radius:22px; background:#fafafe; }
.order-summary h2 { margin:8px 0 25px; font-size:30px; }
.coupon-field { height:44px; border:1px solid var(--line); border-radius:11px; display:flex; overflow:hidden; background:#fff; }.coupon-field input { flex:1; min-width:0; padding:0 12px; border:0; outline:0; font-size:11px; }.coupon-field button { padding:0 14px; border:0; color:var(--brand); background:#eeedff; font-size:10px; font-weight:800; cursor:pointer; }
.order-summary dl { margin:25px 0; }.order-summary dl div { padding:8px 0; display:flex; justify-content:space-between; font-size:11px; }.order-summary dt { color:var(--muted); }.order-summary dd { margin:0; font-weight:700; }.order-summary__total { margin-top:10px; padding-top:20px!important; border-top:1px solid var(--line); font-size:16px!important; }.order-summary__total dt,.order-summary__total dd { color:var(--ink); font-weight:800; }
.summary-trust { margin-top:18px; display:flex; justify-content:center; gap:15px; color:var(--muted); font-size:10px; }.summary-trust span { display:flex; align-items:center; gap:4px; }.summary-trust svg { width:11px; }
.checkout-header { border-bottom:1px solid var(--line); }.checkout-header .container { height:84px; display:flex; align-items:center; justify-content:space-between; }.checkout-header .container > div { display:flex; align-items:center; gap:10px; color:#aaa8b3; font-size:10px; }.checkout-header .container > div span.is-active { color:var(--brand); font-weight:700; }.checkout-header .container > div svg { width:13px; }.checkout-header .container > a:last-child { display:flex; align-items:center; gap:6px; color:var(--muted); font-size:10px; }.checkout-header .container > a:last-child svg { width:14px; }
.checkout-section { background:#f8f8fb; }.checkout-grid { max-width:1220px; display:grid; grid-template-columns:1fr 410px; gap:45px; align-items:start; }
.checkout-form__title { margin-bottom:35px; }.checkout-form__title h1 { margin:10px 0; font-size:48px; }.checkout-form__title p { color:var(--muted); }
.form-card { margin-bottom:16px; padding:28px; border:1px solid var(--line); border-radius:20px; background:#fff; }
.form-card__head { margin-bottom:25px; display:flex; align-items:center; gap:13px; }.form-card__head > span { width:32px; height:32px; border-radius:9px; display:grid; place-items:center; color:var(--brand); background:#eeedff; font:800 10px var(--font-display); }.form-card__head h2 { margin:0; font-size:20px; }.form-card__head p { margin:3px 0 0; color:var(--muted); font-size:10px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:17px; }
.form-grid label,.form-card > label,.admin-card label,.support-form label { display:flex; flex-direction:column; gap:7px; font-size:10px; font-weight:700; }
.form-grid label em,.form-card label em,.admin-card label em { margin-left:5px; color:#aaa8b3; font-style:normal; font-weight:400; }
.form-grid input,.form-grid select,.form-grid textarea,.form-card input,.form-card select,.form-card textarea,.admin-card input,.admin-card select,.admin-card textarea,.support-form input,.support-form select,.support-form textarea { width:100%; min-height:43px; padding:10px 12px; border:1px solid var(--line); border-radius:10px; outline:0; background:#fff; font-size:11px; transition:border .2s,box-shadow .2s; }
.form-grid input:focus,.form-grid select:focus,.form-grid textarea:focus,.form-card input:focus,.form-card textarea:focus,.admin-card input:focus,.admin-card select:focus,.admin-card textarea:focus,.support-form input:focus,.support-form select:focus,.support-form textarea:focus { border-color:var(--brand-3); box-shadow:0 0 0 3px rgba(81,72,216,.08); }
.form-grid label > small,.admin-card label > small { color:var(--danger); }
.field-full { grid-column:1/-1; }
.payment-options { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:20px; }.payment-options label { cursor:pointer; }.payment-options input { display:none; }.payment-options label > span { min-height:105px; padding:14px; border:1px solid var(--line); border-radius:12px; display:flex; flex-direction:column; align-items:flex-start; gap:6px; }.payment-options input:checked + span { border-color:var(--brand); box-shadow:0 0 0 2px rgba(30,25,115,.08); background:#fbfaff; }.payment-options svg { width:19px; color:var(--brand); }.payment-options strong { font-size:11px; }.payment-options small { color:var(--muted); font-size:11px; line-height:1.4; }
.checkout-summary { position:sticky; top:30px; padding:30px; border:1px solid var(--line); border-radius:22px; background:#fff; }.checkout-summary__head { display:flex; align-items:flex-end; justify-content:space-between; }.checkout-summary h2 { margin:0; font-size:20px; }.checkout-items { margin:25px 0; display:grid; gap:15px; }.checkout-items > div { display:grid; grid-template-columns:58px 1fr auto; align-items:center; gap:11px; }.checkout-item__media { height:58px; border-radius:10px; overflow:hidden; position:relative; }.checkout-item__media .product-visual { min-height:100%; }.checkout-item__media .render-label { display:none; }.checkout-item__media > span { position:absolute; right:3px; top:3px; width:17px; height:17px; border-radius:50%; display:grid; place-items:center; color:#fff; background:var(--brand); font-size:10px; }.checkout-items div > div:nth-child(2) { display:flex; flex-direction:column; gap:4px; }.checkout-items strong { font-size:10px; line-height:1.3; }.checkout-items small { color:var(--muted); font-size:10px; }.checkout-items > div > span { font-size:10px; font-weight:700; }.checkout-summary dl { padding:20px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }.checkout-summary dl div { padding:6px 0; display:flex; justify-content:space-between; font-size:10px; }.checkout-summary dd { margin:0; font-weight:700; }.checkout-summary dl div:last-child { margin-top:8px; font-size:15px; font-weight:800; }.checkout-assurance { padding-top:8px; display:grid; gap:15px; }.checkout-assurance > div { display:flex; gap:10px; }.checkout-assurance svg { width:19px; color:var(--brand); }.checkout-assurance span { display:flex; flex-direction:column; gap:3px; }.checkout-assurance strong { font-size:10px; }.checkout-assurance small { color:var(--muted); font-size:10px; }
.confirmation { min-height:calc(100vh - 115px); padding:80px 0; display:grid; place-items:center; background:radial-gradient(circle at 50% 20%,#ebe9ff,transparent 36%),#fafafe; position:relative; overflow:hidden; }.confirmation-card { max-width:780px; margin:auto; text-align:center; }.success-mark { width:90px; height:90px; margin:0 auto 28px; border-radius:50%; display:grid; place-items:center; color:#fff; background:var(--brand); position:relative; }.success-mark svg { width:38px; }.success-mark span { position:absolute; inset:-12px; border:1px solid rgba(30,25,115,.15); border-radius:50%; animation:ripple 2s ease-out infinite; }.success-mark span:last-child { animation-delay:1s; }
@keyframes ripple { to { transform:scale(1.45); opacity:0; } }
.confirmation-card h1 { margin:13px 0 15px; font-size:52px; line-height:1.08; }.confirmation-card > p { color:var(--muted); line-height:1.7; }.confirmation-stats { margin:35px 0; padding:18px; border:1px solid var(--line); border-radius:15px; display:grid; grid-template-columns:repeat(3,1fr); background:#fff; }.confirmation-stats div { display:flex; flex-direction:column; gap:5px; }.confirmation-stats div + div { border-left:1px solid var(--line); }.confirmation-stats span { color:var(--muted); font-size:11px; }.confirmation-stats strong { font-size:13px; }.confirmation-steps { margin:42px 0; display:flex; align-items:center; }.confirmation-steps > div { width:110px; display:flex; flex-direction:column; align-items:center; gap:5px; }.confirmation-steps > div > span { width:34px; height:34px; border:1px solid var(--line); border-radius:50%; display:grid; place-items:center; color:#aaa8b3; background:#fff; font-size:10px; }.confirmation-steps > div.is-active > span { color:#fff; background:var(--brand); border-color:var(--brand); }.confirmation-steps > div > span svg { width:15px; }.confirmation-steps > div strong { font-size:10px; }.confirmation-steps > div small { color:var(--muted); font-size:10px; }.confirmation-steps > i { flex:1; height:1px; background:var(--line); }.confirmation-actions { display:flex; justify-content:center; gap:10px; }.demo-note { margin-top:25px; display:flex; justify-content:center; align-items:center; gap:6px; color:var(--muted); }.demo-note svg { width:13px; }

.auth-shell { min-height:100vh; padding:0; overflow:hidden; background:#fff; }
.auth-shell__main { min-height:100vh; }
.auth-page { height:100vh; min-height:680px; display:grid; grid-template-columns:1.05fr .95fr; overflow:hidden; }
.auth-visual { height:100vh; min-height:680px; padding:42px 7%; color:#fff; background:radial-gradient(circle at 25% 15%,rgba(122,111,238,.48),transparent 28%),radial-gradient(circle at 80% 70%,rgba(91,81,208,.35),transparent 32%),#15114f; display:flex; flex-direction:column; position:relative; overflow:hidden; }
.auth-visual::after { content:""; position:absolute; right:-100px; bottom:-130px; width:500px; height:500px; border:1px solid rgba(255,255,255,.08); border-radius:50%; box-shadow:0 0 0 80px rgba(255,255,255,.025),0 0 0 160px rgba(255,255,255,.018); }
.auth-visual__top { display:flex; align-items:center; justify-content:space-between; position:relative; z-index:2; }
.auth-store-exit { min-height:42px; padding:0 15px; border-radius:11px; display:inline-flex; align-items:center; justify-content:center; gap:8px; font-size:11px; font-weight:800; transition:transform .25s ease,background .25s ease,border .25s ease; }
.auth-store-exit:hover { transform:translateX(-3px); }
.auth-store-exit svg { width:15px; }
.auth-store-exit--dark { color:#fff; border:1px solid rgba(255,255,255,.16); background:rgba(255,255,255,.07); backdrop-filter:blur(12px); }
.auth-store-exit--dark:hover { background:rgba(255,255,255,.13); }
.auth-store-exit--light { position:absolute; right:34px; top:30px; color:var(--brand); border:1px solid #dedcf1; background:#f7f6ff; }
.auth-store-exit--light:hover { border-color:#c7c3ea; background:#efedff; }
.auth-visual__content { margin:auto 0; max-width:610px; position:relative; z-index:1; }
.auth-visual h1 { margin:15px 0 24px; font-size:clamp(50px,5vw,78px); line-height:1.03; }
.auth-visual p { max-width:520px; color:#b8b5d2; font-size:15px; line-height:1.8; }
.auth-floating-card { width:max-content; padding:16px 20px; border:1px solid rgba(255,255,255,.14); border-radius:16px; display:flex; gap:13px; background:rgba(255,255,255,.07); backdrop-filter:blur(12px); position:relative; z-index:1; }
.auth-floating-card > svg { width:24px; color:#aaa4ff; }.auth-floating-card div { display:flex; flex-direction:column; gap:4px; }.auth-floating-card strong { font-size:11px; }.auth-floating-card span { color:#9995b3; font-size:11px; }
.auth-form-wrap { height:100vh; min-height:680px; padding:70px 50px 38px; display:grid; place-items:center; background:radial-gradient(circle at 100% 0,#f3f1ff,transparent 24%),#fff; position:relative; overflow-y:auto; }
.auth-form { width:min(430px,100%); }
.auth-form__head h2 { margin:10px 0 8px; font-size:44px; }.auth-form__head p { color:var(--muted); }.auth-form form { margin-top:30px; display:grid; gap:17px; }.auth-form form > label { display:flex; flex-direction:column; gap:8px; font-size:10px; font-weight:700; }.input-with-icon { height:50px; padding:0 13px; border:1px solid var(--line); border-radius:12px; display:flex; align-items:center; gap:10px; }.input-with-icon > svg { width:17px; color:#9896a3; }.input-with-icon input { flex:1; min-width:0; border:0; outline:0; }.input-with-icon button { border:0; background:transparent; cursor:pointer; }.input-with-icon button svg { width:16px; color:#9896a3; }.auth-options { display:flex; align-items:center; justify-content:space-between; font-size:10px; }.auth-options a { color:var(--brand); font-weight:700; }.auth-options .check-row { font-size:10px; }.form-error { margin-top:20px; padding:12px; border-radius:10px; display:flex; align-items:center; gap:8px; color:var(--danger); background:#fff0f2; font-size:11px; }.form-error svg { width:16px; }.demo-credentials { margin-top:22px; padding:13px; border:1px dashed #d6d3f5; border-radius:11px; display:flex; flex-direction:column; gap:7px; background:#faf9ff; }.demo-credentials span { display:flex; align-items:center; gap:7px; color:var(--brand); font-size:11px; font-weight:800; text-transform:uppercase; }.demo-credentials svg { width:14px; }.demo-credentials code { font-size:11px; }.auth-switch { margin-top:25px; text-align:center; color:var(--muted); font-size:11px; }.auth-switch a { color:var(--brand); font-weight:700; }
.auth-form--register { width:min(520px,100%); padding:32px 0; }
.auth-form--register .auth-form__head h2 { font-size:39px; }
.auth-register-form { gap:13px!important; margin-top:24px!important; }
.auth-field-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.auth-register-form label:not(.auth-terms) { min-width:0; display:flex; flex-direction:column; gap:7px; font-size:10px; font-weight:700; }
.auth-register-form label em { color:var(--muted); font-size:11px; font-style:normal; font-weight:500; }
.auth-register-form .input-with-icon { height:47px; }
.input-with-icon:focus-within { border-color:rgba(30,25,115,.55); box-shadow:0 0 0 3px rgba(30,25,115,.08); }
.field-error { min-height:13px; color:var(--danger); font-size:11px; font-weight:600; line-height:1.35; }
.auth-terms { align-items:flex-start; font-weight:500!important; line-height:1.45; }
.auth-terms > span { flex:0 0 17px; margin-top:1px; }
.auth-terms small { color:var(--muted); font-size:10px; }
.field-error--terms { min-height:0; margin-top:-8px; }
.error-state { min-height:70vh; padding:100px 0; display:grid; place-items:center; text-align:center; position:relative; overflow:hidden; }.error-state .container { position:relative; }.error-code { position:absolute; left:50%; top:50%; transform:translate(-50%,-58%); color:#f2f1f8; font:800 280px/1 var(--font-display); z-index:-1; }.error-icon { width:90px; height:90px; margin:0 auto 25px; border-radius:30px; display:grid; place-items:center; color:var(--brand); background:#eeedff; transform:rotate(-8deg); }.error-icon svg { width:38px; }.error-state h1 { margin:12px 0; font-size:52px; }.error-state p { color:var(--muted); }.error-state > .container > div:last-of-type { margin-top:25px; display:flex; justify-content:center; gap:10px; }.error-state pre { max-width:800px; padding:20px; overflow:auto; text-align:left; background:#f6f6fa; }

.toast { position:fixed; right:24px; top:130px; z-index:700; max-width:400px; min-height:54px; padding:10px 12px 10px 15px; border:1px solid var(--line); border-radius:14px; display:flex; align-items:center; gap:10px; background:#fff; box-shadow:var(--shadow); animation:toastIn .45s cubic-bezier(.22,1,.36,1); }.toast > svg { width:19px; color:var(--success); }.toast--error > svg { color:var(--danger); }.toast span { flex:1; font-size:11px; font-weight:600; }.toast button { width:28px; height:28px; border:0; border-radius:50%; background:transparent; cursor:pointer; }.toast button svg { width:14px; }
@keyframes toastIn { from { opacity:0; transform:translateX(30px); } }

.portal-page { padding:55px 0 100px; background:#f8f8fb; min-height:800px; }
.portal-layout { display:grid; grid-template-columns:235px 1fr; gap:38px; align-items:start; }
.portal-sidebar { position:sticky; top:105px; padding:17px; border:1px solid var(--line); border-radius:20px; background:#fff; }
.portal-profile { padding:6px 5px 18px; border-bottom:1px solid var(--line); display:flex; align-items:center; gap:10px; }
.portal-avatar { width:40px; height:40px; flex:none; border-radius:13px; display:grid; place-items:center; color:#fff; background:linear-gradient(145deg,var(--brand-3),var(--brand)); font:800 11px var(--font-display); }.portal-avatar--large { width:70px; height:70px; border-radius:20px; font-size:18px; }
.portal-profile div:last-child { min-width:0; display:flex; flex-direction:column; gap:2px; }.portal-profile strong { font-size:11px; }.portal-profile span { overflow:hidden; color:var(--muted); font-size:10px; text-overflow:ellipsis; }
.portal-sidebar nav { padding:13px 0; display:grid; gap:3px; }.portal-sidebar nav a { min-height:41px; padding:0 10px; border-radius:10px; display:flex; align-items:center; gap:10px; color:#5f5d6e; font-size:10px; font-weight:700; }.portal-sidebar nav a:hover,.portal-sidebar nav a.is-active { color:var(--brand); background:#eeedff; }.portal-sidebar nav svg { width:16px; }.portal-sidebar nav a span { margin-left:auto; min-width:18px; height:18px; padding:0 5px; border-radius:99px; display:grid; place-items:center; color:var(--brand); background:#fff; font-size:10px; }
.portal-sidebar__help { padding:15px; border-radius:13px; display:flex; flex-direction:column; align-items:flex-start; background:#f4f3ff; }.portal-sidebar__help > svg { width:20px; color:var(--brand); }.portal-sidebar__help strong { margin-top:9px; font-size:10px; }.portal-sidebar__help span { margin:3px 0 10px; color:var(--muted); font-size:10px; }.portal-sidebar__help a { color:var(--brand); font-size:11px; font-weight:800; }
.portal-signout { width:100%; min-height:38px; margin-top:10px; border:0; border-radius:9px; display:flex; align-items:center; gap:9px; color:var(--muted); background:transparent; font-size:10px; cursor:pointer; }.portal-signout svg { width:15px; }
.portal-content { min-width:0; }.portal-heading { min-height:86px; margin-bottom:28px; display:flex; align-items:flex-start; justify-content:space-between; gap:20px; }.portal-heading h1 { margin:8px 0 5px; font-size:38px; }.portal-heading p { margin:0; color:var(--muted); font-size:12px; }
.account-stats { margin-bottom:18px; display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }.account-stats > a { min-height:105px; padding:18px; border:1px solid var(--line); border-radius:16px; display:flex; align-items:center; gap:11px; background:#fff; transition:.25s ease; }.account-stats > a:hover { transform:translateY(-3px); box-shadow:var(--shadow-sm); }.account-stats > a > span { width:39px; height:39px; border-radius:11px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }.account-stats > a > span svg { width:18px; }.account-stats a > div { display:flex; flex-direction:column; }.account-stats strong { font:800 22px var(--font-display); }.account-stats small { color:var(--muted); font-size:10px; }.account-stats a > svg { width:13px; margin-left:auto; color:#aaa8b4; align-self:flex-start; }
.dashboard-grid { display:grid; grid-template-columns:1fr 310px; gap:16px; }.portal-card { padding:24px; border:1px solid var(--line); border-radius:18px; background:#fff; }.portal-card--wide { min-width:0; }.portal-card__head { margin-bottom:20px; display:flex; align-items:flex-end; justify-content:space-between; gap:15px; }.portal-card__head h2 { margin:5px 0 0; font-size:20px; }.portal-card__head a { display:flex; align-items:center; gap:6px; color:var(--brand); font-size:11px; font-weight:800; }.portal-card__head a svg { width:13px; }
.dashboard-warranties { display:grid; grid-template-columns:1fr 1fr; gap:12px; }.dashboard-warranties article { padding:12px; border:1px solid var(--line); border-radius:14px; display:grid; grid-template-columns:66px 1fr 66px; align-items:center; gap:11px; }.dashboard-warranty__art { height:66px; border-radius:11px; overflow:hidden; }.dashboard-warranty__art .product-visual { min-height:100%; }.dashboard-warranty__art .render-label { display:none; }.dashboard-warranty__body { min-width:0; }.dashboard-warranty__body h3 { margin:6px 0 3px; overflow:hidden; font-size:10px; text-overflow:ellipsis; white-space:nowrap; }.dashboard-warranty__body > small { display:block; overflow:hidden; color:var(--muted); font-size:7px; text-overflow:ellipsis; white-space:nowrap; }.warranty-bar { margin-top:10px; }.warranty-bar > i { height:4px; border-radius:99px; display:block; overflow:hidden; background:#eeedf3; }.warranty-bar i b { display:block; height:100%; border-radius:inherit; background:var(--brand-2); }.warranty-bar span { display:block; margin-top:4px; color:var(--muted); font-size:7px; }.warranty-bar strong { color:var(--ink); }
.warranty-meter { width:66px; height:66px; display:grid; place-items:center; position:relative; color:var(--brand); }.warranty-meter svg { position:absolute; inset:0; width:100%; transform:rotate(-90deg); }.warranty-meter circle { fill:none; stroke-width:7; }.meter-track { stroke:#edecf3; }.meter-value { stroke:currentColor; stroke-linecap:round; stroke-dasharray:314; stroke-dashoffset:calc(314 - (314 * var(--progress))/100); }.warranty-meter--expiring-soon { color:var(--warning); }.warranty-meter--expired { color:#aaa8b3; }.warranty-meter > div { display:flex; flex-direction:column; align-items:center; }.warranty-meter strong { font:800 13px var(--font-display); }.warranty-meter span { color:var(--muted); font-size:6px; }
.notification-list { display:grid; }.notification-list a { padding:12px 0; border-bottom:1px solid var(--line); display:flex; gap:10px; position:relative; }.notification-list a:last-child { border:0; }.notification-list a > span { width:32px; height:32px; flex:none; border-radius:9px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }.notification-list svg { width:15px; }.notification-list div { display:flex; flex-direction:column; gap:3px; }.notification-list strong { font-size:11px; }.notification-list small { color:var(--muted); font-size:10px; line-height:1.4; }.notification-list em { color:#aaa8b3; font-size:7px; font-style:normal; }.notification-list a.is-unread::after { content:""; position:absolute; right:0; top:15px; width:6px; height:6px; border-radius:50%; background:var(--brand-2); }
.orders-table { overflow-x:auto; }.orders-table__head,.orders-table > a { min-width:680px; display:grid; grid-template-columns:1fr 1fr .9fr 1fr 1fr 20px; align-items:center; gap:15px; }.orders-table__head { padding:0 10px 10px; color:var(--muted); font-size:10px; text-transform:uppercase; }.orders-table > a { min-height:55px; padding:0 10px; border-top:1px solid var(--line); font-size:11px; }.orders-table > a > svg { width:13px; color:#aaa8b3; }.support-card { color:#fff; background:radial-gradient(circle at 90% 10%,rgba(103,94,217,.6),transparent 34%),#17134f; }.support-card__icon { width:42px; height:42px; margin-bottom:40px; border-radius:12px; display:grid; place-items:center; background:rgba(255,255,255,.1); }.support-card__icon svg { width:20px; color:#aaa4ff; }.support-card h2 { margin:8px 0; font-size:23px; }.support-card p { color:#aaa7c2; font-size:10px; line-height:1.6; }
.settings-stack { display:grid; gap:16px; }.profile-completion { padding:7px 10px; border-radius:99px; color:var(--success); background:#eaf8f3; font-size:11px; font-weight:800; }.profile-intro { margin-bottom:25px; display:flex; align-items:center; gap:15px; }.profile-intro > div:last-child { display:flex; flex-direction:column; align-items:flex-start; gap:6px; }.profile-intro small { color:var(--muted); font-size:10px; }.address-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }.address-grid article { min-height:210px; padding:20px; border:1px solid var(--line); border-radius:14px; position:relative; }.address-grid article > svg { width:20px; margin:18px 0 10px; color:var(--brand); }.address-grid article > strong { display:block; font-size:12px; }.address-grid article p,.address-grid article > span:not(.pill) { color:var(--muted); font-size:11px; line-height:1.6; }.address-grid article > div { margin-top:15px; display:flex; gap:14px; }.address-grid article button { padding:0; border:0; color:var(--brand); background:transparent; font-size:11px; font-weight:700; cursor:pointer; }.address-add { display:grid; place-items:center; align-content:center; text-align:center; border-style:dashed!important; color:var(--muted); }.address-add svg { margin:0 auto 10px!important; }.address-add strong { color:var(--ink); }.form-actions { display:flex; justify-content:flex-end; }
.table-toolbar { margin-bottom:20px; display:flex; align-items:center; gap:15px; }.table-toolbar .filter-search { width:250px; }.table-toolbar > div:nth-child(2) { flex:1; display:flex; gap:6px; }.order-cards { display:grid; gap:13px; }.order-card { border:1px solid var(--line); border-radius:14px; overflow:hidden; }.order-card__head { padding:13px 16px; display:flex; align-items:center; justify-content:space-between; background:#f8f8fb; }.order-card__head > div { display:flex; flex-direction:column; gap:2px; }.order-card__head span { font-size:11px; }.order-card__head small { color:var(--muted); font-size:10px; }.order-card__items { padding:17px; display:grid; grid-template-columns:100px 1fr auto; align-items:center; gap:15px; }.order-art-stack { display:flex; }.order-art-stack > div { width:55px; height:55px; margin-left:-12px; border:3px solid #fff; border-radius:10px; overflow:hidden; }.order-art-stack > div:first-child { margin-left:0; }.order-art-stack .product-visual { min-height:100%; }.order-art-stack .render-label { display:none; }.order-card__items > div:nth-child(2),.order-card__items > div:last-child { display:flex; flex-direction:column; gap:4px; }.order-card__items strong { font-size:10px; }.order-card__items small,.order-card__items span { color:var(--muted); font-size:10px; }.order-card__footer { padding:12px 16px; border-top:1px solid var(--line); display:flex; justify-content:space-between; color:var(--muted); font-size:10px; }.order-card__footer span,.order-card__footer a { display:flex; align-items:center; gap:6px; }.order-card__footer svg { width:12px; }.order-card__footer a { color:var(--brand); font-weight:800; }
.order-progress-card { margin-bottom:16px; }.order-progress { display:flex; align-items:center; justify-content:space-between; }.order-progress > div { width:120px; display:flex; flex-direction:column; align-items:center; text-align:center; gap:5px; }.order-progress > div > span { width:38px; height:38px; border-radius:50%; display:grid; place-items:center; color:#aaa8b3; background:#f0eff5; }.order-progress > div.is-complete > span { color:#fff; background:var(--success); }.order-progress > div span svg { width:16px; }.order-progress strong { font-size:11px; }.order-progress small { color:var(--muted); font-size:7px; }.order-progress > i { flex:1; height:2px; background:#e8e7ed; }.order-progress > i.is-complete { background:var(--success); }
.detail-grid { display:grid; grid-template-columns:1fr 280px; gap:16px; align-items:start; }.order-detail-items article { padding:14px 0; border-bottom:1px solid var(--line); display:grid; grid-template-columns:65px 1fr auto auto; align-items:center; gap:12px; }.order-detail-items article > div { height:65px; border-radius:10px; overflow:hidden; }.order-detail-items article .product-visual { min-height:100%; }.order-detail-items article .render-label { display:none; }.order-detail-items article > span { display:flex; flex-direction:column; gap:3px; }.order-detail-items strong { font-size:10px; }.order-detail-items small { color:var(--muted); font-size:10px; }.order-detail-items em { color:var(--muted); font-size:11px; font-style:normal; }.detail-totals { margin:18px 0 0 auto; width:260px; }.detail-totals div { padding:6px 0; display:flex; justify-content:space-between; font-size:11px; }.detail-totals div:last-child { margin-top:7px; padding-top:15px; border-top:1px solid var(--line); font-size:12px; font-weight:800; }.detail-totals dd { margin:0; }.detail-side-card { margin-bottom:16px; }.detail-side-card h2 { margin:8px 0; font-size:18px; }.detail-side-card p,.detail-side-card > span:last-of-type { color:var(--muted); font-size:11px; line-height:1.6; }
.owned-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:15px; }.owned-card { border:1px solid var(--line); border-radius:18px; overflow:hidden; background:#fff; }.owned-card__media { height:210px; position:relative; }.owned-card__media .product-visual { min-height:100%; }.owned-card__media > .status { position:absolute; top:12px; left:12px; padding:7px 9px; border-radius:99px; background:rgba(255,255,255,.87); backdrop-filter:blur(8px); }.owned-card__body { padding:20px; }.owned-card__body > span { color:var(--muted); font-size:10px; text-transform:uppercase; }.owned-card h2 { margin:7px 0 16px; font-size:16px; line-height:1.3; }.owned-card dl { margin:0; }.owned-card dl div { padding:6px 0; display:flex; justify-content:space-between; font-size:10px; }.owned-card dt { color:var(--muted); }.owned-card dd { margin:0; font-weight:700; }.owned-card dd a { color:var(--brand); }.owned-card__actions { margin-top:15px; padding-top:13px; border-top:1px solid var(--line); display:flex; justify-content:space-between; }.owned-card__actions a { color:var(--brand); font-size:10px; font-weight:800; }
.warranty-summary { margin-bottom:16px; display:grid; grid-template-columns:repeat(3,150px) 1fr; gap:10px; }.warranty-summary > div { min-height:78px; padding:14px; border:1px solid var(--line); border-radius:14px; display:flex; align-items:center; gap:10px; background:#fff; }.warranty-summary > div > span { width:35px; height:35px; border-radius:10px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }.warranty-summary svg { width:17px; }.warranty-summary > div > div { display:flex; flex-direction:column; }.warranty-summary strong { font:800 18px var(--font-display); }.warranty-summary small { color:var(--muted); font-size:7px; }.warranty-summary__note { color:#fff; background:var(--brand)!important; border-color:var(--brand)!important; }.warranty-summary__note > span { color:#fff!important; background:rgba(255,255,255,.12)!important; }.warranty-summary__note strong { font-size:10px; }.warranty-summary__note small { color:#b9b6d2; }
.warranty-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:15px; }.warranty-card { border:1px solid var(--line); border-radius:18px; overflow:hidden; background:#fff; }.warranty-card__top { height:185px; display:grid; grid-template-columns:1fr 80px; align-items:center; background:#f0eff7; position:relative; }.warranty-card__art { height:100%; overflow:hidden; }.warranty-card__art .product-visual { min-height:100%; background:transparent; }.warranty-card__art .render-label { display:none; }.warranty-card__top .warranty-meter { margin-right:15px; }.warranty-card__body { padding:20px; }.warranty-card h2 { margin:8px 0 4px; font-size:16px; }.warranty-card__body > small { color:var(--muted); font-size:7px; }.warranty-dates { margin:18px 0; display:grid; grid-template-columns:1fr 35px 1fr; align-items:center; }.warranty-dates div { display:flex; flex-direction:column; gap:4px; }.warranty-dates div:last-child { text-align:right; }.warranty-dates span { color:var(--muted); font-size:7px; }.warranty-dates strong { font-size:11px; }.warranty-dates > i { height:1px; background:var(--line); }.warranty-card__meta { display:flex; flex-wrap:wrap; gap:7px; }.warranty-card__meta span { padding:6px 8px; border-radius:7px; display:flex; align-items:center; gap:5px; color:var(--muted); background:#f6f6fa; font-size:7px; }.warranty-card__meta svg { width:11px; }.warranty-card__actions { margin-top:16px; padding-top:14px; border-top:1px solid var(--line); display:flex; justify-content:space-between; }.warranty-card__actions a,.warranty-card__actions button { padding:0; border:0; display:flex; align-items:center; gap:5px; color:var(--brand); background:transparent; font-size:10px; font-weight:800; cursor:pointer; }.warranty-card__actions svg { width:12px; }
.coverage-guide { margin-top:17px; padding:38px; border-radius:20px; display:grid; grid-template-columns:300px 1fr; align-items:center; gap:35px; color:#fff; background:radial-gradient(circle at 90% 10%,rgba(91,81,208,.6),transparent 35%),#17134f; }.coverage-guide h2 { margin:8px 0 0; font-size:25px; }.coverage-guide__steps { display:flex; align-items:center; }.coverage-guide__steps > div { width:100px; display:flex; flex-direction:column; gap:4px; }.coverage-guide__steps > div > span { width:28px; height:28px; margin-bottom:5px; border-radius:50%; display:grid; place-items:center; background:rgba(255,255,255,.12); font-size:10px; }.coverage-guide__steps strong { font-size:10px; }.coverage-guide__steps small { color:#9995b5; font-size:7px; }.coverage-guide__steps > i { flex:1; height:1px; background:rgba(255,255,255,.17); }
.notification-filters { padding-bottom:15px; border-bottom:1px solid var(--line); display:flex; gap:7px; }.notification-feed a { min-height:90px; padding:16px 4px; border-bottom:1px solid var(--line); display:flex; align-items:center; gap:13px; }.notification-feed a > span { width:43px; height:43px; flex:none; border-radius:12px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }.notification-feed a > span svg { width:19px; }.notification-feed a > div { flex:1; }.notification-feed strong { font-size:11px; }.notification-feed p { margin:4px 0; color:var(--muted); font-size:11px; }.notification-feed small { color:#aaa8b3; font-size:10px; }.notification-feed a > svg { width:15px; color:#aaa8b3; }.notification-feed a.is-unread { background:linear-gradient(90deg,#faf9ff,transparent); }.notification-feed a.is-unread strong::after { content:""; display:inline-block; width:6px; height:6px; margin-left:7px; border-radius:50%; background:var(--brand-2); }
.notification-preferences { margin-top:16px; display:grid; grid-template-columns:1fr 1fr; gap:35px; }.notification-preferences h2 { margin:8px 0; }.notification-preferences p { color:var(--muted); font-size:10px; }.notification-preferences > div:last-child { display:grid; }.notification-preferences label,.switch-row { min-height:58px; display:flex!important; flex-direction:row!important; align-items:center; justify-content:space-between; gap:12px; cursor:pointer; }.notification-preferences label + label { border-top:1px solid var(--line); }.notification-preferences label span,.switch-row > span { display:flex; flex-direction:column; gap:3px; }.notification-preferences label strong,.switch-row strong { font-size:10px; }.notification-preferences label small,.switch-row small { color:var(--muted); font-size:10px; }.notification-preferences input,.switch-row input { display:none; }.notification-preferences label > i,.switch-row > i { width:35px; height:20px; flex:none; border-radius:99px; background:#d7d6df; position:relative; transition:.25s; }.notification-preferences label > i::after,.switch-row > i::after { content:""; position:absolute; width:14px; height:14px; left:3px; top:3px; border-radius:50%; background:#fff; transition:.25s; box-shadow:0 1px 3px rgba(0,0,0,.18); }.notification-preferences input:checked + i,.switch-row input:checked + i { background:var(--brand-2); }.notification-preferences input:checked + i::after,.switch-row input:checked + i::after { transform:translateX(15px); }
.product-grid--account { grid-template-columns:repeat(3,1fr); }
.support-layout { display:grid; grid-template-columns:1fr 320px; gap:16px; align-items:start; }.support-form { display:grid; gap:16px; }.support-form textarea { resize:vertical; }.upload-zone { min-height:110px; border:1px dashed #c8c5df; border-radius:12px; display:flex; flex-direction:column; align-items:center; justify-content:center; color:var(--muted); }.upload-zone svg { width:23px; color:var(--brand); }.upload-zone strong { margin-top:7px; color:var(--ink); font-size:10px; }.upload-zone span { margin-top:3px; font-size:10px; }.support-layout aside { display:grid; gap:16px; }.claim-list article { padding:15px 0; border-bottom:1px solid var(--line); display:flex; flex-direction:column; align-items:flex-start; gap:6px; }.claim-list article:last-child { border:0; }.claim-list strong { font-size:10px; }.claim-list small { color:var(--muted); font-size:10px; }.claim-list a { color:var(--brand); font-size:10px; font-weight:800; }.claim-list a svg { display:inline; width:11px; vertical-align:middle; }.support-contact { padding:28px; border-radius:18px; color:#fff; background:var(--brand); }.support-contact > svg { width:25px; color:#aaa4ff; }.support-contact h2 { margin:20px 0 8px; }.support-contact p { color:#b6b3d0; font-size:10px; }.support-contact a { display:flex; align-items:center; gap:6px; font-size:11px; font-weight:800; }.support-contact a svg { width:13px; }

.admin-shell { background:#f4f4f8; }.admin-sidebar { position:fixed; inset:0 auto 0 0; z-index:200; width:248px; padding:20px 14px 15px; color:#aaa7c0; background:#15123f; display:flex; flex-direction:column; }.admin-sidebar__head { height:46px; padding:0 8px 16px; border-bottom:1px solid rgba(255,255,255,.08); display:flex; align-items:center; gap:8px; }.admin-sidebar__head > span { margin-left:auto; color:#77738f; font-size:10px; text-transform:uppercase; letter-spacing:.1em; }.admin-sidebar__close { display:none; color:#fff; }.admin-sidebar nav { flex:1; padding:15px 0; overflow-y:auto; scrollbar-width:none; }.admin-sidebar nav::-webkit-scrollbar { display:none; }.admin-nav-label { display:block; padding:13px 10px 7px; color:#5f5b79; font-size:7px; font-weight:800; text-transform:uppercase; letter-spacing:.15em; }.admin-sidebar nav a { min-height:38px; padding:0 10px; border-radius:9px; display:flex; align-items:center; gap:10px; font-size:11px; font-weight:700; transition:.2s; }.admin-sidebar nav a:hover,.admin-sidebar nav a.is-active { color:#fff; background:rgba(255,255,255,.08); }.admin-sidebar nav a.is-active { box-shadow:inset 3px 0 #8d85ff; }.admin-sidebar nav svg { width:15px; }.admin-sidebar nav a > span { margin-left:auto; min-width:17px; height:17px; padding:0 5px; border-radius:99px; display:grid; place-items:center; color:#b5b1ca; background:rgba(255,255,255,.08); font-size:7px; }.admin-sidebar nav a > span.nav-alert { color:#ffbd65; background:rgba(255,174,67,.14); }.admin-sidebar__footer { min-height:55px; padding:12px 6px 0; border-top:1px solid rgba(255,255,255,.08); display:flex; align-items:center; gap:9px; }.admin-sidebar__footer > div:nth-child(2) { flex:1; display:flex; flex-direction:column; gap:2px; }.admin-sidebar__footer strong { color:#fff; font-size:11px; }.admin-sidebar__footer span { font-size:7px; }.admin-sidebar__footer button { border:0; color:#8e8aa3; background:transparent; cursor:pointer; }.admin-sidebar__footer button svg { width:15px; }
.admin-workspace { min-height:100vh; margin-left:248px; }.admin-topbar { position:sticky; top:0; z-index:100; height:70px; padding:0 30px; border-bottom:1px solid var(--line); display:flex; align-items:center; background:rgba(255,255,255,.9); backdrop-filter:blur(15px); }.admin-menu-button { display:none; }.admin-search { width:min(470px,50vw); height:40px; padding:0 10px; border:1px solid rgba(255,255,255,.12); border-radius:10px; display:flex; align-items:center; gap:8px; background:rgba(255,255,255,.07); }.admin-search svg { width:15px; color:#8f8ca5; }.admin-search input { flex:1; min-width:0; border:0; outline:0; color:#fff; background:transparent; font-size:11px; }.admin-search kbd { padding:3px 6px; border:1px solid rgba(255,255,255,.12); border-radius:5px; color:#77748c; font-size:7px; }.admin-topbar .admin-search { color:var(--ink); background:#f5f5f8; border-color:var(--line); }.admin-topbar .admin-search input { color:var(--ink); }.admin-topbar .admin-search kbd { border-color:var(--line); background:#fff; }.admin-topbar__actions { margin-left:auto; display:flex; align-items:center; gap:5px; }.has-dot::after { content:""; position:absolute; right:5px; top:5px; width:7px; height:7px; border:2px solid #fff; border-radius:50%; background:var(--danger); }.admin-avatar { width:36px; height:36px; border-radius:11px; display:grid; place-items:center; color:#fff; background:linear-gradient(145deg,var(--brand-3),var(--brand)); font:800 9px var(--font-display); }
.admin-main { padding:32px; }.admin-page-head { min-height:76px; margin-bottom:26px; display:flex; align-items:flex-start; justify-content:space-between; gap:20px; }.admin-page-head h1 { margin:7px 0 4px; font-size:34px; }.admin-page-head p { margin:0; color:var(--muted); font-size:10px; }.admin-page-head > div:last-child { display:flex; gap:9px; }.admin-page-head--compact { align-items:center; }.admin-page-head--compact h1 { font-size:25px; }
.admin-metrics { margin-bottom:16px; display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }.admin-metrics article { min-height:125px; padding:18px; border:1px solid var(--line); border-radius:16px; background:#fff; }.admin-metrics article > div { display:flex; align-items:center; justify-content:space-between; color:var(--muted); font-size:11px; }.admin-metrics article > div svg { width:18px; color:var(--brand-2); }.admin-metrics article > strong { display:block; margin:17px 0 8px; font:800 22px var(--font-display); }.admin-metrics article > small { display:flex; align-items:center; gap:5px; color:var(--muted); font-size:10px; }.admin-metrics article > small svg { width:12px; }.admin-metrics small.positive { color:var(--success); }.admin-metrics small.warning { color:var(--warning); }
.admin-dashboard-grid { display:grid; grid-template-columns:1fr 330px; gap:16px; }.admin-card { min-width:0; padding:21px; border:1px solid var(--line); border-radius:16px; background:#fff; }.admin-card--wide { min-width:0; }.admin-card__head { margin-bottom:18px; display:flex; align-items:flex-end; justify-content:space-between; gap:15px; }.admin-card__head h2 { margin:4px 0 0; font-size:17px; }.admin-card__head a { display:flex; align-items:center; gap:5px; color:var(--brand); font-size:10px; font-weight:800; }.admin-card__head a svg { width:12px; }.admin-card__head select { height:32px; padding:0 9px; border:1px solid var(--line); border-radius:8px; color:var(--muted); background:#fff; font-size:10px; }.badge-count { min-width:25px; height:25px; border-radius:8px; display:grid; place-items:center; color:var(--brand); background:#eeedff; font-size:11px; font-weight:800; }
.chart-legend { display:flex; align-items:center; gap:7px; color:var(--muted); font-size:10px; }.chart-legend span { display:flex; align-items:center; gap:5px; }.chart-legend i { width:8px; height:8px; border-radius:50%; background:var(--brand-2); }.chart-legend strong { margin-left:auto; color:var(--ink); font-size:12px; }.sales-chart { height:260px; margin-top:12px; position:relative; }.chart-grid-lines { position:absolute; inset:0 0 20px; display:flex; flex-direction:column; justify-content:space-between; }.chart-grid-lines i { height:1px; background:#f0eff4; }.sales-chart svg { position:absolute; inset:5px 0 20px; width:100%; height:calc(100% - 25px); overflow:visible; }.chart-area { fill:url(#chartFill); }.chart-line { fill:none; stroke:var(--brand-2); stroke-width:3; vector-effect:non-scaling-stroke; filter:drop-shadow(0 5px 6px rgba(81,72,216,.18)); }.chart-labels { position:absolute; inset:auto 0 0; display:flex; justify-content:space-between; color:#aaa8b3; font-size:7px; }
.action-list { display:grid; }.action-list a { min-height:67px; border-bottom:1px solid var(--line); display:flex; align-items:center; gap:10px; }.action-list a:last-child { border:0; }.action-list__icon { width:34px; height:34px; flex:none; border-radius:10px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }.action-list__icon--warning { color:var(--warning); background:#fff4e7; }.action-list__icon svg { width:16px; }.action-list a div { flex:1; display:flex; flex-direction:column; gap:3px; }.action-list strong { font-size:11px; }.action-list small { color:var(--muted); font-size:7px; }.action-list a > svg { width:13px; color:#aaa8b3; }
.admin-table { overflow-x:auto; }.admin-table__row { min-width:650px; min-height:54px; border-top:1px solid var(--line); display:grid; grid-template-columns:1fr 1.3fr .5fr .8fr .9fr 30px; align-items:center; gap:12px; font-size:10px; }.admin-table__head { min-height:30px; border:0; color:var(--muted); text-transform:uppercase; }.admin-table__row > span { display:flex; flex-direction:column; gap:2px; }.admin-table__row small { color:var(--muted); font-size:7px; }
.top-products { display:grid; }.top-products a { min-height:67px; border-top:1px solid var(--line); display:grid; grid-template-columns:43px 1fr auto; align-items:center; gap:9px; }.top-products a:first-child { border:0; }.top-products a > div { height:43px; border-radius:9px; overflow:hidden; }.top-products .product-visual { min-height:100%; }.top-products .render-label { display:none; }.top-products a > span { min-width:0; display:flex; flex-direction:column; gap:3px; }.top-products strong { overflow:hidden; font-size:10px; text-overflow:ellipsis; white-space:nowrap; }.top-products small { color:var(--muted); font-size:7px; }.top-products em { color:var(--brand); font-size:10px; font-style:normal; font-weight:700; }
.admin-submetrics { margin-bottom:14px; padding:13px 20px; border:1px solid var(--line); border-radius:13px; display:flex; align-items:center; gap:50px; background:#fff; }.admin-submetrics div { display:flex; align-items:center; gap:8px; }.admin-submetrics span { color:var(--muted); font-size:10px; }.admin-submetrics strong { font:800 13px var(--font-display); }
.admin-list-toolbar { margin:-4px 0 18px; display:flex; gap:8px; }.admin-search--light { width:250px; border-color:var(--line); background:#f7f7fa; }.admin-search--light input { color:var(--ink); }.admin-list-toolbar select { height:40px; padding:0 25px 0 10px; border:1px solid var(--line); border-radius:10px; color:var(--muted); background:#fff; font-size:10px; }
.product-admin-table { overflow-x:auto; }.product-admin-row { min-width:1050px; min-height:72px; border-top:1px solid var(--line); display:grid; grid-template-columns:30px 2.1fr 1fr .8fr .9fr .55fr .65fr .65fr 70px; align-items:center; gap:12px; font-size:10px; }.product-admin-head { min-height:35px; border:0; color:var(--muted); text-transform:uppercase; }.product-admin-row > label input { display:none; }.product-admin-row > label span { width:15px; height:15px; border:1px solid #ceccd7; border-radius:4px; display:block; }.admin-product-cell { display:grid; grid-template-columns:50px 1fr; align-items:center; gap:10px; min-width:0; }.admin-product-cell > div { height:50px; border-radius:9px; overflow:hidden; }.admin-product-cell .product-visual { min-height:100%; }.admin-product-cell .render-label { display:none; }.admin-product-cell > span,.product-admin-row > span { min-width:0; display:flex; flex-direction:column; gap:3px; }.admin-product-cell strong { overflow:hidden; font-size:10px; text-overflow:ellipsis; white-space:nowrap; }.admin-product-cell small,.product-admin-row small { color:var(--muted); font-size:7px; }.price-warning { color:var(--warning)!important; display:flex; align-items:center; gap:3px; }.price-warning svg { width:10px; }.row-actions { display:flex; }.row-actions .icon-button { width:29px; height:29px; }.row-actions svg { width:13px; }
.table-pagination { padding-top:18px; border-top:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; color:var(--muted); font-size:10px; }.table-pagination > div { display:flex; gap:4px; }.table-pagination button { width:29px; height:29px; border:1px solid var(--line); border-radius:8px; display:grid; place-items:center; background:#fff; cursor:pointer; }.table-pagination button.is-active { color:#fff; background:var(--brand); border-color:var(--brand); }.table-pagination button svg { width:12px; }
.admin-edit-grid { display:grid; grid-template-columns:1fr 315px; gap:16px; align-items:start; }.admin-edit-main,.admin-edit-side { display:grid; gap:16px; }.admin-edit-side { position:sticky; top:90px; }.form-section { padding:23px; }.form-section__head { margin-bottom:22px; display:flex; gap:12px; }.form-section__head > span { width:31px; height:31px; flex:none; border-radius:9px; display:grid; place-items:center; color:var(--brand); background:#eeedff; font:800 9px var(--font-display); }.form-section__head h2 { margin:0; font-size:16px; }.form-section__head p { margin:3px 0 0; color:var(--muted); font-size:10px; }.form-section > label { margin-bottom:15px; }.media-editor { display:grid; grid-template-columns:200px 1fr; gap:12px; }.media-primary { height:190px; border:1px solid var(--line); border-radius:13px; overflow:hidden; position:relative; }.media-primary .product-visual { min-height:100%; }.media-primary > span { position:absolute; left:8px; top:8px; padding:5px 7px; border-radius:7px; background:rgba(255,255,255,.85); font-size:7px; }.media-primary > div { position:absolute; left:0; right:0; bottom:0; padding:8px; display:flex; justify-content:center; gap:10px; background:rgba(255,255,255,.86); backdrop-filter:blur(7px); }.media-primary button { border:0; color:var(--brand); background:transparent; font-size:10px; font-weight:800; cursor:pointer; }.media-upload { border:1px dashed #c8c5dd; border-radius:13px; display:flex; flex-direction:column; align-items:center; justify-content:center; color:var(--muted); background:#fafafe; cursor:pointer; }.media-upload svg { width:25px; color:var(--brand); }.media-upload strong { margin-top:8px; color:var(--ink); font-size:11px; }.media-upload span { margin-top:3px; font-size:7px; }
.spec-editor { display:grid; gap:7px; }.spec-editor > div { display:grid; grid-template-columns:1fr 1fr 30px 30px; gap:7px; }.spec-editor button:not(.button) { border:0; border-radius:8px; display:grid; place-items:center; color:var(--muted); background:#f5f5f8; cursor:pointer; }.spec-editor button svg { width:13px; }.serial-list { margin-top:20px; }.serial-list > div:first-child { margin-bottom:10px; display:flex; justify-content:space-between; }.serial-list strong { font-size:10px; }.serial-list span { color:var(--muted); font-size:10px; }.serial-list label { min-height:45px; border-top:1px solid var(--line); display:grid; grid-template-columns:1fr auto 30px; align-items:center; gap:10px; }.serial-list label input { border:0; padding:0; font-family:monospace; }.serial-list label button { border:0; color:var(--muted); background:transparent; }.serial-list label button svg { width:13px; }.serial-list > p { color:var(--muted); font-size:11px; line-height:1.6; }
.price-alert { margin-bottom:16px; padding:11px; border-radius:10px; display:flex; gap:9px; color:var(--warning); background:#fff5e9; }.price-alert svg { width:17px; }.price-alert span { display:flex; flex-direction:column; gap:2px; }.price-alert strong { font-size:11px; }.price-alert small { color:#a8712d; font-size:7px; }.currency-input,.suffix-input { height:43px; border:1px solid var(--line); border-radius:10px; display:flex; align-items:center; overflow:hidden; }.currency-input span,.suffix-input span { height:100%; padding:0 10px; display:grid; place-items:center; color:var(--muted); background:#f6f6fa; font-size:10px; }.currency-input input,.suffix-input input { min-height:100%; border:0!important; box-shadow:none!important; }.margin-preview { padding:13px; border-radius:10px; display:grid; grid-template-columns:1fr auto; background:#f6f6fa; }.margin-preview span { color:var(--muted); font-size:10px; }.margin-preview strong { font-size:11px; }.margin-preview small { grid-column:1/-1; margin-top:4px; color:#aaa8b3; font-size:7px; }.inventory-state,.warranty-preview { padding:11px; border-radius:10px; display:flex; align-items:center; gap:8px; background:#f6f6fa; }.inventory-state span { display:flex; align-items:center; gap:5px; color:var(--success); font-size:10px; font-weight:800; }.inventory-state span.warning { color:var(--warning); }.inventory-state span i { width:6px; height:6px; border-radius:50%; background:currentColor; }.inventory-state small { margin-left:auto; color:var(--muted); font-size:7px; }.warranty-preview svg { width:19px; color:var(--brand); }.warranty-preview span { display:flex; flex-direction:column; gap:2px; }.warranty-preview strong { font-size:10px; }.warranty-preview small { color:var(--muted); font-size:7px; }.tag-editor { min-height:80px; padding:8px; border:1px solid var(--line); border-radius:10px; display:flex; flex-wrap:wrap; align-content:flex-start; gap:6px; }.tag-editor > span { height:25px; padding:0 7px; border-radius:6px; display:flex; align-items:center; gap:4px; color:var(--brand); background:#eeedff; font-size:7px; font-weight:700; }.tag-editor button { padding:0; border:0; color:var(--brand); background:transparent; }.tag-editor svg { width:10px; }.tag-editor input { width:80px; min-height:25px; padding:0; border:0; outline:0; }
.generic-table { overflow-x:auto; }.generic-table__row { min-width:650px; min-height:52px; border-top:1px solid var(--line); display:grid; grid-template-columns:repeat(var(--cols),minmax(120px,1fr)); align-items:center; gap:15px; font-size:10px; }.generic-table__head { min-height:32px; border:0; color:var(--muted); text-transform:uppercase; }.generic-primary { font-weight:800; }.admin-empty-callout { margin-top:15px; padding:20px; border:1px dashed #c9c6df; border-radius:14px; display:flex; align-items:center; gap:14px; background:#fafafe; }.admin-empty-callout > span { width:42px; height:42px; border-radius:11px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }.admin-empty-callout svg { width:19px; }.admin-empty-callout > div { flex:1; }.admin-empty-callout strong { font-size:10px; }.admin-empty-callout p { margin:4px 0 0; color:var(--muted); font-size:10px; }
.settings-layout { display:grid; grid-template-columns:210px 1fr; gap:16px; align-items:start; }.settings-nav { position:sticky; top:90px; padding:10px; border:1px solid var(--line); border-radius:14px; display:grid; gap:3px; background:#fff; }.settings-nav button { min-height:40px; padding:0 10px; border:0; border-radius:9px; display:flex; align-items:center; gap:9px; color:var(--muted); background:transparent; font-size:11px; font-weight:700; cursor:pointer; }.settings-nav button.is-active { color:var(--brand); background:#eeedff; }.settings-nav svg { width:15px; }.settings-main { display:grid; gap:16px; }
.builder-layout { display:grid; grid-template-columns:1fr 300px; gap:16px; align-items:start; }.builder-canvas { display:grid; gap:8px; }.builder-block { min-height:92px; padding:14px; border:1px solid var(--line); border-radius:14px; display:grid; grid-template-columns:28px 42px 1fr 45px 36px; align-items:center; gap:10px; background:#fff; }.drag-handle,.builder-block > .icon-button { border:0; color:#aaa8b3; background:transparent; cursor:grab; }.drag-handle svg { width:15px; }.builder-block__icon { width:42px; height:42px; border-radius:11px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }.builder-block__icon svg { width:18px; }.builder-block > div { display:grid; grid-template-columns:auto 1fr; gap:3px 8px; }.builder-block > div span { color:var(--brand-2); font-size:7px; font-weight:800; text-transform:uppercase; }.builder-block > div strong { font-size:10px; }.builder-block > div p,.builder-block > div small { grid-column:1/-1; margin:0; }.builder-block > div p { font-size:11px; }.builder-block > div small { color:var(--muted); font-size:7px; }.switch-row--compact { min-height:auto; }.add-section { min-height:90px; border:1px dashed #c9c6df; border-radius:14px; display:flex; flex-direction:column; align-items:center; justify-content:center; color:var(--muted); background:#fafafe; cursor:pointer; }.add-section svg { width:20px; color:var(--brand); }.add-section strong { margin-top:5px; color:var(--ink); font-size:11px; }.add-section span { margin-top:3px; font-size:7px; }.builder-side { position:sticky; top:90px; display:grid; gap:16px; }.publish-status { margin-bottom:15px; padding:11px; border-radius:9px; display:flex; align-items:center; gap:8px; background:#eaf8f3; }.publish-status > i { width:7px; height:7px; border-radius:50%; background:var(--success); }.publish-status span { display:flex; flex-direction:column; }.publish-status strong { font-size:10px; }.publish-status small { color:var(--muted); font-size:7px; }

/* Dedicated customer application */
.customer-shell { min-height:100vh; padding:0; background:#f3f3f8; }
.customer-sidebar { position:fixed; inset:0 auto 0 0; z-index:220; width:270px; padding:20px 14px 16px; color:#aaa7c2; background:radial-gradient(circle at 25% 5%,rgba(104,94,220,.26),transparent 28%),#14113f; display:flex; flex-direction:column; }
.customer-sidebar__head { height:48px; padding:0 8px 16px; border-bottom:1px solid rgba(255,255,255,.09); display:flex; align-items:center; gap:9px; }
.customer-sidebar__head > span { margin-left:auto; color:#76728e; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.14em; }
.customer-sidebar__close { display:none; color:#fff; }
.customer-sidebar__profile { margin:16px 5px 8px; padding:14px; border:1px solid rgba(255,255,255,.09); border-radius:14px; display:grid; grid-template-columns:40px 1fr; align-items:center; gap:10px; background:rgba(255,255,255,.055); }
.customer-sidebar__profile > div:nth-child(2) { min-width:0; display:flex; flex-direction:column; gap:3px; }
.customer-sidebar__profile strong { color:#fff; font-size:10px; }
.customer-sidebar__profile div span { overflow:hidden; color:#89859e; font-size:7px; text-overflow:ellipsis; white-space:nowrap; }
.customer-tier { grid-column:1/-1; width:max-content; padding:5px 8px; border-radius:99px; display:flex; align-items:center; gap:5px; color:#bebaff; background:rgba(152,143,255,.12); font-size:7px; font-weight:800; text-transform:uppercase; letter-spacing:.06em; }
.customer-tier svg { width:10px; }
.customer-sidebar nav { flex:1; padding:5px 0 12px; overflow-y:auto; scrollbar-width:none; }
.customer-sidebar nav::-webkit-scrollbar { display:none; }
.customer-nav-label { display:block; padding:14px 11px 7px; color:#5f5b78; font-size:7px; font-weight:800; text-transform:uppercase; letter-spacing:.15em; }
.customer-sidebar nav a { min-height:40px; padding:0 11px; border-radius:9px; display:flex; align-items:center; gap:10px; font-size:11px; font-weight:700; transition:.2s ease; }
.customer-sidebar nav a:hover,.customer-sidebar nav a.is-active { color:#fff; background:rgba(255,255,255,.085); }
.customer-sidebar nav a.is-active { box-shadow:inset 3px 0 #9189ff; }
.customer-sidebar nav a.is-active svg { color:#b9b4ff; }
.customer-sidebar nav svg { width:15px; }
.customer-sidebar nav a > span { margin-left:auto; min-width:18px; height:18px; padding:0 5px; border-radius:99px; display:grid; place-items:center; color:#b7b3cd; background:rgba(255,255,255,.08); font-size:7px; }
.customer-sidebar nav a > span.nav-alert { color:#fff; background:var(--brand-3); }
.customer-sidebar__help { margin:5px; padding:12px; border:1px solid rgba(255,255,255,.08); border-radius:12px; display:flex; align-items:center; gap:9px; background:linear-gradient(135deg,rgba(111,101,224,.16),rgba(255,255,255,.04)); }
.customer-sidebar__help > span { width:33px; height:33px; flex:none; border-radius:9px; display:grid; place-items:center; color:#b2adff; background:rgba(255,255,255,.08); }
.customer-sidebar__help svg { width:15px; }
.customer-sidebar__help div { flex:1; display:flex; flex-direction:column; gap:2px; }
.customer-sidebar__help strong { color:#fff; font-size:10px; }
.customer-sidebar__help small { color:#827e99; font-size:7px; }
.customer-sidebar__help > a { color:#aaa4ff; }
.customer-sidebar__footer { margin-top:8px; padding:10px 5px 0; border-top:1px solid rgba(255,255,255,.08); display:grid; gap:3px; }
.customer-sidebar__footer a,.customer-sidebar__footer button { width:100%; min-height:36px; padding:0 9px; border:0; border-radius:8px; display:flex; align-items:center; gap:9px; color:#aaa7c0; background:transparent; font-size:10px; font-weight:700; cursor:pointer; }
.customer-sidebar__footer a:hover { color:#fff; background:rgba(255,255,255,.07); }
.customer-sidebar__footer button:hover { color:#ff9bab; background:rgba(217,72,95,.1); }
.customer-sidebar__footer svg { width:14px; }
.customer-workspace { min-height:100vh; margin-left:270px; }
.customer-topbar { position:sticky; top:0; z-index:110; height:72px; padding:0 26px; border-bottom:1px solid var(--line); display:flex; align-items:center; gap:20px; background:rgba(255,255,255,.92); backdrop-filter:blur(18px); }
.customer-menu-button { display:none; }
.customer-topbar__welcome { display:none; flex-direction:column; gap:2px; }
.customer-topbar__welcome span { color:var(--muted); font-size:7px; font-weight:800; text-transform:uppercase; letter-spacing:.09em; }
.customer-topbar__welcome strong { font-size:10px; }
.customer-topbar__search { width:min(480px,38vw); height:40px; padding:0 11px; border:1px solid var(--line); border-radius:10px; display:flex; align-items:center; gap:8px; background:#f5f5f8; }
.customer-topbar__search svg { width:15px; color:#9693a2; }
.customer-topbar__search input { flex:1; min-width:0; border:0; outline:0; background:transparent; font-size:11px; }
.customer-topbar__search kbd { padding:3px 6px; border:1px solid var(--line); border-radius:5px; color:#9997a3; background:#fff; font-size:7px; }
.customer-topbar__actions { margin-left:auto; display:flex; align-items:center; gap:6px; }
.customer-quick-action { min-height:37px; padding:0 11px; border:1px solid var(--line); border-radius:9px; display:flex; align-items:center; gap:7px; color:#625f70; background:#fff; font-size:10px; font-weight:700; }
.customer-quick-action:hover { color:var(--brand); border-color:#c9c5ec; background:#f7f6ff; }
.customer-quick-action svg { width:14px; }
.customer-topbar__profile { margin:0 4px; padding-left:10px; border-left:1px solid var(--line); display:flex; align-items:center; gap:8px; }
.customer-topbar__profile .portal-avatar { width:34px; height:34px; border-radius:10px; }
.customer-topbar__profile > span { display:flex; flex-direction:column; gap:1px; }
.customer-topbar__profile strong { font-size:11px; }
.customer-topbar__profile small { color:var(--muted); font-size:7px; }
.button--exit { min-height:39px; color:#fff; background:#17134f; font-size:10px; }
.button--exit:hover { background:var(--brand); }
.customer-app-main { min-height:calc(100vh - 72px); padding:28px 30px 80px; }
.customer-app-main .portal-page { min-height:0; padding:0; background:transparent; }
.customer-app-main .portal-page > .container { width:100%; margin:0; }
.customer-app-main .portal-layout { display:block; }
.customer-app-main .portal-layout > .portal-sidebar,.customer-app-main .portal-layout > .customer-sidebar { display:none; }
.customer-app-main .portal-content { width:100%; max-width:1540px; margin:0 auto; }
.customer-app-main .portal-heading { min-height:72px; margin-bottom:22px; align-items:flex-start; }
.customer-app-main .portal-heading h1 { font-size:34px; }
.customer-app-main .portal-card { border-radius:16px; box-shadow:0 8px 26px rgba(30,25,76,.035); }
.customer-mobile-nav { display:none; }

.customer-dashboard-hero { min-height:270px; margin-bottom:16px; padding:42px 44px; border-radius:22px; color:#fff; background:radial-gradient(circle at 83% 20%,rgba(118,108,232,.58),transparent 28%),linear-gradient(135deg,#15114f,#241d7d); display:flex; align-items:center; position:relative; overflow:hidden; }
.customer-dashboard-hero > div:first-child { max-width:680px; position:relative; z-index:2; }
.customer-dashboard-hero h1 { margin:11px 0 10px; font-size:clamp(38px,4vw,58px); line-height:1.05; }
.customer-dashboard-hero p { max-width:610px; margin:0; color:#b8b5d1; font-size:13px; line-height:1.7; }
.customer-dashboard-hero__actions { margin-top:25px; display:flex; gap:9px; }
.customer-hero-ghost { color:#fff; border:1px solid rgba(255,255,255,.16); background:rgba(255,255,255,.08); backdrop-filter:blur(10px); }
.customer-health-card { width:260px; min-height:190px; margin-left:auto; padding:18px; border:1px solid rgba(255,255,255,.14); border-radius:18px; display:grid; grid-template-columns:1fr 94px; gap:12px; background:rgba(255,255,255,.075); backdrop-filter:blur(16px); position:relative; z-index:2; }
.customer-health-card__head { display:flex; flex-direction:column; gap:3px; }
.customer-health-card__head span { color:#9e9ab8; font-size:10px; text-transform:uppercase; letter-spacing:.08em; }
.customer-health-card__head strong { color:#8de1c1; font-size:11px; }
.customer-health-ring { grid-column:2; grid-row:1/3; width:86px; height:86px; align-self:center; border-radius:50%; display:grid; place-items:center; background:conic-gradient(#a8a2ff 0 92%,rgba(255,255,255,.1) 92%); position:relative; }
.customer-health-ring::before { content:""; position:absolute; inset:7px; border-radius:50%; background:#29236c; }
.customer-health-ring > span { position:relative; z-index:1; display:flex; align-items:baseline; }
.customer-health-ring strong { font:800 25px var(--font-display); }
.customer-health-ring small { color:#aaa6c2; font-size:7px; }
.customer-health-card > div:last-child { display:grid; align-content:end; gap:8px; }
.customer-health-card > div:last-child span { display:flex; align-items:center; gap:5px; color:#d1cee1; font-size:7px; }
.customer-health-card > div:last-child svg { width:11px; color:#7ce0ba; }
.customer-hero-orbit { position:absolute; border:1px solid rgba(255,255,255,.08); border-radius:50%; }
.customer-hero-orbit--one { width:370px; height:370px; right:-100px; top:-130px; }
.customer-hero-orbit--two { width:270px; height:270px; right:-50px; top:-80px; border-style:dashed; }
.account-stats--app { grid-template-columns:repeat(4,1fr); }
.account-stats--app > a { min-height:118px; padding:19px; border-radius:15px; }
.account-stats--app > a > span { width:43px; height:43px; }
.account-stats--app > a > div { flex:1; }
.account-stats--app small { order:0; color:var(--muted); font-size:10px; text-transform:uppercase; letter-spacing:.05em; }
.account-stats--app strong { order:1; margin:3px 0; font-size:25px; }
.account-stats--app em { order:2; color:#aaa8b5; font-size:7px; font-style:normal; }
.customer-dashboard-grid { display:grid; grid-template-columns:minmax(0,1.4fr) minmax(300px,.6fr); gap:16px; }
.customer-dashboard-card--orders,.customer-dashboard-card--owned { grid-column:1; }
.customer-dashboard-card--notifications,.customer-shortcut-card,.customer-dashboard-card--claim { grid-column:2; }
.customer-dashboard-card--notifications { grid-row:1; }
.customer-shortcut-card { grid-row:2; }
.customer-dashboard-card--owned { grid-row:3; }
.customer-dashboard-card--claim { grid-row:3; }
.dashboard-warranties--premium { grid-template-columns:1fr 1fr; }
.dashboard-warranties--premium article { min-height:118px; grid-template-columns:70px 1fr 68px; position:relative; }
.dashboard-warranties--premium article > a { position:absolute; right:10px; bottom:9px; display:flex; align-items:center; gap:4px; color:var(--brand); font-size:7px; font-weight:800; }
.dashboard-warranties--premium article > a svg { width:11px; }
.notification-list--app a { min-height:68px; align-items:center; }
.notification-list--app a > svg { width:13px; margin-left:auto; color:#aaa8b4; }
.customer-order-list { display:grid; }
.customer-order-list > a { min-height:76px; padding:10px 4px; border-top:1px solid var(--line); display:grid; grid-template-columns:90px 1fr 100px 100px 20px; align-items:center; gap:14px; }
.customer-order-list > a:first-child { border-top:0; }
.customer-order-art { display:flex; }
.customer-order-art > span { width:50px; height:50px; margin-left:-10px; border:3px solid #fff; border-radius:10px; overflow:hidden; background:#f0eff5; }
.customer-order-art > span:first-child { margin-left:0; }
.customer-order-art .product-visual { min-height:100%; }
.customer-order-art .render-label { display:none; }
.customer-order-list > a > div:nth-child(2) { display:flex; flex-direction:column; gap:4px; }
.customer-order-list strong { font-size:11px; }
.customer-order-list small { color:var(--muted); font-size:10px; }
.customer-order-list > a > i { width:13px; color:#aaa8b4; }
.customer-shortcut-card { padding:25px; border-radius:16px; color:#fff; background:radial-gradient(circle at 90% 0,rgba(100,91,220,.55),transparent 30%),#17134f; }
.customer-shortcut-card h2 { margin:8px 0; font-size:23px; }
.customer-shortcut-card p { color:#aaa7c3; font-size:11px; line-height:1.6; }
.customer-shortcut-card > div:last-child { margin-top:22px; display:grid; gap:8px; }
.customer-shortcut-card a { min-height:61px; padding:10px; border:1px solid rgba(255,255,255,.1); border-radius:11px; display:flex; align-items:center; gap:9px; background:rgba(255,255,255,.055); }
.customer-shortcut-card a > span { width:34px; height:34px; border-radius:9px; display:grid; place-items:center; color:#b6b1ff; background:rgba(255,255,255,.08); }
.customer-shortcut-card a svg { width:15px; }
.customer-shortcut-card a > div { flex:1; display:flex; flex-direction:column; gap:3px; }
.customer-shortcut-card a strong { font-size:10px; }
.customer-shortcut-card a small { color:#8d89a5; font-size:7px; }
.customer-shortcut-card a > svg { width:12px; color:#77738f; }
.customer-owned-list { display:grid; grid-template-columns:repeat(3,1fr); gap:9px; }
.customer-owned-list > a { min-height:180px; padding:11px; border:1px solid var(--line); border-radius:13px; display:grid; grid-template-columns:1fr auto; gap:8px; position:relative; }
.customer-owned-list > a > div { grid-column:1/-1; height:92px; border-radius:9px; overflow:hidden; }
.customer-owned-list .product-visual { min-height:100%; }
.customer-owned-list .render-label { display:none; }
.customer-owned-list > a > span:nth-child(2) { min-width:0; display:flex; flex-direction:column; gap:3px; }
.customer-owned-list strong { overflow:hidden; font-size:10px; text-overflow:ellipsis; white-space:nowrap; }
.customer-owned-list small { color:var(--muted); font-size:7px; }
.customer-owned-list .status { grid-column:1; }
.customer-owned-list > a > i { position:absolute; right:10px; bottom:10px; width:12px; color:#aaa8b4; }
.dashboard-claim { min-height:100px; margin-bottom:14px; padding:13px; border:1px solid var(--line); border-radius:12px; display:flex; align-items:center; gap:10px; }
.dashboard-claim > span { width:39px; height:39px; flex:none; border-radius:11px; display:grid; place-items:center; color:var(--success); background:#eaf8f3; }
.dashboard-claim > span svg { width:18px; }
.dashboard-claim > div { flex:1; display:flex; flex-direction:column; align-items:flex-start; gap:5px; }
.dashboard-claim strong { font-size:11px; }
.dashboard-claim small { color:var(--muted); font-size:7px; }
.dashboard-claim > svg { width:13px; color:#aaa8b4; }
.customer-recommendations { margin-top:34px; padding-top:32px; border-top:1px solid var(--line); }
.customer-recommendations .section-heading { margin-bottom:22px; }
.customer-recommendations .section-heading h2 { font-size:30px; }
.customer-recommendations .section-heading p { font-size:10px; }
.product-grid--account-recommendations { grid-template-columns:repeat(4,1fr); }
.product-grid--account-recommendations .product-card__media { height:225px; }

.address-app-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:15px; }
.address-app-card,.address-app-add { min-height:245px; padding:22px; border:1px solid var(--line); border-radius:16px; background:#fff; }
.address-app-card.is-default { border-color:#c9c5ef; box-shadow:inset 0 3px var(--brand-3); }
.address-app-card__head { display:flex; align-items:center; justify-content:space-between; }
.address-app-card__head > span:first-child { display:flex; align-items:center; gap:8px; color:var(--brand); font-size:11px; font-weight:800; text-transform:uppercase; }
.address-app-card__head svg { width:16px; }
.address-app-card > strong { display:block; margin:25px 0 8px; font-size:11px; }
.address-app-card p { color:var(--muted); font-size:11px; line-height:1.7; }
.address-app-card > span { display:flex; align-items:center; gap:6px; color:var(--muted); font-size:10px; }
.address-app-card > span svg { width:12px; }
.address-app-card > div:last-child { margin-top:23px; padding-top:14px; border-top:1px solid var(--line); display:flex; gap:15px; }
.address-app-card > div:last-child button { padding:0; border:0; display:flex; align-items:center; gap:5px; color:var(--brand); background:transparent; font-size:10px; font-weight:800; cursor:pointer; }
.address-app-card > div:last-child svg { width:12px; }
.address-app-add { border-style:dashed; display:flex; flex-direction:column; align-items:center; justify-content:center; color:var(--muted); cursor:pointer; }
.address-app-add > span { width:46px; height:46px; margin-bottom:14px; border-radius:13px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }
.address-app-add svg { width:20px; }
.address-app-add strong { color:var(--ink); font-size:10px; }
.address-app-add small { max-width:220px; margin-top:5px; font-size:10px; line-height:1.5; }
.address-guidance { margin-top:16px; display:flex; align-items:center; gap:13px; }
.address-guidance > span { width:43px; height:43px; flex:none; border-radius:12px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }
.address-guidance svg { width:19px; }
.address-guidance strong { font-size:10px; }
.address-guidance p { margin:4px 0 0; color:var(--muted); font-size:10px; }
.claims-app-layout { display:grid; grid-template-columns:1fr 330px; gap:16px; align-items:start; }
.claim-form-card { padding:28px; }
.claim-step { padding:6px 9px; border-radius:99px; color:var(--brand); background:#eeedff; font-size:7px; font-weight:800; }
.claim-consent { padding:11px; border-radius:10px; display:flex; gap:8px; color:#726f81; background:#f4f3fa; font-size:10px; line-height:1.5; }
.claim-consent svg { width:15px; flex:none; color:var(--brand); }
.claims-app-layout > aside { display:grid; gap:16px; }
.claim-process { padding:24px; border-radius:16px; color:#fff; background:radial-gradient(circle at 90% 0,rgba(102,92,222,.58),transparent 32%),#17134f; }
.claim-process > div { min-height:66px; padding-top:14px; display:grid; grid-template-columns:30px 1fr; gap:4px 9px; }
.claim-process > div + div { border-top:1px solid rgba(255,255,255,.09); }
.claim-process > div > span { grid-row:1/3; width:27px; height:27px; border-radius:8px; display:grid; place-items:center; color:#b7b2ff; background:rgba(255,255,255,.09); font-size:10px; }
.claim-process strong { font-size:10px; }
.claim-process small { color:#8e8aa6; font-size:7px; }
.support-hero-app { min-height:205px; margin-bottom:16px; padding:35px; border-radius:18px; color:#fff; background:radial-gradient(circle at 80% 10%,rgba(105,95,224,.58),transparent 30%),#17134f; display:flex; align-items:center; justify-content:space-between; }
.support-hero-app h2 { margin:10px 0; font-size:34px; }
.support-hero-app p { margin:0; color:#aaa7c2; font-size:10px; }
.support-status { padding:13px 16px; border:1px solid rgba(255,255,255,.1); border-radius:12px; display:flex; align-items:center; gap:9px; background:rgba(255,255,255,.06); }
.support-status > i { width:8px; height:8px; border-radius:50%; background:#69e0b5; box-shadow:0 0 0 6px rgba(105,224,181,.12); }
.support-status span { display:flex; flex-direction:column; gap:2px; }
.support-status strong { font-size:10px; }
.support-status small { color:#8f8ba5; font-size:7px; }
.support-option-grid { margin-bottom:16px; display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.support-option-grid > a { min-height:105px; padding:15px; border:1px solid var(--line); border-radius:14px; display:grid; grid-template-columns:37px 1fr 15px; align-items:center; gap:9px; background:#fff; transition:.25s ease; }
.support-option-grid > a:hover { transform:translateY(-3px); border-color:#ccc8ef; box-shadow:var(--shadow-sm); }
.support-option-grid > a > span { width:37px; height:37px; border-radius:10px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }
.support-option-grid svg { width:16px; }
.support-option-grid a > div { display:flex; flex-direction:column; gap:4px; }
.support-option-grid strong { font-size:10px; }
.support-option-grid small { color:var(--muted); font-size:7px; line-height:1.4; }
.support-option-grid a > i,.support-option-grid a > svg { color:#aaa8b4; }
.support-app-grid { display:grid; grid-template-columns:1fr 380px; gap:16px; align-items:start; }
.support-faq > a { min-height:57px; border-top:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; color:#514e5f; font-size:10px; font-weight:700; }
.support-faq > a > span { display:flex; align-items:center; gap:9px; }
.support-faq > a svg { width:14px; color:var(--brand); }
.profile-app-layout { display:grid; grid-template-columns:1fr 320px; gap:16px; align-items:start; }
.profile-app-side { display:grid; gap:16px; }
.profile-app-side .portal-card > p { color:var(--muted); font-size:11px; line-height:1.6; }
.profile-meta { margin:0; }
.profile-meta div { min-height:42px; border-top:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; font-size:10px; }
.profile-meta div:first-child { border-top:0; }
.profile-meta dt { color:var(--muted); }
.profile-meta dd { margin:0; font-weight:800; }
.profile-danger { padding:18px; border:1px solid #f1d3d8; border-radius:16px; display:flex; gap:11px; background:#fff7f8; }
.profile-danger > svg { width:18px; flex:none; color:var(--danger); }
.profile-danger div { display:flex; flex-direction:column; gap:5px; }
.profile-danger strong { font-size:11px; }
.profile-danger p { margin:0; color:var(--muted); font-size:10px; line-height:1.5; }
.profile-danger a { color:var(--danger); font-size:10px; font-weight:800; }

@media (max-width: 1200px) {
  :root { --container:min(100% - 40px,1200px); }
  .desktop-nav { gap:15px; }.header-search { display:none; }
  .hero__grid { grid-template-columns:1fr 1fr; }.hero-product--main { width:360px; right:6%; }.floating-card--warranty { right:-10px; }.floating-card--stock { left:-10px; }
  .product-grid { grid-template-columns:repeat(3,1fr); }.product-grid--scroll { grid-template-columns:repeat(6,calc((100% - 36px)/3)); }
  .footer-grid { grid-template-columns:1.2fr repeat(3,.7fr); }.footer-newsletter { grid-column:1/-1; max-width:500px; }
  .story-grid { gap:60px; }.shop-layout__grid { grid-template-columns:220px 1fr; gap:25px; }.product-grid--shop { grid-template-columns:repeat(2,1fr); }
  .dashboard-grid { grid-template-columns:1fr; }.support-card { min-height:220px; }.owned-grid,.warranty-grid { grid-template-columns:repeat(2,1fr); }
  .warranty-summary { grid-template-columns:repeat(3,1fr); }.warranty-summary__note { grid-column:1/-1; }
  .admin-dashboard-grid { grid-template-columns:1fr; }.admin-card--chart { min-height:380px; }.admin-metrics { grid-template-columns:1fr 1fr; }
  .customer-topbar__search { width:min(330px,30vw); }
  .customer-quick-action span { display:none; }
  .customer-dashboard-grid { grid-template-columns:1fr 300px; }
  .dashboard-warranties--premium { grid-template-columns:1fr; }
  .customer-owned-list { grid-template-columns:1fr 1fr; }
  .product-grid--account-recommendations { grid-template-columns:repeat(3,1fr); }
  .support-option-grid { grid-template-columns:1fr 1fr; }
}

/* ─── Policy pages ─────────────────────────────────────────────────────────── */
.policy-hero { padding: calc(var(--header-h) + 48px) 0 52px; background: radial-gradient(circle at 70% 50%, rgba(104,94,220,.12), transparent 60%), linear-gradient(160deg, #0e0b35 0%, #1b176a 100%); color: #fff; }
.policy-hero__label { display: inline-flex; align-items: center; gap: 8px; padding: 5px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 99px; color: rgba(255,255,255,.7); font-size: 11px; font-weight: 700; letter-spacing: .05em; margin-bottom: 18px; }
.policy-hero__label svg { width: 13px; }
.policy-hero h1 { margin: 0 0 14px; font: 800 clamp(32px,5vw,52px)/1.1 var(--font-display); }
.policy-hero__meta { color: rgba(255,255,255,.55); font-size: 13px; }
.policy-hero__meta strong { color: rgba(255,255,255,.8); }
.policy-body { padding: 72px 0 96px; }
.policy-layout { display: grid; grid-template-columns: 220px 1fr; gap: 60px; align-items: start; }
.policy-toc { position: sticky; top: calc(var(--header-h) + 24px); }
.policy-toc__label { margin-bottom: 12px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.policy-toc a { display: block; padding: 7px 12px; border-left: 2px solid var(--line); color: var(--muted); font-size: 12px; font-weight: 600; transition: color .18s ease, border-color .18s ease; }
.policy-toc a:hover { color: var(--brand); border-left-color: var(--brand); }
.policy-content { min-width: 0; }
.policy-section { margin-bottom: 52px; scroll-margin-top: calc(var(--header-h) + 24px); }
.policy-section:last-child { margin-bottom: 0; }
.policy-section h2 { margin: 0 0 20px; font: 800 22px/1.3 var(--font-display); color: var(--ink); }
.policy-section p { margin: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.policy-section p:last-child { margin-bottom: 0; }
.policy-section ul { margin: 0 0 14px; padding-left: 20px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.policy-section ul li { margin-bottom: 6px; }
.policy-section h3 { margin: 24px 0 10px; font-size: 15px; font-weight: 800; color: var(--ink); }
.policy-card { padding: 24px; border: 1px solid var(--line); border-radius: 18px; margin-bottom: 16px; background: var(--soft); }
.policy-card:last-child { margin-bottom: 0; }
.policy-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.policy-card__icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; color: var(--brand); background: #eeedff; flex: none; }
.policy-card__icon svg { width: 18px; }
.policy-card__head strong { font: 700 15px var(--font-display); }
.policy-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.policy-contact { margin-top: 48px; padding: 32px; border: 1px solid var(--line); border-radius: 20px; background: radial-gradient(circle at 90% 10%, rgba(104,94,220,.08), transparent 50%), var(--soft); display: flex; align-items: center; gap: 24px; }
.policy-contact__icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, var(--brand-2), var(--brand)); flex: none; }
.policy-contact__icon svg { width: 22px; }
.policy-contact div { flex: 1; }
.policy-contact strong { display: block; font: 800 16px var(--font-display); margin-bottom: 4px; }
.policy-contact p { margin: 0; color: var(--muted); font-size: 13px; }
.policy-contact a { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--brand); }
.policy-contact a svg { width: 14px; }

@media (max-width: 900px) {

  :root { --container:calc(100% - 32px); --header-h:68px; }
  .shop-category-tabs { flex-wrap:wrap; }
  .shop-category-tab { flex:1 1 112px; }
  .shop-toolbar { flex-wrap:wrap; }
  .shop-toolbar__search { width:100%; order:-1; }
  .shop-toolbar .active-filters { min-width:0; }
  .announcement-bar__center { display:none; }
  .site-header__inner { height:68px; gap:12px; }.desktop-nav { display:none; }.menu-button { display:grid; }.header-actions { margin-left:auto; }.mobile-menu { display:block; position:fixed; inset:0 auto 0 0; z-index:300; width:min(390px,100%); padding:20px; background:#fff; box-shadow:var(--shadow); transform:translateX(-105%); transition:transform .45s cubic-bezier(.22,1,.36,1); overflow-y:auto; }.mobile-menu.is-open { transform:none; }.mobile-menu__head { display:flex; justify-content:space-between; align-items:center; font:800 18px var(--font-display); }.mobile-search { height:46px; margin:20px 0; padding:0 12px; border:1px solid var(--line); border-radius:12px; display:flex; align-items:center; gap:8px; }.mobile-search svg { width:16px; }.mobile-search input { flex:1; border:0; outline:0; }.mobile-menu nav { display:grid; }.mobile-menu nav a { min-height:49px; border-bottom:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; font-size:12px; font-weight:700; }.mobile-menu nav a span { display:flex; align-items:center; gap:10px; }.mobile-menu nav svg { width:17px; color:var(--brand); }.mobile-menu__foot { margin-top:25px; display:grid; gap:8px; }.mobile-menu__foot a { min-height:45px; padding:0 12px; border-radius:10px; display:flex; align-items:center; gap:9px; color:var(--brand); background:#eeedff; font-size:11px; font-weight:700; }.mobile-menu__foot svg { width:16px; }
  .nav-drawer-scrim { display:block; position:fixed; inset:0; z-index:290; border:0; padding:0; background:rgba(15,12,49,.45); -webkit-backdrop-filter:blur(2px); backdrop-filter:blur(2px); opacity:0; visibility:hidden; transition:opacity .4s cubic-bezier(.22,1,.36,1),visibility .4s; cursor:pointer; }
  .mobile-menu.is-open ~ .nav-drawer-scrim { opacity:1; visibility:visible; }
  .hero { height:auto; min-height:100vh; }.hero__grid { min-height:auto; height:auto; grid-template-columns:1fr; }.hero__copy { padding:calc(var(--header-h) + 24px) 0 25px; max-width:720px; }.hero__stage { min-height:560px; }.hero-product--main { width:420px; right:13%; top:0; }.hero-product--side { left:10%; }.floating-card--stock { left:8%; }.floating-card--warranty { right:6%; }.hero-scroll { display:none; }
  .trust-strip__grid { grid-template-columns:1fr 1fr; }.trust-strip__grid > div:nth-child(3) { border-top:1px solid var(--line); }.trust-strip__grid > div:nth-child(4) { border-top:1px solid var(--line); border-right:1px solid var(--line); }
  .category-grid { grid-template-columns:1fr 1fr; }.product-grid { grid-template-columns:1fr 1fr; }.story-grid { grid-template-columns:1fr; }.story-visual { order:2; }.brand-promise__grid { gap:25px; }.newsletter-card { grid-template-columns:1fr; gap:30px; }
  .product-detail__grid { grid-template-columns:1fr; gap:45px; }.product-gallery__main { height:560px; }.product-info { max-width:700px; }.product-tab[data-tab-panel="overview"],.warranty-explainer { grid-template-columns:1fr; }.cart-grid,.checkout-grid { grid-template-columns:1fr; }.order-summary,.checkout-summary { position:static; }.cart-item { grid-template-columns:110px 1fr 120px; }.cart-list__head { display:none; }.cart-line-total { display:none; }.cart-item__info > strong { display:block; margin-top:8px; }.checkout-summary { order:-1; }
  .auth-shell { overflow:auto; }
  .auth-page { height:auto; min-height:100vh; grid-template-columns:1fr; overflow:visible; }
  .auth-visual { height:auto; min-height:430px; }
  .auth-form-wrap { height:auto; min-height:620px; }
  .auth-store-exit--light { display:none; }
  .portal-layout { grid-template-columns:1fr; }.portal-sidebar { position:static; display:none; }.account-stats { grid-template-columns:1fr 1fr; }.detail-grid,.support-layout { grid-template-columns:1fr; }.product-grid--account { grid-template-columns:1fr 1fr; }.coverage-guide { grid-template-columns:1fr; }
  .admin-sidebar { transform:translateX(-105%); transition:transform .35s ease; }.admin-sidebar.is-open { transform:none; box-shadow:30px 0 80px rgba(0,0,0,.25); }.admin-sidebar__close { display:grid; }.admin-sidebar__head > span { display:none; }.admin-workspace { margin-left:0; }.admin-menu-button { display:grid; }.admin-main { padding:24px 20px; }.admin-edit-grid,.settings-layout,.builder-layout { grid-template-columns:1fr; }.admin-edit-side,.settings-nav,.builder-side { position:static; }.settings-nav { grid-template-columns:repeat(3,1fr); }.builder-side { grid-template-columns:1fr 1fr; }
  .customer-sidebar { transform:translateX(-105%); transition:transform .35s ease; }
  .customer-sidebar.is-open { transform:none; box-shadow:30px 0 80px rgba(0,0,0,.28); }
  .customer-sidebar__close { display:grid; }
  .customer-sidebar__head > span { display:none; }
  .customer-workspace { margin-left:0; }
  .customer-menu-button { display:grid; }
  .customer-topbar__welcome { display:flex; }
  .customer-topbar__search { display:none; }
  .customer-topbar__profile { display:none; }
  .customer-app-main { padding:24px 20px 85px; }
  .customer-dashboard-hero { padding:35px; }
  .customer-health-card { width:230px; }
  .customer-dashboard-grid { grid-template-columns:1fr; }
  .customer-dashboard-card--orders,.customer-dashboard-card--owned,.customer-dashboard-card--notifications,.customer-shortcut-card,.customer-dashboard-card--claim { grid-column:1; grid-row:auto; }
  .customer-owned-list { grid-template-columns:repeat(3,1fr); }
  .product-grid--account-recommendations { grid-template-columns:1fr 1fr; }
  .address-app-grid { grid-template-columns:1fr 1fr; }
  .claims-app-layout,.support-app-grid { grid-template-columns:1fr; }
  .profile-app-layout { grid-template-columns:1fr; }
}

@media (max-width: 640px) {
  :root { --container:calc(100% - 24px); --radius:16px; --header-h:62px; }
  body { padding-bottom:65px; }.section { padding:75px 0; }
  .announcement-bar__inner { height:33px; justify-content:center; }.announcement-bar a { display:none; }.announcement-bar { font-size:10px; }
  .site-header__inner { height:62px; }.brand__word { font-size:20px; }.brand__mark { width:31px; height:31px; }.hide-mobile { display:none; }.header-actions .icon-button { width:38px; height:38px; }
  .mobile-bottom-nav { position:fixed; left:0; right:0; bottom:0; z-index:190; height:66px; border-top:1px solid var(--line); display:grid; grid-template-columns:repeat(4,1fr); background:rgba(255,255,255,.94); backdrop-filter:blur(14px); }.mobile-bottom-nav a { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px; color:#918f9c; font-size:10px; }.mobile-bottom-nav a.is-active { color:var(--brand); }.mobile-bottom-nav svg { width:18px; }
  .hero__copy { padding-top:65px; }.hero h1 { font-size:52px; }.hero__copy > p { font-size:14px; }.hero__actions { flex-direction:column; align-items:stretch; }.hero__proof { margin-top:30px; }.hero__stage { min-height:430px; }.hero-product--main { width:300px; height:360px; right:5%; }.hero-product--side { width:170px; height:200px; left:0; bottom:3%; }.floating-card--stock { top:28%; left:0; }.floating-card--warranty { top:10%; right:0; }.floating-card { padding:9px 11px; }.floating-card strong { font-size:11px; }.floating-card small { font-size:7px; }
  .trust-strip__grid { grid-template-columns:1fr; }.trust-strip__grid > div { min-height:75px; border-right:1px solid var(--line); border-top:1px solid var(--line); }.trust-strip__grid > div:first-child { border-top:0; }
  .section-heading { align-items:flex-start; }.section-heading h2 { font-size:34px; }.section-heading .text-link,.carousel-controls { display:none; }.category-grid { grid-template-columns:1fr; }.category-card { min-height:125px; }.product-grid { grid-template-columns:1fr; }.product-grid--scroll { grid-template-columns:repeat(6,82vw); margin-right:-12px; }.product-card__media { height:310px; }.product-card__actions { opacity:1; transform:none; }
  .story-visual { min-height:510px; }.story-visual__halo { width:360px; }.warranty-phone { width:280px; min-height:500px; }.story-float { right:-2%; bottom:8%; }.story-copy h2 { font-size:36px; }
  .brand-promise__inner { padding:60px 25px; border-radius:24px; }.brand-promise h2 { font-size:39px; }.brand-promise__grid { grid-template-columns:1fr; }.newsletter-card { padding:45px 24px; border-radius:22px; }.newsletter-card h2 { font-size:31px; }.newsletter-card form > div { height:auto; padding:8px; flex-wrap:wrap; }.newsletter-card form input { min-height:40px; }.newsletter-card form .button { width:100%; }
  .footer-promise { align-items:flex-start; flex-direction:column; }.footer-promise h2 { font-size:35px; }.footer-grid { grid-template-columns:1fr 1fr; gap:35px 25px; }.footer-brand,.footer-newsletter { grid-column:1/-1; }.footer-bottom { flex-direction:column; gap:12px; }
  .shop-hero,.simple-hero { padding:calc(var(--header-h) + 14px) 0 22px; }.breadcrumbs { margin-bottom:20px; }.shop-hero .breadcrumbs,.simple-hero .breadcrumbs { margin-bottom:14px; }.shop-hero__heading { align-items:flex-start; }.shop-hero h1,.simple-hero h1 { font-size:29px; }.shop-hero p,.simple-hero p { font-size:12px; }.shop-hero__count { display:none; }.shop-category-nav .container { width:100%; transform:translateY(12px); }.shop-category-tabs { padding:0 12px; }.shop-category-tab { flex:1 1 calc(33.333% - 9px); min-width:94px; min-height:65px; padding:8px 6px; }.shop-category-tab > span { width:28px; height:28px; }.shop-category-tab strong { font-size:11px; }.shop-layout { padding-top:38px; }.shop-layout__grid { grid-template-columns:1fr; }.filters { position:fixed; inset:0 0 0 auto; z-index:350; width:min(340px,100%); height:100dvh; max-height:100dvh; padding:20px; overflow-y:auto; overscroll-behavior:contain; background:#fff; transform:translateX(105%); transition:transform .35s ease; }.filters.is-open { transform:none; box-shadow:var(--shadow); }.filters__mobile-head { display:flex; align-items:center; justify-content:space-between; }.button--filter { display:inline-flex; }.shop-toolbar__search { height:44px; }.active-filters { overflow-x:auto; }.sort-form { margin-left:auto; }.sort-form label { font-size:0; }.sort-form select { max-width:145px; }.product-grid--shop { grid-template-columns:1fr 1fr; gap:10px; }.product-grid--shop .product-card__media { height:190px; }.product-grid--shop .product-card__content { padding:13px; }.product-grid--shop .product-card h3 { min-height:52px; font-size:12px; }.product-grid--shop .product-card__rating { display:none; }.product-grid--shop .product-card__bottom strong { font-size:13px; }.product-grid--shop .product-card__bottom small { display:none; }.product-grid--shop .product-card__actions { display:none; }.product-grid--shop .stock-line span { display:none; }.product-grid--shop .product-card__badges { top:8px; left:8px; right:8px; gap:4px; flex-wrap:wrap; }.product-grid--shop .product-card__badges .pill { min-height:20px; padding:0 7px; border-radius:7px; font-size:10px; letter-spacing:.02em; }.quick-view__panel { padding:60px 20px; }.quick-product__art { height:320px; }
  .product-detail { padding-top:25px; }.product-detail__grid { gap:30px; }.product-gallery { grid-template-columns:1fr; }.product-gallery__main { grid-column:1; height:430px; }.product-gallery__thumbs { grid-column:1; grid-row:2; grid-template-columns:repeat(4,1fr); }.product-gallery__thumbs button { height:70px; }.product-info h1 { font-size:37px; }.purchase-row { flex-wrap:wrap; }.purchase-row .quantity-control { width:105px; }.purchase-button { min-width:calc(100% - 117px); }.purchase-row > .icon-button { width:100%; }.availability { align-items:flex-start; flex-direction:column; gap:8px; }.product-tabs__nav { gap:20px; overflow-x:auto; }.product-tabs__nav button { flex:none; }.product-tab h2 { font-size:32px; }.product-feature-art { height:340px; }.linear-warranty { overflow-x:auto; }.related-products { overflow-x:auto; }
  .cart-section { padding-top:35px; }.cart-item { min-height:150px; padding-right:0; grid-template-columns:90px 1fr; gap:12px; }.cart-item__media { height:100px; }.cart-item .quantity-control { margin-top:8px; grid-column:2; width:110px; }.cart-remove { top:15px; }.order-summary { padding:22px; }.checkout-header .container > div { display:none; }.checkout-header .container > a:last-child { font-size:0; }.checkout-form__title h1 { font-size:38px; }.form-card { padding:20px; }.form-grid { grid-template-columns:1fr; }.field-full { grid-column:1; }.payment-options { grid-template-columns:1fr; }.confirmation-card h1 { font-size:39px; }.confirmation-stats { grid-template-columns:1fr; }.confirmation-stats div + div { padding-top:14px; margin-top:14px; border-left:0; border-top:1px solid var(--line); }.confirmation-steps > div { width:75px; }.confirmation-steps > div small { display:none; }.confirmation-actions { flex-direction:column; }
  .auth-page { min-height:100svh; }
  .auth-visual { min-height:370px; padding:28px 24px 35px; }
  .auth-visual h1 { font-size:39px; }
  .auth-visual p { font-size:12px; }
  .auth-store-exit--dark { min-height:38px; padding:0 11px; }
  .auth-store-exit--dark span { display:none; }
  .auth-form-wrap { min-height:590px; padding:55px 24px; }
  .auth-form__head h2 { font-size:37px; }
  .auth-form--register { padding:20px 0; }
  .auth-field-row { grid-template-columns:1fr; gap:13px; }
  .auth-register-form .input-with-icon { height:49px; }
  .portal-page { padding-top:32px; }.portal-heading { min-height:0; align-items:flex-start; flex-direction:column; }.portal-heading h1 { font-size:32px; }.account-stats { grid-template-columns:1fr 1fr; }.account-stats > a { min-height:90px; padding:13px; }.account-stats > a > span { display:none; }.dashboard-warranties { grid-template-columns:1fr; }.dashboard-warranties article { grid-template-columns:58px 1fr 58px; }.notification-preferences { grid-template-columns:1fr; }.address-grid,.owned-grid,.warranty-grid,.product-grid--account { grid-template-columns:1fr; }.table-toolbar { align-items:stretch; flex-direction:column; }.table-toolbar .filter-search { width:100%; }.order-card__items { grid-template-columns:80px 1fr; }.order-card__items > div:last-child { grid-column:2; }.order-progress { overflow-x:auto; }.order-progress > div { min-width:90px; }.order-progress > i { min-width:30px; }.detail-totals { width:100%; }.warranty-summary { grid-template-columns:1fr 1fr; }.warranty-summary__note { grid-column:1/-1; }.coverage-guide { padding:25px; }.coverage-guide__steps { display:grid; grid-template-columns:1fr 1fr; gap:15px; }.coverage-guide__steps > i { display:none; }.support-layout { grid-template-columns:1fr; }
  .admin-topbar { padding:0 12px; }.admin-topbar .admin-search { width:calc(100% - 110px); }.admin-search kbd { display:none; }.admin-main { padding:22px 12px; }.admin-page-head { align-items:flex-start; flex-direction:column; }.admin-page-head > div:last-child { width:100%; }.admin-page-head > div:last-child .button { flex:1; }.admin-metrics { grid-template-columns:1fr 1fr; gap:8px; }.admin-metrics article { min-height:115px; padding:14px; }.admin-metrics article > strong { font-size:18px; }.admin-submetrics { gap:20px; overflow-x:auto; }.admin-list-toolbar { flex-wrap:wrap; }.admin-search--light { width:100%; }.admin-list-toolbar select { flex:1; }.admin-edit-side { position:static; }.media-editor { grid-template-columns:1fr; }.media-primary,.media-upload { height:180px; }.spec-editor > div { grid-template-columns:1fr 1fr 25px; }.spec-editor > div button:last-child { display:none; }.settings-nav { grid-template-columns:1fr 1fr; }.builder-side { grid-template-columns:1fr; }.builder-block { grid-template-columns:22px 36px 1fr 35px; }.builder-block > .icon-button { display:none; }
  .customer-shell { padding-bottom:67px; }
  .customer-topbar { height:64px; padding:0 12px; gap:8px; }
  .customer-topbar__actions { gap:2px; }
  .customer-quick-action { display:none; }
  .customer-topbar__actions > .has-dot { width:38px; height:38px; }
  .button--exit { width:38px; height:38px; min-height:38px; padding:0; border-radius:10px; font-size:0; }
  .button--exit svg { width:16px; }
  .customer-app-main { min-height:calc(100vh - 64px); padding:14px 12px 82px; }
  .customer-app-main .portal-heading { min-height:0; margin-bottom:18px; align-items:flex-start; flex-direction:column; }
  .customer-app-main .portal-heading h1 { font-size:29px; }
  .customer-dashboard-hero { min-height:360px; padding:28px 24px; align-items:flex-start; flex-direction:column; }
  .customer-dashboard-hero h1 { font-size:39px; }
  .customer-dashboard-hero p { font-size:11px; }
  .customer-dashboard-hero__actions { width:100%; flex-direction:column; }
  .customer-health-card { width:100%; min-height:125px; margin:24px 0 0; grid-template-columns:1fr 75px; }
  .customer-health-ring { width:68px; height:68px; }
  .customer-health-ring strong { font-size:19px; }
  .account-stats--app { grid-template-columns:1fr 1fr; gap:8px; }
  .account-stats--app > a { min-height:105px; padding:13px; align-items:flex-start; }
  .account-stats--app > a > span { display:grid; width:34px; height:34px; }
  .account-stats--app > a > svg { display:none; }
  .account-stats--app strong { font-size:21px; }
  .customer-dashboard-grid { gap:10px; }
  .customer-app-main .portal-card { padding:18px; }
  .dashboard-warranties--premium article { grid-template-columns:56px 1fr 55px; padding:10px; }
  .customer-order-list > a { grid-template-columns:70px 1fr 15px; }
  .customer-order-list > a > .status,.customer-order-list > a > strong { display:none; }
  .customer-owned-list { grid-template-columns:1fr; }
  .customer-owned-list > a { min-height:115px; grid-template-columns:78px 1fr; }
  .customer-owned-list > a > div { grid-column:1; grid-row:1/3; height:78px; }
  .customer-owned-list .status { grid-column:2; }
  .customer-recommendations .section-heading { align-items:flex-start; }
  .product-grid--account-recommendations { grid-template-columns:1fr 1fr; gap:9px; }
  .product-grid--account-recommendations .product-card__media { height:175px; }
  .product-grid--account-recommendations .product-card__content { padding:12px; }
  .product-grid--account-recommendations .product-card h3 { font-size:11px; }
  .product-grid--account-recommendations .product-card__actions { display:none; }
  .address-app-grid,.support-option-grid { grid-template-columns:1fr; }
  .address-app-card,.address-app-add { min-height:220px; }
  .support-hero-app { padding:25px; align-items:flex-start; flex-direction:column; gap:25px; }
  .support-hero-app h2 { font-size:29px; }
  .support-status { width:100%; }
  .claims-app-layout { grid-template-columns:1fr; }
  .profile-app-layout { grid-template-columns:1fr; }
  .claim-form-card { padding:18px!important; }
  .customer-mobile-nav { position:fixed; left:0; right:0; bottom:0; z-index:210; height:67px; border-top:1px solid var(--line); display:grid; grid-template-columns:repeat(5,1fr); background:rgba(255,255,255,.96); backdrop-filter:blur(16px); }
  .customer-mobile-nav a,.customer-mobile-nav button { padding:0; border:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px; color:#8f8d99; background:transparent; font-size:7px; font-weight:700; }
.customer-mobile-nav a.is-active { color:var(--brand); }
.customer-mobile-nav a,.customer-mobile-nav button { position:relative; }
.customer-mobile-nav a.is-active::before,.customer-mobile-nav button.is-active::before { content:""; position:absolute; top:0; width:42px; height:3px; border-radius:0 0 5px 5px; background:var(--brand-2); }
.customer-mobile-nav a:hover,.customer-mobile-nav button:hover { color:var(--brand); background:#faf9ff; }
.customer-mobile-nav a:focus-visible,.customer-mobile-nav button:focus-visible { outline:2px solid rgba(81,72,216,.3); outline-offset:-3px; }
  .customer-mobile-nav svg { width:17px; }
}

/* Notification state and popup */
.account-quick-popover { position:relative; }
.account-quick-trigger[aria-expanded="true"] { color:var(--brand)!important; background:#eeedff!important; }
.account-quick { position:fixed; top:var(--account-quick-top,91px); right:var(--account-quick-right,12px); z-index:1251; width:410px; max-width:calc(100vw - 24px); color:var(--ink); visibility:hidden; pointer-events:none; }
.account-quick.is-open { visibility:visible; pointer-events:auto; }
.account-quick__backdrop { display:none; }
.account-quick__panel { width:100%; border:1px solid rgba(211,208,230,.9); border-radius:22px; overflow:hidden; outline:0; background:rgba(255,255,255,.98); box-shadow:0 30px 90px rgba(24,18,74,.23),0 8px 28px rgba(24,18,74,.08); opacity:0; transform:translateY(10px) scale(.975); transform-origin:top right; transition:opacity .22s ease,transform .32s cubic-bezier(.22,1,.36,1); }
.account-quick.is-open .account-quick__panel { opacity:1; transform:none; }
.account-quick__head { min-height:91px; padding:17px 17px 16px 18px; display:flex; align-items:center; justify-content:space-between; gap:14px; color:#fff; background:radial-gradient(circle at 90% 0,rgba(135,126,255,.42),transparent 35%),linear-gradient(135deg,#17134f,#2b2584 70%,#5148d8); position:relative; }
.account-quick__identity { min-width:0; display:flex; align-items:center; gap:12px; }
.account-quick__avatar { flex:none; width:48px; height:48px; border:1px solid rgba(255,255,255,.3); border-radius:15px; display:grid; place-items:center; color:#211b75; background:linear-gradient(145deg,#fff,#dedbff); box-shadow:0 8px 22px rgba(11,7,52,.22); font:800 15px var(--font-display); letter-spacing:-.04em; }
.account-quick__identity > span:last-child { min-width:0; display:flex; flex-direction:column; gap:2px; }
.account-quick__identity small { color:#bbb7ff; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.12em; }
.account-quick__identity strong { max-width:260px; overflow:hidden; color:#fff; font:800 17px/1.25 var(--font-display); text-overflow:ellipsis; white-space:nowrap; }
.account-quick__identity em { max-width:250px; overflow:hidden; color:rgba(255,255,255,.72); font-size:11px; font-style:normal; text-overflow:ellipsis; white-space:nowrap; }
.account-quick__close { flex:none; width:34px; height:34px; color:#fff!important; background:rgba(255,255,255,.12); }
.account-quick__close:hover { background:rgba(255,255,255,.22)!important; }
.account-quick__body { max-height:min(600px,calc(100vh - 135px)); overflow-y:auto; overscroll-behavior:contain; scrollbar-width:thin; scrollbar-color:#d5d2e9 transparent; background:linear-gradient(180deg,#fff,#fbfaff); }
.account-quick__member-row { min-height:47px; padding:0 18px; border-bottom:1px solid #efedf6; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.account-quick__member-row > span { color:var(--muted); font-size:11px; font-weight:700; }
.account-quick__member { display:flex; align-items:center; gap:5px; color:var(--brand)!important; }
.account-quick__member svg { width:13px; color:var(--brand-2); }
.account-quick__recent { margin:14px 16px 10px; padding:13px; border:1px solid #e7e4f3; border-radius:15px; display:grid; grid-template-columns:40px minmax(0,1fr) auto 15px; align-items:center; gap:10px; background:linear-gradient(135deg,#f8f7ff,#fff); transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.account-quick__recent:hover { border-color:#cbc6ee; box-shadow:0 10px 25px rgba(40,32,113,.09); transform:translateY(-1px); }
.account-quick__recent-icon { width:40px; height:40px; border-radius:12px; display:grid; place-items:center; color:var(--brand); background:#eae8ff; }
.account-quick__recent-icon svg { width:18px; }
.account-quick__recent > span:nth-child(2) { min-width:0; display:flex; flex-direction:column; gap:2px; }
.account-quick__recent small { color:var(--muted); font-size:10px; text-transform:uppercase; letter-spacing:.08em; }
.account-quick__recent strong { font-size:11px; }
.account-quick__recent em { overflow:hidden; color:var(--muted); font-size:8.5px; font-style:normal; text-overflow:ellipsis; white-space:nowrap; }
.account-quick__recent b { color:var(--brand); font-size:11px; white-space:nowrap; }
.account-quick__recent > svg { width:14px; color:#aaa6c2; }
.account-quick__recent--empty { grid-template-columns:40px minmax(0,1fr) auto; }
.account-quick__recent--empty > a { color:var(--brand); font-size:11px; font-weight:800; }
.account-quick__actions { padding:5px 16px 15px; display:grid; grid-template-columns:1fr 1fr; gap:7px; }
.account-quick__actions > a { min-height:70px; padding:11px; border:1px solid transparent; border-radius:13px; display:grid; grid-template-columns:32px 1fr; grid-template-rows:auto auto; align-content:center; column-gap:9px; color:var(--ink); background:#f6f5fa; transition:background .2s ease,border-color .2s ease,transform .2s ease; }
.account-quick__actions > a:hover { border-color:#dcd8f1; background:#fff; transform:translateY(-1px); }
.account-quick__actions > a > span { grid-row:1/3; width:32px; height:32px; border-radius:10px; display:grid; place-items:center; color:var(--brand); background:#e9e7ff; }
.account-quick__actions svg { width:15px; }
.account-quick__actions strong { align-self:end; font-size:10px; }
.account-quick__actions small { align-self:start; color:var(--muted); font-size:10px; }
.account-quick__footer { padding:14px 16px 13px; border-top:1px solid #eceaf4; display:grid; gap:7px; background:#fff; }
.account-quick__footer .button { min-height:43px; border-radius:11px; gap:7px; }
.account-quick__footer .button svg { width:14px; }
.account-quick__footer form,.account-quick__admin form { display:flex; justify-content:center; }
.account-quick__footer form button,.account-quick__admin form button { padding:5px 8px; border:0; display:flex; align-items:center; gap:5px; color:#9996a5; background:transparent; font-size:8.5px; font-weight:700; cursor:pointer; }
.account-quick__footer form button:hover,.account-quick__admin form button:hover { color:var(--danger); }
.account-quick__footer form svg,.account-quick__admin form svg { width:12px; }
.account-quick__guest,.account-quick__admin,.account-quick__error { min-height:330px; padding:33px 28px 25px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.account-quick__guest-icon,.account-quick__admin > span,.account-quick__error > span { width:62px; height:62px; margin-bottom:16px; border-radius:20px; display:grid; place-items:center; color:var(--brand); background:linear-gradient(145deg,#eeecff,#faf9ff); box-shadow:inset 0 0 0 1px #dfdcf6; }
.account-quick__guest-icon svg,.account-quick__admin > span svg,.account-quick__error > span svg { width:25px; }
.account-quick__guest > strong,.account-quick__admin > strong,.account-quick__error > strong { font:800 18px/1.3 var(--font-display); }
.account-quick__guest p,.account-quick__admin p,.account-quick__error p { max-width:310px; margin:8px 0 20px; color:var(--muted); font-size:10px; line-height:1.6; }
.account-quick__guest-actions { width:100%; display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.account-quick__guest-actions .button,.account-quick__admin .button,.account-quick__error .button { min-height:43px; border-radius:11px; }
.account-quick__admin form { margin-top:9px; }
.account-quick__error > button { margin-top:10px; padding:6px 10px; border:0; color:var(--brand); background:transparent; font-size:11px; font-weight:800; cursor:pointer; }
.account-quick__loading { min-height:355px; padding:24px 18px; display:grid; align-content:center; gap:10px; }
.account-quick__loading > span { height:57px; border-radius:13px; background:linear-gradient(90deg,#efedf5 25%,#fafafe 50%,#efedf5 75%); background-size:200% 100%; animation:notificationShimmer 1.3s linear infinite; }
.account-quick__loading > span:nth-child(2) { height:145px; }
.account-quick__loading small { margin-top:7px; color:var(--muted); text-align:center; font-size:11px; }
.account-quick-open .site-header { z-index:1250; }

.notification-popover { position:relative; }
.notification-trigger { position:relative; }
.notification-unread-dot { position:absolute; top:7px; right:7px; width:8px; height:8px; border:2px solid #fff; border-radius:50%; background:#df4d63; box-shadow:0 0 0 3px rgba(223,77,99,.1); }
.notification-unread-dot[hidden] { display:none; }
.notification-panel { position:absolute; top:calc(100% + 13px); right:0; z-index:520; width:390px; max-width:calc(100vw - 24px); border:1px solid var(--line); border-radius:18px; overflow:hidden; background:#fff; box-shadow:0 28px 80px rgba(27,22,74,.2); opacity:0; visibility:hidden; transform:translateY(8px) scale(.98); transform-origin:top right; transition:opacity .22s ease,transform .28s cubic-bezier(.22,1,.36,1),visibility .22s; }
.notification-panel.is-open { opacity:1; visibility:visible; transform:none; }
.notification-panel__head { min-height:75px; padding:16px 18px; border-bottom:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; gap:12px; background:linear-gradient(180deg,#fbfaff,#fff); }
.notification-panel__head > div { display:flex; flex-direction:column; gap:3px; }
.notification-panel__head span { color:var(--brand-2); font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.1em; }
.notification-panel__head strong { font:800 18px var(--font-display); }
.notification-panel__head button { min-height:34px; padding:0 10px; border:0; border-radius:8px; color:var(--brand); background:#eeedff; font-size:10px; font-weight:800; cursor:pointer; }
.notification-panel__head button:disabled { opacity:.55; cursor:wait; }
.notification-panel__body { max-height:min(440px,60vh); overflow-y:auto; overscroll-behavior:contain; scrollbar-width:thin; scrollbar-color:#d4d1eb transparent; }
.notification-panel__item { min-height:94px; padding:14px 17px; border-bottom:1px solid #efeff4; display:grid; grid-template-columns:42px 1fr 8px; align-items:start; gap:11px; background:#fff; transition:background .2s ease; }
.notification-panel__item:hover { background:#f8f7ff; }
.notification-panel__item.is-unread { background:linear-gradient(90deg,#f6f4ff,#fff 70%); }
.notification-panel__item > span { width:42px; height:42px; border-radius:12px; display:grid; place-items:center; color:var(--brand); background:#eceaff; }
.notification-panel__item > span svg { width:19px; }
.notification-panel__item > div { min-width:0; display:flex; flex-direction:column; gap:4px; }
.notification-panel__item strong { font-size:12px; line-height:1.35; }
.notification-panel__item p { margin:0; color:var(--muted); font-size:11px; line-height:1.45; }
.notification-panel__item small { color:#9d9aa8; font-size:11px; }
.notification-panel__unread { width:7px; height:7px; margin-top:6px; border-radius:50%; background:var(--brand-2); box-shadow:0 0 0 4px rgba(81,72,216,.1); }
.notification-panel__footer { min-height:52px; padding:0 18px; display:flex; align-items:center; justify-content:center; gap:7px; color:var(--brand); background:#faf9ff; font-size:11px; font-weight:800; }
.notification-panel__footer svg { width:14px; }
.notification-panel__loading { min-height:225px; padding:24px 18px; display:grid; align-content:center; gap:10px; }
.notification-panel__loading > span { height:48px; border-radius:11px; background:linear-gradient(90deg,#f0eff5 25%,#fafafe 50%,#f0eff5 75%); background-size:200% 100%; animation:notificationShimmer 1.3s linear infinite; }
.notification-panel__loading small { margin-top:7px; color:var(--muted); text-align:center; font-size:10px; }
@keyframes notificationShimmer { to { background-position:-200% 0; } }
.notification-panel__empty,.notification-panel__error { min-height:245px; padding:28px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.notification-panel__empty > span,.notification-panel__error > span { width:54px; height:54px; margin-bottom:13px; border-radius:16px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }
.notification-panel__empty svg,.notification-panel__error svg { width:23px; }
.notification-panel__empty strong,.notification-panel__error strong { font-size:13px; }
.notification-panel__empty small,.notification-panel__error small { max-width:245px; margin-top:5px; color:var(--muted); font-size:10px; line-height:1.5; }
.notification-panel__error button { min-height:35px; margin-top:14px; padding:0 13px; border:0; border-radius:8px; color:#fff; background:var(--brand); font-size:10px; font-weight:800; cursor:pointer; }

/* Light storefront scale correction */
.product-card__meta { font-size:10px; }
.product-card h3 { font-size:16px; line-height:1.45; }
.product-card__rating span { font-size:10px; }
.product-card__rating small { font-size:10px; }
.product-card__bottom strong { font-size:18px; }
.product-card__bottom small { font-size:11px; }
.stock-line { font-size:10px; }
.category-card small { font-size:12px; line-height:1.45; }
.trust-strip strong { font-size:13px; }
.trust-strip small { font-size:11px; }
.filter-group__head { font-size:14px; }
.check-row,.radio-row { font-size:12px; }
.sort-form label { font-size:12px; }
.product-info__top .sku { font-size:11px; }
.brand-chip { font-size:11px; }
.product-rating a { font-size:12px; }
.product-price small { font-size:10px; }
.product-assurance strong { font-size:12px; }
.product-assurance small { font-size:10px; }
.availability { font-size:11px; }
.cart-item__info > span,.cart-item__info small { font-size:10px; }
.order-summary dl div { font-size:12px; }

/* Premium customer application scale */
.customer-shell { font-size:15px; }
.customer-sidebar { width:288px; height:100dvh; padding:22px 16px 18px; }
.customer-workspace { margin-left:288px; }
.customer-sidebar__head { height:54px; padding:0 9px 17px; }
.customer-sidebar__head > span { font-size:11px; }
.customer-sidebar__profile { margin:18px 5px 10px; padding:16px; grid-template-columns:46px 1fr; gap:12px; }
.customer-sidebar__profile .portal-avatar { width:46px; height:46px; border-radius:13px; font-size:13px; }
.customer-sidebar__profile strong { font-size:12px; }
.customer-sidebar__profile div span { font-size:11px; }
.customer-tier { padding:6px 9px; font-size:10px; }
.customer-nav-label { padding:17px 12px 8px; font-size:10px; }
.customer-sidebar nav a { min-height:33px; padding:0 13px; border-radius:11px; gap:12px; font-size:12px; margin-bottom: 3px; }
.customer-sidebar nav svg { width:18px; height:18px; }
.customer-sidebar nav a > span { min-width:21px; height:21px; font-size:11px; }
.customer-sidebar nav a:focus-visible { outline-color:rgba(170,164,255,.55); }
.customer-sidebar__help { padding:14px; gap:11px; }
.customer-sidebar__help > span { width:38px; height:38px; }
.customer-sidebar__help svg { width:17px; }
.customer-sidebar__help strong { font-size:11px; }
.customer-sidebar__help small { font-size:11px; }
.customer-sidebar__footer a,.customer-sidebar__footer button { min-height:33px; font-size:10px; }
.customer-topbar { height:80px; padding:0 30px; }
.customer-topbar__search { height:45px; }
.customer-topbar__search input { font-size:11px; }
.customer-quick-action { min-height:42px; padding:0 13px; font-size:10px; }
.customer-quick-action svg { width:16px; }
.customer-topbar__profile strong { font-size:11px; }
.customer-topbar__profile small { font-size:11px; }
.button--exit { min-height:43px; padding:0 15px; font-size:10px; }
.customer-app-main { min-height:calc(100vh - 80px); padding:34px 38px 90px; }
.customer-app-main .portal-content { max-width:1580px; }
.customer-app-main .portal-heading { min-height:82px; margin-bottom:27px; }
.customer-app-main .portal-heading h1 { margin-top:9px; font-size:40px; line-height:1.1; }
.customer-app-main .portal-heading p { font-size:14px; line-height:1.55; }
.customer-app-main .eyebrow { font-size:11px; }
.customer-app-main .portal-card { padding:28px; border-radius:19px; }
.customer-app-main .portal-card__head { margin-bottom:24px; }
.customer-app-main .portal-card__head h2 { margin-top:7px; font-size:23px; line-height:1.2; }
.customer-app-main .portal-card__head a { font-size:11px; }
.customer-app-main .portal-card__head a svg { width:15px; }
.customer-app-main .button { min-height:48px; padding:0 18px; font-size:12px; }
.customer-app-main .button--small { min-height:41px; font-size:11px; }
.customer-app-main .chip { min-height:38px; padding:0 15px; font-size:11px; }
.customer-app-main .status { gap:8px; font-size:10px; }
.customer-app-main .status > i { width:8px; height:8px; }
.customer-app-main .pill { min-height:29px; padding:0 11px; font-size:11px; }
.customer-dashboard-hero { min-height:300px; padding:48px 50px; border-radius:25px; }
.customer-dashboard-hero h1 { font-size:clamp(45px,4vw,64px); }
.customer-dashboard-hero p { font-size:15px; }
.customer-health-card { width:285px; min-height:210px; padding:21px; }
.customer-health-card__head span { font-size:11px; }
.customer-health-card__head strong { font-size:13px; }
.customer-health-card > div:last-child span { font-size:11px; }
.account-stats--app { gap:15px; margin-bottom:20px; }
.account-stats--app > a { min-height:136px; padding:23px; border-radius:18px; }
.account-stats--app > a > span { width:48px; height:48px; border-radius:14px; }
.account-stats--app > a > span svg { width:21px; }
.account-stats--app small { font-size:11px; }
.account-stats--app strong { margin:5px 0; font-size:30px; }
.account-stats--app em { font-size:11px; }
.customer-dashboard-grid { gap:18px; }
.dashboard-warranties--premium { gap:14px; }
.dashboard-warranties--premium article { min-height:142px; padding:15px; grid-template-columns:82px 1fr 74px; gap:14px; border-radius:16px; }
.dashboard-warranty__art { height:82px; }
.dashboard-warranty__body h3 { margin:8px 0 4px; font-size:13px; }
.dashboard-warranty__body > small { font-size:11px; }
.warranty-bar span { margin-top:6px; font-size:11px; }
.warranty-meter { width:74px; height:74px; }
.warranty-meter strong { font-size:15px; }
.warranty-meter span { font-size:10px; }
.dashboard-warranties--premium article > a { right:13px; bottom:11px; font-size:11px; }
.notification-list--app a { min-height:80px; padding:14px 0; }
.notification-list a > span { width:39px; height:39px; }
.notification-list svg { width:17px; }
.notification-list strong { font-size:12px; }
.notification-list small { font-size:10px; line-height:1.5; }
.notification-list em { font-size:11px; }
.customer-order-list > a { min-height:88px; padding:13px 5px; grid-template-columns:105px 1fr 115px 115px 22px; }
.customer-order-art > span { width:58px; height:58px; }
.customer-order-list strong { font-size:12px; }
.customer-order-list small { font-size:10px; }
.customer-shortcut-card { padding:30px; border-radius:19px; }
.customer-shortcut-card h2 { font-size:27px; }
.customer-shortcut-card p { font-size:11px; }
.customer-shortcut-card a { min-height:70px; padding:12px; }
.customer-shortcut-card a > span { width:40px; height:40px; }
.customer-shortcut-card a strong { font-size:11px; }
.customer-shortcut-card a small { font-size:11px; }
.customer-owned-list { gap:12px; }
.customer-owned-list > a { min-height:205px; padding:14px; border-radius:15px; }
.customer-owned-list > a > div { height:105px; }
.customer-owned-list strong { font-size:11px; }
.customer-owned-list small { font-size:11px; }
.dashboard-claim { min-height:115px; padding:16px; }
.dashboard-claim > span { width:45px; height:45px; }
.dashboard-claim strong { font-size:11px; }
.dashboard-claim small { font-size:11px; }
.customer-recommendations { margin-top:42px; padding-top:38px; }
.customer-recommendations .section-heading h2 { font-size:36px; }
.customer-recommendations .section-heading p { font-size:12px; }
.product-grid--account-recommendations .product-card h3 { font-size:14px; }

/* Account tables, lists, forms and detail screens */
.customer-shell .form-grid { gap:20px; }
.customer-shell .form-grid label,.customer-shell .form-card > label,.customer-shell .support-form label,.customer-shell .portal-card > label { gap:9px; font-size:12px; }
.customer-shell .form-grid input,.customer-shell .form-grid select,.customer-shell .form-grid textarea,.customer-shell .support-form input,.customer-shell .support-form select,.customer-shell .support-form textarea,.customer-shell .portal-card input,.customer-shell .portal-card select,.customer-shell .portal-card textarea { min-height:49px; padding:12px 14px; border-radius:11px; font-size:13px; }
.customer-shell .switch-row { min-height:68px; }
.customer-shell .switch-row strong { font-size:12px; }
.customer-shell .switch-row small { font-size:10px; line-height:1.45; }
.customer-shell .table-toolbar { margin-bottom:24px; }
.customer-shell .table-toolbar .filter-search { width:290px; height:46px; }
.customer-shell .filter-search input { font-size:12px; }
.order-card { border-radius:17px; }
.order-card__head { padding:17px 20px; }
.order-card__head span { font-size:11px; }
.order-card__head small { font-size:10px; }
.order-card__items { padding:21px; grid-template-columns:115px 1fr auto; gap:18px; }
.order-art-stack > div { width:64px; height:64px; }
.order-card__items strong { font-size:13px; line-height:1.4; }
.order-card__items small,.order-card__items span { font-size:10px; }
.order-card__footer { padding:15px 20px; font-size:10px; }
.order-card__footer svg { width:14px; }
.order-progress-card { padding:31px!important; }
.order-progress > div { width:145px; gap:7px; }
.order-progress > div > span { width:45px; height:45px; }
.order-progress strong { font-size:11px; }
.order-progress small { font-size:11px; }
.detail-grid { grid-template-columns:1fr 320px; gap:18px; }
.order-detail-items article { padding:17px 0; grid-template-columns:78px 1fr auto auto; gap:15px; }
.order-detail-items article > div { height:78px; }
.order-detail-items strong { font-size:12px; }
.order-detail-items small { font-size:10px; }
.order-detail-items em { font-size:11px; }
.detail-totals { width:300px; }
.detail-totals div { padding:8px 0; font-size:11px; }
.detail-totals div:last-child { font-size:15px; }
.detail-side-card h2 { font-size:21px; }
.detail-side-card p,.detail-side-card > span:last-of-type { font-size:11px; }
.owned-grid { gap:18px; }
.owned-card { border-radius:20px; }
.owned-card__media { height:235px; }
.owned-card__body { padding:24px; }
.owned-card__body > span { font-size:10px; }
.owned-card h2 { font-size:19px; }
.owned-card dl div { padding:8px 0; font-size:10px; }
.owned-card__actions a { font-size:10px; }
.warranty-summary { gap:13px; }
.warranty-summary > div { min-height:92px; padding:17px; border-radius:16px; }
.warranty-summary > div > span { width:42px; height:42px; }
.warranty-summary strong { font-size:22px; }
.warranty-summary small { font-size:11px; }
.warranty-summary__note strong { font-size:12px; }
.warranty-summary__note small { font-size:11px; }
.warranty-grid { gap:18px; }
.warranty-card { border-radius:20px; }
.warranty-card__top { height:210px; grid-template-columns:1fr 92px; }
.warranty-card__body { padding:24px; }
.warranty-card h2 { font-size:19px; }
.warranty-card__body > small { font-size:11px; }
.warranty-dates span { font-size:11px; }
.warranty-dates strong { font-size:11px; }
.warranty-card__meta span { padding:7px 9px; font-size:11px; }
.warranty-card__actions a,.warranty-card__actions button { font-size:10px; }
.coverage-guide { margin-top:20px; padding:44px; grid-template-columns:340px 1fr; }
.coverage-guide h2 { font-size:29px; }
.coverage-guide__steps > div { width:115px; }
.coverage-guide__steps strong { font-size:10px; }
.coverage-guide__steps small { font-size:11px; }
.notification-feed a { min-height:105px; padding:19px 8px; gap:16px; }
.notification-feed a > span { width:49px; height:49px; }
.notification-feed a > span svg { width:21px; }
.notification-feed strong { font-size:13px; }
.notification-feed p { margin:6px 0; font-size:11px; line-height:1.5; }
.notification-feed small { font-size:11px; }
.notification-preferences { gap:45px; }
.notification-preferences h2 { font-size:23px; }
.notification-preferences p { font-size:11px; }
.notification-preferences label strong { font-size:12px; }
.notification-preferences label small { font-size:10px; }
.notification-empty { min-height:360px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.notification-empty > span { width:68px; height:68px; border-radius:19px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }
.notification-empty svg { width:28px; }
.notification-empty h2 { margin:18px 0 7px; font-size:23px; }
.notification-empty p { color:var(--muted); font-size:12px; }
.address-app-grid { gap:18px; }
.address-app-card,.address-app-add { min-height:275px; padding:27px; border-radius:19px; }
.address-app-card__head > span:first-child { font-size:11px; }
.address-app-card > strong { font-size:14px; }
.address-app-card p { font-size:11px; }
.address-app-card > span { font-size:10px; }
.address-app-card > div:last-child button { font-size:10px; }
.address-app-add strong { font-size:13px; }
.address-app-add small { font-size:10px; }
.address-guidance strong { font-size:12px; }
.address-guidance p { font-size:10px; line-height:1.55; }
.claims-app-layout { grid-template-columns:1fr 370px; gap:19px; }
.claim-form-card { padding:32px!important; }
.claim-step { padding:7px 10px; font-size:11px; }
.claim-consent { padding:14px; font-size:10px; }
.claim-list strong { font-size:12px; }
.claim-list small,.claim-list a { font-size:11px; }
.claim-process { padding:28px; }
.claim-process > div { min-height:76px; }
.claim-process strong { font-size:11px; }
.claim-process small { font-size:11px; }
.support-hero-app { min-height:230px; padding:42px; }
.support-hero-app h2 { font-size:39px; }
.support-hero-app p { font-size:12px; }
.support-status strong { font-size:11px; }
.support-status small { font-size:11px; }
.support-option-grid { gap:13px; }
.support-option-grid > a { min-height:125px; padding:19px; }
.support-option-grid strong { font-size:11px; }
.support-option-grid small { font-size:11px; }
.support-app-grid { grid-template-columns:1fr 410px; gap:18px; }
.support-faq > a { min-height:67px; font-size:11px; }
.profile-app-layout { grid-template-columns:1fr 355px; gap:18px; }
.profile-app-side .portal-card > p { font-size:11px; }
.profile-meta div { min-height:49px; font-size:10px; }
.profile-danger strong { font-size:11px; }
.profile-danger p,.profile-danger a { font-size:11px; }

/* Lighter admin scale correction */
.admin-sidebar { height:100dvh; }
.admin-sidebar nav a { min-height:41px; font-size:10px; }
.admin-sidebar nav svg { width:16px; }
.admin-nav-label { font-size:10px; }
.admin-main { padding:36px; }
.admin-page-head h1 { font-size:38px; }
.admin-page-head p { font-size:12px; }
.admin-card { padding:24px; }
.admin-card__head h2 { font-size:19px; }
.admin-metrics article > div { font-size:10px; }
.admin-metrics article > strong { font-size:25px; }
.admin-metrics article > small { font-size:11px; }
.admin-table__row,.product-admin-row,.generic-table__row { font-size:10px; }
.admin-product-cell strong { font-size:10px; }
.admin-product-cell small,.product-admin-row small,.admin-table__row small { font-size:10px; }
.admin-card label { font-size:11px; }
.admin-card input,.admin-card select,.admin-card textarea { min-height:45px; font-size:11px; }

/* Scroll ownership */
.customer-shell,.admin-shell { min-height:100%; overflow-x:clip; }
.customer-workspace,.admin-workspace { min-height:100vh; overflow:visible; }
.customer-sidebar nav,.admin-sidebar nav { overscroll-behavior:contain; }
.mobile-menu,.customer-sidebar,.admin-sidebar,.quick-view__panel { height:100dvh; max-height:100dvh; overscroll-behavior:contain; }
.quick-view__panel { overflow-y:auto; }
.transition-main { min-width:0; }

@media (max-width: 1200px) {
  .customer-sidebar { width:276px; }
  .customer-workspace { margin-left:276px; }
  .customer-app-main { padding:30px 28px 85px; }
  .customer-dashboard-grid { grid-template-columns:1fr 330px; }
  .claims-app-layout { grid-template-columns:1fr 340px; }
}

@media (max-width: 900px) {
  .customer-sidebar { width:288px; }
  .customer-workspace { margin-left:0; }
  .customer-app-main { padding:28px 22px 90px; }
  .customer-topbar { padding:0 20px; }
  .customer-dashboard-grid,.claims-app-layout,.support-app-grid,.profile-app-layout { grid-template-columns:1fr; }
  .notification-panel { position:fixed; top:78px; right:16px; }
  .admin-main { padding:28px 22px; }
}

@media (max-width: 640px) {
  html { scrollbar-gutter:auto; }
  .customer-topbar { height:68px; padding:0 13px; }
  .customer-app-main { min-height:calc(100vh - 68px); padding:17px 13px 92px; }
  .customer-topbar__welcome span { font-size:10px; }
  .customer-topbar__welcome strong { font-size:11px; }
  .customer-topbar__actions > .notification-popover .icon-button { width:40px; height:40px; }
  .notification-panel { top:62px; left:10px; right:10px; width:auto; max-width:none; border-radius:16px; }
  .notification-panel__body { max-height:min(470px,65vh); }
  .notification-panel__item { min-height:90px; padding:13px; grid-template-columns:39px 1fr 7px; }
  .notification-panel__item > span { width:39px; height:39px; }
  .customer-app-main .portal-heading h1 { font-size:33px; }
  .customer-app-main .portal-heading p { font-size:12px; }
  .customer-app-main .portal-card { padding:20px; }
  .customer-app-main .portal-card__head h2 { font-size:20px; }
  .customer-dashboard-hero { min-height:390px; padding:31px 25px; }
  .customer-dashboard-hero h1 { font-size:42px; }
  .account-stats--app > a { min-height:116px; padding:15px; }
  .account-stats--app small { font-size:10px; }
  .account-stats--app strong { font-size:24px; }
  .dashboard-warranties--premium article { min-height:130px; grid-template-columns:60px 1fr 60px; gap:10px; }
  .dashboard-warranty__art { height:60px; }
  .customer-order-list > a { min-height:82px; grid-template-columns:74px 1fr 18px; }
  .product-grid--account-recommendations .product-card h3 { font-size:12px; }
  .customer-shell .form-grid { grid-template-columns:1fr; }
  .customer-shell .form-grid label { grid-column:1; }
  .customer-shell .form-grid input,.customer-shell .form-grid select,.customer-shell .form-grid textarea,.customer-shell .support-form input,.customer-shell .support-form select,.customer-shell .support-form textarea { min-height:50px; font-size:14px; }
  .table-toolbar { gap:11px; }
  .order-card__head { padding:15px 16px; }
  .order-card__items { padding:17px; grid-template-columns:88px 1fr; }
  .order-art-stack > div { width:55px; height:55px; }
  .order-progress-card { padding:21px!important; overflow-x:auto; }
  .order-progress { min-width:520px; }
  .detail-grid { grid-template-columns:1fr; }
  .order-detail-items article { grid-template-columns:65px 1fr auto; }
  .order-detail-items article > div { height:65px; }
  .order-detail-items article > strong:last-child { grid-column:2; }
  .warranty-summary { gap:9px; }
  .warranty-summary > div { min-height:86px; padding:13px; }
  .warranty-grid { grid-template-columns:1fr; }
  .coverage-guide { padding:28px; grid-template-columns:1fr; }
  .notification-feed a { min-height:100px; padding:17px 4px; }
  .address-app-card,.address-app-add { min-height:245px; padding:23px; }
  .support-option-grid { grid-template-columns:1fr; }
  .customer-mobile-nav { height:72px; }
  .customer-mobile-nav a,.customer-mobile-nav button { font-size:11px; }
  .customer-mobile-nav svg { width:19px; }
  .admin-main { padding:23px 13px; }
  .admin-page-head h1 { font-size:32px; }
}

/* Portal interaction and commerce overlay refinements */
.customer-sidebar__profile { align-items:center; }
.customer-sidebar__identity { min-width:0; display:flex; flex-direction:column; align-items:flex-start; gap:4px; }
.customer-sidebar__identity .customer-tier { width:max-content; margin-top:5px; padding:5px 8px; display:inline-flex; grid-column:auto; color:#c7c3ff; background:rgba(152,143,255,.14); border:1px solid rgba(190,184,255,.14); }
.customer-sidebar__points { grid-column:1/-1; padding-top:11px; border-top:1px solid rgba(255,255,255,.1); display:flex; align-items:center; gap:9px; color:#fff; text-decoration:none; }
.customer-sidebar__points-icon { width:30px; height:30px; flex:none; display:grid; place-items:center; border-radius:9px; background:linear-gradient(120deg,var(--brand-2),var(--brand-3)); }
.customer-sidebar__points-icon svg { width:15px; color:#fff; }
.customer-sidebar__points-body { min-width:0; flex:1; display:flex; flex-direction:column; gap:1px; line-height:1.1; }
.customer-sidebar__points-body strong { color:#fff; font-size:13px; }
.customer-sidebar__points-body small { overflow:hidden; color:#9c98b2; font-size:9px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; text-overflow:ellipsis; white-space:nowrap; }
.customer-sidebar__points-go { width:15px; flex:none; color:#7c7894; transition:transform .2s ease,color .2s ease; }
.customer-sidebar__points:hover .customer-sidebar__points-go { transform:translateX(2px); color:#bdb9d6; }

.customer-dashboard-grid { align-items:start; }
.customer-dashboard-column { min-width:0; display:grid; align-content:start; gap:18px; }
.customer-dashboard-card--orders,.customer-dashboard-card--owned,.customer-dashboard-card--notifications,.customer-shortcut-card,.customer-dashboard-card--claim { grid-column:auto; grid-row:auto; }

.notification-filters { flex-wrap:wrap; }
.notification-filters .chip { min-width:78px; }
.notification-feed [hidden],.notification-empty[hidden] { display:none!important; }

.quick-view { display:grid; place-items:center; padding:30px; }
.quick-view__backdrop { background:rgba(15,12,49,.56); opacity:0; backdrop-filter:blur(0); -webkit-backdrop-filter:blur(0); transition:opacity .36s cubic-bezier(.22,1,.36,1),backdrop-filter .36s cubic-bezier(.22,1,.36,1),-webkit-backdrop-filter .36s cubic-bezier(.22,1,.36,1); }
.quick-view.is-open .quick-view__backdrop { opacity:1; backdrop-filter:blur(9px); -webkit-backdrop-filter:blur(9px); }
.quick-view__panel { position:relative; top:auto; right:auto; width:min(940px,calc(100vw - 48px)); height:auto; max-height:min(720px,calc(100dvh - 60px)); padding:30px; border:1px solid rgba(255,255,255,.72); border-radius:26px; overflow-y:auto; background:#fff; box-shadow:0 34px 100px rgba(18,13,61,.28); transform:translateY(10px) scale(.97); opacity:0; transition:transform .34s cubic-bezier(.22,1,.36,1),opacity .26s linear; }
.quick-view.is-open .quick-view__panel { transform:none; opacity:1; }
.quick-view__close { top:16px; right:16px; z-index:3; background:rgba(255,255,255,.9); box-shadow:var(--shadow-sm); }
.quick-product { grid-template-columns:minmax(340px,.92fr) minmax(0,1.08fr); gap:36px; align-items:center; }
.quick-product__art { height:100%; position:relative; }
.quick-product__badge { position:absolute; left:18px; top:18px; padding:7px 10px; border-radius:99px; color:var(--brand); background:rgba(255,255,255,.9); box-shadow:var(--shadow-sm); font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.quick-product__content { padding:18px 16px 18px 0; }
.quick-product__content > span { font-size:10px; }
.quick-product h2 { margin:12px 0 13px; font-size:38px; line-height:1.12; }
.quick-product p { margin-bottom:22px; font-size:13px; }
.quick-product__highlights { display:grid; gap:8px; }
.quick-product__highlights span { min-height:43px; padding:0 12px; border:1px solid var(--line); border-radius:11px; display:flex; align-items:center; gap:9px; color:#5f5d6e; font-size:10px; font-weight:700; }
.quick-product__highlights svg { width:16px; color:var(--brand); }
.quick-product__footer { margin-top:25px; padding-top:20px; border-top:1px solid var(--line); flex-wrap:wrap; }
.quick-product__footer > div { margin-right:auto; display:flex; flex-direction:column; gap:2px; }
.quick-product__footer small { color:var(--muted); font-size:10px; text-transform:uppercase; letter-spacing:.08em; }
.quick-product__footer strong { margin:0; font-size:22px; }

body.cart-open { overscroll-behavior:none; }
.cart-drawer { position:fixed; inset:0; z-index:540; visibility:hidden; opacity:1; transition:visibility .42s; }
.cart-drawer.is-open { visibility:visible; }
.cart-drawer__backdrop { position:absolute; inset:0; width:100%; border:0; background:rgba(15,12,49,.5); opacity:0; backdrop-filter:blur(0); -webkit-backdrop-filter:blur(0); transition:opacity .42s cubic-bezier(.22,1,.36,1),backdrop-filter .42s cubic-bezier(.22,1,.36,1),-webkit-backdrop-filter .42s cubic-bezier(.22,1,.36,1); }
.cart-drawer.is-open .cart-drawer__backdrop { opacity:1; backdrop-filter:blur(7px); -webkit-backdrop-filter:blur(7px); }
.cart-drawer__panel { position:absolute; inset:0 0 0 auto; width:min(470px,100%); display:grid; grid-template-rows:auto 1fr; background:#fff; box-shadow:-28px 0 80px rgba(17,13,55,.2); transform:translateX(102%); transition:transform .42s cubic-bezier(.22,1,.36,1); }
.cart-drawer.is-open .cart-drawer__panel { transform:none; }
.cart-drawer__head { min-height:78px; padding:0 22px; border-bottom:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; }
.cart-drawer__head > div { display:flex; flex-direction:column; gap:3px; }
.cart-drawer__head span { color:var(--brand-2); font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.1em; }
.cart-drawer__head strong { font:800 20px var(--font-display); }
.cart-drawer__body { min-height:0; display:flex; flex-direction:column; overflow-y:auto; }
.cart-drawer__loading,.cart-drawer__empty { flex:1; min-height:360px; padding:40px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.cart-drawer__loading svg { width:28px; margin-bottom:12px; color:var(--brand); animation:pageLoaderSpin .7s linear infinite; }
.cart-drawer__loading span { color:var(--muted); font-size:11px; }
.cart-drawer__empty > span { width:66px; height:66px; margin-bottom:17px; border-radius:20px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }
.cart-drawer__empty svg { width:27px; }
.cart-drawer__empty strong { font:800 19px/1.35 var(--font-display); }
.cart-drawer__empty p { max-width:300px; margin:8px 0 20px; color:var(--muted); font-size:11px; line-height:1.55; }
.cart-drawer__items { padding:8px 22px 0; }
.cart-drawer-item { min-height:142px; padding:17px 24px 17px 0; border-bottom:1px solid var(--line); display:grid; grid-template-columns:86px 1fr; gap:14px; position:relative; }
.cart-drawer-item__art { height:86px; border-radius:14px; overflow:hidden; }
.cart-drawer-item__art .product-visual { min-height:100%; }
.cart-drawer-item__art .render-label { display:none; }
.cart-drawer-item__content { min-width:0; display:flex; flex-direction:column; align-items:flex-start; }
.cart-drawer-item__content > span { color:var(--muted); font-size:10px; text-transform:uppercase; }
.cart-drawer-item__content > strong { margin:5px 0; font-size:11px; line-height:1.35; }
.cart-drawer-item__content > small { display:flex; align-items:center; gap:5px; color:var(--success); font-size:10px; }
.cart-drawer-item__content > small svg { width:11px; }
.cart-drawer-item__bottom { width:100%; margin-top:auto; display:flex; align-items:center; justify-content:space-between; }
.cart-drawer-item__bottom > strong { font-size:11px; }
.cart-drawer-quantity { height:30px; border:1px solid var(--line); border-radius:8px; display:flex; align-items:center; overflow:hidden; }
.cart-drawer-quantity button { width:28px; height:100%; border:0; background:#f7f7fa; cursor:pointer; }
.cart-drawer-quantity span { min-width:27px; text-align:center; font-size:11px; font-weight:800; }
.cart-drawer-item__remove { position:absolute; right:-7px; top:14px; width:27px; height:27px; border:0; border-radius:50%; display:grid; place-items:center; color:#9b99a5; background:transparent; cursor:pointer; }
.cart-drawer-item__remove:hover { color:var(--danger); background:#fff1f3; }
.cart-drawer-item__remove svg { width:13px; }
.cart-drawer__summary { margin-top:auto; padding:22px; border-top:1px solid var(--line); background:#fafafe; }
.cart-drawer__summary dl { margin:0 0 18px; display:grid; gap:9px; }
.cart-drawer__summary dl div { display:flex; justify-content:space-between; font-size:10px; }
.cart-drawer__summary dt { color:var(--muted); }
.cart-drawer__summary dd { margin:0; font-weight:800; }
.cart-drawer__summary dl div:last-child { margin-top:6px; padding-top:13px; border-top:1px solid var(--line); font-size:15px; }
.cart-drawer__view-cart { min-height:38px; display:flex; align-items:flex-end; justify-content:center; color:var(--brand); font-size:10px; font-weight:800; }
.cart-drawer-item { position:relative; }
.cart-drawer-item.is-loading { opacity:.55; pointer-events:none; }
.cart-drawer-item.is-loading .cart-drawer-quantity { animation:cartLineShimmer .9s ease-in-out infinite; }
@keyframes cartLineShimmer { 0%,100%{ opacity:1; } 50%{ opacity:.35; } }

.warranty-summary__note { padding:15px 17px!important; gap:12px!important; }
.warranty-summary__note .warranty-reminder-icon { width:44px; height:44px; flex:none; border-radius:13px; display:grid; place-items:center; color:#fff; background:rgba(255,255,255,.13)!important; }
.warranty-summary__note > div { min-width:0; flex:1; gap:4px!important; }
.warranty-summary__note strong { font:700 12px/1.3 var(--font-body); }
.warranty-summary__note small { font-size:11px; line-height:1.45; }
.warranty-reminder-status { width:auto!important; height:27px!important; padding:0 9px; border-radius:99px!important; display:flex!important; align-items:center; gap:5px; color:#fff!important; background:rgba(255,255,255,.12)!important; font-size:10px; font-weight:800; text-transform:uppercase; }
.warranty-reminder-status i { width:6px; height:6px; border-radius:50%; background:#72e0bc; box-shadow:0 0 0 4px rgba(114,224,188,.12); }
.coverage-guide__steps > div { align-items:center; text-align:center; }
.coverage-guide__steps > div > span { margin-left:auto; margin-right:auto; }

@media (max-width: 900px) {
  .quick-view { padding:18px; }
  .quick-view__panel { width:min(680px,calc(100vw - 30px)); max-height:calc(100dvh - 30px); padding:24px; }
  .quick-product { grid-template-columns:1fr; gap:20px; }
  .quick-product__art { height:330px; }
  .quick-product__content { padding:0 4px 4px; }
  .quick-product h2 { font-size:31px; }
  .customer-dashboard-column { gap:14px; }
}

@media (max-width: 640px) {
  .notification-filters { flex-wrap:nowrap; padding-bottom:12px; overflow-x:auto; scrollbar-width:none; }
  .notification-filters::-webkit-scrollbar { display:none; }
  .notification-filters .chip { min-width:max-content; }
  .quick-view { padding:10px; }
  .quick-view__panel { width:calc(100vw - 20px); max-height:calc(100dvh - 20px); padding:17px; border-radius:20px; }
  .quick-product__art { height:260px; }
  .quick-product h2 { padding-right:32px; font-size:26px; }
  .quick-product__footer { align-items:stretch; }
  .quick-product__footer > div { width:100%; }
  .quick-product__footer .button { flex:1; }
  .cart-drawer__panel { width:100%; }
  .cart-drawer__head { min-height:70px; padding:0 16px; }
  .cart-drawer__items { padding:5px 16px 0; }
  .cart-drawer-item { grid-template-columns:76px 1fr; gap:11px; }
  .cart-drawer-item__art { height:76px; }
  .warranty-summary__note { grid-column:1/-1; }
.coverage-guide__steps > div { min-width:0; width:auto; padding:12px 8px; border:1px solid rgba(255,255,255,.08); border-radius:13px; background:rgba(255,255,255,.035); }
}

/* Variation commerce and operational admin */
.variation-option-list{display:flex;flex-wrap:wrap;gap:8px}.variation-option{min-height:39px;padding:0 13px;border:1px solid var(--line);border-radius:10px;display:flex;align-items:center;gap:7px;color:var(--muted);background:#fff;font-size:10px;font-weight:800;cursor:pointer}.variation-option:hover,.variation-option.is-active{color:var(--brand);border-color:var(--brand-3);background:#f4f2ff}.variation-option:disabled{opacity:.35;cursor:not-allowed;text-decoration:line-through}.variation-option i{width:16px;height:16px;border:2px solid #fff;border-radius:50%;background:linear-gradient(135deg,var(--swatch) 0 49%,var(--swatch-secondary,var(--swatch)) 51% 100%);box-shadow:0 0 0 1px var(--line)}
.variant-summary{margin:17px 0;padding:13px 15px;border:1px solid var(--line);border-radius:12px;display:flex;gap:24px;background:#fafafe}.variant-summary span{display:flex;flex-direction:column;gap:3px;color:var(--muted);font-size:10px;text-transform:uppercase;letter-spacing:.07em}.variant-summary strong{color:var(--ink);font-size:10px;text-transform:none;letter-spacing:0}
.condition-disclosure{margin:0 0 16px;padding:13px;border:1px solid #ead6ae;border-radius:12px;display:flex;gap:10px;color:#8b642a;background:#fff9ed}.condition-disclosure[hidden]{display:none}.condition-disclosure>svg{width:18px;flex:none}.condition-disclosure span{display:flex;flex-direction:column;gap:3px}.condition-disclosure strong{font-size:10px}.condition-disclosure small{font-size:10px;line-height:1.5}
.product-card__condition{margin-top:8px;color:var(--muted);font-size:10px;text-transform:capitalize}.cart-item__info em,.cart-drawer-item__content>em{margin-bottom:5px;color:var(--brand-2);font-size:11px;font-style:normal;font-weight:700;text-transform:capitalize}.quick-variation-select{margin:18px 0;display:flex;flex-direction:column;gap:7px;color:var(--ink);font-size:10px;font-weight:800}.quick-variation-select select{min-height:45px;padding:0 12px;border:1px solid var(--line);border-radius:11px;background:#fff}
.admin-form-error{margin-bottom:16px;padding:13px 15px;border:1px solid #f1c9d0;border-radius:12px;display:flex;align-items:center;gap:9px;color:var(--danger);background:#fff4f6;font-size:10px;font-weight:700}.admin-form-error svg{width:17px}
.product-type-picker{margin-bottom:22px;display:grid;grid-template-columns:1fr 1fr;gap:10px}.product-type-picker>label{cursor:pointer}.product-type-picker input{position:absolute;opacity:0;pointer-events:none}.product-type-picker label>span{min-height:82px;padding:15px;border:1px solid var(--line);border-radius:13px;display:grid;grid-template-columns:34px 1fr;align-items:center;gap:4px 10px;background:#fff}.product-type-picker input:checked+span{border-color:var(--brand-3);background:#f5f3ff;box-shadow:0 0 0 3px rgba(81,72,216,.07)}.product-type-picker svg{grid-row:1/3;width:20px;color:var(--brand)}.product-type-picker strong{font-size:11px}.product-type-picker small{color:var(--muted);font-size:10px}
.attribute-builder{display:grid;gap:8px;margin-bottom:10px}.attribute-builder-row{display:grid;grid-template-columns:1fr 1.4fr 90px 34px;gap:8px;align-items:center}.attribute-builder-row label{min-height:43px;flex-direction:row;align-items:center;gap:7px}.global-attribute-picker{margin:22px 0 14px;display:grid;gap:10px}.global-attribute-picker fieldset,.admin-choice-grid fieldset{padding:14px;border:1px solid var(--line);border-radius:12px}.global-attribute-picker legend,.admin-choice-grid legend{padding:0 6px;font-size:10px;font-weight:800}.global-attribute-picker legend small{margin-left:8px;color:var(--muted);font-size:7px;font-weight:500}.global-attribute-picker fieldset>div{display:flex;flex-wrap:wrap;gap:7px}.global-attribute-picker label{cursor:pointer}.global-attribute-picker input{position:absolute;opacity:0;pointer-events:none}.global-attribute-picker label>span{min-height:31px;padding:0 10px;border:1px solid var(--line);border-radius:8px;display:flex;align-items:center;gap:6px;color:var(--muted);font-size:10px;font-weight:700}.global-attribute-picker input:checked+span{color:var(--brand);border-color:var(--brand-3);background:#f3f1ff}.global-attribute-picker label i,.attribute-term-list i{width:13px;height:13px;border-radius:50%;background:linear-gradient(135deg,var(--term-color) 0 49%,var(--term-color-secondary,var(--term-color)) 51% 100%);box-shadow:0 0 0 1px var(--line)}
.variation-toolbar{margin-bottom:12px;display:flex;align-items:center;justify-content:space-between}.variation-toolbar>span{color:var(--muted);font-size:11px;font-weight:700}.variation-table{display:grid;gap:12px}.variation-editor-row{border:1px solid var(--line);border-radius:14px;overflow:hidden}.variation-editor-head{min-height:48px;padding:0 13px;display:flex;align-items:center;gap:10px;background:#f8f8fb}.variation-editor-head label{flex-direction:row;align-items:center}.variation-editor-head strong{font-size:10px}.variation-editor-head>span{flex:1;color:var(--muted);font-size:10px}.variation-editor-grid{padding:14px;display:grid;grid-template-columns:repeat(4,1fr);gap:10px}.variation-editor-grid label{min-width:0}.variation-wide{grid-column:span 2}.condition-admin-note{padding:11px;border-radius:10px;display:flex;gap:8px;color:var(--muted);background:#f6f6fa;font-size:10px;line-height:1.45}.condition-admin-note svg{width:15px;flex:none;color:var(--brand)}
.admin-choice-grid{margin-bottom:18px;display:grid;grid-template-columns:1fr 1fr;gap:12px}.admin-check-list{display:flex;flex-wrap:wrap;gap:7px}.admin-check-list label{text-wrap:nowrap;min-height:30px;flex-direction:row;align-items:center;gap:6px}.admin-bulk-bar{margin-bottom:14px;padding:10px;border:1px solid var(--line);border-radius:11px;display:flex;align-items:center;gap:8px;background:#fafafe}.admin-bulk-bar>span{margin-right:auto;color:var(--muted);font-size:11px}.admin-bulk-bar select,.admin-bulk-bar input{height:36px;padding:0 9px;border:1px solid var(--line);border-radius:8px;font-size:10px}.product-admin-table--variants .product-admin-row{min-width:1250px;grid-template-columns:30px 2fr .8fr 1.2fr .6fr .65fr .8fr .65fr 70px}.product-admin-row>label input:checked+span{border-color:var(--brand);background:var(--brand);box-shadow:inset 0 0 0 3px #fff}
.admin-manage-grid{display:grid;grid-template-columns:1fr 330px;gap:16px;align-items:start}.admin-manage-grid>aside{position:sticky;top:90px}.admin-inline-create{display:grid;gap:13px}.manage-record-list,.attribute-admin-list,.stock-admin-list{display:grid}.manage-record-list>article,.stock-admin-list>article{min-height:76px;padding:13px 0;border-top:1px solid var(--line);display:flex;align-items:center;gap:15px}.manage-record-list>article:first-child,.stock-admin-list>article:first-child{border-top:0}.manage-record-list article>div:first-child{flex:1;display:flex;flex-direction:column;gap:4px}.manage-record-list strong{font-size:10px}.manage-record-list small{color:var(--muted);font-size:10px}.manage-record-list article>span{min-width:80px;color:var(--muted);font-size:11px}.manage-record-list article>form{display:flex;align-items:center;gap:7px}.manage-record-list input,.manage-record-list select,.manage-record-list textarea{min-height:36px;padding:7px 9px;border:1px solid var(--line);border-radius:8px;font-size:10px}.manage-record-list--orders>article,.manage-record-list--claims>article{align-items:flex-start;flex-wrap:wrap}.admin-order-status{width:100%;justify-content:flex-end}.admin-order-status input{width:180px}
.attribute-admin-list>article,.menu-admin-card{padding:16px 0;border-top:1px solid var(--line)}.attribute-admin-list>article:first-child,.menu-admin-card:first-child{border-top:0}.attribute-admin-head{display:flex;justify-content:space-between}.attribute-admin-head>div{display:flex;flex-direction:column;gap:3px}.attribute-admin-head strong{font-size:11px}.attribute-admin-head small{color:var(--muted);font-size:10px}.attribute-term-list{margin:12px 0;display:flex;flex-wrap:wrap;gap:6px}.attribute-term-list span{min-height:28px;padding:0 9px;border-radius:7px;display:flex;align-items:center;gap:6px;color:var(--brand);background:#f1efff;font-size:10px;font-weight:700}.attribute-term-form,.menu-admin-card>form{display:flex;gap:7px}.attribute-term-form input,.menu-admin-card input{min-height:37px;padding:0 9px;border:1px solid var(--line);border-radius:8px;font-size:10px}
.stock-admin-list>article>.admin-product-cell{flex:1}.stock-admin-list form{display:flex;gap:7px;align-items:end}.stock-admin-list form label{width:95px}.stock-admin-list form label:nth-child(3){width:170px}.menu-admin-card>div:first-child{display:flex;flex-direction:column;gap:3px}.menu-admin-card>div:nth-child(2){margin:12px 0;display:flex;flex-wrap:wrap;gap:7px}.menu-admin-card>div:nth-child(2) span{padding:8px;border-radius:8px;display:flex;flex-direction:column;background:#f6f6fa;font-size:11px}.menu-admin-card small{color:var(--muted);font-size:7px}.address-app-form{height:auto!important}.address-app-form .form-grid{grid-template-columns:1fr 1fr}.address-app-form .button{margin-top:12px}.account-stats--app{grid-template-columns:repeat(auto-fit,minmax(180px,1fr))}
@media(max-width:1100px){.variation-editor-grid{grid-template-columns:repeat(2,1fr)}.admin-manage-grid{grid-template-columns:1fr}.admin-manage-grid>aside{position:static}}
@media(max-width:700px){.product-type-picker,.admin-choice-grid{grid-template-columns:1fr}.attribute-builder-row{grid-template-columns:1fr 1fr 34px}.attribute-builder-row label{grid-column:1/3}.variation-editor-grid{grid-template-columns:1fr}.variation-wide{grid-column:auto}.admin-bulk-bar{align-items:stretch;flex-direction:column}.admin-bulk-bar>span{margin-right:0}.manage-record-list>article,.stock-admin-list>article{align-items:stretch;flex-direction:column}.manage-record-list article>form,.stock-admin-list form,.attribute-term-form,.menu-admin-card>form{width:100%;align-items:stretch;flex-direction:column}.stock-admin-list form label,.stock-admin-list form label:nth-child(3){width:100%}.address-app-form .form-grid{grid-template-columns:1fr}}

/* Admin polish: route state, header hierarchy, status alignment and color editing */
.admin-page-head>div:first-child{min-width:0;display:flex;flex-direction:column;align-items:flex-start;gap:0}
.admin-page-head>div:first-child:last-child{display:flex;flex-direction:column;align-items:flex-start;gap:0}
.admin-page-head .eyebrow{display:block;margin-bottom:7px}
.admin-page-head h1{margin:0 0 7px}
.admin-page-head p{max-width:720px;line-height:1.6}
.product-admin-row>.status{display:inline-flex;flex-direction:row;align-items:center;gap:7px;white-space:nowrap}
.product-admin-row>.status>i{flex:0 0 7px}
.color-control{min-width:0;display:grid;grid-template-columns:40px minmax(105px,1fr) 20px;align-items:center;gap:7px}
.color-control>span:first-child{grid-column:1/-1;color:var(--muted);font-size:10px;font-weight:700}
.color-control input[type="color"]{width:40px!important;min-width:40px;min-height:40px!important;padding:3px!important;border:1px solid var(--line)!important;border-radius:9px;cursor:pointer;background:#fff}
.color-control input[type="color"]::-webkit-color-swatch-wrapper{padding:0}
.color-control input[type="color"]::-webkit-color-swatch{border:0;border-radius:6px}
.color-control input[data-color-text]{min-width:0;font-family:ui-monospace,SFMono-Regular,Consolas,monospace;text-transform:uppercase}
.color-control__preview{width:18px;height:18px;border:2px solid #fff;border-radius:50%;box-shadow:0 0 0 1px var(--line)}
.color-control__preview.is-empty{background:linear-gradient(135deg,#fff 0 45%,#eceaf3 45% 55%,#fff 55%)!important}
.variation-color-editor{padding:12px;border:1px solid var(--line);border-radius:11px;display:grid;grid-template-columns:1fr 1fr;gap:10px}
.variation-color-editor legend{padding:0 6px;font-size:10px;font-weight:800}
.variation-color-editor>label,.variation-color-editor>.dual-color-preview{grid-column:1/-1}
.dual-color-preview{min-height:42px;padding:8px 10px;border-radius:9px;display:flex;align-items:center;gap:9px;background:#f7f7fa}
.dual-color-preview i{width:24px;height:24px;flex:none;border:2px solid #fff;border-radius:50%;background:linear-gradient(135deg,var(--primary-color) 0 49%,var(--secondary-color,var(--primary-color)) 51% 100%);box-shadow:0 0 0 1px var(--line)}
.dual-color-preview small{color:var(--muted);font-size:10px;line-height:1.45}
.attribute-term-form--color{display:grid;grid-template-columns:minmax(120px,1fr) minmax(185px,1.25fr) minmax(185px,1.25fr) auto;align-items:end}
.admin-inline-create .color-control{margin-top:2px}
@media(max-width:900px){.attribute-term-form--color{grid-template-columns:1fr 1fr}.attribute-term-form--color>button{grid-column:1/-1}.variation-color-editor{grid-template-columns:1fr}}
@media(max-width:700px){.attribute-term-form--color{grid-template-columns:1fr}.attribute-term-form--color>button{grid-column:auto}}

/* Quick view loading skeleton + content reveal */
.quick-product--skeleton { pointer-events:none; }
.skeleton-block,.skeleton-line { position:relative; overflow:hidden; background:#eeedf4; border-radius:10px; }
.skeleton-block::after,.skeleton-line::after { content:""; position:absolute; inset:0; transform:translateX(-100%); background:linear-gradient(90deg,transparent,rgba(255,255,255,.6),transparent); animation:skeletonShimmer 1.25s ease-in-out infinite; }
@keyframes skeletonShimmer { 100% { transform:translateX(100%); } }
.skeleton-line { height:13px; margin:9px 0; border-radius:7px; }
.skeleton-line--xs { width:42%; height:10px; }
.skeleton-line--title { width:80%; height:30px; margin:14px 0; }
.skeleton-line--title.skeleton-line--short { width:55%; }
.skeleton-line--short { width:62%; }
.skeleton-line--price { width:128px; height:26px; }
.skeleton-block--row { display:block; height:43px; border-radius:11px; }
.quick-product--skeleton .quick-product__highlights { margin-top:10px; }
.quick-product--skeleton .quick-product__footer { margin-top:25px; padding-top:20px; border-top:1px solid var(--line); }
@keyframes quickContentIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }
.quick-view__panel .quick-product:not(.quick-product--skeleton) { animation:quickContentIn .4s cubic-bezier(.22,1,.36,1); }

@media (prefers-reduced-motion: reduce) {
  .quick-view__backdrop,.quick-view__panel,.cart-drawer__backdrop,.cart-drawer__panel { transition-duration:.01ms!important; }
  .quick-view__panel .quick-product { animation:none!important; }
  .skeleton-block::after,.skeleton-line::after { animation:none!important; }
}

/* Product page breadcrumb (above the title in the info column) */
.breadcrumbs--product { margin-bottom:16px; }

/* Live search overlay */
.search-overlay { position:fixed; inset:0; z-index:560; visibility:hidden; transition:visibility .32s; }
.search-overlay.is-open { visibility:visible; }
.search-overlay__backdrop { position:absolute; inset:0; width:100%; border:0; background:rgba(15,12,49,.5); opacity:0; backdrop-filter:blur(0); -webkit-backdrop-filter:blur(0); transition:opacity .32s cubic-bezier(.22,1,.36,1),backdrop-filter .32s cubic-bezier(.22,1,.36,1),-webkit-backdrop-filter .32s cubic-bezier(.22,1,.36,1); cursor:pointer; }
.search-overlay.is-open .search-overlay__backdrop { opacity:1; backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); }
.search-overlay__panel { position:absolute; left:50%; top:84px; width:min(680px,calc(100vw - 32px)); transform:translate(-50%,-14px) scale(.97); opacity:0; transition:transform .3s cubic-bezier(.22,1,.36,1),opacity .24s linear; }
.search-overlay.is-open .search-overlay__panel { transform:translate(-50%,0) scale(1); opacity:1; }
.search-overlay__bar { display:flex; align-items:center; gap:12px; height:60px; padding:0 14px 0 18px; border:1px solid rgba(255,255,255,.7); border-radius:18px; background:#fff; box-shadow:0 30px 80px rgba(18,13,61,.32); }
.search-overlay__bar > svg { width:20px; flex:none; color:var(--brand); }
.search-overlay__bar input { flex:1; min-width:0; height:100%; border:0; outline:0; background:transparent; color:var(--ink); font-size:16px; }
.search-overlay__close { width:36px; height:36px; flex:none; border:0; border-radius:10px; display:grid; place-items:center; color:var(--muted); background:#f3f2f8; cursor:pointer; transition:.18s ease; }
.search-overlay__close:hover { color:var(--ink); background:#e9e8f1; }
.search-overlay__close svg { width:16px; }
.search-overlay__results { margin-top:12px; max-height:min(60vh,520px); padding:4px; overflow-y:auto; overscroll-behavior:contain; scroll-behavior:smooth; -webkit-overflow-scrolling:touch; border:1px solid rgba(255,255,255,.7); border-radius:18px; background:#fff; box-shadow:0 30px 80px rgba(18,13,61,.28); scrollbar-width:thin; scrollbar-color:rgba(123,116,170,.45) transparent; }
.search-overlay__results::-webkit-scrollbar { width:11px; }
.search-overlay__results::-webkit-scrollbar-track { background:transparent; }
.search-overlay__results::-webkit-scrollbar-thumb { border-radius:99px; background:rgba(123,116,170,.4); border:3px solid #fff; background-clip:padding-box; }
.search-overlay__results::-webkit-scrollbar-thumb:hover { background:rgba(95,88,150,.6); background-clip:padding-box; }
.search-section { padding:14px 16px; border-top:1px solid var(--line); }
.search-section:first-child { border-top:0; }
.search-section__label { margin-bottom:10px; color:var(--muted); font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.12em; }
.search-result { display:flex; align-items:center; gap:13px; padding:9px; border-radius:13px; transition:background .18s ease; }
.search-result:hover { background:var(--soft); }
.search-result__art { width:50px; height:50px; flex:none; border-radius:11px; overflow:hidden; }
.search-result__art .product-visual { min-height:100%; }
.search-result__art .render-label { display:none; }
.search-result__info { min-width:0; flex:1; display:flex; flex-direction:column; gap:2px; }
.search-result__info span { color:var(--muted); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; }
.search-result__info strong { font-size:13px; line-height:1.3; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.search-result__price { flex:none; color:var(--brand); font:800 13px var(--font-display); }
.search-chips { display:flex; flex-wrap:wrap; gap:8px; }
.search-chip { display:inline-flex; align-items:center; gap:7px; min-height:34px; padding:0 13px; border:1px solid var(--line); border-radius:99px; color:var(--ink); background:#fff; font-size:11px; font-weight:700; transition:.18s ease; }
.search-chip:hover { color:var(--brand); border-color:var(--brand-3); background:#f4f2ff; }
.search-chip svg { width:14px; color:var(--brand); }
.search-state { padding:38px 20px; display:flex; flex-direction:column; align-items:center; text-align:center; color:var(--muted); }
.search-state > span { width:54px; height:54px; margin-bottom:12px; border-radius:16px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }
.search-state svg { width:23px; }
.search-state strong { color:var(--ink); font:800 15px var(--font-display); }
.search-state p { margin:5px 0 0; font-size:11px; }
.search-state__spinner svg { animation:pageLoaderSpin .7s linear infinite; }
.search-overlay__foot { padding:11px 16px; border-top:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; color:var(--muted); font-size:10px; }
.search-overlay__foot kbd { padding:2px 6px; border:1px solid var(--line); border-radius:5px; background:#f7f7fa; font-size:11px; }
.search-overlay__foot a { color:var(--brand); font-weight:800; }
@media (max-width:640px) {
  .search-overlay__panel { top:14px; width:calc(100vw - 20px); }
  .search-overlay__bar { height:54px; }
  .search-overlay__bar input { font-size:15px; }
  .search-overlay__results { max-height:calc(100dvh - 96px); }
}

/* Saved / wishlist bottom-sheet panel */
.saved-panel { position:fixed; inset:0; z-index:545; visibility:hidden; transition:visibility .42s; }
.saved-panel.is-open { visibility:visible; }
.saved-panel__backdrop { position:absolute; inset:0; width:100%; border:0; background:rgba(15,12,49,.5); opacity:0; backdrop-filter:blur(0); -webkit-backdrop-filter:blur(0); transition:opacity .42s cubic-bezier(.22,1,.36,1),backdrop-filter .42s cubic-bezier(.22,1,.36,1),-webkit-backdrop-filter .42s cubic-bezier(.22,1,.36,1); cursor:pointer; }
.saved-panel.is-open .saved-panel__backdrop { opacity:1; backdrop-filter:blur(7px); -webkit-backdrop-filter:blur(7px); }
.saved-panel__sheet { position:absolute; left:0; right:0; bottom:0; max-height:92dvh; display:grid; grid-template-rows:auto 1fr; border-radius:26px 26px 0 0; background:#fff; box-shadow:0 -30px 80px rgba(17,13,55,.28); transform:translateY(100%); transition:transform .42s cubic-bezier(.22,1,.36,1); }
.saved-panel.is-open .saved-panel__sheet { transform:none; }
.saved-panel__sheet::before { content:""; position:absolute; top:9px; left:50%; width:42px; height:4px; border-radius:99px; background:var(--line); transform:translateX(-50%); }
.saved-panel__head { min-height:66px; padding:20px 20px 0; display:flex; align-items:center; justify-content:space-between; }
.saved-panel__head > div { display:flex; flex-direction:column; gap:3px; }
.saved-panel__head span { color:var(--brand-2); font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.1em; }
.saved-panel__head strong { font:800 19px var(--font-display); }
.saved-panel__body { min-height:0; padding:10px 20px calc(20px + env(safe-area-inset-bottom)); overflow-y:auto; overscroll-behavior:contain; }
.saved-list { display:grid; gap:11px; }
.saved-item { display:flex; align-items:center; gap:13px; padding:11px; border:1px solid var(--line); border-radius:16px; transition:border-color .18s ease, box-shadow .18s ease; }
.saved-item:hover { border-color:#d8d5ea; box-shadow:var(--shadow-sm); }
.saved-item__art { width:62px; height:62px; flex:none; border-radius:13px; overflow:hidden; }
.saved-item__art .product-visual { min-height:100%; }
.saved-item__art .render-label { display:none; }
.saved-item__info { min-width:0; flex:1; display:flex; flex-direction:column; gap:3px; }
.saved-item__info span { color:var(--muted); font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; }
.saved-item__info strong { font-size:13px; line-height:1.3; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.saved-item__info b { color:var(--brand); font:800 13px var(--font-display); }
.saved-item__go { width:38px; height:38px; flex:none; border-radius:11px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }
.saved-item__go svg { width:16px; }
.saved-state { padding:34px 18px 44px; display:flex; flex-direction:column; align-items:center; text-align:center; }
.saved-state > span { width:72px; height:72px; margin-bottom:16px; border-radius:22px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }
.saved-state > span svg { width:30px; }
.saved-state strong { font:800 20px var(--font-display); }
.saved-state p { max-width:320px; margin:8px 0 20px; color:var(--muted); font-size:12px; line-height:1.55; }
.saved-state__actions { width:100%; display:grid; gap:9px; }
.saved-panel__loading { padding:54px 20px; display:flex; flex-direction:column; align-items:center; gap:12px; color:var(--muted); font-size:11px; }
.saved-panel__loading svg { width:26px; color:var(--brand); animation:pageLoaderSpin .7s linear infinite; }

@media (prefers-reduced-motion: reduce) {
  .search-overlay__backdrop,.search-overlay__panel,.saved-panel__backdrop,.saved-panel__sheet,.nav-menu__panel { transition-duration:.01ms!important; }
  .search-state__spinner svg,.saved-panel__loading svg { animation:none!important; }
}

/* Shared overlay stack. These layers cover the persistent header without
   changing its sticky positioning or moving the document body. */
.quick-view { z-index:1200; }
.cart-drawer { z-index:1220; }
.saved-panel { z-index:1230; }
.search-overlay { z-index:1240; }

/* SLiQ Assist */
.ai-launcher{position:fixed;right:22px;bottom:22px;z-index:215}.ai-launcher__button{height:52px;padding:0 17px 0 7px;border:1px solid rgba(255,255,255,.3);border-radius:18px;display:flex;align-items:center;gap:9px;color:#fff;background:linear-gradient(135deg,#2c267f,#645ae0);box-shadow:0 18px 45px rgba(36,29,111,.3);cursor:pointer;transition:transform .22s ease,box-shadow .22s ease}.ai-launcher__button:hover{transform:translateY(-2px);box-shadow:0 23px 55px rgba(36,29,111,.38)}.ai-launcher__button>span{width:38px;height:38px;border-radius:13px;display:grid;place-items:center;background:rgba(255,255,255,.14)}.ai-launcher__button svg{width:18px}.ai-launcher__button strong{font:800 11px var(--font-display);letter-spacing:.01em}
.ai-assistant{position:fixed;inset:0;z-index:1180;visibility:hidden;pointer-events:none}.ai-assistant.is-open{visibility:visible;pointer-events:auto}.ai-assistant__backdrop{position:absolute;inset:0;border:0;background:rgba(15,12,49,.28);opacity:0;transition:opacity .28s ease;cursor:pointer}.ai-assistant.is-open .ai-assistant__backdrop{opacity:1}.ai-assistant__panel{position:absolute;right:22px;bottom:22px;width:min(430px,calc(100vw - 32px));height:min(690px,calc(100dvh - 44px));border:1px solid rgba(255,255,255,.72);border-radius:25px;display:grid;grid-template-rows:auto 1fr auto auto auto;overflow:hidden;background:#fff;box-shadow:0 32px 100px rgba(18,13,61,.3);opacity:0;transform:translateY(18px) scale(.97);transform-origin:bottom right;transition:opacity .24s ease,transform .34s cubic-bezier(.22,1,.36,1)}.ai-assistant.is-open .ai-assistant__panel{opacity:1;transform:none}.ai-assistant__head{min-height:78px;padding:13px 14px;border-bottom:1px solid var(--line);display:flex;align-items:center;gap:10px;background:linear-gradient(135deg,#18144f,#2c267f);color:#fff}.ai-assistant__avatar{width:46px;height:46px;flex:none;border-radius:15px;display:grid;place-items:center;background:linear-gradient(145deg,#8e85ff,#5c51d6);box-shadow:inset 0 1px rgba(255,255,255,.25)}.ai-assistant__avatar svg{width:21px}.ai-assistant__head>div{min-width:0;flex:1;display:flex;flex-direction:column}.ai-assistant__head small{color:#aaa5d4;font-size:7px;font-weight:800;text-transform:uppercase;letter-spacing:.13em}.ai-assistant__head strong{margin:2px 0;font:800 17px var(--font-display)}.ai-assistant__head>div>span{display:flex;align-items:center;gap:5px;color:#c7c3e6;font-size:7px}.ai-assistant__head>div>span i{width:6px;height:6px;border-radius:50%;background:#72e4c3;box-shadow:0 0 0 3px rgba(114,228,195,.12)}.ai-assistant__head>button{width:34px;height:34px;flex:none;border:0;border-radius:10px;display:grid;place-items:center;color:#c9c5e5;background:rgba(255,255,255,.08);cursor:pointer}.ai-assistant__head>button:hover{color:#fff;background:rgba(255,255,255,.14)}.ai-assistant__head>button svg{width:15px}
.ai-assistant__messages{min-height:0;padding:18px 14px 10px;overflow-y:auto;overscroll-behavior:contain;background:linear-gradient(180deg,#fafafe,#fff);scrollbar-width:thin}.ai-message{margin-bottom:15px;display:flex;align-items:flex-start;gap:8px}.ai-message__mark{width:27px;height:27px;flex:none;border-radius:9px;display:grid;place-items:center;color:var(--brand);background:#eceaff}.ai-message__mark svg{width:13px}.ai-message>div{max-width:84%;padding:11px 13px;border:1px solid var(--line);border-radius:6px 15px 15px;background:#fff;box-shadow:0 5px 16px rgba(38,32,96,.05)}.ai-message p{margin:0;color:#3e3b4c;font-size:11px;line-height:1.6}.ai-message--user{justify-content:flex-end}.ai-message--user>div{border:0;border-radius:15px 6px 15px 15px;color:#fff;background:linear-gradient(135deg,#5148d8,#272176)}.ai-message--user p{color:#fff}.ai-message--thinking>div{min-height:45px;display:flex;align-items:center;gap:5px}.ai-message--thinking>div>i{width:5px;height:5px;border-radius:50%;background:#8e86b6;animation:aiThinking .9s ease-in-out infinite}.ai-message--thinking>div>i:nth-child(2){animation-delay:.15s}.ai-message--thinking>div>i:nth-child(3){animation-delay:.3s}.ai-message--thinking small{margin-left:5px;color:var(--muted);font-size:10px}@keyframes aiThinking{0%,100%{transform:translateY(0);opacity:.45}50%{transform:translateY(-4px);opacity:1}}
.ai-message__products{margin-top:10px;display:grid;gap:7px}.ai-product-card{min-height:66px;padding:7px;border:1px solid var(--line);border-radius:12px;display:grid;grid-template-columns:50px 1fr 18px;align-items:center;gap:9px;background:#fafafe;transition:border .2s,transform .2s}.ai-product-card:hover{border-color:#c9c4ff;transform:translateY(-1px)}.ai-product-card__art{height:50px;border-radius:10px;display:grid;place-items:center;overflow:hidden;color:var(--brand);background:linear-gradient(145deg,color-mix(in srgb,var(--ai-accent) 18%,#fff),#f3f2fa)}.ai-product-card__art img{width:100%;height:100%;object-fit:contain}.ai-product-card__art svg{width:20px}.ai-product-card>span:nth-child(2){min-width:0;display:flex;flex-direction:column}.ai-product-card small{color:var(--muted);font-size:7px}.ai-product-card strong{margin:3px 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:11px}.ai-product-card em{color:var(--brand);font-size:11px;font-style:normal;font-weight:800}.ai-product-card>svg{width:14px;color:#aaa6ba}
.ai-assistant__suggestions{padding:2px 14px 10px;display:flex;gap:6px;overflow-x:auto;background:#fff;scrollbar-width:none}.ai-assistant__suggestions::-webkit-scrollbar{display:none}.ai-assistant__suggestions button{min-height:29px;padding:0 10px;border:1px solid #dedbf7;border-radius:99px;flex:none;color:var(--brand);background:#f7f6ff;font-size:10px;font-weight:700;cursor:pointer}.ai-assistant__composer{margin:0 12px 10px;padding:6px 6px 6px 12px;border:1px solid var(--line);border-radius:16px;display:flex;align-items:flex-end;gap:7px;background:#fff;box-shadow:0 7px 25px rgba(34,28,94,.08)}.ai-assistant__composer:focus-within{border-color:#aaa3ff;box-shadow:0 0 0 3px rgba(81,72,216,.08)}.ai-assistant__composer textarea{min-height:38px;max-height:110px;flex:1;padding:9px 0;border:0;outline:0;resize:none;color:var(--ink);background:transparent;font:500 11px/1.45 var(--font-body)}.ai-assistant__composer button{width:38px;height:38px;border:0;border-radius:12px;display:grid;place-items:center;color:#fff;background:linear-gradient(145deg,#6359df,#342c98);cursor:pointer}.ai-assistant__composer button:disabled{opacity:.55}.ai-assistant__composer button svg{width:15px}.ai-assistant>aside>footer{min-height:32px;padding:0 14px 9px;display:flex;align-items:center;justify-content:center;gap:5px;color:#9895a4;font-size:7px;text-align:center}.ai-assistant>aside>footer svg{width:11px;flex:none;color:var(--success)}
.product-ai-actions{margin-top:14px;display:flex;flex-wrap:wrap;gap:7px}.product-ai-actions button{min-height:34px;padding:0 11px;border:1px solid #dedbf7;border-radius:10px;display:flex;align-items:center;gap:6px;color:var(--brand);background:#f8f7ff;font-size:10px;font-weight:800;cursor:pointer}.product-ai-actions svg{width:13px}.shop-ai-guide{margin-bottom:16px;padding:15px 17px;border:1px solid #dddafa;border-radius:16px;display:flex;align-items:center;gap:13px;background:linear-gradient(135deg,#f8f7ff,#fff)}.shop-ai-guide>span{width:42px;height:42px;flex:none;border-radius:13px;display:grid;place-items:center;color:#fff;background:linear-gradient(145deg,#6157df,#282278)}.shop-ai-guide>span svg{width:18px}.shop-ai-guide>div{flex:1}.shop-ai-guide strong{font:800 12px var(--font-display)}.shop-ai-guide p{margin:3px 0 0;color:var(--muted);font-size:11px;line-height:1.45}.cart-ai-help{margin:-3px 0 14px;padding:10px;border:1px solid #e0ddf8;border-radius:12px;display:grid;grid-template-columns:31px 1fr auto;align-items:center;gap:8px;background:#f8f7ff}.cart-ai-help>span{width:31px;height:31px;border-radius:10px;display:grid;place-items:center;color:var(--brand);background:#eae7ff}.cart-ai-help svg{width:14px}.cart-ai-help>div{display:flex;flex-direction:column}.cart-ai-help strong{font-size:11px}.cart-ai-help small{margin-top:2px;color:var(--muted);font-size:7px}.cart-ai-help button{height:28px;padding:0 9px;border:0;border-radius:8px;color:#fff;background:var(--brand);font-size:10px;font-weight:800;cursor:pointer}

/* AI admin */
.ai-admin-layout{display:grid;gap:16px}.ai-status-pill{min-height:30px;padding:0 11px;border-radius:99px;display:flex;align-items:center;gap:7px;color:#6b6877;background:#ecebf1;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.06em}.ai-status-pill i{width:7px;height:7px;border-radius:50%;background:#a6a3ae}.ai-status-pill--valid{color:#13745c;background:#e7f8f1}.ai-status-pill--valid i{background:#25b287}.ai-status-pill--invalid,.ai-status-pill--error{color:#a53648;background:#fff0f2}.ai-status-pill--invalid i,.ai-status-pill--error i{background:#df566c}.ai-provider-card form,.ai-studio-card form,.ai-task-card form{display:grid;gap:16px}.ai-key-source,.ai-safe-note{display:flex;align-items:center;gap:6px;color:var(--muted);font-size:10px;font-weight:700}.ai-key-source svg,.ai-safe-note svg{width:13px;color:var(--brand)}.ai-toggle-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:9px}.ai-toggle-grid .switch-row{min-height:74px;padding:11px;border:1px solid var(--line);border-radius:12px;background:#fafafe}.ai-provider-grid,.ai-task-grid,.ai-studio-fields{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}.ai-secret-field{position:relative;display:block}.ai-secret-field input{padding-right:45px}.ai-secret-field button{position:absolute;right:5px;top:5px;width:34px;height:34px;border:0;border-radius:8px;display:grid;place-items:center;color:var(--muted);background:#f1f0f6;cursor:pointer}.ai-secret-field svg{width:14px}.ai-provider-actions,.ai-task-actions{display:flex;align-items:center;gap:8px;flex-wrap:wrap}.ai-clear-key{margin-left:auto!important;display:flex!important;flex-direction:row!important;align-items:center!important;gap:7px!important;color:var(--danger);font-size:10px!important}.ai-clear-key input{width:15px!important;min-height:15px!important}.ai-connection-state{padding:11px 13px;border:1px solid var(--line);border-radius:11px;display:flex;flex-direction:column;gap:3px;background:#fafafe}.ai-connection-state strong{font-size:11px}.ai-connection-state small{color:var(--muted);font-size:10px}.ai-connection-state.is-success{border-color:#bee8db;background:#f0fbf7}.ai-connection-state.is-error{border-color:#f2c5cc;background:#fff5f6}.ai-studio-output{padding-top:17px;border-top:1px solid var(--line)}.ai-studio-output>div{margin-bottom:9px;display:flex;justify-content:space-between}.ai-studio-output strong{font-size:11px}.ai-studio-output span{color:var(--muted);font-size:10px}.ai-studio-output textarea{margin-bottom:9px}.ai-task-section>.admin-card__head{padding:8px 4px 0}.ai-task-list{display:grid;gap:9px}.ai-task-card{padding:0;overflow:hidden}.ai-task-card summary{min-height:64px;padding:0 18px;display:flex;align-items:center;justify-content:space-between;cursor:pointer;list-style:none}.ai-task-card summary::-webkit-details-marker{display:none}.ai-task-card summary>span{display:flex;align-items:center;gap:9px}.ai-task-card summary>span:first-child>svg{width:17px;color:var(--success)}.ai-task-card summary strong{font-size:11px}.ai-task-card summary>span:last-child{color:var(--muted);font-size:10px}.ai-task-card summary>span:last-child svg{width:14px;transition:transform .2s}.ai-task-card[open] summary>span:last-child svg{transform:rotate(180deg)}.ai-task-card form{padding:18px;border-top:1px solid var(--line);background:#fafafe}.ai-task-card textarea{font:500 9px/1.55 ui-monospace,SFMono-Regular,Consolas,monospace}.ai-usage-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.ai-usage-grid>div{min-height:90px;padding:15px;border:1px solid var(--line);border-radius:12px;display:flex;flex-direction:column;background:#fafafe}.ai-usage-grid strong{font:800 25px var(--font-display)}.ai-usage-grid span{margin:3px 0;color:var(--ink);font-size:11px;font-weight:800}.ai-usage-grid small{color:var(--muted);font-size:10px}

@media(max-width:900px){.ai-toggle-grid{grid-template-columns:1fr 1fr}.ai-provider-grid,.ai-task-grid{grid-template-columns:1fr 1fr}.shop-ai-guide{align-items:flex-start;flex-wrap:wrap}.shop-ai-guide .button{margin-left:55px}}
@media(max-width:700px){.ai-launcher{right:12px;bottom:78px}.customer-shell .ai-launcher{bottom:78px}.ai-launcher__button{width:48px;height:48px;padding:5px;border-radius:16px}.ai-launcher__button>span{width:36px;height:36px}.ai-launcher__button strong{display:none}.ai-assistant__panel{inset:auto 0 0;width:100%;height:min(92dvh,760px);border-radius:25px 25px 0 0;transform:translateY(100%);transform-origin:bottom center}.ai-assistant__head{padding-top:17px}.product-ai-actions{display:grid;grid-template-columns:1fr 1fr}.product-ai-actions button:last-child{grid-column:1/3}.shop-ai-guide>span{width:38px;height:38px}.shop-ai-guide>div{min-width:calc(100% - 55px)}.shop-ai-guide .button{width:100%;margin-left:0}.ai-toggle-grid,.ai-provider-grid,.ai-task-grid,.ai-studio-fields,.ai-usage-grid{grid-template-columns:1fr}.ai-provider-actions{align-items:stretch;flex-direction:column}.ai-provider-actions .button{width:100%}.ai-clear-key{margin-left:0!important}.ai-task-card summary{padding:0 13px}.ai-task-card summary>span:last-child{max-width:42%;text-align:right}.ai-task-card form{padding:13px}}
@media(prefers-reduced-motion:reduce){.ai-launcher__button,.ai-assistant__backdrop,.ai-assistant__panel,.ai-message--thinking>div>i{transition-duration:.01ms!important;animation:none!important}}

/* Product media management */
.product-media-manager{margin-top:16px}.product-media-actions{display:grid;grid-template-columns:1.25fr 1fr;gap:14px}.media-upload-form,.media-attach-form{padding:16px;border:1px solid var(--line);border-radius:16px;display:grid;grid-template-columns:1fr 1fr;gap:11px;background:#fbfbfe}.media-upload-form .media-dropzone{grid-column:1/-1}.media-upload-form .button,.media-attach-form .button{align-self:end}.media-attach-form{grid-template-columns:1fr}.media-dropzone{min-height:145px;padding:20px;border:1px dashed #bbb7d5;border-radius:14px;display:flex!important;align-items:center;justify-content:center;text-align:center;background:#f8f7ff;cursor:pointer}.media-dropzone svg{width:28px;height:28px;color:var(--brand)}.media-dropzone strong{margin-top:8px;color:var(--ink);font-size:10px}.media-dropzone span{max-width:360px;margin-top:4px;color:var(--muted);font-size:10px;line-height:1.5}.media-dropzone input{position:absolute;width:1px;height:1px;opacity:0;pointer-events:none}.product-media-toolbar{margin-top:18px;display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}.product-media-toolbar h3{margin:0;font-size:13px}.product-media-toolbar p{margin:3px 0 0;color:var(--muted);font-size:10px;line-height:1.5}.product-media-grid{margin-top:12px;display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:12px}.product-media-card{position:relative;border:1px solid var(--line);border-radius:14px;overflow:hidden;background:#fff;transition:border-color .15s,box-shadow .15s}.product-media-card.is-primary{border-color:var(--brand);box-shadow:0 0 0 2px rgba(81,72,216,.18)}.product-media-card__preview{height:150px;position:relative;background:#f8f7ff;border-bottom:1px solid var(--line)}.product-media-card__preview img{width:100%;height:100%;object-fit:contain;padding:10px}.product-media-card__flag{position:absolute;top:8px;left:8px;display:inline-flex;align-items:center;gap:4px;padding:4px 8px;border-radius:99px;color:#fff;background:var(--brand);font-size:7px;font-weight:800}.product-media-card__flag svg{width:10px}.product-media-card__variant{position:absolute;top:8px;right:8px;max-width:58%;padding:4px 8px;border-radius:99px;color:var(--ink);background:rgba(255,255,255,.92);border:1px solid var(--line);font-size:7px;font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.product-media-card__reorder{position:absolute;bottom:8px;right:8px;display:flex;gap:5px}.icon-button--tiny{width:26px;height:26px;border-radius:8px;background:rgba(255,255,255,.94);border:1px solid var(--line);box-shadow:var(--shadow-sm)}.icon-button--tiny svg{width:13px}.icon-button--tiny:disabled{opacity:.4;cursor:not-allowed}.product-media-card__bar{padding:10px}.product-media-card__bar form{margin:0}.product-media-card__default{display:flex;align-items:center;justify-content:center;gap:5px;padding:7px;border-radius:9px;color:var(--success);background:#e8f8f2;font-size:10px;font-weight:800}.product-media-card__default svg{width:13px}.product-media-card__details{border-top:1px solid var(--line)}.product-media-card__details>summary{padding:10px;display:flex;align-items:center;gap:7px;color:var(--muted);font-size:11px;font-weight:700;cursor:pointer;list-style:none}.product-media-card__details>summary::-webkit-details-marker{display:none}.product-media-card__details>summary svg{width:13px}.product-media-card__details>summary svg:last-child{margin-left:auto;transition:transform .15s}.product-media-card__details[open]>summary svg:last-child{transform:rotate(180deg)}.product-media-card__edit{padding:0 12px 12px;display:grid;gap:9px}.product-media-card__buttons{display:flex;align-items:center;gap:6px;flex-wrap:wrap}.product-media-order-form{margin:0}.media-library-layout{display:grid;grid-template-columns:300px 1fr;gap:16px;align-items:start}.media-library-upload{position:sticky;top:90px}.media-library-upload form{display:grid;gap:13px}.media-library{padding:18px}.media-library-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:13px}.media-library-card{border:1px solid var(--line);border-radius:15px;overflow:hidden;background:#fff}.media-library-card__image{height:190px;background:#fff}.media-library-card__image img{width:100%;height:100%;object-fit:contain;padding:7%}.media-library-card form{padding:13px;display:grid;gap:9px}.media-library-card form>small{color:var(--muted);font-size:7px}.media-library-card form>div{display:flex;justify-content:flex-end;gap:7px}.admin-empty-state{min-height:220px;padding:30px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;color:var(--muted)}.admin-empty-state svg{width:34px;height:34px;color:var(--brand)}.admin-empty-state strong{margin-top:10px;color:var(--ink);font-size:12px}.admin-empty-state p{max-width:380px;font-size:11px;line-height:1.6}.button:disabled{opacity:.45;cursor:not-allowed}
.product-media-replace{margin:0 12px 12px;padding:11px;border:1px dashed var(--line);border-radius:10px;background:#fafafe;display:grid;gap:8px}.product-media-replace input[type=file]{padding:7px;background:#fff}

@media(max-width:1100px){.media-library-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.media-library-layout{grid-template-columns:1fr}.media-library-upload{position:static}.product-media-actions{grid-template-columns:1fr}}
@media(max-width:700px){.media-library-grid{grid-template-columns:1fr}.media-upload-form{grid-template-columns:1fr}.media-upload-form .media-dropzone{grid-column:auto}.product-gallery__thumbs{grid-template-columns:repeat(auto-fit,minmax(60px,1fr))}}

/* Refined chat typography and motion. Gemini content is rendered through an
   allowlisted DOM formatter; these styles never depend on provider HTML. */
.ai-assistant{transition:visibility 0s linear .38s}.ai-assistant.is-open{transition-delay:0s}
.ai-assistant__panel{border:1px solid rgba(34,28,91,.13);overflow:clip;box-shadow:0 28px 90px rgba(18,13,61,.27),0 8px 28px rgba(36,29,111,.12);transition:opacity .28s ease,transform .38s cubic-bezier(.22,1,.36,1)}
.ai-assistant__head{border-bottom:0;box-shadow:inset 0 -1px rgba(255,255,255,.08);background:radial-gradient(circle at 10% -30%,rgba(139,130,255,.45),transparent 42%),linear-gradient(135deg,#18144f,#302987)}
.ai-assistant__messages{padding:20px 15px 12px;scroll-behavior:smooth;scrollbar-gutter:stable;overflow-anchor:none}
.ai-message{margin-bottom:17px;gap:9px;transform-origin:bottom left}.ai-message--entering{animation:aiMessageIn .42s cubic-bezier(.22,1,.36,1) both}.ai-message--user.ai-message--entering{animation-name:aiMessageInUser;transform-origin:bottom right}
.ai-message>div{max-width:86%;padding:12px 14px;border-color:#e4e2ec;border-radius:7px 17px 17px 17px;box-shadow:0 7px 22px rgba(38,32,96,.055)}
.ai-message--model>div{background:linear-gradient(180deg,#fff,#fdfdff)}.ai-message--user>div{padding:11px 14px;border-radius:17px 7px 17px 17px;box-shadow:0 8px 22px rgba(47,39,142,.18)}.ai-message--user p{white-space:pre-wrap}
.ai-message__mark{margin-top:2px;border:1px solid #dedaff;background:linear-gradient(145deg,#f2f0ff,#e6e2ff);box-shadow:0 4px 12px rgba(81,72,216,.09)}
.ai-message__content{color:#3e3b4c;font-size:11px;line-height:1.66;overflow-wrap:anywhere}.ai-message__content>*:first-child{margin-top:0}.ai-message__content>*:last-child{margin-bottom:0}
.ai-message__content p{margin:0 0 10px;color:inherit;font-size:inherit;line-height:inherit}.ai-message__content h3,.ai-message__content h4{margin:2px 0 8px;color:#27233b;font-family:var(--font-display);font-weight:800;line-height:1.35}.ai-message__content h3{font-size:13px}.ai-message__content h4{font-size:12px}
.ai-message__content strong{color:#25213a;font-weight:800}.ai-message__content em{color:#5148a9}.ai-message__content code{padding:2px 5px;border:1px solid #e4e1f5;border-radius:5px;color:#40358f;background:#f5f3ff;font:600 .92em ui-monospace,SFMono-Regular,Consolas,monospace}
.ai-message__content ul,.ai-message__content ol{margin:7px 0 11px;padding-left:19px;display:grid;gap:6px}.ai-message__content li{padding-left:2px}.ai-message__content li::marker{color:#665cce;font-weight:800}
.ai-message__products{margin-top:13px;padding-top:11px;border-top:1px solid #eceaf2;gap:8px}.ai-product-card{border-color:#e4e1f0;border-radius:13px;background:linear-gradient(145deg,#faf9ff,#f7f6fb);box-shadow:0 3px 12px rgba(34,28,94,.035)}.ai-product-card:hover{border-color:#beb8f4;box-shadow:0 8px 22px rgba(57,48,153,.09)}
.ai-assistant__suggestions{padding:4px 15px 11px}.ai-assistant__composer{margin:0 13px 11px;border-color:#dfdde8;box-shadow:0 8px 26px rgba(34,28,94,.075)}
@keyframes aiMessageIn{from{opacity:0;transform:translate3d(0,9px,0) scale(.985)}to{opacity:1;transform:none}}@keyframes aiMessageInUser{from{opacity:0;transform:translate3d(7px,7px,0) scale(.985)}to{opacity:1;transform:none}}
@media(max-width:700px){.ai-assistant__panel{box-shadow:0 -18px 65px rgba(18,13,61,.25)}.ai-assistant__messages{padding:17px 12px 10px}.ai-message>div{max-width:88%;padding:11px 13px}.ai-message__content{font-size:11.2px}.ai-assistant__suggestions{padding-inline:12px}.ai-assistant__composer{margin-inline:10px}}
@media(prefers-reduced-motion:reduce){.ai-assistant,.ai-message--entering{transition-duration:.01ms!important;animation:none!important}.ai-assistant__messages{scroll-behavior:auto}}

@media(max-width:700px){
  .account-quick { position:fixed; inset:0; z-index:1; width:auto; max-width:none; }
  .account-quick__backdrop { position:absolute; inset:0; width:100%; border:0; display:block; background:rgba(14,10,48,.48); opacity:0; backdrop-filter:blur(0); -webkit-backdrop-filter:blur(0); transition:opacity .3s ease,backdrop-filter .3s ease,-webkit-backdrop-filter .3s ease; }
  .account-quick.is-open .account-quick__backdrop { opacity:1; backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px); }
  .account-quick__panel { position:absolute; inset:auto 0 0; width:100%; max-height:min(88dvh,720px); border-width:1px 0 0; border-radius:25px 25px 0 0; display:flex; flex-direction:column; opacity:1; transform:translateY(102%); transform-origin:bottom center; transition:transform .4s cubic-bezier(.22,1,.36,1); box-shadow:0 -24px 80px rgba(18,13,61,.25); }
  .account-quick.is-open .account-quick__panel { transform:none; }
  .account-quick__head { flex:none; min-height:88px; padding:16px 15px 15px 17px; border-radius:24px 24px 0 0; }
  .account-quick__head::before { content:""; position:absolute; top:8px; left:50%; width:38px; height:4px; border-radius:99px; background:rgba(255,255,255,.38); transform:translateX(-50%); }
  .account-quick__body { min-height:0; max-height:none; flex:1; padding-bottom:env(safe-area-inset-bottom); }
  .account-quick__actions { gap:8px; }
  .account-quick__actions > a { min-height:72px; }
  .account-quick__recent { margin-inline:14px; }
  .account-quick__member-row { padding-inline:15px; }
  .account-quick__footer { position:sticky; bottom:0; padding-bottom:calc(13px + env(safe-area-inset-bottom)); box-shadow:0 -10px 28px rgba(26,20,77,.05); }
}
@media(max-width:390px){
  .header-actions { gap:0; }
  .header-actions .icon-button { width:35px; height:35px; }
  .account-quick__identity strong { max-width:210px; }
  .account-quick__identity em { max-width:200px; }
  .account-quick__actions { padding-inline:12px; }
  .account-quick__recent { margin-inline:12px; }
}
@media(prefers-reduced-motion:reduce){
  .account-quick__panel,.account-quick__backdrop,.account-quick__actions>a,.account-quick__recent { transition-duration:.01ms!important; }
  .filter-group__body { transition-duration:.01ms!important; }
  .account-quick__loading>span { animation:none!important; }
}

/* Keep the assistant and account hub edges clean against their shadows. */
.ai-assistant__panel,
.account-quick__panel {
  border: 0;
}

.filter-attribute-row { min-width:0; }
.filter-color-swatch {
  width:18px;
  height:18px;
  flex:none;
  border:2px solid #fff;
  border-radius:50%;
  background:linear-gradient(135deg,var(--filter-color) 0 48%,var(--filter-color-secondary) 52% 100%);
  box-shadow:0 0 0 1px #cfccd9;
}

/* Homepage editorial showcase. Product data remains real and clickable, while
   the visual language is intentionally flat, grounded and retail-like. */
.hero {
  background:
    linear-gradient(90deg,rgba(7,6,37,.34) 0%,rgba(8,7,42,.18) 49%,rgba(8,6,37,.08) 100%),
    radial-gradient(circle at 12% 15%,rgba(105,94,224,.16),transparent 31%),
    url("/assets/hero/sliq-catalog-tech-hero-v3.png"),
    linear-gradient(128deg,#17134f 0%,#1b165c 52%,#231d68 100%);
  background-size:cover;
  background-position:center;
}
.hero__stage--editorial {
  min-height:650px;
  padding:calc(var(--header-h) + 34px) 0 42px 42px;
  display:flex;
  align-items:center;
  perspective:none;
}
.hero-showcase {
  width:100%;
  max-width:650px;
  margin-left:auto;
  padding:18px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:30px;
  background:rgba(255,255,255,.075);
  box-shadow:0 34px 80px rgba(5,3,29,.24);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}
.hero-showcase__head {
  min-height:38px;
  padding:0 5px 13px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#d4d1f4;
}
.hero-showcase__head > span {
  font-size:10px;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.hero-showcase__head small { display:flex; align-items:center; gap:7px; font-size:11px; }
.hero-showcase__head svg { width:14px; color:#77e0b8; }
.hero-showcase__lead {
  min-height:320px;
  padding:28px;
  border-radius:22px;
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(150px,.75fr);
  align-items:stretch;
  gap:24px;
  color:var(--ink);
  background:#f6f5f9;
  box-shadow:0 18px 46px rgba(9,6,38,.16);
  transition:transform .3s cubic-bezier(.22,1,.36,1),box-shadow .3s ease;
}
.hero-showcase__lead:hover { transform:translateY(-3px); box-shadow:0 24px 54px rgba(9,6,38,.22); }
.hero-showcase__lead-copy { min-width:0; display:flex; flex-direction:column; align-items:flex-start; }
.hero-showcase__lead-copy > span {
  color:var(--brand-2);
  font-size:11px;
  font-weight:800;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.hero-showcase__lead-copy h2 { margin:14px 0 11px; font-size:clamp(25px,2.25vw,36px); line-height:1.08; }
.hero-showcase__lead-copy p {
  display:-webkit-box;
  max-width:330px;
  margin:0;
  overflow:hidden;
  color:var(--muted);
  font-size:12px;
  line-height:1.65;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
}
.hero-showcase__lead-copy > div { width:100%; margin-top:auto; padding-top:24px; display:flex; align-items:flex-end; justify-content:space-between; gap:16px; }
.hero-showcase__lead-copy strong { color:var(--brand); font:800 21px var(--font-display); }
.hero-showcase__lead-copy small { color:var(--muted); font-size:11px; font-weight:700; }
.hero-showcase__pack {
  min-height:250px;
  padding:18px;
  border-radius:17px;
  display:flex;
  flex-direction:column;
  color:#25233a;
  background:
    linear-gradient(rgba(255,255,255,.68),rgba(255,255,255,.68)),
    var(--showcase-accent);
  border:1px solid rgba(39,34,83,.08);
}
.hero-showcase__pack > span { font:800 12px var(--font-display); letter-spacing:.08em; }
.hero-showcase__pack > svg { width:74px; height:74px; margin:auto; color:#24213e; stroke-width:1.4; }
.hero-showcase__pack > small { padding-top:12px; border-top:1px solid rgba(36,33,62,.14); color:#615e72; font-size:11px; font-weight:800; }
.hero-showcase__row { margin-top:12px; display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.hero-showcase__item {
  min-width:0;
  min-height:90px;
  padding:13px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:17px;
  display:grid;
  grid-template-columns:54px minmax(0,1fr);
  align-items:center;
  gap:12px;
  background:rgba(18,14,64,.7);
  transition:background .22s ease,transform .22s ease;
}
.hero-showcase__item:hover { background:rgba(27,22,83,.94); transform:translateY(-2px); }
.hero-showcase__item-icon {
  width:54px;
  height:54px;
  border-radius:14px;
  display:grid;
  place-items:center;
  color:#292542;
  background:linear-gradient(rgba(255,255,255,.68),rgba(255,255,255,.68)),var(--showcase-accent);
}
.hero-showcase__item-icon svg { width:25px; }
.hero-showcase__item > span:nth-child(2) { min-width:0; display:flex; flex-direction:column; gap:4px; }
.hero-showcase__item small { overflow:hidden; color:#aaa6ca; font-size:7px; font-weight:700; text-overflow:ellipsis; text-transform:uppercase; white-space:nowrap; }
.hero-showcase__item strong { overflow:hidden; font-size:10px; line-height:1.35; text-overflow:ellipsis; white-space:nowrap; }
.hero-showcase__item > b { grid-column:2; margin-top:-17px; color:#c5c1ff; font:800 10px var(--font-display); }
.hero-showcase__assurance {
  min-height:50px;
  padding:14px 5px 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.hero-showcase__assurance span { display:flex; align-items:center; gap:7px; color:#c0bcdf; }
.hero-showcase__assurance svg { width:14px; flex:none; color:#918afa; }
.hero-showcase__assurance b { font-size:10px; font-weight:700; }

@media (max-width:1100px) {
  .hero__grid { grid-template-columns:.88fr 1.12fr; gap:20px; }
  .hero__stage--editorial { padding-left:12px; }
  .hero-showcase__lead { padding:22px; grid-template-columns:minmax(0,1fr) 145px; }
}

@media (max-width:900px) {
  .hero {
    height: 100vh;
    height: 100dvh;
    min-height: 460px;
    overflow: hidden;
    position: relative;
  }
  .hero__grid {
    height: 100%;
    padding: calc(var(--header-h) + 16px) 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero__copy {
    padding: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero h1 {
    font-size: clamp(34px, 8vw, 48px);
    margin: 12px 0 14px;
    line-height: 1.05;
  }
  .hero__copy > p {
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
  }
  .hero__actions {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 8px;
  }
  .hero__actions .button {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 13px;
    min-height: 46px;
  }
  .hero__proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width:640px) {
  .hero {
    min-height: 400px;
  }
  .hero__grid {
    padding: calc(var(--header-h) + 8px) 0 16px;
  }
  .hero h1 {
    font-size: clamp(28px, 7vw, 36px);
    margin: 8px 0 10px;
  }
  .hero__copy > p {
    font-size: 13px;
    line-height: 1.5;
  }
  .hero__actions {
    margin: 18px 0;
  }
}

@media (max-height: 600px) and (max-width: 900px) {
  .hero__proof {
    display: none;
  }
  .hero h1 {
    margin: 4px 0 8px;
  }
  .hero__actions {
    margin: 12px 0;
  }
}

@media (max-width:900px) {
  .auth-store-exit--light { display:inline-flex; top:20px; right:20px; }
  .auth-form-wrap { padding-top:84px; }
}

/* Brand / info pages — About, Authenticity, Contact */
.info-page .simple-hero { padding-bottom:44px; }
.info-lead { max-width:780px; }
.info-lead__text { margin:0 0 46px; color:var(--muted); font-size:15px; line-height:1.85; }

.info-split { display:grid; grid-template-columns:1.05fr .95fr; gap:70px; align-items:center; }
.info-split--reverse .info-split__copy { order:2; }
.info-split__copy h2 { margin:12px 0 16px; font-size:clamp(28px,3.2vw,40px); line-height:1.12; }
.info-split__copy > p { margin:0 0 14px; color:var(--muted); font-size:14px; line-height:1.8; }
.info-split__copy .story-list { margin:26px 0 30px; }
.info-tags { margin-top:22px; display:flex; flex-wrap:wrap; gap:10px; }
.info-tags a { padding:9px 16px; border:1px solid var(--line); border-radius:99px; font-size:12px; font-weight:700; color:var(--ink); transition:border-color .2s, color .2s, background .2s; }
.info-tags a:hover { border-color:var(--brand-3); color:var(--brand); background:#f6f5ff; }

.info-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.info-grid--stack { grid-template-columns:1fr; }
.info-card { padding:30px; border:1px solid var(--line); border-radius:var(--radius); background:#fff; display:flex; flex-direction:column; gap:13px; box-shadow:var(--shadow-sm); }
.info-card__icon { width:50px; height:50px; border-radius:15px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }
.info-card__icon svg { width:23px; }
.info-card h3 { margin:0; font-size:18px; }
.info-card p { margin:0; color:var(--muted); font-size:13px; line-height:1.75; }
.info-card p a { color:var(--brand-2); font-weight:700; }
.info-card .text-link { margin-top:2px; font-size:13px; }

.info-quote { padding:42px 40px; border-radius:var(--radius-lg); color:#fff; background:radial-gradient(circle at 85% 12%,rgba(109,99,221,.5),transparent 40%),linear-gradient(135deg,#15114f,#241a78); }
.info-quote::before { content:"\201C"; display:block; font:800 70px/.7 var(--font-display); color:rgba(255,255,255,.32); }
.info-quote blockquote { margin:14px 0 22px; font:600 22px/1.5 var(--font-display); letter-spacing:-.02em; }
.info-quote__by { color:rgba(255,255,255,.66); font-size:12px; font-weight:700; }

.info-cta { display:flex; align-items:center; justify-content:space-between; gap:40px; padding:46px; border:1px solid var(--line); border-radius:var(--radius-lg); background:#fff; box-shadow:var(--shadow-sm); }
.info-cta h2 { margin:12px 0 10px; font-size:clamp(26px,3vw,38px); line-height:1.12; }
.info-cta p { margin:0; max-width:520px; color:var(--muted); font-size:14px; line-height:1.7; }
.info-cta__actions { display:flex; flex-direction:column; gap:12px; flex:none; }

.condition-list { display:grid; gap:16px; }
.condition-row { display:grid; grid-template-columns:120px 1fr; gap:24px; align-items:start; padding:26px 30px; border:1px solid var(--line); border-radius:var(--radius); background:#fff; }
.condition-tag { display:inline-flex; align-items:center; justify-content:center; padding:7px 14px; border-radius:99px; font-size:11px; font-weight:800; letter-spacing:.04em; text-transform:uppercase; }
.condition-tag--new { color:#1c9b72; background:#e4f6ef; }
.condition-tag--a { color:#5148d8; background:#ecebff; }
.condition-tag--open { color:#e98c20; background:#fdf0df; }
.condition-tag--refurb { color:#2c7fb8; background:#e4f1fb; }
.condition-row strong { display:block; margin-bottom:6px; font-size:15px; }
.condition-row p { margin:0; color:var(--muted); font-size:13px; line-height:1.7; }

.contact-layout { display:grid; grid-template-columns:1.05fr .95fr; gap:44px; align-items:start; }
.contact-channels { display:flex; flex-direction:column; gap:24px; }
.contact-channels .info-card .text-link + .text-link { margin-top:-4px; }
.contact-meta { display:grid; gap:18px; padding:28px 30px; border:1px solid var(--line); border-radius:var(--radius); background:var(--soft); }
.contact-meta__item { display:flex; gap:15px; align-items:flex-start; }
.contact-meta__item .info-card__icon { flex:none; width:44px; height:44px; background:#fff; }
.contact-meta__item strong { display:block; margin-bottom:4px; font-size:14px; }
.contact-meta__item p { margin:0; color:var(--muted); font-size:12px; line-height:1.65; }

.contact-form-card { position:sticky; top:100px; padding:34px; border:1px solid var(--line); border-radius:var(--radius-lg); background:#fff; box-shadow:var(--shadow); }
.contact-form-card__head h2 { margin:10px 0 8px; font-size:26px; }
.contact-form-card__head p { margin:0 0 24px; color:var(--muted); font-size:13px; line-height:1.6; }
.contact-form { display:grid; gap:16px; }
.contact-form .field { display:flex; flex-direction:column; gap:7px; font-size:11px; font-weight:700; }
.contact-form .field > span { color:var(--ink); }
.contact-form input, .contact-form textarea, .contact-form select { width:100%; min-height:46px; padding:12px 13px; border:1px solid var(--line); border-radius:11px; outline:0; background:#fff; font-size:13px; font-weight:500; transition:border .2s, box-shadow .2s; }
.contact-form textarea { min-height:120px; resize:vertical; line-height:1.6; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color:var(--brand-3); box-shadow:0 0 0 3px rgba(81,72,216,.1); }
.contact-form .field--error input, .contact-form .field--error textarea { border-color:var(--danger); }
.contact-form .field__error { color:var(--danger); font-size:11px; font-weight:600; }
.select-wrap { position:relative; }
.select-wrap select { appearance:none; -webkit-appearance:none; padding-right:38px; cursor:pointer; }
.select-wrap svg { position:absolute; top:50%; right:14px; width:16px; transform:translateY(-50%); color:var(--muted); pointer-events:none; }
.contact-form__note { margin-top:4px; color:var(--muted); font-size:11px; font-weight:500; line-height:1.6; }

@media (max-width:900px) {
  .info-split, .contact-layout { grid-template-columns:1fr; gap:40px; }
  .info-split--reverse .info-split__copy { order:0; }
  .info-grid { grid-template-columns:1fr 1fr; }
  .info-cta { flex-direction:column; align-items:flex-start; padding:34px; }
  .info-cta__actions { width:100%; }
  .contact-form-card { position:static; }
}

@media (max-width:640px) {
  .info-grid { grid-template-columns:1fr; }
  .condition-row { grid-template-columns:1fr; gap:12px; padding:22px; }
  .info-quote { padding:32px 26px; }
  .info-quote blockquote { font-size:19px; }
  .contact-form-card, .info-cta { padding:26px; }
}

/* ============================================================================
   Category-aware product comparison
   Tray (z 300) sits above content but below the full-screen overlays. The
   compare panel (z 1260) sits at the top of the overlay stack, and the
   switch/keep prompt (z 1300) sits above everything since it can be triggered
   from inside the quick-view modal.
   ========================================================================= */
.icon-button[data-compare].is-active { color:#fff; background:var(--brand); border-color:var(--brand); }
.icon-button[data-compare].is-loading { opacity:.6; pointer-events:none; }
.quick-product__compare { margin-top:12px; width:100%; min-height:42px; border:1px dashed var(--line); border-radius:12px; display:flex; align-items:center; justify-content:center; gap:8px; color:var(--brand); background:#f7f6ff; font-size:11px; font-weight:700; cursor:pointer; transition:background .2s ease,border-color .2s ease; }
.quick-product__compare:hover { background:#efedff; border-color:var(--brand); }
.quick-product__compare.is-active { color:#fff; background:var(--brand); border-style:solid; border-color:var(--brand); }
.quick-product__compare svg { width:15px; }

.compare-tray { position:fixed; left:50%; bottom:22px; z-index:300; width:min(680px,calc(100vw - 28px)); transform:translate(-50%,150%); opacity:0; visibility:hidden; pointer-events:none; transition:transform .45s cubic-bezier(.22,1,.36,1),opacity .3s ease,visibility .45s; }
.compare-tray.is-active { transform:translate(-50%,0); opacity:1; visibility:visible; pointer-events:auto; }
.compare-tray__inner { padding:12px 14px; border:1px solid var(--line); border-radius:18px; display:flex; align-items:center; gap:14px; background:#fff; box-shadow:0 24px 60px rgba(27,22,74,.22); }
.compare-tray__label { display:flex; flex-direction:column; gap:2px; min-width:0; }
.compare-tray__label strong { font:800 12px var(--font-display); color:var(--ink); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.compare-tray__label small { color:var(--muted); font-size:11px; }
.compare-tray__items { flex:1; min-width:0; display:flex; gap:8px; overflow-x:auto; scrollbar-width:none; }
.compare-tray__items::-webkit-scrollbar { display:none; }
.compare-chip { position:relative; flex:none; width:46px; height:46px; border:1px solid var(--line); border-radius:12px; overflow:hidden; background:#f6f6fa; animation:compareChipIn .32s cubic-bezier(.22,1,.36,1); }
@keyframes compareChipIn { from { transform:scale(.6); opacity:0; } to { transform:scale(1); opacity:1; } }
.compare-chip__art { display:block; width:100%; height:100%; }
.compare-chip__art img { width:100%; height:100%; object-fit:cover; }
.compare-chip__art .product-visual { width:100%; height:100%; }
.compare-chip__art .render-label { display:none; }
.compare-chip__remove { position:absolute; top:-5px; right:-5px; width:18px; height:18px; border:0; border-radius:50%; display:grid; place-items:center; color:#fff; background:var(--ink); cursor:pointer; }
.compare-chip__remove svg { width:10px; }
.compare-tray__actions { flex:none; display:flex; align-items:center; gap:8px; }
.compare-tray__clear { border:0; background:transparent; color:var(--muted); font-size:10px; font-weight:700; cursor:pointer; }
.compare-tray__clear:hover { color:var(--ink); }
.compare-tray__open { min-height:42px; padding:0 16px; border:0; border-radius:12px; display:inline-flex; align-items:center; gap:8px; color:#fff; background:var(--brand); font:800 11px var(--font-display); cursor:pointer; transition:background .2s ease; }
.compare-tray__open:hover { background:var(--brand-3,#2c267f); }
.compare-tray__open svg { width:15px; }
.compare-tray__open span { min-width:20px; height:20px; padding:0 6px; border-radius:99px; display:grid; place-items:center; background:rgba(255,255,255,.2); font-size:10px; }

.compare-panel { position:fixed; inset:0; z-index:1260; visibility:hidden; transition:visibility .36s; }
.compare-panel.is-open { visibility:visible; }
.compare-panel__backdrop { position:absolute; inset:0; border:0; background:rgba(15,12,49,.4); opacity:0; transition:opacity .32s ease; cursor:pointer; }
.compare-panel.is-open .compare-panel__backdrop { opacity:1; }
.compare-panel__sheet { position:absolute; inset:0 0 0 auto; width:min(960px,100%); height:100%; display:flex; background:#fff; box-shadow:-30px 0 90px rgba(18,13,61,.28); transform:translateX(102%); transition:transform .4s cubic-bezier(.22,1,.36,1),width .4s cubic-bezier(.22,1,.36,1); overscroll-behavior:contain; }
.compare-panel__sheet.has-ai { width:min(1300px,100%); }
.compare-panel.is-open .compare-panel__sheet { transform:none; }
.compare-panel__main { flex:1; min-width:0; display:flex; flex-direction:column; }
.compare-panel__head { flex:none; min-height:72px; padding:16px 22px; border-bottom:1px solid var(--line); display:flex; align-items:center; gap:14px; }
.compare-panel__head small { display:block; color:var(--muted); font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.13em; }
.compare-panel__head strong { font:800 20px var(--font-display); color:var(--ink); }
.compare-panel__head-actions { margin-left:auto; display:flex; align-items:center; gap:10px; }
.compare-panel__clear { border:0; background:transparent; color:var(--muted); font-size:10px; font-weight:700; cursor:pointer; }
.compare-panel__clear:hover { color:var(--danger); }
.compare-panel__body { flex:1; min-height:0; overflow:auto; overscroll-behavior:contain; }
.compare-table-wrap { width:100%; overflow-x:auto; }
.compare-table { width:100%; border-collapse:collapse; }
.compare-table th, .compare-table td { padding:13px 16px; border-bottom:1px solid var(--line); text-align:left; vertical-align:top; font-size:11px; }
.compare-table thead th { position:sticky; top:0; z-index:2; background:#fff; border-bottom:2px solid var(--line); vertical-align:bottom; }
.compare-table tbody th[scope="row"] { width:170px; color:var(--muted); font-weight:700; background:#fafafe; position:sticky; left:0; z-index:1; white-space:nowrap; }
.compare-table thead th.compare-table__corner { left:0; z-index:3; color:var(--muted); font-size:10px; text-transform:uppercase; letter-spacing:.12em; white-space:nowrap; }
.compare-table td.is-best { color:var(--success); font-weight:800; }
.compare-col { width:180px; display:flex; flex-direction:column; gap:8px; position:relative; }
.compare-col__art { display:block; width:100%; height:120px; border:1px solid var(--line); border-radius:14px; overflow:hidden; background:#f6f6fa; }
.compare-col__art img { width:100%; height:100%; object-fit:cover; }
.compare-col__art .product-visual { width:100%; height:100%; }
.compare-col__art .render-label { display:none; }
.compare-col__name { font:800 12px var(--font-display); color:var(--ink); line-height:1.3; }
.compare-col__name:hover { color:var(--brand); }
.compare-col__remove { position:absolute; top:6px; right:6px; width:24px; height:24px; border:0; border-radius:50%; display:grid; place-items:center; color:var(--ink); background:rgba(255,255,255,.92); box-shadow:var(--shadow-sm); cursor:pointer; }
.compare-col__remove svg { width:13px; }
.compare-empty { padding:70px 24px; display:flex; flex-direction:column; align-items:center; gap:10px; text-align:center; }
.compare-empty span { width:58px; height:58px; border-radius:18px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }
.compare-empty span svg { width:24px; }
.compare-empty strong { font:800 16px var(--font-display); }
.compare-empty p { max-width:340px; color:var(--muted); font-size:11px; }

/* "Ask SLiQ Assist" toggle in the panel header */
.compare-ai-toggle { min-height:36px; padding:0 14px; border:1px solid var(--brand); border-radius:99px; display:inline-flex; align-items:center; gap:7px; color:var(--brand); background:#f4f2ff; font-size:10px; font-weight:800; cursor:pointer; transition:background .2s ease,color .2s ease; }
.compare-ai-toggle[hidden] { display:none; }
.compare-ai-toggle:hover { background:var(--brand); color:#fff; }
.compare-panel__sheet.has-ai .compare-ai-toggle { background:var(--brand); color:#fff; }
.compare-ai-toggle svg { width:14px; }

/* In-drawer assistant rail that slides out from the side of the compare drawer */
.compare-ai { flex:none; width:0; display:flex; flex-direction:column; overflow:hidden; background:#faf9ff; border-right:1px solid var(--line); transition:width .4s cubic-bezier(.22,1,.36,1); }
.compare-panel__sheet.has-ai .compare-ai { width:344px; }
.compare-ai__head, .compare-ai__messages, .compare-ai__actions, .compare-ai__note, .compare-ai__composer { width:344px; box-sizing:border-box; }
.compare-ai__head { flex:none; min-height:72px; padding:14px 16px; display:flex; align-items:center; gap:10px; border-bottom:1px solid var(--line); background:linear-gradient(135deg,#18144f,#2c267f); color:#fff; }
.compare-ai__avatar { width:38px; height:38px; flex:none; border-radius:12px; display:grid; place-items:center; background:linear-gradient(145deg,#8e85ff,#5c51d6); }
.compare-ai__avatar svg { width:18px; }
.compare-ai__head > div { flex:1; min-width:0; display:flex; flex-direction:column; }
.compare-ai__head small { color:#aaa5d4; font-size:7px; font-weight:800; text-transform:uppercase; letter-spacing:.13em; }
.compare-ai__head strong { font:800 13px var(--font-display); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.compare-ai__close { width:30px; height:30px; flex:none; border:0; border-radius:9px; display:grid; place-items:center; color:#c9c5e5; background:rgba(255,255,255,.1); cursor:pointer; }
.compare-ai__close svg { width:14px; }
.compare-ai__messages { flex:1; min-height:0; overflow-y:auto; padding:16px; display:flex; flex-direction:column; gap:10px; }
.compare-ai__msg { max-width:90%; padding:10px 13px; border-radius:14px; font-size:11.5px; line-height:1.55; transform-origin:bottom left; }
.compare-ai__msg--model { align-self:flex-start; color:var(--ink); background:#fff; border:1px solid var(--line); border-bottom-left-radius:4px; }
.compare-ai__msg--user { align-self:flex-end; color:#fff; background:var(--brand); border-bottom-right-radius:4px; transform-origin:bottom right; }
.compare-ai__msg p { margin:0 0 8px; } .compare-ai__msg p:last-child { margin-bottom:0; }
.compare-ai__msg ul, .compare-ai__msg ol { margin:6px 0; padding-left:18px; display:flex; flex-direction:column; gap:5px; }
.compare-ai__msg li::marker { color:var(--brand); }
.compare-ai__msg em { font-style:normal; color:var(--brand-2,#5c51d6); font-weight:700; }
.compare-ai__msg--entering { animation:compareMsgIn .36s cubic-bezier(.22,1,.36,1) both; }
@keyframes compareMsgIn { from { opacity:0; transform:translateY(10px) scale(.96); } to { opacity:1; transform:translateY(0) scale(1); } }
.compare-ai__note { flex:none; margin:0; padding:0 16px 9px; display:flex; align-items:center; gap:6px; color:var(--muted); font-size:8.5px; line-height:1.4; }
.compare-ai__note svg { width:11px; flex:none; color:var(--brand); }
.compare-ai__msg--thinking { display:flex; gap:5px; }
.compare-ai__msg--thinking span { width:7px; height:7px; border-radius:50%; background:var(--brand); opacity:.5; animation:compareDot 1s infinite ease-in-out; }
.compare-ai__msg--thinking span:nth-child(2) { animation-delay:.15s; } .compare-ai__msg--thinking span:nth-child(3) { animation-delay:.3s; }
@keyframes compareDot { 0%,80%,100% { transform:translateY(0); opacity:.4; } 40% { transform:translateY(-4px); opacity:1; } }
.compare-ai__actions { flex:none; padding:0 16px 10px; display:flex; flex-wrap:wrap; gap:7px; }
.compare-ai__actions button { min-height:30px; padding:0 11px; border:1px solid var(--line); border-radius:99px; color:var(--brand); background:#fff; font-size:9.5px; font-weight:700; cursor:pointer; transition:background .2s ease,border-color .2s ease; }
.compare-ai__actions button:hover { background:#efedff; border-color:var(--brand); }
.compare-ai__composer { flex:none; padding:12px 16px calc(14px + env(safe-area-inset-bottom)); border-top:1px solid var(--line); display:flex; align-items:flex-end; gap:8px; background:#fff; }
.compare-ai__composer textarea { flex:1; max-height:96px; padding:10px 12px; border:1px solid var(--line); border-radius:12px; resize:none; font:inherit; font-size:11.5px; }
.compare-ai__composer button { width:40px; height:40px; flex:none; border:0; border-radius:11px; display:grid; place-items:center; color:#fff; background:var(--brand); cursor:pointer; }
.compare-ai__composer button svg { width:16px; }

/* Quick view price + footer (variations now render like the product page) */
.quick-product__price { margin:2px 0; }
.quick-product__price strong { font:800 26px var(--font-display); color:var(--ink); }
.quick-product__footer .button { flex:1; justify-content:center; }

.compare-prompt { position:fixed; inset:0; z-index:1300; display:grid; place-items:center; visibility:hidden; transition:visibility .28s; }
.compare-prompt.is-open { visibility:visible; }
.compare-prompt__backdrop { position:absolute; inset:0; border:0; background:rgba(15,12,49,.45); opacity:0; transition:opacity .26s ease; cursor:pointer; }
.compare-prompt.is-open .compare-prompt__backdrop { opacity:1; }
.compare-prompt__card { position:relative; width:min(420px,calc(100vw - 32px)); padding:26px 24px; border-radius:22px; display:flex; flex-direction:column; align-items:center; gap:10px; text-align:center; background:#fff; box-shadow:0 36px 100px rgba(18,13,61,.32); opacity:0; transform:translateY(14px) scale(.97); transition:opacity .24s ease,transform .3s cubic-bezier(.22,1,.36,1); }
.compare-prompt.is-open .compare-prompt__card { opacity:1; transform:none; }
.compare-prompt__icon { width:52px; height:52px; border-radius:16px; display:grid; place-items:center; color:var(--brand); background:#eeedff; }
.compare-prompt__icon svg { width:22px; }
.compare-prompt__card strong { font:800 17px var(--font-display); }
.compare-prompt__card p { color:var(--muted); font-size:11.5px; line-height:1.55; }
.compare-prompt__actions { margin-top:8px; width:100%; display:flex; flex-direction:column; gap:8px; }
.compare-prompt__actions .button { width:100%; justify-content:center; white-space:nowrap; }

@media(max-width:700px){
  .compare-tray { left:10px; right:10px; bottom:calc(72px + env(safe-area-inset-bottom)); width:auto; transform:translateY(150%); }
  .compare-tray.is-active { transform:translateY(0); }
  .compare-tray__inner { padding:10px; gap:10px; }
  .compare-tray__label { display:none; }
  .compare-panel__sheet, .compare-panel__sheet.has-ai { width:100%; }
  .compare-panel__head { padding:14px 16px; min-height:64px; }
  .compare-panel__head strong { font-size:17px; }
  .compare-ai-toggle span { display:none; }
  .compare-ai-toggle { padding:0 10px; }
  .compare-table th, .compare-table td { padding:11px 12px; }
  .compare-table tbody th[scope="row"] { width:120px; font-size:10px; }
  .compare-col, .compare-col__art { width:140px; }
  .compare-col__art { height:96px; }
  /* On phones the assistant overlays the comparison instead of sitting beside it. */
  .compare-ai { position:absolute; inset:0; width:0; z-index:5; border-right:0; }
  .compare-panel__sheet.has-ai .compare-ai { width:100%; }
  .compare-ai__head, .compare-ai__messages, .compare-ai__actions, .compare-ai__note, .compare-ai__composer { width:100%; }
}
@media(prefers-reduced-motion:reduce){
  .compare-tray,.compare-chip,.compare-panel,.compare-panel__sheet,.compare-panel__backdrop,.compare-ai,.compare-ai__msg,.compare-prompt,.compare-prompt__card,.compare-prompt__backdrop { transition-duration:.01ms!important; animation:none!important; }
}

/* ============================================================================
   Policy / information pages (Delivery, Privacy, Terms, Returns)
   ========================================================================= */
.policy-updated { margin-top:18px; display:inline-flex; align-items:center; gap:7px; color:var(--muted); font-size:11px; font-weight:600; }
.policy-updated svg { width:14px; }
.policy-shell { display:grid; grid-template-columns:230px 1fr; gap:48px; align-items:start; }
.policy-toc { position:sticky; top:calc(var(--header-h,80px) + 20px); display:flex; flex-direction:column; gap:10px; }
.policy-toc__label { color:var(--muted); font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.14em; }
.policy-toc nav { display:flex; flex-direction:column; gap:2px; border-left:2px solid var(--line); }
.policy-toc nav a { padding:7px 14px; margin-left:-2px; border-left:2px solid transparent; color:var(--muted); font-size:11px; font-weight:600; transition:color .2s ease,border-color .2s ease; }
.policy-toc nav a:hover { color:var(--brand); border-color:var(--brand); }
.policy-content { min-width:0; display:flex; flex-direction:column; gap:30px; }
.policy-content .info-lead { margin:0; }
.policy-section { scroll-margin-top:calc(var(--header-h,80px) + 20px); padding:26px 28px; border:1px solid var(--line); border-radius:20px; background:#fff; box-shadow:var(--shadow-sm); }
.policy-section h2 { font:800 21px var(--font-display); margin-bottom:12px; }
.policy-section h3 { font-size:14px; }
.policy-section > p { color:var(--muted); font-size:13px; line-height:1.7; }
.policy-section > p + p { margin-top:12px; }
.policy-section .info-grid { margin-top:18px; }
.policy-list, .policy-steps { margin:14px 0 0; padding-left:20px; display:flex; flex-direction:column; gap:10px; color:var(--muted); font-size:13px; line-height:1.65; }
.policy-list li::marker { color:var(--brand); }
.policy-steps { counter-reset:step; padding-left:0; list-style:none; }
.policy-steps li { position:relative; padding-left:42px; }
.policy-steps li::before { counter-increment:step; content:counter(step); position:absolute; left:0; top:-2px; width:28px; height:28px; border-radius:9px; display:grid; place-items:center; color:#fff; background:var(--brand); font:800 12px var(--font-display); }
.policy-list strong, .policy-steps strong { color:var(--ink); }
.policy-note { margin-top:16px; padding:12px 14px; border-radius:12px; display:flex; gap:9px; align-items:flex-start; background:#f4f3ff; color:var(--brand); font-size:11.5px; line-height:1.6; }
.policy-note svg { width:15px; flex:none; margin-top:1px; }
.policy-table { margin-top:16px; border:1px solid var(--line); border-radius:14px; overflow:hidden; }
.policy-table__row { display:grid; grid-template-columns:1fr 1fr; gap:14px; padding:12px 16px; border-bottom:1px solid var(--line); font-size:12.5px; color:var(--muted); }
.policy-table__row:last-child { border-bottom:0; }
.policy-table__row--head { background:#faf9ff; color:var(--ink); font-weight:700; }
.policy-cta-card { display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; background:linear-gradient(135deg,#16124d,#2c267f); border:0; color:#fff; }
.policy-cta-card h2 { color:#fff; }
.policy-cta-card p { color:rgba(255,255,255,.78); font-size:13px; max-width:520px; }
.policy-cta-card__actions { display:flex; gap:10px; flex-wrap:wrap; }
@media(max-width:880px){
  .policy-shell { grid-template-columns:1fr; gap:24px; }
  .policy-toc { position:static; flex-direction:row; flex-wrap:wrap; gap:8px; }
  .policy-toc nav { flex-direction:row; flex-wrap:wrap; gap:6px; border-left:0; }
  .policy-toc nav a { margin-left:0; padding:7px 12px; border:1px solid var(--line); border-radius:99px; }
  .policy-toc nav a:hover { border-color:var(--brand); }
}
@media(max-width:700px){
  .policy-section { padding:20px 18px; }
  .policy-section h2 { font-size:18px; }
  .policy-table__row { grid-template-columns:1fr; gap:4px; }
}

/* Admin email & SMTP screen (reuses the AI admin layout classes) */
.ai-status-pill--sent{color:#13745c;background:#e7f8f1}.ai-status-pill--sent i{background:#25b287}
.admin-card__lead{margin:0 0 14px;color:var(--muted);font-size:11px;line-height:1.6}

/* Database-backed admin extension modules */
.admin-extension-layout{display:grid;grid-template-columns:minmax(0,1fr) 370px;gap:16px;align-items:start}
.admin-extension-create{position:sticky;top:92px}
.admin-extension-list{display:grid;gap:10px}
.admin-extension-record{border:1px solid var(--line);border-radius:14px;background:#fff;overflow:hidden}
.admin-extension-record>summary{min-height:72px;padding:13px 16px;display:flex;align-items:center;justify-content:space-between;gap:15px;list-style:none;cursor:pointer}
.admin-extension-record>summary::-webkit-details-marker{display:none}
.admin-extension-record>summary>span{display:flex;align-items:center;gap:10px;min-width:0}
.admin-extension-record>summary>span:first-child>i{width:35px;height:35px;padding:9px;border-radius:10px;color:var(--brand);background:#eeedff}
.admin-extension-record>summary span span{min-width:0;display:flex;flex-direction:column;gap:3px}
.admin-extension-record>summary strong{font-size:10px}.admin-extension-record>summary small{max-width:390px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--muted);font-size:10px}
.admin-extension-record>summary b{font-size:11px}.admin-extension-record>summary em{font-style:normal}.admin-extension-record>summary>span:last-child>svg{width:14px;color:var(--muted);transition:transform .2s}
.admin-extension-record[open]>summary>span:last-child>svg{transform:rotate(180deg)}
.admin-extension-form{padding:16px;border-top:1px solid var(--line);display:grid;grid-template-columns:1fr 1fr;gap:11px;background:#fafafe}
.admin-extension-form .field-full{grid-column:1/-1}.admin-extension-form .switch-row{align-self:end}
.admin-extension-actions{grid-column:1/-1;display:flex;justify-content:flex-end}
.admin-extension-danger{padding:0 16px 16px;display:flex;justify-content:flex-end;background:#fafafe}
.coupon-applied{min-height:44px;padding:0 12px;border:1px solid #bde4d7;border-radius:11px;display:flex;align-items:center;justify-content:space-between;background:#effaf6}
.coupon-applied>span{display:flex;align-items:center;gap:7px;color:#13745c;font-size:11px}.coupon-applied svg{width:15px}
.coupon-applied form button{border:0;color:var(--danger);background:transparent;font-size:10px;font-weight:800;cursor:pointer}
.coupon-message{margin:7px 0 0;font-size:10px}.coupon-message--error{color:var(--danger)}
.summary-discount dt,.summary-discount dd{color:var(--success)!important}
.role-guide{margin-bottom:16px;display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.role-guide>div{min-height:80px;padding:12px;border:1px solid var(--line);border-radius:12px;display:flex;align-items:flex-start;gap:9px;background:#fafafe}
.role-guide svg{width:18px;color:var(--brand)}.role-guide span{display:flex;flex-direction:column;gap:4px}.role-guide strong{font-size:11px}.role-guide small{color:var(--muted);font-size:7px;line-height:1.5}
.staff-role-list{display:grid;gap:9px}.staff-role-list article{padding:13px;border:1px solid var(--line);border-radius:13px;display:grid;grid-template-columns:40px minmax(160px,1fr) auto;align-items:center;gap:11px}
.staff-role-list article>.admin-avatar{width:40px;height:40px}.staff-role-list article>div:nth-child(2){display:flex;flex-direction:column;gap:3px}.staff-role-list strong{font-size:10px}.staff-role-list small{color:var(--muted);font-size:7px}
.staff-role-list form{display:flex;align-items:end;gap:7px}.staff-role-list form label{width:135px}.staff-role-list form select{min-height:36px}
.hero-campaign-image{position:absolute;inset:8% 0 auto auto;z-index:2;width:92%;height:84%;border-radius:28px;object-fit:cover;opacity:.2;mix-blend-mode:screen;pointer-events:none}

@media(max-width:1100px){
  .admin-extension-layout{grid-template-columns:1fr}.admin-extension-create{position:static}.role-guide{grid-template-columns:1fr 1fr}
  .staff-role-list article{grid-template-columns:40px 1fr}.staff-role-list form{grid-column:1/-1}
}
@media(max-width:700px){
  .admin-extension-form{grid-template-columns:1fr}.admin-extension-form .field-full,.admin-extension-actions{grid-column:auto}
  .admin-extension-record>summary{align-items:flex-start;flex-direction:column}.admin-extension-record>summary>span:last-child{width:100%;justify-content:flex-end}
  .role-guide{grid-template-columns:1fr}.staff-role-list form{align-items:stretch;flex-direction:column}.staff-role-list form label{width:100%}
}

/* Product-type-aware editor and per-variation media coverage */
.variable-editor-divider{margin:22px 0 13px;padding-top:18px;border-top:1px solid var(--line)}.variable-editor-divider span{display:block;color:var(--ink);font-size:10px;font-weight:800}.variable-editor-divider p{margin:4px 0 0;color:var(--muted);font-size:10px;line-height:1.5}
.simple-product-commerce{padding:4px 0}.simple-product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}.simple-product-grid .field-full{grid-column:1/-1}
.variation-media-coverage{margin:20px 0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.variation-media-coverage>article{padding:15px;border:1px solid var(--line);border-radius:15px;background:#fafafe}.variation-media-coverage>article.needs-images{border-color:#edc6cc;background:#fff7f8}
.variation-media-coverage__head{display:flex;align-items:center;gap:10px}.variation-media-coverage__head>span{width:36px;height:36px;border-radius:10px;display:grid;place-items:center;color:var(--success);background:#e8f8f2}.needs-images .variation-media-coverage__head>span{color:var(--danger);background:#ffeaed}.variation-media-coverage__head svg{width:17px}
.variation-media-coverage__head>div{min-width:0;display:flex;flex-direction:column;gap:3px}.variation-media-coverage__head strong{font-size:10px}.variation-media-coverage__head small{color:var(--muted);font-size:10px}.variation-media-coverage>article>p{margin:12px 0;color:var(--danger);font-size:10px;line-height:1.5}
.variation-media-coverage__thumbs{margin:12px 0;display:flex;gap:6px}.variation-media-coverage__thumbs img{width:48px;height:48px;padding:3px;border:1px solid var(--line);border-radius:9px;object-fit:contain;background:#fff}
.variation-media-coverage form{margin-top:12px;display:flex;align-items:center;gap:8px}.variation-media-coverage form label{min-height:34px;padding:0 10px;border:1px dashed #bbb7d5;border-radius:9px;display:flex!important;flex-direction:row!important;align-items:center;gap:7px;color:var(--brand);background:#fff;cursor:pointer}.variation-media-coverage form label svg{width:14px}.variation-media-coverage form label span{font-size:10px;font-weight:800}.variation-media-coverage form input{position:absolute;width:1px;height:1px;opacity:0;pointer-events:none}
@media(max-width:900px){.simple-product-grid{grid-template-columns:1fr 1fr}.variation-media-coverage{grid-template-columns:1fr}}
@media(max-width:600px){.simple-product-grid{grid-template-columns:1fr}.simple-product-grid .field-full{grid-column:auto}.variation-media-coverage form{align-items:stretch;flex-direction:column}.variation-media-coverage form label,.variation-media-coverage form button{width:100%}}
.email-test-row{display:flex;flex-wrap:wrap;align-items:center;gap:10px}
.email-test-form{display:flex;flex:1;min-width:240px;gap:8px}
.email-test-form input{flex:1}
.email-placeholders{margin-bottom:14px;display:flex;flex-wrap:wrap;align-items:center;gap:6px;color:var(--muted);font-size:10px}
.email-placeholders code{padding:3px 7px;border-radius:6px;background:#f1f0f6;color:var(--brand);font-size:10px}
.email-log{display:grid;gap:1px;border:1px solid var(--line);border-radius:12px;overflow:hidden;background:var(--line)}
.email-log__row{display:grid;grid-template-columns:96px 1fr 1.4fr 130px;gap:10px;padding:10px 13px;align-items:center;background:#fff;font-size:11px}
.email-log__row--head{background:#fafafe;color:var(--muted);font-weight:800;text-transform:uppercase;letter-spacing:.06em;font-size:10px}
.email-log__error{display:block;margin-top:2px;color:var(--danger);font-size:10px}
@media(max-width:880px){.email-log__row{grid-template-columns:1fr;gap:3px}.email-log__row--head{display:none}}

/* ── Points & rewards ─────────────────────────────────────────── */
.customer-tier--points { color:#fff; background:linear-gradient(120deg,var(--brand-2),var(--brand-3)); text-decoration:none; }
.customer-tier--points svg { width:11px; }
.points-grid { display:grid; grid-template-columns:1fr 320px; gap:16px; align-items:start; }
.points-grid__main { display:flex; flex-direction:column; gap:16px; }
.points-grid__side { display:flex; flex-direction:column; gap:16px; }
.points-balance-card { position:relative; overflow:hidden; padding:28px; border-radius:24px; color:#fff; background:linear-gradient(135deg,var(--brand) 0%,var(--brand-2) 60%,var(--brand-3) 100%); box-shadow:var(--shadow); }
.points-balance-card__orb { position:absolute; width:280px; height:280px; right:-90px; top:-120px; border-radius:50%; background:radial-gradient(circle,rgba(255,255,255,.25),transparent 70%); }
.points-balance-card__value { position:relative; display:flex; align-items:baseline; gap:10px; margin:8px 0 4px; }
.points-balance-card__value strong { font-family:var(--font-display); font-size:54px; line-height:1; }
.points-balance-card__value small { font-size:13px; opacity:.85; }
.points-balance-card__worth { position:relative; display:flex; align-items:center; gap:7px; margin:6px 0 0; font-size:11px; opacity:.92; }
.points-balance-card__worth svg { width:14px; }
.points-balance-card__earn { position:relative; margin-top:20px; display:flex; flex-wrap:wrap; gap:8px; }
.points-balance-card__earn span { display:inline-flex; align-items:center; gap:6px; padding:7px 11px; border-radius:99px; background:rgba(255,255,255,.16); font-size:11px; font-weight:700; }
.points-balance-card__earn svg { width:13px; }
.points-history { display:flex; flex-direction:column; }
.points-history__row { display:grid; grid-template-columns:42px 1fr auto; gap:12px; align-items:center; padding:14px 0; border-bottom:1px solid var(--line); }
.points-history__row:last-child { border-bottom:none; }
.points-history__icon { width:42px; height:42px; border-radius:12px; display:grid; place-items:center; color:var(--brand-2); background:rgba(129,120,242,.12); }
.points-history__icon svg { width:18px; }
.points-history__row--spend .points-history__icon { color:var(--danger); background:rgba(217,72,95,.12); }
.points-history__body { display:flex; flex-direction:column; gap:2px; }
.points-history__body strong { font-size:11px; }
.points-history__body small { color:var(--muted); font-size:11px; }
.points-history__body em { color:var(--muted); font-size:10px; font-style:normal; }
.points-history__body em a { color:var(--brand-2); font-weight:700; }
.points-history__amount { text-align:right; display:flex; flex-direction:column; gap:3px; align-items:flex-end; }
.points-history__amount strong { font-size:15px; font-family:var(--font-display); }
.points-history__amount small { color:var(--muted); font-size:10px; }
.is-positive { color:var(--success); }
.is-negative { color:var(--danger); }
.points-empty,.points-disabled { text-align:center; padding:40px 24px; display:flex; flex-direction:column; align-items:center; gap:10px; }
.points-empty span,.points-disabled span { width:58px; height:58px; border-radius:50%; display:grid; place-items:center; color:var(--brand-2); background:rgba(129,120,242,.12); }
.points-empty span svg,.points-disabled span svg { width:26px; }
.points-empty strong { font-size:15px; }
.points-empty p,.points-disabled p { color:var(--muted); font-size:10px; line-height:1.6; max-width:360px; }
.points-disabled { flex-direction:row; text-align:left; align-items:center; gap:18px; }
.points-disabled div { display:flex; flex-direction:column; gap:8px; align-items:flex-start; }
.points-howto { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:14px; }
.points-howto li { display:flex; gap:12px; align-items:flex-start; }
.points-howto span { width:36px; height:36px; flex:none; border-radius:10px; display:grid; place-items:center; color:var(--brand-2); background:rgba(129,120,242,.12); }
.points-howto span svg { width:16px; }
.points-howto strong { display:block; font-size:11px; }
.points-howto small { color:var(--muted); font-size:11px; }
.points-terms p { color:var(--muted); font-size:10px; line-height:1.7; }
.order-points-earned { margin-top:16px; padding:14px 16px; border-radius:14px; display:flex; align-items:center; gap:12px; background:linear-gradient(120deg,rgba(81,72,216,.08),rgba(129,120,242,.08)); border:1px solid rgba(129,120,242,.25); }
.order-points-earned > span { width:40px; height:40px; flex:none; border-radius:10px; display:grid; place-items:center; color:#fff; background:var(--brand-2); }
.order-points-earned > span svg { width:18px; }
.order-points-earned div { flex:1; display:flex; flex-direction:column; gap:2px; }
.order-points-earned strong { font-size:11px; }
.order-points-earned small { color:var(--muted); font-size:11px; }
.order-points-earned a { display:inline-flex; align-items:center; gap:4px; color:var(--brand-2); font-size:11px; font-weight:800; white-space:nowrap; }
.order-points-earned a svg { width:12px; }
.order-points-earned.is-reversed { background:rgba(217,72,95,.07); border-color:rgba(217,72,95,.25); }
.order-points-earned.is-reversed > span { background:var(--danger); }
.confirmation-points { margin:18px auto 0; max-width:460px; padding:14px 18px; border-radius:15px; display:flex; align-items:center; gap:12px; text-align:left; color:#fff; background:linear-gradient(120deg,var(--brand-2),var(--brand-3)); }
.confirmation-points > span { width:42px; height:42px; flex:none; border-radius:11px; display:grid; place-items:center; background:rgba(255,255,255,.2); }
.confirmation-points > span svg { width:20px; }
.confirmation-points strong { display:block; font-size:13px; }
.confirmation-points small { font-size:11px; opacity:.9; }
.cart-points-estimate { margin:14px 0 0; padding:11px 14px; border-radius:12px; display:flex; align-items:center; gap:10px; background:rgba(129,120,242,.1); border:1px solid rgba(129,120,242,.22); }
.cart-points-estimate span { width:30px; height:30px; flex:none; border-radius:8px; display:grid; place-items:center; color:#fff; background:var(--brand-2); }
.cart-points-estimate span svg { width:15px; }
.cart-points-estimate p { margin:0; font-size:10px; color:var(--ink); }
.points-preview { padding:20px; border-radius:18px; color:#fff; background:linear-gradient(135deg,var(--brand),var(--brand-3)); }
.points-preview__value { display:flex; align-items:baseline; gap:8px; margin:6px 0; }
.points-preview__value strong { font-family:var(--font-display); font-size:34px; }
.points-preview__value small { font-size:11px; opacity:.85; }
.points-preview p { display:flex; align-items:center; gap:6px; font-size:10px; opacity:.92; }
.points-preview svg { width:13px; }
.points-preview__text { opacity:.85; line-height:1.6; }
.points-preview ul { margin:14px 0 0; padding:0; list-style:none; display:flex; flex-wrap:wrap; gap:7px; }
.points-preview li { padding:5px 10px; border-radius:99px; background:rgba(255,255,255,.16); font-size:11px; font-weight:700; }
.points-customer-list { gap:2px; }
.points-customer-row { display:grid; grid-template-columns:1fr auto 16px; gap:12px; align-items:center; padding:12px 14px; border-radius:12px; text-decoration:none; color:var(--ink); }
.points-customer-row:hover,.points-customer-row.is-active { background:var(--soft); }
.points-customer-row strong { display:block; font-size:11px; }
.points-customer-row small { color:var(--muted); font-size:11px; }
.points-customer-row__balance { font-family:var(--font-display); font-weight:800; font-size:14px; color:var(--brand-2); }
.points-customer-row svg { width:15px; color:var(--muted); }
.points-detail-balance { margin-bottom:16px; padding:14px 16px; border-radius:12px; background:var(--soft); display:flex; flex-direction:column; gap:3px; }
.points-detail-balance span { color:var(--muted); font-size:11px; }
.points-detail-balance strong { font-size:18px; font-family:var(--font-display); }
.points-detail-note { display:flex; align-items:center; gap:7px; padding:12px; border-radius:10px; background:var(--soft); color:var(--muted); font-size:10px; }
.points-detail-note svg { width:14px; }
.points-customer-tag { display:inline-flex; align-items:center; gap:5px; padding:4px 9px; border-radius:99px; background:rgba(129,120,242,.12); color:var(--brand-2); font-size:11px; font-weight:800; text-decoration:none; }
.points-customer-tag svg { width:12px; }
.points-history--admin .points-history__row { grid-template-columns:1fr auto; }
.product-points { margin-top:8px; display:inline-flex; align-items:center; gap:6px; padding:5px 10px; border-radius:99px; background:rgba(129,120,242,.1); color:var(--brand-2); font-size:11px; font-weight:700; line-height:1; }
.product-points svg { width:13px; }
.product-points strong { font-weight:800; }
.product-points--detail { margin-top:12px; padding:9px 14px; font-size:11px; border:1px solid rgba(129,120,242,.22); }
@media(max-width:980px){ .points-grid{ grid-template-columns:1fr; } }
@media(max-width:680px){ .points-disabled{ flex-direction:column; text-align:center; } .points-disabled div{ align-items:center; } }
@media(max-width:900px){
  .home-page .category-section{padding:68px 0 56px}
  .home-page .home-audio-campaign{padding:12px 0 66px}
  .home-page .section--soft{padding:70px 0}
  .home-page .story-section{padding:72px 0 64px}
  .home-page .brand-promise{padding:12px 0 64px}
  .home-page .brand-promise + .section{padding:68px 0}
  .home-page .newsletter-section{padding:4px 0 64px}
  .home-audio-campaign__inner{min-height:520px;background-position:62% center}
  .home-audio-campaign__copy{width:54%;margin-left:6%}
  .home-audio-campaign__actions{align-items:flex-start;flex-direction:column;gap:14px}
}
@media(max-width:640px){
  .home-page .section-heading{margin-bottom:27px}
  .home-page .category-section{padding:58px 0 48px}
  .home-page .home-audio-campaign{padding:8px 0 56px}
  .home-page .section--soft{padding:60px 0}
  .home-page .story-section{padding:62px 0 54px}
  .home-page .brand-promise{padding:8px 0 56px}
  .home-page .brand-promise + .section{padding:60px 0}
  .home-page .newsletter-section{padding:0 0 56px}
  .home-audio-campaign .container{width:100%}
  .home-audio-campaign__inner{min-height:610px;border-radius:0;align-items:flex-start;background-image:linear-gradient(180deg,rgba(4,5,24,.9) 0%,rgba(4,5,24,.55) 42%,rgba(4,5,24,.05) 72%,rgba(4,5,24,.2) 100%),url("/assets/campaigns/soundcore-r50i-nc-immersive-banner.jpg");background-size:auto 100%;background-position:67% center;box-shadow:none}
  .home-audio-campaign__copy{width:auto;margin:0;padding:48px 24px}
  .home-audio-campaign h2{max-width:340px;font-size:43px}
  .home-audio-campaign h2>span{font-size:clamp(34px,10.4vw,43px)}
  .home-audio-campaign p{max-width:335px;font-size:12px}
  .home-audio-campaign__actions{margin-top:24px}
  .home-audio-campaign__actions>span{font-size:10px}
}

/* Homepage hero: left-aligned brand message. */
@media(max-width:900px){
  .home-page .hero{height:100vh;height:100dvh;min-height:620px;overflow:hidden}
  .home-page .hero__grid{height:100%;padding:calc(var(--header-h) + 28px) 0 32px;display:flex;align-items:center;justify-content:flex-start}
  .home-page .hero__copy{padding:0;max-width:720px;align-items:flex-start;text-align:left}
  .home-page .hero__eyebrow{justify-content:flex-start}
  .home-page .hero h1,.home-page .hero__copy>p{text-align:left}
  .home-page .hero__actions{align-self:auto;align-items:flex-start}
  .home-page .hero__actions .button{width:auto}
  .home-page .hero__proof{justify-content:flex-start}
  .mobile-app-promo{display:block;padding:54px 0;background:#f7f7fb}
  .mobile-app-promo__inner{padding:30px;border:1px solid #e2e0ed;border-radius:25px;display:grid;grid-template-columns:58px 1fr;align-items:center;gap:18px;background:radial-gradient(circle at 92% 8%,rgba(129,120,242,.15),transparent 35%),#fff;box-shadow:0 10px 28px rgba(31,25,78,.06)}
  .mobile-app-promo__icon{width:58px;height:58px;border-radius:18px;display:grid;place-items:center;color:#fff;background:linear-gradient(145deg,#8178f2,#342a99)}
  .mobile-app-promo__icon svg{width:25px}
  .mobile-app-promo__inner>div:nth-child(2){min-width:0}
  .mobile-app-promo h2{max-width:650px;margin:8px 0 9px;font-size:clamp(25px,4.8vw,38px);line-height:1.12}
  .mobile-app-promo p{max-width:590px;margin:0;color:var(--muted);font-size:11px;line-height:1.65}
  .mobile-app-promo__stores{grid-column:1/-1;display:grid;grid-template-columns:1fr 1fr;gap:9px}
  .mobile-app-promo__stores>span{min-height:54px;padding:0 16px;border-radius:14px;display:grid;grid-template-columns:23px 1fr;grid-template-rows:auto auto;align-content:center;column-gap:9px;color:#fff;background:#17134f}
  .mobile-app-promo__stores svg{grid-row:1/-1;width:21px;align-self:center}
  .mobile-app-promo__stores small{font-size:7px;color:#aaa6c8}
  .mobile-app-promo__stores strong{font-size:11px}
}
@media(max-width:640px){
  .home-page .hero{min-height:600px}
  .home-page .hero__grid{padding:calc(var(--header-h) + 18px) 0 24px}
  .home-page .hero h1{font-size:clamp(43px,13vw,58px);margin:15px 0 18px}
  .home-page .hero__copy>p{font-size:14px;line-height:1.65}
  .home-page .hero__actions{width:100%;margin:25px 0 28px}
  .home-page .hero__actions .button{width:100%}
  .mobile-app-promo{padding:38px 0}
  .mobile-app-promo__inner{padding:23px;grid-template-columns:48px 1fr;gap:14px;border-radius:21px}
  .mobile-app-promo__icon{width:48px;height:48px;border-radius:15px}
  .mobile-app-promo h2{font-size:25px}
  .product-card h3{min-height:0!important;overflow:hidden;white-space:nowrap;line-height:1.42}
  .product-card h3 a{display:block;overflow:hidden;white-space:nowrap;-webkit-mask-image:linear-gradient(90deg,#000 0,#000 calc(100% - 28px),transparent 100%);mask-image:linear-gradient(90deg,#000 0,#000 calc(100% - 28px),transparent 100%)}
  .product-card__meta{gap:5px;font-size:10px;letter-spacing:.045em}
  .product-card__points{padding-left:4px;gap:3px}
  .product-card__points svg{width:9px;height:9px}
  .mobile-app-promo__stores{grid-template-columns:1fr}
}

/* Storefront product-card customization controls. */
.product-card-customizer__form{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.product-card-customizer__form .switch-row{min-height:78px;padding:12px 14px;border:1px solid var(--line);border-radius:13px;background:#fafafe}
.product-card-customizer__form .button{grid-column:1/-1;margin-top:4px}
.product-card-customizer__note{padding:16px 0;border-top:1px solid var(--line);display:flex;align-items:flex-start;gap:12px}
.product-card-customizer__note:first-of-type{border-top:0}
.product-card-customizer__note>span{width:40px;height:40px;flex:none;border-radius:12px;display:grid;place-items:center;color:var(--brand);background:#eeedff}
.product-card-customizer__note>span svg{width:18px}
.product-card-customizer__note>div{display:flex;flex-direction:column;gap:4px}
.product-card-customizer__note strong{font-size:10px}
.product-card-customizer__note p{margin:0;color:var(--muted);font-size:11px;line-height:1.6}
@media(max-width:700px){
  .product-card-customizer__form{grid-template-columns:1fr}
  .product-card-customizer__form .button{grid-column:auto}
}

@media(max-width:640px){
  .shop-hero{background-image:linear-gradient(90deg,rgba(13,10,57,.99) 0%,rgba(18,14,72,.92) 52%,rgba(18,14,72,.48) 72%,rgba(13,10,57,.12) 100%),url("/assets/hero/sliq-shop-flatlay-hero-v2.png");background-size:100% 100%,cover;background-position:center,right center}
  .shop-hero__heading{width:100%}
  .shop-hero__heading>div:first-child{max-width:72%}
}

/* Customer dashboard insight rail. */
.customer-app-main .account-insight-strip{
  grid-template-columns:repeat(8,minmax(0,1fr));
  gap:10px;
  margin-bottom:20px;
}
.customer-app-main .account-insight-card{
  --stat-accent:#5148d8;
  --stat-soft:#f3f1ff;
  min-width:0;
  min-height:132px;
  padding:16px 16px 17px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  text-align:left;
  color:#fff;
  background:
    radial-gradient(130% 130% at 100% 0%,rgba(255,255,255,.28) 0%,rgba(255,255,255,0) 48%),
    linear-gradient(145deg,color-mix(in srgb,var(--stat-accent) 82%,#fff) 0%,var(--stat-accent) 52%,color-mix(in srgb,var(--stat-accent) 74%,#000) 100%);
  box-shadow:0 12px 26px color-mix(in srgb,var(--stat-accent) 32%,transparent);
  position:relative;
  overflow:hidden;
  isolation:isolate;
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.customer-app-main .account-insight-card:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.4);
  box-shadow:0 18px 40px color-mix(in srgb,var(--stat-accent) 44%,transparent);
}
.customer-app-main .account-insight-card__icon{
  position:absolute;
  right:-12px;
  bottom:-16px;
  z-index:0;
  width:auto;
  height:auto;
  border-radius:0;
  background:none;
  box-shadow:none;
  color:#fff;
  pointer-events:none;
  -webkit-mask-image:linear-gradient(to top,#000 42%,rgba(0,0,0,0) 100%);
  mask-image:linear-gradient(to top,#000 42%,rgba(0,0,0,0) 100%);
  animation:insightIconRise .85s cubic-bezier(.22,.61,.36,1);
  transition:transform .5s cubic-bezier(.22,.61,.36,1);
}
.customer-app-main .account-insight-card__icon svg{
  width:112px;
  height:112px;
  stroke-width:1.2;
  opacity:.2;
  transform:rotate(-14deg);
  transition:opacity .5s ease;
}
.customer-app-main .account-insight-card--notifications .account-insight-card__icon svg{
  transform:rotate(-24deg);
}
@keyframes insightIconRise{
  from{opacity:0;transform:translateY(28px)}
  to{opacity:1;transform:translateY(0)}
}
.customer-app-main .account-insight-card:hover .account-insight-card__icon{
  transform:translateY(-7px) scale(1.05);
}
.customer-app-main .account-insight-card:hover .account-insight-card__icon svg{
  opacity:.3;
}
.customer-app-main .account-insight-card__arrow{
  position:absolute;
  top:16px;
  right:16px;
  z-index:2;
  width:15px;
  height:15px;
  color:#fff;
  opacity:.8;
  transition:transform .22s ease,color .22s ease,opacity .22s ease;
}
.customer-app-main .account-insight-card:hover .account-insight-card__arrow{
  transform:translate(2px,-2px);
  color:#fff;
  opacity:1;
}
.customer-app-main .account-insight-card strong{
  position:relative;
  z-index:1;
  margin:5px 0 0;
  overflow:hidden;
  color:#fff;
  font:800 30px/1 var(--font-display);
  text-overflow:ellipsis;
  white-space:nowrap;
}
.customer-app-main .account-insight-card small{
  position:relative;
  z-index:1;
  margin-top:0;
  overflow:hidden;
  color:rgba(255,255,255,.95);
  font-size:13px;
  font-weight:700;
  line-height:1.2;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.customer-app-main .account-insight-card em{
  position:relative;
  z-index:1;
  margin-top:3px;
  overflow:hidden;
  color:rgba(255,255,255,.72);
  font-size:10px;
  font-style:normal;
  font-weight:600;
  line-height:1.2;
  letter-spacing:.05em;
  text-transform:uppercase;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.customer-app-main .account-insight-card--orders{--stat-accent:#5148d8;--stat-soft:#f1efff}
.customer-app-main .account-insight-card--owned{--stat-accent:#147fb5;--stat-soft:#eaf7fd}
.customer-app-main .account-insight-card--coverage{--stat-accent:#138c65;--stat-soft:#e8f8f2}
.customer-app-main .account-insight-card--expiring{--stat-accent:#b7791f;--stat-soft:#fff5df}
.customer-app-main .account-insight-card--claims{--stat-accent:#9b4bb2;--stat-soft:#f8edfc}
.customer-app-main .account-insight-card--notifications{--stat-accent:#2f6fd6;--stat-soft:#edf4ff}
.customer-app-main .account-insight-card--wishlist{--stat-accent:#c83f68;--stat-soft:#fff0f5}
.customer-app-main .account-insight-card--points{--stat-accent:#94710f;--stat-soft:#fff8df}

@media(max-width:1280px){
  .customer-app-main .account-insight-strip{
    gap:8px;
  }
  .customer-app-main .account-insight-card{
    min-height:124px;
    padding:14px 13px 15px;
    border-radius:16px;
  }
  .customer-app-main .account-insight-card__icon svg{
    width:96px;
    height:96px;
  }
  .customer-app-main .account-insight-card strong{
    font-size:26px;
  }
  .customer-app-main .account-insight-card small{
    font-size:12px;
  }
}

@media(max-width:1180px){
  .customer-app-main .account-insight-strip{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
}

@media(max-width:700px){
  .customer-app-main .account-insight-strip{
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:6px;
  }
  .customer-app-main .account-insight-card{
    min-height:72px;
    padding:9px 8px 9px;
    border-radius:12px;
  }
  .customer-app-main .account-insight-card strong{
    margin-top:2px;
    font-size:18px;
  }
  .customer-app-main .account-insight-card small{
    font-size:8.5px;
    letter-spacing:0;
  }
  .customer-app-main .account-insight-card em{
    display:none;
  }
  .customer-app-main .account-insight-card__arrow{
    display:none;
  }
  .customer-app-main .account-insight-card__icon{
    right:-8px;
    bottom:-10px;
  }
  .customer-app-main .account-insight-card__icon svg{
    width:58px;
    height:58px;
  }
}
