:root {
  --bg: #090b0d;
  --card: #121518;
  --card-raised: #171b1f;
  --border: rgba(255, 255, 255, 0.085);
  --accent: #00f0ff;
  --green: #00a651;
  --yellow: #ffcc00;
  --red: #ff3b30;
  --text: #ffffff;
  --muted: rgba(226, 235, 240, 0.58);
  --radius-card: 1.15rem;
  --radius-btn: 0.7rem;
  --header-h: 72px;
  --nav-h: 72px;
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at 75% -10%, rgba(0,240,255,.07), transparent 28rem),
    var(--bg);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px;
}
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  user-select: none;
}

.app {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.desktop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 11, 13, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(145deg, #7af8ff 0%, #00e5f5 45%, #0088ff 100%);
  color: #031416; font-size: 22px; font-weight: 900;
  display: grid; place-items: center; flex-shrink: 0;
  box-shadow:0 8px 26px rgba(0,240,255,.18),inset 0 1px rgba(255,255,255,.6);
}
.brand-text { font-size: 19px; font-weight: 700; letter-spacing: -0.035em; line-height: 1; }
.brand-text b { font-weight: 900; color: var(--accent); }
.nav-links { display: none; gap: 0.25rem; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-btn);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
}
.nav-link:hover { background: rgba(255,255,255,0.05); color: #fff; }
.nav-link.active { background: rgba(255,255,255,0.1); color: #fff; }
.nav-link .badge {
  min-width: 16px; height: 16px; border-radius: 99px;
  background: var(--accent); color: #111; font-size: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.lang-btn {
  height:36px;padding:0 .65rem;border:1px solid var(--border);border-radius:var(--radius-btn);
  background:#11161a;color:#fff;font-size:11px;font-weight:800;max-width:130px;
}
.locale-controls{display:flex;align-items:center;gap:.35rem;position:relative}.locale-controls label{display:flex;align-items:center;gap:.25rem}.locale-controls .material-symbols-outlined{font-size:18px;color:var(--muted)}.fx-note{position:absolute;right:0;top:39px;white-space:nowrap;font-size:9px;color:var(--muted)}
.reservation-explainer,.order-status-focus{color:var(--muted);font-size:12px;line-height:1.6}.reservation-explainer{display:flex;gap:.5rem}.reservation-explainer .material-symbols-outlined{color:var(--accent)}
.order-status-focus{display:flex;flex-direction:column;gap:.2rem;padding:1rem;border:1px solid var(--border);border-radius:var(--radius);background:rgba(0,229,245,.04)}.order-status-focus strong{color:#fff;font-size:15px}
.legal-page{width:min(900px,100%);margin:0 auto;padding-top:3rem}.legal-page h1{font-size:clamp(2rem,5vw,4rem)}.legal-copy{white-space:pre-wrap;line-height:1.8;color:rgba(255,255,255,.75);padding:1.5rem;border:1px solid var(--border);border-radius:var(--radius);background:var(--panel)}

.layout { display: flex; flex: 1; min-height: 0; }
.filters {
  display: none;
  width: 16.5rem;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  background:linear-gradient(180deg,rgba(18,21,24,.96),rgba(10,12,14,.96));
  padding: 1.5rem 1rem;
  overflow: auto;
  scrollbar-width: thin;
}
.filters-intro { display:flex;gap:.7rem;align-items:center;padding:.2rem .25rem 1.2rem;border-bottom:1px solid var(--border);margin-bottom:1rem; }
.filters-intro strong,.filters-intro small { display:block; }
.filters-intro strong { font-size:12px;letter-spacing:-.01em; }.filters-intro small { color:var(--muted);font-size:9px;margin-top:3px; }
.filter-icon { width:34px;height:34px;border-radius:10px;display:grid;place-items:center;color:var(--accent);background:rgba(0,240,255,.08);border:1px solid rgba(0,240,255,.13); }
.filter-icon .material-symbols-outlined { font-size:18px; }
.filters h3 {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.filters-head {
  display: flex; justify-content: space-between; align-items: center;
  padding:.15rem .25rem .75rem; margin-bottom:.8rem;
}
.clear-btn { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4); }
.clear-btn:hover { color: #fff; }
.section-label {
  display: block; font-size: 10px; font-weight: 800; color: rgba(255,255,255,0.4);
  letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 0.5rem 0.25rem;
}
.cat-btn, .grade-btn {
  display: flex; align-items: center; gap: 0.75rem; width: 100%;
  padding: 0.66rem 0.72rem; border-radius: .65rem;
  font-size: 11px; font-weight: 650; color: rgba(231,239,243,.6);
  border: 1px solid transparent; text-align: left;
}
.cat-btn:hover, .grade-btn:hover { background: rgba(255,255,255,0.05); color: #fff; }
.cat-btn.active {
  background: linear-gradient(90deg,rgba(0,240,255,.13),rgba(0,240,255,.035)); color: #fff; font-weight: 800;
  border-color: rgba(0, 240, 255, 0.25);
  box-shadow:inset 3px 0 var(--accent);
}
.cat-btn.active .material-symbols-outlined { color: var(--accent); }
.grade-btn { justify-content: space-between; }
.grade-btn .check {
  width: 18px; height: 18px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.25);
  display: grid; place-items: center; font-size: 14px;
}
.grade-btn.active .check { background: var(--accent); border-color: var(--accent); color: #111; }
.price-row { display: flex; align-items: center; gap: 0.5rem; }
.price-row input {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.55rem 0.7rem; outline: none;
}
.price-row input:focus { border-color: rgba(0,240,255,0.5); }
.toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 1.25rem;
}
.switch {
  width: 40px; height: 22px; border-radius: 99px; background: rgba(255,255,255,0.15);
  position: relative; flex-shrink: 0;
}
.switch.on { background: var(--accent); }
.switch i {
  position: absolute; top: 2px; left: 2px; width: 18px; height: 18px;
  border-radius: 50%; background: #fff; transition: left 0.15s;
}
.switch.on i { left: 20px; }

.main {
  flex: 1; min-width: 0; overflow: auto;
  padding: .9rem;
}
.catalog-hero {
  position:relative;isolation:isolate;overflow:hidden;display:grid;gap:1.5rem;padding:2rem 1.35rem;margin-bottom:1.1rem;
  min-height:400px;border:1px solid rgba(146,222,230,.14);border-radius:1.4rem;
  background:linear-gradient(135deg,#111a1e 0%,#0d1114 56%,#101316 100%);
  box-shadow:inset 0 1px rgba(255,255,255,.05),0 24px 70px rgba(0,0,0,.2);
}
.hero-glow { position:absolute;z-index:-1;width:520px;height:520px;border-radius:50%;right:-170px;top:-240px;background:rgba(0,240,255,.12);filter:blur(80px); }
.hero-grid-pattern { position:absolute;z-index:-1;inset:0;opacity:.17;background-image:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);background-size:34px 34px;mask-image:linear-gradient(90deg,transparent 5%,#000 70%,transparent); }
.hero-copy { align-self:center;max-width:720px; }
.catalog-hero h1,.account-hero h1,.auth-shell h1 { margin:.65rem 0 .85rem;font-size:clamp(2.25rem,6vw,4.8rem);line-height:.96;letter-spacing:-.065em; }
.catalog-hero h1 em { color:var(--accent);font-style:normal;text-shadow:0 0 30px rgba(0,240,255,.16); }
.catalog-hero p,.account-hero p,.auth-shell p { margin:0;color:rgba(226,235,240,.65);line-height:1.7;font-size:clamp(.92rem,1.2vw,1.06rem);max-width:650px; }
.eyebrow { display:inline-flex;align-items:center;gap:.45rem;color:#82f7ff;font-size:10px;font-weight:900;letter-spacing:.18em; }
.eyebrow i { width:7px;height:7px;border-radius:50%;background:var(--accent);box-shadow:0 0 14px var(--accent); }
.hero-actions { display:flex;flex-wrap:wrap;gap:.65rem;margin:1.35rem 0; }
.hero-primary,.hero-secondary { height:46px;border-radius:.8rem;padding:0 1rem;display:inline-flex;align-items:center;gap:.55rem;font-size:12px;font-weight:800; }
.hero-primary { background:var(--accent);color:#032024;box-shadow:0 10px 30px rgba(0,240,255,.14); }
.hero-secondary { color:#fff;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.11); }
.hero-primary .material-symbols-outlined,.hero-secondary .material-symbols-outlined { font-size:18px; }
.trust-cues { display:flex;flex-wrap:wrap;gap:.65rem 1.1rem;align-content:center; }
.trust-cues span { display:flex;align-items:center;gap:.35rem;color:rgba(226,235,240,.62);font-size:10px;font-weight:650; }
.trust-cues .material-symbols-outlined { font-size:17px;color:var(--accent); }
.hero-showcase { display:none;position:relative;min-height:310px; }
.showcase-orbit { position:absolute;width:260px;height:260px;right:50%;top:50%;transform:translate(50%,-50%);border:1px solid rgba(0,240,255,.13);border-radius:50%;box-shadow:inset 0 0 80px rgba(0,240,255,.04),0 0 0 34px rgba(255,255,255,.012),0 0 0 68px rgba(255,255,255,.008);display:grid;place-items:center; }
.showcase-orbit span { width:100px;height:100px;border-radius:30px;background:linear-gradient(145deg,rgba(0,240,255,.2),rgba(0,115,255,.08));border:1px solid rgba(0,240,255,.25);display:grid;place-items:center;transform:rotate(-8deg);box-shadow:0 20px 50px rgba(0,0,0,.4); }
.showcase-orbit .material-symbols-outlined { font-size:46px;color:var(--accent); }
.showcase-card { position:absolute;padding:.8rem 1rem;border:1px solid rgba(255,255,255,.12);border-radius:1rem;background:rgba(20,26,29,.72);backdrop-filter:blur(16px);box-shadow:0 18px 40px rgba(0,0,0,.28); }
.showcase-card small { display:block;color:var(--muted);font-size:8px;font-weight:900;letter-spacing:.14em; }.showcase-card strong { display:block;font-size:2rem;letter-spacing:-.05em; }.showcase-card span { font-size:10px;color:var(--muted); }
.primary-metric { left:0;top:15%; }.category-metric { right:0;bottom:17%;display:flex;align-items:center;gap:.65rem; }.category-metric .material-symbols-outlined { color:var(--accent); }.category-metric strong { font-size:1.3rem; }
.pulse-metric { left:8%;bottom:2%;display:flex;align-items:center;gap:.45rem;padding:.55rem .8rem; }.pulse-metric i { width:7px;height:7px;border-radius:50%;background:#4ade80;box-shadow:0 0 10px #4ade80; }
.mobile-bar {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  margin-bottom: 1rem;
}
.pill {
  background: rgba(0,0,0,0.3); backdrop-filter: blur(10px);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 999px; padding: 0 1.1rem; height: 32px;
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 900; letter-spacing: 0.18em;
}
.count-label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; }
.mobile-filters { display:none; }
.chip {
  background: rgba(0,0,0,0.3); border: 1px solid rgba(0,240,255,0.35);
  color: rgba(0,240,255,0.9); border-radius: 999px; height: 32px;
  padding: 0 0.9rem; display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}
.search {
  width: 100%; max-width: 420px; margin: 0 auto 1rem;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.6rem 1rem; outline: none;
}
.catalog-tools { position:sticky;top:calc(var(--header-h) + .5rem);z-index:35;display:grid;grid-template-columns:1fr auto;gap:.65rem;align-items:center;padding:.65rem;margin:0 0 1rem;background:rgba(11,13,15,.85);border:1px solid var(--border);border-radius:1rem;backdrop-filter:blur(18px); }
.search-wrap { display:flex;align-items:center;max-width:none;background:rgba(255,255,255,.045);border:1px solid var(--border);border-radius:.75rem;padding-left:.85rem;margin:0; }
.search-wrap:focus-within { border-color:rgba(0,240,255,.65);box-shadow:0 0 0 3px rgba(0,240,255,.08); }
.search-wrap .search { margin:0;max-width:none;border:0;background:transparent; }
.results-head { grid-column:1/-1;display:flex;justify-content:space-between;align-items:center;padding:.15rem .15rem 0;font-size:11px; }
.results-head strong { color:#fff;font-size:14px; }.results-head > span:last-child { display:flex;align-items:center;gap:.35rem; }.results-head i { width:6px;height:6px;border-radius:50%;background:#4ade80;box-shadow:0 0 8px #4ade80; }
.results-head span { color:var(--muted); }

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
.card {
  background:linear-gradient(180deg,var(--card-raised),var(--card));
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card { transition:transform .28s cubic-bezier(.2,.8,.2,1),border-color .28s,box-shadow .28s; cursor:pointer;box-shadow:0 12px 30px rgba(0,0,0,.12); }
.card:hover { transform:translateY(-6px);border-color:rgba(0,240,255,.24);box-shadow:0 24px 55px rgba(0,0,0,.36); }
.thumb {
  position: relative; aspect-ratio: 4/3;
  background:radial-gradient(circle at 30% 15%,hsl(var(--hue),62%,42%),hsl(var(--hue),45%,16%) 55%,#0c0e0f 100%);
.thumb-shade { position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.05),transparent 55%,rgba(0,0,0,.55));pointer-events:none; }
.lot-visual { position:absolute;inset:0;display:grid;place-content:center;justify-items:center;gap:.55rem;color:rgba(255,255,255,.6); }
.lot-visual span { width:64px;height:64px;border-radius:20px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.06);backdrop-filter:blur(8px);box-shadow:0 18px 45px rgba(0,0,0,.2); }
.lot-visual .material-symbols-outlined { font-size:30px; }.lot-visual small { font-size:8px;font-weight:900;letter-spacing:.18em; }
  overflow:hidden;
}
.thumb > img { width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease; }
.card:hover .thumb > img { transform:scale(1.035); }
.thumb .play, .thumb .lot-icon { display:none; }
.photo-count {
  position:absolute;right:12px;bottom:12px;display:flex;align-items:center;gap:4px;
  padding:5px 8px;border-radius:8px;background:rgba(0,0,0,.62);backdrop-filter:blur(8px);
  font-size:10px;font-weight:800;
}
.photo-count .material-symbols-outlined { font-size:15px; }
.status {
  position: absolute; top: 12px; left: 12px;
  font-size: 9px; font-weight: 900; padding: 5px 9px; border-radius: 999px;
  letter-spacing: 0.08em; text-transform: uppercase;backdrop-filter:blur(10px);
}
.status.available { background:rgba(23,171,94,.86);box-shadow:0 5px 18px rgba(0,166,81,.22); }
.status.reserved { background:rgba(255,204,0,.9); color: #111; }
.status.sold { background:rgba(255,59,48,.88); }
.sku {
  position: absolute; top: 12px; right: 12px;
  font-size: 9px; font-weight: 800;letter-spacing:.08em;background: rgba(4,7,8,.68);
  padding: 5px 8px; border:1px solid rgba(255,255,255,.12);border-radius: 999px;backdrop-filter:blur(10px);
}
.card-body { padding: 1rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.card-body h2 { margin: 0; font-size: 17px;line-height:1.25;letter-spacing:-.025em; }
.card-kicker { display:flex;justify-content:space-between;color:var(--accent);font-size:9px;font-weight:850;letter-spacing:.08em;text-transform:uppercase; }
.card-description { margin:.1rem 0;font-size:12px;line-height:1.45;color:var(--muted);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden; }
.meta { font-size: 12px; color: var(--muted); display: flex; gap: 0.5rem; flex-wrap: wrap; }
.brands { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.brand-tag {
  font-size: 9px; font-weight: 800; letter-spacing: 0.06em;
  border: 1px solid var(--border); border-radius: 6px; padding: 3px 6px; color: rgba(255,255,255,0.7);
}
.lot-spec { display:grid;grid-template-columns:1fr 1fr;gap:.45rem;margin:.15rem 0; }
.lot-spec > span { display:grid;grid-template-columns:auto 1fr;grid-template-rows:auto auto;column-gap:.45rem;padding:.55rem .6rem;border:1px solid rgba(255,255,255,.065);background:rgba(255,255,255,.025);border-radius:.65rem; }
.lot-spec .material-symbols-outlined { grid-row:1/3;align-self:center;font-size:17px;color:rgba(0,240,255,.75); }.lot-spec small { font-size:8px;color:var(--muted);text-transform:uppercase;letter-spacing:.08em; }.lot-spec strong { font-size:11px; }
.card-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 0.25rem; }
.icon-row { display: flex; gap: 0.15rem; }
.icon-row button, .icon-row a {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
}
.icon-row button:hover { background: rgba(255,255,255,0.06); }
.icon-row button.saved { color: var(--accent); }
.price { text-align:right; }.price small,.price strong { display:block; }.price small { color:var(--muted);font-size:8px;text-transform:uppercase;letter-spacing:.08em; }.price strong { font-size:19px;letter-spacing:-.035em; }
.buy-row { display: flex; gap: 0.5rem; margin-top: 0.35rem; }
.buy {
  flex: 1; height: 40px; border-radius: var(--radius-btn);
  background: var(--accent); color: #042226; font-weight: 850; font-size: 10px; letter-spacing: 0.08em;
}
.view-offer { display:flex;align-items:center;justify-content:center;gap:.45rem; }.view-offer .material-symbols-outlined { font-size:16px;transition:transform .2s; }.card:hover .view-offer .material-symbols-outlined { transform:translateX(3px); }
.buy:hover:not(:disabled),.primary:hover { filter:brightness(1.06);box-shadow:0 8px 24px rgba(0,240,255,.13); }
.buy:disabled { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.4); }
.cart-add {
  width: 40px; height: 40px; border-radius: var(--radius-btn);
  background: rgba(255,255,255,0.08); display: grid; place-items: center;
}

.bottom-nav {
  display: flex; justify-content: space-around; align-items: center;
  height: var(--nav-h); border-top: 1px solid var(--border);
  background: rgba(19,19,19,0.95); position: sticky; bottom: 0;
}
.bottom-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 10px; font-weight: 800; color: rgba(255,255,255,0.5); letter-spacing: 0.04em;
}
.bottom-nav a.active { color: #fff; }

.page-title { font-size: 22px; font-weight: 800; margin: 0 0 1rem; }
.empty { text-align: center; color: var(--muted); padding: 3rem 1rem; }
.state-panel { grid-column:1/-1;text-align:center;min-height:260px;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:2rem;border:1px dashed var(--border);border-radius:1.25rem;color:var(--muted); }
.state-panel h2 { color:var(--text);margin:.8rem 0 .25rem; }
.state-panel p { margin:0; }
.state-panel .primary { max-width:220px; }
.spinner { width:32px;height:32px;border:3px solid rgba(255,255,255,.12);border-top-color:var(--accent);border-radius:50%;animation:spin .8s linear infinite; }
@keyframes spin { to { transform:rotate(360deg); } }
.skeleton-card { overflow:hidden;border:1px solid var(--border);border-radius:var(--radius-card);background:var(--card); }
.skeleton-media { aspect-ratio:16/10;background:linear-gradient(100deg,#1b1b1b 25%,#262626 42%,#1b1b1b 60%);background-size:300% 100%;animation:shimmer 1.25s infinite; }
.skeleton-lines { padding:1rem;display:grid;gap:.65rem; }
.skeleton-lines i { height:12px;border-radius:99px;background:linear-gradient(100deg,#292929 25%,#343434 42%,#292929 60%);background-size:300% 100%;animation:shimmer 1.25s infinite; }
.skeleton-lines i:nth-child(2) { width:65%; }.skeleton-lines i:nth-child(3) { width:42%;height:34px;margin-top:.4rem; }
@keyframes shimmer { to { background-position:-150% 0; } }

.offer-modal-backdrop {
  position:fixed;inset:0;z-index:120;background:rgba(0,0,0,.78);backdrop-filter:blur(8px);
  display:grid;place-items:center;padding:.75rem;
}
.offer-modal {
  position:relative;width:min(1040px,100%);max-height:94dvh;overflow:auto;
  display:grid;background:#171819;border:1px solid rgba(255,255,255,.14);border-radius:1.4rem;
  box-shadow:0 32px 90px rgba(0,0,0,.62);
}
.modal-close {
  position:absolute;z-index:4;right:.8rem;top:.8rem;width:42px;height:42px;display:grid;place-items:center;
  border-radius:50%;background:rgba(0,0,0,.7);backdrop-filter:blur(8px);color:#fff;
}
.offer-gallery { min-width:0;background:#0d0e0f; }
.gallery-main {
  position:relative;aspect-ratio:4/3;overflow:hidden;
  background:radial-gradient(circle at 30% 20%,hsl(var(--hue),70%,36%),#111 70%);
  touch-action:pan-y;
}
.gallery-main > img { width:100%;height:100%;display:block;object-fit:contain; }
.gallery-fallback { height:100%;display:grid;place-content:center;justify-items:center;gap:.6rem;color:rgba(255,255,255,.55);font-size:13px; }
.gallery-fallback .material-symbols-outlined { font-size:48px;color:rgba(255,255,255,.25); }
.gallery-arrow {
  position:absolute;top:50%;transform:translateY(-50%);width:42px;height:42px;border-radius:50%;
  background:rgba(0,0,0,.62);display:grid;place-items:center;color:#fff;
}
.gallery-arrow.prev { left:.75rem; }.gallery-arrow.next { right:.75rem; }
.gallery-thumbs { display:flex;gap:.5rem;padding:.7rem;overflow-x:auto;scroll-snap-type:x mandatory; }
.gallery-thumbs button { flex:0 0 72px;border-radius:9px;overflow:hidden;border:2px solid transparent;opacity:.62;scroll-snap-align:start; }
.gallery-thumbs button.active { border-color:var(--accent);opacity:1; }
.gallery-thumbs img { display:block;width:100%;aspect-ratio:1;object-fit:cover; }
.offer-video { display:block;width:calc(100% - 1.4rem);max-height:220px;margin:.7rem;object-fit:contain;border-radius:12px;background:#050607; }
.offer-info { padding:1.35rem;display:flex;flex-direction:column; }
.offer-info-top { display:flex;align-items:center;justify-content:space-between;gap:1rem; }
.status-inline,.detail-sku { font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.08em;padding:5px 8px;border-radius:7px; }
.status-inline.available { background:rgba(0,166,81,.18);color:#60e99f; }.status-inline.reserved { background:rgba(255,204,0,.16);color:#ffe16c; }.status-inline.sold { background:rgba(255,59,48,.16);color:#ff8a82; }
.detail-sku { background:rgba(255,255,255,.06);color:var(--muted); }
.offer-info h2 { font-size:clamp(1.5rem,4vw,2.2rem);letter-spacing:-.04em;margin:1rem 0 .5rem; }
.offer-description { color:var(--muted);line-height:1.65;margin:0 0 1.2rem; }
.detail-specs { display:grid;grid-template-columns:repeat(3,1fr);gap:.5rem;margin-bottom:1rem; }
.detail-specs div { padding:.75rem;background:rgba(255,255,255,.04);border:1px solid var(--border);border-radius:10px; }
.detail-specs span,.detail-price span { display:block;color:var(--muted);font-size:10px;margin-bottom:.25rem;text-transform:uppercase;letter-spacing:.08em; }
.detail-specs strong { font-size:13px; }
.detail-brands { margin-bottom:1rem; }
.breakdowns { display:grid;grid-template-columns:1fr 1fr;gap:.55rem;margin-bottom:1rem; }
.breakdowns section { min-width:0;padding:.7rem;border:1px solid var(--border);border-radius:10px;background:rgba(255,255,255,.025); }
.breakdowns h3,.similar-lots h3 { margin:0 0 .5rem;font-size:11px;text-transform:uppercase;letter-spacing:.08em;color:var(--muted); }
.breakdowns section div { display:flex;justify-content:space-between;gap:.5rem;padding:.25rem 0;font-size:11px;border-bottom:1px solid var(--border); }
.breakdowns section div:last-child { border:0; }
.lot-notes { margin-bottom:.75rem;padding:.75rem;border-left:2px solid rgba(0,240,255,.45);background:rgba(255,255,255,.025);border-radius:0 .7rem .7rem 0; }.lot-notes h3 { margin:0 0 .35rem;font-size:10px;text-transform:uppercase;color:var(--accent); }.lot-notes p { margin:0;color:var(--muted);font-size:11px;line-height:1.5;white-space:pre-wrap; }
.spec-actions { display:flex;flex-wrap:wrap;gap:.45rem;margin-bottom:.8rem; }.spec-actions a,.spec-actions button { min-height:36px;display:inline-flex;align-items:center;gap:.3rem;padding:.45rem .6rem;border:1px solid var(--border);border-radius:.55rem;color:var(--muted);background:transparent;font-size:9px;font-weight:800; }.spec-actions .material-symbols-outlined { font-size:14px;color:var(--accent); }
.contents-section { margin:.8rem 0; }.contents-section h3 { margin:0 0 .45rem;font-size:11px;text-transform:uppercase;letter-spacing:.08em; }.contents-scroll { overflow-x:auto;border:1px solid var(--border);border-radius:.7rem; }.contents-scroll table { width:100%;min-width:620px;border-collapse:collapse;font-size:10px; }.contents-scroll th,.contents-scroll td { padding:.55rem .6rem;text-align:left;border-bottom:1px solid var(--border);white-space:normal;vertical-align:top; }.contents-scroll th { color:var(--accent);font-size:8px;text-transform:uppercase;background:rgba(255,255,255,.025); }.contents-scroll tr:last-child td { border-bottom:0; }
.site-footer { position:relative;display:grid;grid-template-columns:minmax(210px,1.6fr) repeat(3,minmax(130px,1fr));gap:2rem;margin:3rem 1rem 0;padding:2.2rem max(1.2rem,4vw) 1rem;border:1px solid var(--border);border-radius:1.1rem 1.1rem 0 0;background:linear-gradient(135deg,#101719,#090c0d);color:var(--muted); }.footer-brand>a { display:flex;align-items:center;gap:.55rem;color:#fff;font-weight:900; }.footer-brand>a strong span { color:var(--accent); }.footer-brand .brand-mark { display:grid;place-items:center;width:28px;height:28px;border-radius:8px;background:var(--accent);color:#06272b; }.footer-brand p { max-width:280px;font-size:10px;line-height:1.5; }.footer-contact { display:flex;flex-direction:column;gap:.35rem; }.footer-contact a { display:flex;align-items:center;gap:.35rem;color:#fff;font-size:10px; }.footer-contact .material-symbols-outlined { font-size:14px;color:var(--accent); }.footer-column { display:flex;flex-direction:column;gap:.55rem; }.footer-column h3 { margin:0 0 .25rem;color:#fff;font-size:10px;text-transform:uppercase;letter-spacing:.1em; }.footer-column a { color:var(--muted);font-size:10px; }.footer-column a:hover,.footer-column a:focus-visible { color:var(--accent); }.footer-bottom { grid-column:1/-1;padding-top:1rem;border-top:1px solid var(--border);font-size:9px; }
@media(max-width:700px){.site-footer{grid-template-columns:1fr 1fr;gap:1.3rem;margin:2rem .65rem 0;padding:1.4rem 1rem 5.5rem}.footer-brand,.footer-bottom{grid-column:1/-1}}
.detail-price { margin-top:auto;padding-top:1rem;border-top:1px solid var(--border);min-width:0; }
.detail-price strong { display:block;font-size:clamp(1.65rem,4vw,2rem);line-height:1.08;overflow-wrap:anywhere; }
.detail-actions { display:grid;grid-template-columns:1fr;gap:.65rem;margin-top:1rem; }
.detail-actions .detail-action {
  width:100%;height:52px;min-width:0;margin:0;padding:0 .9rem;
  display:flex;align-items:center;justify-content:center;gap:.55rem;
  line-height:1;white-space:nowrap;overflow:hidden;
}
.detail-actions .detail-action > span:not(.material-symbols-outlined) {
  min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.detail-actions .material-symbols-outlined { flex:0 0 auto;font-size:22px; }
.detail-trust { display:flex;flex-wrap:wrap;gap:.65rem 1rem;margin-top:1rem;color:var(--muted);font-size:10px;font-weight:700; }
.detail-trust span { display:flex;align-items:center;gap:.25rem;min-width:0; }.detail-trust .material-symbols-outlined { flex:0 0 auto;font-size:15px;color:var(--accent); }
.similar-lots { margin-top:1rem;padding-top:1rem;border-top:1px solid var(--border); }
.similar-lots button { width:100%;display:flex;align-items:center;justify-content:space-between;gap:.5rem;padding:.55rem 0;color:var(--muted);font-size:10px;text-align:left;border-bottom:1px solid var(--border); }
.similar-lots button span { min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap; }.similar-lots button strong { flex:0 0 auto;color:#fff; }
.account-card, .form-card, .order-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 1.25rem; padding: 1rem 1.1rem;
  margin-bottom: 0.75rem;
}
.account-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 0; border-bottom: 1px solid var(--border); font-size: 14px; font-weight: 600;
}
.account-row:last-child { border-bottom: 0; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-bottom: 1rem; }
.stat { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 0.9rem; text-align: center; }
.stat b { display: block; font-size: 18px; }
.stat span { font-size: 11px; color: var(--muted); }

.form-card label { display: block; font-size: 11px; font-weight: 700; color: var(--muted); margin: 0.6rem 0 0.3rem; }
.form-card input, .form-card textarea, .form-card select {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.65rem 0.75rem; outline: none;
}
.primary {
  width: 100%; margin-top: 1rem; height: 42px; border-radius: var(--radius-btn);
  background: var(--accent); color: #042226; font-weight: 800;
}
.error { color: #ff8a80; font-size: 13px; margin-top: 0.5rem; }
.success { color: #81c784; font-size: 13px; margin-top: 0.5rem; }
.t-muted { color:var(--muted);font-size:12px;line-height:1.6; }
.account-main { padding-bottom:90px;max-width:1040px;margin:0 auto;width:100%; }
.account-hero { display:flex;justify-content:space-between;align-items:center;margin-bottom:1.2rem; }
.client-type,.thread-status { background:rgba(0,240,255,.12);border:1px solid rgba(0,240,255,.3);color:var(--accent);font-size:11px;font-weight:900;padding:.45rem .7rem;border-radius:999px; }
.section-head,.support-title,.button-row { display:flex;align-items:center;justify-content:space-between;gap:1rem; }
.section-head h2,.support-title h2,.account-card h2 { margin:.25rem 0 .8rem;font-size:18px; }
.form-grid { display:grid;grid-template-columns:1fr;gap:.7rem; }
.address-grid { display:grid;grid-template-columns:1fr;gap:.8rem;margin-top:1rem; }
.address-box { border:1px solid var(--border);border-radius:1rem;padding:1rem;margin:0; }
.address-box legend { font-weight:800;font-size:13px;padding:0 .35rem; }
.account-card input,.account-card textarea,.account-card select {
  width:100%;background:rgba(255,255,255,.05);border:1px solid var(--border);border-radius:10px;padding:.7rem .75rem;outline:none;
}
.account-card label { display:block;font-size:11px;font-weight:700;color:var(--muted);margin:.45rem 0 .3rem; }
.compact-primary { width:auto;margin:0;padding:0 1rem; }
.link-button { display:grid;place-items:center; }
.secondary { height:42px;border:1px solid var(--border);border-radius:var(--radius-btn);padding:0 1rem;background:rgba(255,255,255,.05);font-weight:700; }
.logout { display:block;margin:1rem auto;color:var(--muted); }
.support-compose { padding:1rem 0;border-top:1px solid var(--border);margin-top:.7rem;scroll-margin-block:calc(var(--header-h) + 1rem) calc(var(--nav-h) + 1.5rem); }
.support-compose textarea { scroll-margin-block:calc(var(--header-h) + 1rem) calc(var(--nav-h) + 1.5rem); }
.file-label { display:flex!important;align-items:center;gap:.4rem;padding:.65rem;border:1px dashed var(--border);border-radius:10px;cursor:pointer; }
.file-label input { position:absolute;opacity:0;width:1px;height:1px; }
.thread-list { margin-top:.6rem; }
.thread-row { display:grid;grid-template-columns:auto 1fr auto;gap:.75rem;align-items:center;width:100%;text-align:left;padding:.9rem .25rem;border-top:1px solid var(--border); }
.thread-row:hover { background:rgba(255,255,255,.025); }
.thread-row strong,.thread-row small { display:block; }
.thread-row small { color:var(--muted);margin-top:.25rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:440px; }
.thread-row.unread strong { color:var(--accent); }
.thread-icon { width:38px;height:38px;display:grid;place-items:center;border-radius:10px;background:rgba(0,240,255,.08); }
.thread-side { text-align:right; }
.thread-side i { display:block;width:8px;height:8px;background:var(--accent);border-radius:50%;margin:0 0 .3rem auto; }
.text-btn { color:var(--accent);font-size:12px;font-weight:700;margin-bottom:1rem; }
.messages { display:flex;flex-direction:column;gap:.7rem;max-height:500px;overflow:auto;padding:.5rem 0; }
.message { max-width:86%;border:1px solid var(--border);border-radius:1rem;padding:.8rem 1rem;background:rgba(255,255,255,.04); }
.message.mine { margin-left:auto;background:rgba(0,240,255,.08);border-color:rgba(0,240,255,.2); }
.message p { margin:.35rem 0;white-space:pre-wrap;line-height:1.5;font-size:13px; }
.message-meta { color:var(--muted);font-size:10px;font-weight:700; }
.attachment { display:flex;align-items:center;gap:.3rem;color:var(--accent);font-size:12px;margin-top:.45rem; }
.attachment small { color:var(--muted); }
.auth-shell { max-width:780px;margin:4vh auto;display:grid;gap:1.5rem;align-items:start; }
.auth-tabs { display:flex;gap:.5rem;margin-bottom:.8rem; }
.customer-shell { display:grid;grid-template-columns:210px minmax(0,1fr);gap:1rem;align-items:start; }
.customer-nav { position:sticky;top:calc(var(--header-h) + 1rem);display:flex;flex-direction:column;padding:.55rem;border:1px solid var(--border);border-radius:1.1rem;background:linear-gradient(180deg,var(--card-raised),var(--card)); }
.customer-nav button { width:100%;min-height:42px;display:flex;align-items:center;gap:.65rem;padding:.65rem .75rem;border-radius:.7rem;color:var(--muted);font-size:11px;font-weight:750;text-align:left;white-space:nowrap; }
.customer-nav button .material-symbols-outlined { flex:0 0 auto;font-size:18px; }.customer-nav button.active { color:#fff;background:rgba(0,240,255,.1);box-shadow:inset 3px 0 var(--accent); }.customer-nav button:last-child { margin-top:.5rem;border-top:1px solid var(--border);border-radius:0;padding-top:.85rem; }
.customer-content { min-width:0; }.customer-content > section:not(.account-card) { min-width:0; }
.account-kpis { display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.65rem;margin-bottom:1rem; }
.account-kpis > * { min-width:0;min-height:100px;padding:1rem;text-align:left;border:1px solid var(--border);border-radius:1rem;background:linear-gradient(145deg,var(--card-raised),var(--card)); }
.account-kpis b,.account-kpis span { display:block; }.account-kpis b { overflow:hidden;text-overflow:ellipsis;font-size:clamp(1.2rem,2vw,1.65rem);letter-spacing:-.04em;white-space:nowrap; }.account-kpis span { margin-top:.35rem;color:var(--muted);font-size:10px; }
.reservation-banner { display:flex;align-items:center;gap:.75rem;padding:.85rem 1rem;margin-bottom:1rem;border:1px solid rgba(0,240,255,.25);border-radius:1rem;background:rgba(0,240,255,.075); }
.reservation-banner > .material-symbols-outlined { color:var(--accent); }.reservation-banner div { min-width:0;flex:1; }.reservation-banner strong,.reservation-banner span { display:block; }.reservation-banner span { color:var(--muted);font-size:11px;margin-top:.2rem; }.reservation-banner button { color:var(--accent);font-weight:800;font-size:11px; }
.account-grid { display:grid;grid-template-columns:1.35fr .65fr;gap:1rem; }.account-grid .account-card { margin:0; }
.quick-links { display:grid;gap:.45rem; }.quick-links > * { display:flex;align-items:center;gap:.6rem;width:100%;padding:.75rem;border:1px solid var(--border);border-radius:.75rem;color:#fff;text-align:left;font-size:11px; }.quick-links b { margin-left:auto;color:var(--accent); }
.order-list-row { width:100%;display:grid;grid-template-columns:minmax(0,1fr) auto auto;gap:.65rem;align-items:center;padding:.85rem 0;border-bottom:1px solid var(--border);text-align:left; }.order-list-row span { min-width:0; }.order-list-row strong,.order-list-row small { display:block; }.order-list-row small,.account-row small { margin-top:.25rem;color:var(--muted);font-size:10px; }.order-list-row b { white-space:nowrap; }
.address-list { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.7rem; }.address-list article { min-width:0;padding:1rem;border:1px solid var(--border);border-radius:1rem;background:rgba(255,255,255,.025); }.address-list h3 { margin:.7rem 0 .35rem; }.address-list p { color:var(--muted);font-size:12px;line-height:1.55;overflow-wrap:anywhere; }.address-create { margin-top:1rem;padding-top:1rem;border-top:1px solid var(--border); }
.prefs { display:grid;grid-template-columns:auto auto minmax(180px,1fr);gap:.75rem;align-items:center;margin-top:1rem; }.prefs label,.check-label { display:flex!important;align-items:center;gap:.4rem;margin:0!important; }.prefs input[type=checkbox],.check-label input { width:auto; }
.account-row > span { min-width:0; }.account-row > span:last-child { text-align:right; }.account-row .text-btn { display:block;margin:.25rem 0 0;white-space:nowrap; }
.payment-card { display:grid;grid-template-columns:minmax(0,1fr) auto;gap:.35rem 1rem;align-items:center;padding:1rem;border:1px solid var(--border);border-radius:1rem;margin-bottom:.65rem; }.payment-card span,.payment-card small { display:block;color:var(--muted);font-size:10px;margin-top:.3rem; }.payment-card small { grid-column:1/-1; }
.alert-form { display:grid;grid-template-columns:1fr 1fr auto;gap:.6rem;margin-bottom:1rem; }.alert-form .primary { width:auto;margin:0;padding:0 1rem;white-space:nowrap; }
.document-row { display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:.75rem;align-items:center;padding:.85rem;border-bottom:1px solid var(--border);color:#fff; }.document-row span,.document-row small { display:block;min-width:0; }.document-row small { color:var(--muted);margin-top:.25rem;font-size:10px; }
.security-form { max-width:520px; }.order-detail-head { display:flex;justify-content:space-between;gap:1rem;margin:.75rem 0 1rem; }.order-detail-head h3 { margin:0; }.order-detail-head span { color:var(--muted);font-size:11px; }.order-timeline { display:flex;gap:0;margin:1rem 0;overflow-x:auto; }.order-timeline > div { position:relative;min-width:140px;display:flex;gap:.45rem;align-items:flex-start;padding-right:.6rem; }.order-timeline i { flex:0 0 auto;width:12px;height:12px;border-radius:50%;margin-top:2px;background:var(--accent);box-shadow:0 0 0 4px rgba(0,240,255,.12); }.order-timeline > div:not(:last-child)::after { content:"";position:absolute;left:12px;right:0;top:7px;height:1px;background:rgba(0,240,255,.3); }.order-timeline span { position:relative;z-index:1;background:var(--card);padding-right:.4rem; }.order-timeline strong,.order-timeline small { display:block;font-size:10px; }.order-timeline small { color:var(--muted);margin-top:.2rem; }.tracking-card { display:flex;gap:.7rem;align-items:center;padding:1rem;border:1px solid rgba(0,240,255,.2);border-radius:1rem;background:rgba(0,240,255,.05); }.tracking-card strong,.tracking-card span { display:block; }.tracking-card span { color:var(--muted);font-size:11px;margin-top:.2rem; }
.professional-auth { max-width:1000px;min-height:calc(100dvh - 180px);align-items:center; }.auth-pitch { padding:1rem; }.auth-benefits { display:grid;gap:.6rem;margin-top:1.5rem; }.auth-benefits span { display:flex;align-items:center;gap:.5rem;color:rgba(255,255,255,.75);font-size:12px; }.auth-benefits .material-symbols-outlined { color:var(--accent); }.auth-card { padding:1.35rem;box-shadow:0 24px 70px rgba(0,0,0,.28); }.type-choice { display:grid;grid-template-columns:1fr 1fr;gap:.5rem; }.type-choice button { height:42px;border:1px solid var(--border);border-radius:.7rem;background:rgba(255,255,255,.04);font-weight:800; }.type-choice button.active { color:var(--accent);border-color:rgba(0,240,255,.5);background:rgba(0,240,255,.08); }.auth-legal { color:var(--muted);font-size:9px;text-align:center;line-height:1.5; }

.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 80;
  display: none;
}
.drawer-backdrop.open { display: block; }
.drawer {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background:rgba(18,21,24,.98); border:1px solid var(--border);border-bottom:0;border-top-left-radius: 1.5rem; border-top-right-radius: 1.5rem;
  max-height: 88dvh; overflow: auto; padding: 1.25rem; display: none;box-shadow:0 -24px 70px rgba(0,0,0,.5);
}
.drawer.open { display: block; }

.toast {
  position: fixed; left: 50%; bottom: 90px; transform: translateX(-50%);
  background: #111; border: 1px solid var(--border); padding: 0.6rem 1rem;
  border-radius: 999px; font-size: 12px; font-weight: 700; z-index: 100;
  display: none;
}
.toast.show { display: block; }

@media (min-width: 1024px) {
  .desktop-header { display: flex; }
  .nav-links { display:flex; }
  .filters { display: flex; flex-direction: column; }
  .bottom-nav, .mobile-bar, .mobile-filters { display: none; }
  .mobile-filter-trigger { display:none; }
  .main { padding: 1.25rem 1.5rem 2.5rem; }
  .grid { grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); }
  .drawer { left: auto; right: 2rem; bottom: auto; top: 80px; width: 360px; border-radius: 1.25rem; }
  .catalog-hero { grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr);padding:3.25rem;min-height:520px; }
  .hero-showcase { display:block; }
  .catalog-tools { grid-template-columns:minmax(280px,560px) auto 1fr;top:calc(var(--header-h) + .6rem);padding:.75rem; }
  .results-head { grid-column:auto;margin-left:auto;gap:1.5rem;width:100%;justify-content:flex-end;padding:0 .3rem; }
  .form-grid { grid-template-columns:repeat(3,1fr); }
  .address-grid { grid-template-columns:1fr 1fr; }
  .auth-shell { grid-template-columns:1fr 1fr; }
  .offer-modal { grid-template-columns:minmax(0,1.3fr) minmax(340px,.7fr);overflow:hidden; }
  .offer-gallery { min-height:620px;display:flex;flex-direction:column;justify-content:center; }
  .offer-info { padding:2rem; }
}
@media (min-width:600px) and (max-width:1023px){
  .main{padding:1.1rem 1.25rem 2.5rem}.grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .catalog-hero{min-height:440px;padding:2.5rem}.catalog-hero h1{font-size:clamp(3rem,8vw,5rem)}
  .form-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.address-grid{grid-template-columns:1fr 1fr}
  .offer-modal{width:min(720px,calc(100vw - 2rem))}.gallery-main{max-height:420px}
}
@media (min-width: 1200px) {
  .grid { grid-template-columns: repeat(auto-fill,minmax(275px,1fr)); }
}
@media (min-width: 1600px) {
  .main { padding-left:2rem;padding-right:2rem; }
  .grid { grid-template-columns: repeat(auto-fill,minmax(290px,1fr));gap:1rem; }
}
@media (max-width: 767px) {
  .desktop-header { height:60px;padding:0 .9rem; }
  .desktop-header .brand-mark { width:34px;height:34px;border-radius:10px;font-size:18px; }
  .desktop-header .brand-text { font-size:17px; }
  .locale-controls{margin-left:auto}.locale-controls .material-symbols-outlined{display:none}.lang-btn{max-width:104px;padding:0 .45rem}.fx-note{display:none}
  .catalog-hero { min-height:470px;padding:2.4rem 1.25rem;align-content:center;border-radius:1.25rem; }
  .catalog-hero h1 { font-size:clamp(2.55rem,13vw,3.7rem); }
  .hero-actions { display:grid;grid-template-columns:1fr; }
  .hero-primary,.hero-secondary { justify-content:center; }
  .catalog-tools { top:68px; }
  .search-wrap { grid-column:1/-1; }
  .mobile-filter-trigger { grid-column:1;justify-self:start; }
  .results-head { grid-column:2;text-align:right;padding:0;gap:.6rem; }
  .results-head > span:last-child { display:none; }
  .grid { gap:.85rem; }
  .card-body { padding:1.05rem; }
  .bottom-nav { position:fixed;left:0;right:0;z-index:50;padding-bottom:env(safe-area-inset-bottom);height:calc(var(--nav-h) + env(safe-area-inset-bottom));backdrop-filter:blur(18px); }
  .main { padding-bottom:calc(var(--nav-h) + 1.5rem); }
  .offer-modal-backdrop { padding:0;align-items:end; }
  .offer-modal { max-height:96dvh;border-radius:1.5rem 1.5rem 0 0;border-bottom:0; }
  .gallery-main { aspect-ratio:1.12/1; }
  .detail-actions { grid-template-columns:1fr; }
  .detail-actions .detail-action { height:50px; }
  .account-hero { align-items:flex-start; }.account-hero h1 { font-size:2.15rem;overflow-wrap:anywhere; }
  .customer-shell { display:block; }.customer-nav { position:static;display:flex;flex-direction:row;overflow-x:auto;margin-bottom:.8rem;scrollbar-width:none; }.customer-nav button { flex:0 0 auto;width:auto;min-height:38px; }.customer-nav button.active { box-shadow:inset 0 -2px var(--accent); }.customer-nav button:last-child { margin:0;border:0;padding-top:.65rem; }
  .account-kpis { grid-template-columns:1fr 1fr; }.account-grid,.address-list { grid-template-columns:1fr; }.prefs,.alert-form { grid-template-columns:1fr; }.alert-form .primary { width:100%; }.account-row { gap:.55rem; }.professional-auth { margin-top:1rem; }
  button,.bottom-nav a,.mobile-filter-trigger,.drawer .cat-btn,.drawer .grade-btn,.detail-action,.primary,.secondary { min-height:44px; }
  input,select,textarea { min-height:44px;font-size:16px; }
  .support-compose .actions,.detail-actions,.cart-actions { width:100%; }
  .support-compose input[type="file"] { max-width:100%;font-size:12px; }
  .cart-row,.account-row,.document-row { min-width:0;overflow-wrap:anywhere; }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important; }
}
