:root {
  --ink: #f7f5ff;
  --muted: #a6a1b6;
  --soft: #6f687f;
  --surface: rgba(19, 15, 27, .76);
  --surface-solid: #130f1b;
  --surface-2: #1b1427;
  --line: rgba(255, 255, 255, .09);
  --line-bright: rgba(199, 162, 255, .25);
  --canvas: #09070d;
  --canvas-2: #100a16;
  --violet: #8b5cf6;
  --violet-light: #b491ff;
  --blue: #48a4ff;
  --gradient: linear-gradient(110deg, #985eff 0%, #b677ff 42%, #4aabff 100%);
  --shadow: 0 18px 70px rgba(0, 0, 0, .36);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; color: var(--ink); background: var(--canvas); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; overflow-x: hidden; }
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: -3; opacity: .42; background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to bottom, black, transparent 75%); }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.page-glow { position: fixed; width: 580px; height: 580px; border-radius: 50%; z-index: -2; filter: blur(80px); opacity: .16; pointer-events: none; }
.glow-one { background: #7c3aed; top: -190px; left: -170px; }
.glow-two { background: #147ee5; right: -240px; top: 390px; opacity: .1; }
.section-shell { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }

.site-header { width: min(1210px, calc(100% - 40px)); height: 62px; display: flex; align-items: center; gap: 28px; padding: 0 18px; position: sticky; top: 14px; z-index: 20; margin: 14px auto 0; background: rgba(14, 10, 20, .74); border: 1px solid var(--line); border-radius: 17px; box-shadow: 0 12px 50px rgba(0,0,0,.24); backdrop-filter: blur(18px); flex-wrap: wrap; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 9px; font-size: 14px; font-weight: 650; letter-spacing: -.25px; }
.brand img { width: 31px; height: 31px; object-fit: cover; border-radius: 50%; border: 1px solid rgba(180,145,255,.3); }
.brand b { font-weight: 500; color: var(--violet-light); }
.main-nav { display: flex; align-items: center; gap: 3px; margin: auto; }
.main-nav a { padding: 8px 11px; color: var(--muted); font-size: 13px; border-radius: 8px; transition: .2s ease; }
.main-nav a:hover, .main-nav a.active { background: rgba(255,255,255,.07); color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 5px; }
.icon-button, .cart-button, .menu-button { display: grid; place-items: center; width: 34px; height: 34px; color: var(--muted); background: transparent; border-radius: 9px; transition: .2s ease; }
.icon-button { font-size: 24px; line-height: 1; }
.icon-button:hover, .cart-button:hover, .menu-button:hover { background: rgba(255,255,255,.08); color: var(--ink); }
.currency-picker { position: relative; margin-inline: 3px; }
.currency-picker::after { content: "⌄"; position: absolute; right: 8px; top: 4px; pointer-events: none; color: var(--soft); font-size: 13px; }
.currency-picker select { appearance: none; min-width: 76px; padding: 7px 21px 7px 9px; color: var(--ink); border: 1px solid var(--line); border-radius: 9px; outline: 0; background: rgba(255,255,255,.035); font-size: 12px; font-weight: 700; cursor: pointer; }
.currency-picker option { background: var(--surface-solid); }
.cart-button { position: relative; font-size: 22px; }
.cart-count { position: absolute; top: 1px; right: 0; min-width: 16px; height: 16px; padding: 0 4px; display: grid; place-items: center; color: #121019; background: var(--violet-light); border-radius: 99px; font-size: 10px; font-weight: 800; }
.auth-button { 
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: auto;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  color: var(--ink);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.auth-button:hover {
  border-color: var(--violet-light);
  background: rgba(139,92,246,.15);
  transform: translateY(-1px);
}
.auth-button #userIcon {
  font-size: 16px;
}
.auth-button #userLabel {
  font-size: 13px;
  font-weight: 600;
}
.menu-button { display: none; font-size: 18px; }

.view { display: none; animation: fadeIn .4s ease both; }
.view.is-active { display: block; }
.view.is-exiting { animation: fadeOut .3s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeOut { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(-8px); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.hero-shell { min-height: 610px; position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; overflow: hidden; padding: 78px 90px 62px; border: 1px solid var(--line); border-radius: 0 0 30px 30px; border-top: 0; background: linear-gradient(120deg, rgba(26,15,32,.72), rgba(9,7,13,.17)); }
.hero-grid { position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0 24.5%, rgba(201,168,255,.075) 24.5% 24.65%, transparent 24.65% 49.5%, rgba(201,168,255,.075) 49.5% 49.65%, transparent 49.65% 74.5%, rgba(201,168,255,.075) 74.5% 74.65%, transparent 74.65%); mask-image: linear-gradient(90deg, black, black 65%, transparent); pointer-events: none; }
.hero-grid::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 33% 44%, rgba(143,67,255,.31), transparent 29%), linear-gradient(to bottom, transparent, var(--canvas)); }
.hero-copy, .hero-art { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 13px; color: var(--violet-light); text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 800; }
.eyebrow i { display: inline-block; width: 6px; height: 6px; vertical-align: 1px; margin-right: 6px; border-radius: 99px; background: var(--violet-light); box-shadow: 0 0 14px var(--violet-light); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 660px; margin-bottom: 18px; letter-spacing: -.06em; font-size: clamp(46px, 6.1vw, 79px); line-height: .98; }
h1 span, h2 span { color: transparent; background: var(--gradient); background-clip: text; -webkit-background-clip: text; }
.hero-description { max-width: 535px; margin-bottom: 28px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.hero-actions { display: flex; gap: 10px; margin-bottom: 22px; }
.button { min-height: 46px; display: inline-flex; justify-content: center; align-items: center; gap: 10px; padding: 0 17px; border-radius: 11px; font-size: 13px; font-weight: 750; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #120d1a; background: var(--gradient); box-shadow: 0 9px 28px rgba(125, 70, 249, .29); }
.button-primary:hover { box-shadow: 0 13px 33px rgba(125, 70, 249, .43); }
.button-primary span { font-size: 17px; line-height: 0; }
.button-ghost { color: var(--ink); border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.button-ghost:hover { border-color: var(--line-bright); background: rgba(255,255,255,.065); }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px; padding: 0; margin: 0; list-style: none; color: var(--soft); font-size: 11px; }
.hero-points li::before { content: "✓"; margin-right: 6px; color: var(--violet-light); font-weight: 900; }
.hero-art { min-height: 340px; display: grid; place-items: center; }
.logo-stage { width: 236px; height: 236px; position: relative; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(177,142,255,.27); border-radius: 50%; background: radial-gradient(circle, rgba(123,70,210,.35), rgba(8,8,13,.1) 60%); box-shadow: inset 0 0 38px rgba(84,49,154,.3), 0 0 80px rgba(114,67,230,.15); }
.logo-stage::before { content: ""; position: absolute; inset: 13px; border: 1px dashed rgba(216,193,255,.25); border-radius: 50%; animation: spin 20s linear infinite; }
.logo-stage img { width: 172px; height: 172px; position: relative; z-index: 1; object-fit: cover; border-radius: 50%; mix-blend-mode: screen; }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit { position: absolute; border: 1px solid rgba(164,115,255,.18); border-radius: 50%; }
.orbit-a { width: 325px; height: 148px; transform: rotate(-24deg); }
.orbit-b { width: 290px; height: 290px; border-color: rgba(72,164,255,.12); }
.float-card { position: absolute; min-width: 130px; padding: 11px 13px; border: 1px solid var(--line-bright); border-radius: 12px; background: rgba(20,14,30,.78); box-shadow: var(--shadow); backdrop-filter: blur(8px); }
.float-card p { margin: 0 0 4px; color: var(--soft); font-size: 10px; }.float-card b { font-size: 12px; }.card-top { top: 22px; right: 0; }.card-bottom { bottom: 20px; left: 8px; }.tiny-icon { float: right; color: var(--violet-light); }.pulse-dot { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: #75efae; box-shadow: 0 0 10px #75efae; }
.ticker { display: flex; justify-content: center; gap: 34px; padding: 18px 20px; overflow: hidden; white-space: nowrap; color: var(--soft); border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); background: rgba(255,255,255,.018); font-size: 11px; }
.ticker span::first-letter { color: var(--violet-light); }

.content-section { padding-top: 106px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 29px; }.section-heading h2, .centered h2 { margin-bottom: 0; letter-spacing: -.045em; font-size: clamp(28px, 3.4vw, 42px); line-height: 1; }.section-heading .eyebrow { margin-bottom: 10px; }.section-subtitle { margin: 11px 0 0; color: var(--muted); font-size: 14px; }
.text-link { padding: 0; color: var(--violet-light); background: transparent; font-size: 12px; font-weight: 750; }.text-link span { margin-left: 4px; font-size: 16px; }.text-link:hover { color: var(--ink); }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.category-card { min-height: 148px; position: relative; overflow: hidden; padding: 18px; text-align: left; color: var(--ink); border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(145deg, rgba(34,26,45,.72), rgba(16,12,23,.74)); transition: .25s ease; }.category-card:hover { transform: translateY(-4px); border-color: var(--line-bright); box-shadow: 0 16px 33px rgba(0,0,0,.18); }.category-card::after { content: ""; position: absolute; width: 100px; height: 100px; right: -40px; bottom: -54px; border-radius: 50%; background: var(--category-color, var(--violet)); opacity: .17; filter: blur(10px); }.category-icon { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 23px; border-radius: 10px; background: rgba(255,255,255,.075); font-size: 19px; }.category-card h3 { margin-bottom: 4px; font-size: 14px; }.category-card p { margin: 0; color: var(--soft); font-size: 11px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }.compact-grid { grid-template-columns: repeat(3, 1fr); }
.product-card { min-height: 210px; position: relative; display: flex; flex-direction: column; padding: 17px; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: linear-gradient(145deg, rgba(28,22,39,.72), rgba(13,10,19,.82)); transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), border-color .3s ease, background .3s ease, box-shadow .3s ease; }.product-card:hover { transform: translateY(-5px) scale(1.02); border-color: rgba(175,137,255,.35); background: linear-gradient(145deg, rgba(43,31,62,.75), rgba(15,11,22,.9)); box-shadow: 0 12px 30px rgba(139,92,246,.15); }.product-card::before { content: ""; position: absolute; width: 130px; height: 130px; top: -78px; right: -55px; border-radius: 50%; background: var(--product-glow, #7147c8); opacity: .15; filter: blur(10px); }.product-card-top { display: flex; justify-content: space-between; align-items: start; position: relative; }.product-emoji { display: grid; place-items: center; width: 39px; height: 39px; border: 1px solid rgba(255,255,255,.08); border-radius: 11px; background: rgba(255,255,255,.055); font-size: 19px; }.product-category { max-width: 72%; padding: 5px 8px; overflow: hidden; color: var(--violet-light); border: 1px solid rgba(180,145,255,.15); border-radius: 99px; background: rgba(139,92,246,.08); text-overflow: ellipsis; white-space: nowrap; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }.product-card h3 { display: -webkit-box; margin: 17px 0 7px; overflow: hidden; font-size: 14px; line-height: 1.28; letter-spacing: -.015em; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }.product-description { display: -webkit-box; min-height: 32px; margin-bottom: 14px; overflow: hidden; color: var(--soft); font-size: 11px; line-height: 1.45; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }.product-bottom { display: flex; align-items: end; justify-content: space-between; gap: 10px; margin-top: auto; }.price-label { margin-bottom: 3px; color: var(--soft); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }.price { font-size: 18px; letter-spacing: -.04em; }.add-button { width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 auto; color: var(--ink); border: 1px solid var(--line); border-radius: 9px; background: rgba(255,255,255,.04); font-size: 19px; transition: .2s ease; }.add-button:hover { color: #160d21; border-color: transparent; background: var(--violet-light); }
.brand-banner { min-height: 295px; position: relative; display: flex; align-items: center; overflow: hidden; margin-top: 105px; padding: 48px 62px; border: 1px solid var(--line-bright); border-radius: 22px; background: #121018; }.banner-background { position: absolute; inset: 0; opacity: .34; background: linear-gradient(90deg, #150c23 0%, rgba(21,12,35,.82) 40%, rgba(9,8,12,.1) 100%), url("assets/obsidian.gif") center/cover; }.banner-content { max-width: 590px; position: relative; z-index: 1; }.banner-content h2 { margin-bottom: 13px; letter-spacing: -.045em; font-size: clamp(28px, 4vw, 48px); line-height: 1; }.banner-content p:not(.eyebrow) { max-width: 500px; margin-bottom: 22px; color: var(--muted); font-size: 14px; line-height: 1.6; }.banner-logo { width: 230px; height: 230px; position: absolute; right: 70px; object-fit: cover; border-radius: 50%; opacity: .74; mix-blend-mode: screen; filter: drop-shadow(0 0 36px rgba(125,89,255,.4)); }
.centered { display: block; text-align: center; }.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }.benefit-grid article { padding: 25px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); }.benefit-grid span { display: block; margin-bottom: 33px; color: var(--violet-light); font-size: 11px; font-weight: 800; }.benefit-grid h3 { margin-bottom: 9px; font-size: 15px; }.benefit-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.catalog-hero { padding: 82px 0 42px; }.catalog-hero h1, .simple-page h1 { margin-bottom: 13px; font-size: clamp(43px, 5.4vw, 67px); }.catalog-hero > p:not(.eyebrow) { max-width: 520px; color: var(--muted); font-size: 14px; line-height: 1.6; }.catalog-search { width: min(610px, 100%); height: 51px; display: flex; align-items: center; gap: 11px; margin-top: 26px; padding: 0 12px 0 17px; border: 1px solid var(--line-bright); border-radius: 12px; background: rgba(22,15,31,.7); box-shadow: 0 10px 35px rgba(0,0,0,.13); position: relative; }.catalog-search span { color: var(--violet-light); font-size: 23px; }.catalog-search input, .dialog-input input { min-width: 0; flex: 1; color: var(--ink); border: 0; outline: 0; background: transparent; font-size: 13px; }.catalog-search input::placeholder, .dialog-input input::placeholder { color: var(--soft); }.catalog-search kbd, .dialog-hint kbd { padding: 2px 5px; color: var(--soft); border: 1px solid var(--line); border-radius: 4px; font-size: 10px; }.search-suggestions { position: absolute; top: 100%; left: 0; right: 0; margin-top: 8px; padding: 8px 0; display: none; border: 1px solid var(--line-bright); border-radius: 12px; background: rgba(22,15,31,.95); box-shadow: 0 15px 40px rgba(0,0,0,.3); z-index: 100; max-height: 300px; overflow-y: auto; }.search-suggestions.show { display: block; animation: slideDown .2s ease; }.search-suggestion { padding: 10px 16px; cursor: pointer; transition: background .2s ease; display: flex; align-items: center; gap: 10px; }.search-suggestion:hover { background: rgba(139,92,246,.15); }.search-suggestion .emoji { font-size: 18px; }.search-suggestion .name { color: var(--ink); font-size: 13px; }.search-suggestion .category { color: var(--muted); font-size: 11px; margin-left: auto; }.catalog-layout { display: grid; grid-template-columns: 202px minmax(0, 1fr); gap: 30px; padding-bottom: 90px; }.catalog-filter { position: sticky; top: 91px; align-self: start; }.filter-label { margin-bottom: 10px; color: var(--soft); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }.filter-button { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 9px 10px; color: var(--muted); border-radius: 8px; background: transparent; text-align: left; font-size: 12px; transition: .2s ease; }.filter-button:hover { color: var(--ink); background: rgba(255,255,255,.04); }.filter-button.active { color: var(--ink); background: rgba(139,92,246,.15); }.filter-button b { color: var(--soft); font-size: 10px; font-weight: 650; }.filter-button.active b { color: var(--violet-light); }.results-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 13px; }.results-toolbar p { margin: 0; color: var(--muted); font-size: 12px; }.results-toolbar label { display: flex; align-items: center; gap: 7px; color: var(--soft); font-size: 11px; }.results-toolbar select { color: var(--ink); border: 1px solid var(--line); border-radius: 7px; outline: 0; background: var(--surface-solid); padding: 6px 7px; font-size: 11px; }.active-filter-row { min-height: 23px; margin-bottom: 10px; }.filter-chip { display: inline-flex; align-items: center; gap: 5px; padding: 4px 8px; color: var(--violet-light); border: 1px solid rgba(180,145,255,.2); border-radius: 99px; background: rgba(139,92,246,.09); font-size: 10px; }.filter-chip button { color: inherit; background: transparent; padding: 0 0 0 3px; font-size: 14px; }.empty-results { grid-column: 1/-1; padding: 55px 20px; text-align: center; border: 1px dashed var(--line-bright); border-radius: 16px; }.empty-results span { display: block; margin-bottom: 10px; font-size: 30px; }.empty-results h3 { margin-bottom: 6px; }.empty-results p { margin: 0; color: var(--muted); font-size: 12px; }

.simple-page { min-height: 600px; padding-top: 90px; padding-bottom: 100px; position: relative; z-index: 1; }.page-lead { max-width: 610px; color: var(--muted); font-size: 15px; line-height: 1.65; }.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 47px; }.info-grid article { min-height: 205px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); }.info-icon { width: 37px; height: 37px; display: grid; place-items: center; margin-bottom: 28px; color: var(--violet-light); border-radius: 10px; background: rgba(139,92,246,.12); font-weight: 800; }.info-grid h3 { margin-bottom: 8px; font-size: 15px; }.info-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }.notice-card { display: flex; justify-content: space-between; align-items: center; gap: 25px; margin-top: 20px; padding: 30px; border: 1px solid var(--line-bright); border-radius: 18px; background: linear-gradient(110deg, rgba(91,47,168,.15), rgba(23,18,32,.7)); }.notice-card .eyebrow { margin-bottom: 9px; }.notice-card h2 { margin-bottom: 8px; font-size: 23px; }.notice-card p:not(.eyebrow) { max-width: 500px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.faq-page { max-width: 950px; }.faq-list { margin-top: 42px; border-top: 1px solid var(--line); }.faq-item { border-bottom: 1px solid var(--line); }.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 4px; color: var(--ink); text-align: left; font-size: 14px; font-weight: 700; cursor: pointer; }.faq-question span { color: var(--violet-light); font-size: 21px; font-weight: 400; flex-shrink: 0; }.faq-question span:last-child { transition: transform .3s ease; }.faq-answer { display: none; padding: 0 4px 20px; }.faq-answer p { max-width: 750px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }.faq-item.open .faq-answer { display: block; }.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }.support-strip { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 55px; padding: 25px 29px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.025); }.support-strip > div { position: relative; padding-left: 45px; }.support-strip span { position: absolute; top: -2px; left: 0; color: var(--violet-light); font-size: 26px; }.support-strip h3 { margin: 0 0 5px; font-size: 15px; }.support-strip p { margin: 0; color: var(--muted); font-size: 12px; }

.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 26px; padding-bottom: 30px; border-top: 1px solid var(--line); color: var(--soft); font-size: 11px; }.site-footer p { margin: 0; }.site-footer > div { display: flex; gap: 15px; }.site-footer a:hover { color: var(--violet-light); }
.cart-drawer { width: min(410px, 100%); position: fixed; top: 0; right: 0; bottom: 0; display: flex; flex-direction: column; z-index: 50; padding: 22px; visibility: hidden; border-left: 1px solid var(--line); background: #100c17; box-shadow: -25px 0 70px rgba(0,0,0,.38); transform: translateX(104%); transition: transform .28s ease, visibility .28s ease; }.cart-drawer.open { visibility: visible; transform: translateX(0); }.drawer-backdrop { position: fixed; inset: 0; z-index: 45; visibility: hidden; opacity: 0; background: rgba(0,0,0,.56); backdrop-filter: blur(2px); transition: opacity .28s ease, visibility .28s ease; }.drawer-backdrop.open { visibility: visible; opacity: 1; }.drawer-header { display: flex; justify-content: space-between; align-items: start; padding-bottom: 17px; border-bottom: 1px solid var(--line); }.drawer-header .eyebrow { margin-bottom: 5px; }.drawer-header h2 { margin: 0; font-size: 22px; letter-spacing: -.035em; }.drawer-header h2 span { color: var(--violet-light); font-size: 14px; }.cart-items { flex: 1; overflow-y: auto; padding: 12px 0; }.cart-item { display: grid; grid-template-columns: 39px 1fr auto; gap: 10px; align-items: start; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.055); }.cart-item .product-emoji { width: 35px; height: 35px; font-size: 16px; }.cart-item h3 { margin: 0 0 4px; font-size: 12px; line-height: 1.3; }.cart-item p { margin: 0; color: var(--violet-light); font-size: 11px; font-weight: 700; }.quantity-control { display: flex; align-items: center; gap: 7px; margin-top: 7px; }.quantity-control button { width: 19px; height: 19px; display: grid; place-items: center; color: var(--muted); border-radius: 5px; background: rgba(255,255,255,.06); font-size: 13px; }.quantity-control span { min-width: 10px; color: var(--muted); text-align: center; font-size: 11px; }.remove-item { padding: 0; color: var(--soft); background: transparent; font-size: 18px; }.remove-item:hover { color: #ff96b2; }.cart-empty { display: none; flex: 1; padding-top: 105px; text-align: center; }.cart-empty.visible { display: block; }.cart-empty > span { display: grid; place-items: center; width: 49px; height: 49px; margin: 0 auto 16px; color: var(--violet-light); border: 1px solid var(--line-bright); border-radius: 50%; font-size: 25px; }.cart-empty h3 { margin-bottom: 6px; font-size: 16px; }.cart-empty p { max-width: 220px; margin: 0 auto 16px; color: var(--muted); font-size: 12px; line-height: 1.55; }.cart-footer { padding-top: 17px; border-top: 1px solid var(--line); }.cart-total { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }.cart-total span { color: var(--muted); font-size: 12px; }.cart-total strong { font-size: 22px; letter-spacing: -.04em; }.checkout-button { width: 100%; }.cart-footer > p { margin: 10px 0 0; color: var(--soft); text-align: center; font-size: 10px; }.cart-footer .button:disabled { cursor: not-allowed; opacity: .4; transform: none; box-shadow: none; }
.search-dialog { width: min(610px, calc(100% - 32px)); max-height: min(620px, calc(100dvh - 40px)); padding: 19px; overflow: auto; color: var(--ink); border: 1px solid var(--line-bright); border-radius: 18px; background: #16101f; box-shadow: 0 25px 90px rgba(0,0,0,.5); }.search-dialog::backdrop { background: rgba(0,0,0,.65); backdrop-filter: blur(3px); }.dialog-title { display: flex; justify-content: space-between; align-items: start; }.dialog-title .eyebrow { margin-top: 6px; }.dialog-input { display: flex; align-items: center; gap: 10px; margin-top: 7px; padding: 0 13px; border: 1px solid var(--line-bright); border-radius: 10px; background: rgba(255,255,255,.04); }.dialog-input span { color: var(--violet-light); font-size: 22px; }.dialog-input input { height: 45px; }.quick-results { min-height: 90px; margin-top: 11px; }.quick-result { width: 100%; display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; padding: 9px; color: var(--ink); border-radius: 10px; background: transparent; text-align: left; }.quick-result:hover { background: rgba(255,255,255,.055); }.quick-result .product-emoji { width: 33px; height: 33px; font-size: 15px; }.quick-result h3 { margin: 0 0 3px; font-size: 12px; }.quick-result p { margin: 0; color: var(--soft); font-size: 10px; }.quick-result b { color: var(--violet-light); font-size: 12px; }.quick-placeholder { padding: 25px 0; color: var(--soft); text-align: center; font-size: 12px; }.dialog-hint { margin: 8px 0 0; color: var(--soft); text-align: center; font-size: 10px; }.toast { position: fixed; left: 50%; bottom: 28px; z-index: 100; padding: 11px 14px; color: var(--ink); visibility: hidden; border: 1px solid var(--line-bright); border-radius: 10px; opacity: 0; background: rgba(29,20,41,.94); box-shadow: var(--shadow); transform: translate(-50%, 14px); transition: .25s ease; font-size: 12px; }.toast.show { visibility: visible; opacity: 1; transform: translate(-50%, 0); }

body.light { --ink: #1c1526; --muted: #655d70; --soft: #857c91; --surface: rgba(255,255,255,.8); --surface-solid: #fff; --surface-2: #f7f3fb; --line: rgba(57,31,80,.12); --line-bright: rgba(116,74,198,.28); --canvas: #f5f1f8; --canvas-2: #fff; --shadow: 0 18px 55px rgba(43,23,70,.12); }.light .site-header { background: rgba(255,255,255,.75); }.light .hero-shell { background: linear-gradient(120deg, rgba(241,231,255,.9), rgba(255,255,255,.45)); }.light .hero-grid::after { background: radial-gradient(circle at 33% 44%, rgba(155,85,244,.22), transparent 29%), linear-gradient(to bottom, transparent, var(--canvas)); }.light .product-card, .light .category-card { background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(247,242,251,.8)); }.light .cart-drawer, .light .search-dialog { background: #fcfaff; }.light .brand-banner { background: #1c1428; }.light .logo-stage { background: radial-gradient(circle, rgba(144,92,225,.3), rgba(255,255,255,.1) 60%); }.light .float-card { background: rgba(255,255,255,.78); }.light .ticker { background: rgba(255,255,255,.38); }.light .notice-card { background: linear-gradient(110deg, rgba(217,195,255,.45), rgba(255,255,255,.85)); }

@media (max-width: 920px) { .site-header { gap: 13px; }.main-nav { gap: 0; }.hero-shell { padding: 70px 55px 60px; }.category-grid { grid-template-columns: repeat(3,1fr); }.catalog-layout { grid-template-columns: 170px minmax(0,1fr); gap: 19px; }.product-grid, .compact-grid { grid-template-columns: repeat(2,1fr); }.brand-banner { padding-inline: 42px; }.banner-logo { width: 190px; height: 190px; right: 25px; }.benefit-grid { grid-template-columns: 1fr; }.benefit-grid article { min-height: 130px; }.benefit-grid span { margin-bottom: 18px; }.info-grid { grid-template-columns: 1fr; }.info-grid article { min-height: 150px; }.info-icon { margin-bottom: 17px; } }
@media (max-width: 700px) { .section-shell { width: min(100% - 30px, 1160px); }.site-header { width: calc(100% - 24px); height: 58px; top: 8px; margin-top: 8px; padding: 0 11px; }.brand span { display: none; }.main-nav { display: none; position: absolute; top: 65px; left: 0; right: 0; padding: 8px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-solid); box-shadow: var(--shadow); }.main-nav.open { display: grid; }.main-nav a { padding: 10px; }.menu-button { display: grid; }.currency-picker { margin: 0; }.currency-picker select { min-width: 68px; font-size: 11px; }.header-actions { margin-left: auto; }.header-actions .icon-button:first-child { display: none; }.hero-shell { min-height: 660px; grid-template-columns: 1fr; padding: 60px 26px 34px; }.hero-copy { align-self: start; }.hero-art { min-height: 250px; align-self: end; }.hero-art .logo-stage { width: 177px; height: 177px; }.logo-stage img { width: 132px; height: 132px; }.orbit-a { width: 245px; height: 105px; }.orbit-b { width: 220px; height: 220px; }.float-card { min-width: 116px; padding: 9px 10px; }.card-top { top: 2px; right: 3%; }.card-bottom { bottom: 0; left: 3%; } h1 { font-size: clamp(42px, 12vw, 62px); }.hero-description { font-size: 13px; }.hero-actions { flex-wrap: wrap; }.hero-points { gap: 11px; font-size: 10px; }.ticker { justify-content: start; gap: 24px; padding: 14px 16px; overflow-x: auto; }.content-section { padding-top: 70px; }.section-heading { align-items: start; flex-direction: column; margin-bottom: 20px; }.section-heading h2 { font-size: 31px; }.category-grid { grid-template-columns: repeat(2,1fr); gap: 9px; }.category-card { min-height: 132px; padding: 14px; }.category-icon { margin-bottom: 17px; }.product-grid, .compact-grid { grid-template-columns: 1fr; gap: 10px; }.product-card { min-height: 190px; }.brand-banner { min-height: 385px; padding: 31px 27px 190px; margin-top: 70px; }.banner-logo { width: 170px; height: 170px; top: auto; right: 50%; bottom: 5px; transform: translateX(50%); }.benefit-section { padding-bottom: 5px; }.catalog-hero { padding: 60px 0 29px; }.catalog-hero h1, .simple-page h1 { font-size: 43px; }.catalog-layout { display: block; }.catalog-filter { position: static; margin: 0 -1px 20px; }.catalog-filter > div { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 4px; }.filter-button { width: auto; flex: 0 0 auto; gap: 7px; border: 1px solid var(--line); }.results-toolbar { align-items: start; flex-direction: column; }.catalog-results { padding-bottom: 70px; }.simple-page { min-height: 580px; padding-top: 60px; padding-bottom: 75px; }.page-lead { font-size: 13px; }.notice-card, .support-strip { align-items: start; flex-direction: column; }.support-strip { gap: 17px; }.site-footer { align-items: start; flex-direction: column; padding-top: 23px; }.site-footer .brand span { display: inline; }.site-footer > div { flex-wrap: wrap; }.cart-drawer { padding: 18px; }.cart-footer { padding-bottom: max(3px, env(safe-area-inset-bottom)); } }
@media (max-width: 380px) { .header-actions { gap: 1px; }.currency-picker select { min-width: 60px; padding-left: 5px; }.site-header { padding-inline: 8px; }.category-grid { grid-template-columns: 1fr; }.hero-actions .button { width: 100%; }.hero-art { transform: scale(.92); } }
