@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
  --bg: #0b0a14;
  --bg-2: #15132a;
  --bg-3: #1f1c3a;
  --card: #181530;
  --card-2: #211d40;
  --line: rgba(255,255,255,0.08);
  --text: #f0eef8;
  --muted: #a09cc4;
  --neon: #b388ff;
  --neon-2: #7c4dff;
  --cyan: #18ffff;
  --green: #69f0ae;
  --pink: #ff4081;
  --orange: #ff9100;
  --gradient: linear-gradient(135deg, #7c4dff 0%, #b388ff 50%, #ff4081 100%);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Sora', sans-serif; background: var(--bg); color: var(--text); line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
.mono { font-family: 'Space Mono', monospace; }

.topbar { background: var(--gradient); color: white; font-size: 13px; padding: 8px 0; font-weight: 500; text-align: center; letter-spacing: 0.5px; }

.header { background: var(--bg); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(12px); }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 16px 32px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 22px; letter-spacing: -0.5px; }
.logo-mark { width: 40px; height: 40px; background: var(--gradient); border-radius: 10px; display: grid; place-items: center; font-size: 22px; font-weight: 800; color: white; box-shadow: 0 0 24px rgba(124,77,255,0.5); }
.search-bar { display: flex; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: 100px; padding: 0 24px; height: 48px; max-width: 540px; margin: 0 auto; width: 100%; }
.search-bar input { flex: 1; background: transparent; border: 0; color: var(--text); font-family: 'Sora', sans-serif; font-size: 14px; outline: 0; }
.search-bar input::placeholder { color: var(--muted); }
.search-bar .icon { color: var(--neon); margin-right: 12px; font-size: 18px; }
.header-actions { display: flex; gap: 8px; align-items: center; }
.action-btn { width: 44px; height: 44px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; display: grid; place-items: center; position: relative; cursor: pointer; transition: all 0.2s; }
.action-btn:hover { border-color: var(--neon); transform: translateY(-2px); }
.action-btn .icon { font-size: 18px; }
.action-btn .badge { position: absolute; top: -6px; right: -6px; background: var(--pink); color: white; font-size: 10px; font-weight: 700; min-width: 20px; height: 20px; border-radius: 10px; display: grid; place-items: center; padding: 0 4px; }

.nav-bar { background: var(--bg-2); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; gap: 32px; height: 52px; font-size: 14px; overflow-x: auto; white-space: nowrap; }
.nav-inner a { color: var(--muted); display: flex; align-items: center; gap: 8px; font-weight: 500; transition: color 0.2s; }
.nav-inner a:hover { color: var(--neon); }
.nav-inner a.active { color: var(--text); }
.nav-inner a.hot::after { content: 'HOT'; background: var(--pink); color: white; font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 4px; letter-spacing: 0.5px; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600; border: 0; border-radius: 100px; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.btn-primary { background: var(--gradient); color: white; box-shadow: 0 4px 24px rgba(124,77,255,0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 32px rgba(124,77,255,0.6); }
.btn-secondary { background: var(--card); color: var(--text); border: 1px solid var(--line); }
.btn-secondary:hover { border-color: var(--neon); }
.btn-cart { background: var(--green); color: var(--bg); font-weight: 700; }
.btn-cart:hover { background: white; }

.hero { padding: 60px 0 80px; background: var(--bg); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(124,77,255,0.3), transparent 70%); top: -200px; right: -200px; pointer-events: none; }
.hero::after { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(255,64,129,0.15), transparent 70%); bottom: -200px; left: -100px; pointer-events: none; }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(124,77,255,0.15); border: 1px solid rgba(124,77,255,0.4); color: var(--neon); font-size: 12px; font-weight: 600; padding: 6px 16px; border-radius: 100px; margin-bottom: 24px; letter-spacing: 0.5px; }
.hero-badge .pulse { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 8px var(--green); }
.hero h1 { font-size: 64px; line-height: 1.05; letter-spacing: -2px; font-weight: 800; margin-bottom: 20px; }
.hero h1 .gradient { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { font-size: 17px; color: var(--muted); margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 40px; }
.hero-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-pill { background: var(--card); border: 1px solid var(--line); padding: 10px 18px; border-radius: 100px; font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero-pill .check { width: 16px; height: 16px; background: var(--green); border-radius: 50%; display: grid; place-items: center; color: var(--bg); font-size: 10px; font-weight: 800; }

.hero-visual { position: relative; height: 540px; }
.phone-mock { position: absolute; width: 280px; height: 540px; border-radius: 44px; background: linear-gradient(160deg, #1a1530, #0d0c1f); border: 2px solid #2a2548; box-shadow: 0 30px 80px rgba(124,77,255,0.4), 0 0 0 8px rgba(124,77,255,0.1); padding: 12px; overflow: hidden; }
.phone-mock-1 { top: 0; right: 0; z-index: 2; transform: rotate(6deg); }
.phone-mock-2 { bottom: 0; left: 0; z-index: 1; transform: rotate(-6deg); width: 240px; height: 460px; }
.phone-screen { width: 100%; height: 100%; background: var(--gradient); border-radius: 32px; overflow: hidden; position: relative; }
.phone-notch { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 80px; height: 22px; background: #0a0814; border-radius: 100px; z-index: 3; }
.phone-content { padding: 50px 20px 20px; color: white; height: 100%; display: flex; flex-direction: column; }
.phone-time { font-size: 56px; font-weight: 200; letter-spacing: -3px; }
.phone-date { font-size: 14px; opacity: 0.85; margin-bottom: 30px; }
.phone-widget { background: rgba(255,255,255,0.18); backdrop-filter: blur(10px); border-radius: 18px; padding: 14px; margin-bottom: 12px; }
.phone-widget-row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; margin-bottom: 8px; }
.phone-widget-row strong { font-weight: 600; }
.phone-bars { display: flex; gap: 3px; align-items: end; height: 24px; }
.phone-bars span { flex: 1; background: white; border-radius: 2px; }
.phone-icons-grid { margin-top: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.phone-icon { aspect-ratio: 1; border-radius: 14px; }
.phone-icon-c1 { background: linear-gradient(135deg, #ff4081, #ff9100); }
.phone-icon-c2 { background: linear-gradient(135deg, #18ffff, #7c4dff); }
.phone-icon-c3 { background: linear-gradient(135deg, #69f0ae, #18ffff); }
.phone-icon-c4 { background: white; }
.hero-floating { position: absolute; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 16px 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.4); z-index: 3; }
.hero-floating-1 { top: 80px; left: -20px; display: flex; align-items: center; gap: 12px; }
.hero-floating-1 .icon { width: 40px; height: 40px; background: rgba(105,240,174,0.15); border-radius: 10px; display: grid; place-items: center; color: var(--green); font-size: 20px; }
.hero-floating-1 .text { font-size: 13px; font-weight: 600; }
.hero-floating-1 .sub { font-size: 11px; color: var(--muted); }
.hero-floating-2 { bottom: 60px; right: -10px; width: 200px; }
.hero-floating-2 .label { font-size: 11px; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }
.hero-floating-2 .price { font-size: 28px; font-weight: 700; letter-spacing: -1px; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-floating-2 .old { font-size: 13px; color: var(--muted); text-decoration: line-through; margin-top: 2px; }

.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.categories { padding: 60px 0; }
.section-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 32px; }
.section-header h2 { font-size: 36px; font-weight: 800; letter-spacing: -1px; }
.section-header h2 .gradient { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-header .link { color: var(--neon); font-weight: 600; font-size: 14px; }
.cats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.cat-card { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 24px 20px; text-align: center; transition: all 0.2s; cursor: pointer; }
.cat-card:hover { border-color: var(--neon); transform: translateY(-4px); }
.cat-icon { width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 16px; display: grid; place-items: center; font-size: 32px; }
.cat-c1 { background: linear-gradient(135deg, rgba(124,77,255,0.2), rgba(179,136,255,0.1)); color: var(--neon); }
.cat-c2 { background: linear-gradient(135deg, rgba(255,64,129,0.2), rgba(255,145,0,0.1)); color: var(--pink); }
.cat-c3 { background: linear-gradient(135deg, rgba(24,255,255,0.2), rgba(105,240,174,0.1)); color: var(--cyan); }
.cat-c4 { background: linear-gradient(135deg, rgba(105,240,174,0.2), rgba(24,255,255,0.1)); color: var(--green); }
.cat-c5 { background: linear-gradient(135deg, rgba(255,145,0,0.2), rgba(255,64,129,0.1)); color: var(--orange); }
.cat-c6 { background: linear-gradient(135deg, rgba(124,77,255,0.2), rgba(255,64,129,0.1)); color: var(--neon); }
.cat-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cat-card .count { font-size: 11px; color: var(--muted); font-family: 'Space Mono', monospace; }

.products-section { padding: 40px 0 80px; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product { background: var(--card); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: all 0.25s; position: relative; }
.product:hover { border-color: var(--neon); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(124,77,255,0.2); }
.product-media { background: linear-gradient(160deg, var(--card-2), var(--card)); aspect-ratio: 1; position: relative; overflow: hidden; }
.product-tag { position: absolute; top: 12px; left: 12px; background: var(--pink); color: white; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; z-index: 2; letter-spacing: 0.5px; }
.product-tag.new { background: var(--neon); }
.product-tag.hit { background: var(--orange); }
.product-tag.discount { background: var(--green); color: var(--bg); }
.product-fav { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; background: rgba(0,0,0,0.5); backdrop-filter: blur(8px); border-radius: 50%; display: grid; place-items: center; color: white; font-size: 14px; cursor: pointer; z-index: 2; }
.product-fav:hover { color: var(--pink); }
.phone-body { width: 60%; height: 80%; border-radius: 22px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); overflow: hidden; }
.phone-body::before { content: ''; position: absolute; inset: 6px; border-radius: 18px; }
.phone-color-1 { background: linear-gradient(160deg, #4a4458, #1a1525); }
.phone-color-1::before { background: linear-gradient(180deg, #2a4858, #1a1f30); }
.phone-color-2 { background: linear-gradient(160deg, #f0e8d8, #c0b8a0); }
.phone-color-2::before { background: linear-gradient(180deg, #ffd8a0, #f08858); }
.phone-color-3 { background: linear-gradient(160deg, #4a3858, #1a0820); }
.phone-color-3::before { background: linear-gradient(180deg, #6a3858, #2a1830); }
.phone-color-4 { background: linear-gradient(160deg, #d0d0d0, #8a8a8a); }
.phone-color-4::before { background: linear-gradient(180deg, #e0e0e8, #a0a0b0); }
.phone-color-5 { background: linear-gradient(160deg, #1a1f30, #0a0a14); }
.phone-color-5::before { background: linear-gradient(180deg, #1a3858, #0a1a30); }
.phone-color-6 { background: linear-gradient(160deg, #58484a, #281818); }
.phone-color-6::before { background: linear-gradient(180deg, #ff6080, #c04060); }
.phone-color-7 { background: linear-gradient(160deg, #4a584a, #182818); }
.phone-color-7::before { background: linear-gradient(180deg, #4af0a0, #18a058); }
.phone-color-8 { background: linear-gradient(160deg, #585848, #282818); }
.phone-color-8::before { background: linear-gradient(180deg, #f0d068, #c08818); }
.phone-camera-bumps { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; background: rgba(0,0,0,0.6); border-radius: 12px; z-index: 3; display: grid; grid-template-columns: 1fr 1fr; gap: 3px; padding: 4px; }
.phone-camera-bumps span { background: rgba(255,255,255,0.4); border-radius: 50%; }
.product-body { padding: 18px 18px 20px; }
.product-brand { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; font-weight: 600; }
.product-name { font-size: 15px; font-weight: 600; margin-bottom: 10px; line-height: 1.3; }
.product-specs { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.spec-chip { font-size: 11px; background: rgba(124,77,255,0.12); color: var(--neon); padding: 3px 8px; border-radius: 6px; font-family: 'Space Mono', monospace; font-weight: 700; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; font-size: 12px; color: var(--muted); }
.product-rating .stars { color: var(--orange); letter-spacing: 1px; }
.product-price-row { display: flex; justify-content: space-between; align-items: end; gap: 10px; }
.product-price { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.product-old-price { font-size: 13px; color: var(--muted); text-decoration: line-through; margin-top: 2px; }
.product-btn { width: 38px; height: 38px; background: var(--gradient); border: 0; border-radius: 12px; color: white; font-size: 18px; cursor: pointer; display: grid; place-items: center; transition: all 0.2s; flex-shrink: 0; }
.product-btn:hover { transform: scale(1.1); }

.banners-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; padding: 40px 0; }
.banner-card { border-radius: 20px; padding: 36px; position: relative; overflow: hidden; min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; }
.banner-1 { background: linear-gradient(135deg, #7c4dff 0%, #ff4081 100%); grid-row: span 2; min-height: 540px; }
.banner-2 { background: linear-gradient(135deg, #18ffff 0%, #69f0ae 100%); color: var(--bg); }
.banner-3 { background: linear-gradient(135deg, #ff9100 0%, #ff4081 100%); }
.banner-eye { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; opacity: 0.9; }
.banner-card h3 { font-size: 32px; font-weight: 800; letter-spacing: -1px; line-height: 1.1; margin-bottom: 12px; }
.banner-1 h3 { font-size: 48px; }
.banner-card p { font-size: 14px; opacity: 0.9; margin-bottom: 20px; }
.banner-card .btn-banner { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); color: white; padding: 10px 20px; border-radius: 100px; font-weight: 600; font-size: 13px; align-self: start; }
.banner-2 .btn-banner { background: var(--bg); color: white; }
.banner-decoration-1 { position: absolute; bottom: -40px; right: -40px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.banner-decoration-2 { position: absolute; top: 30px; right: 30px; width: 80px; height: 80px; border: 6px solid rgba(255,255,255,0.4); border-radius: 50%; }
.banner-percent { position: absolute; bottom: 30px; right: 30px; font-size: 80px; font-weight: 900; letter-spacing: -4px; line-height: 1; opacity: 0.95; }
.banner-1 .banner-percent { font-size: 140px; bottom: 20px; right: 30px; }

.features-strip { background: var(--bg-2); padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-item { display: flex; align-items: center; gap: 16px; }
.feature-icon { width: 56px; height: 56px; background: var(--gradient); border-radius: 16px; display: grid; place-items: center; font-size: 24px; flex-shrink: 0; color: white; }
.feature-item h5 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.feature-item p { font-size: 12px; color: var(--muted); }

.brands { padding: 70px 0; }
.brands-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 16px; margin-top: 32px; }
.brand-card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 20px 12px; text-align: center; transition: all 0.2s; }
.brand-card:hover { border-color: var(--neon); }
.brand-name { font-size: 18px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 4px; }
.brand-meta { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-family: 'Space Mono', monospace; }

.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 70px 0 30px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-about p { font-size: 13px; color: var(--muted); line-height: 1.7; margin: 16px 0 20px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social { width: 40px; height: 40px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; display: grid; place-items: center; color: var(--muted); transition: all 0.2s; }
.footer-social:hover { color: var(--neon); border-color: var(--neon); }
.footer h5 { font-size: 13px; font-weight: 700; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; color: var(--neon); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: var(--muted); font-size: 14px; }
.footer a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); flex-wrap: wrap; gap: 20px; }
.footer-payments { display: flex; gap: 8px; flex-wrap: wrap; }
.payment-pill { background: var(--card); border: 1px solid var(--line); padding: 4px 10px; border-radius: 6px; font-family: 'Space Mono', monospace; font-size: 11px; color: var(--muted); }

.page-header { padding: 50px 0 20px; background: var(--bg); }
.page-header .crumbs { font-size: 12px; color: var(--muted); margin-bottom: 14px; display: flex; gap: 8px; }
.page-header .crumbs a:hover { color: var(--neon); }
.page-header h1 { font-size: 44px; font-weight: 800; letter-spacing: -1.5px; }
.page-header h1 .gradient { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

.toolbar { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line); margin-bottom: 32px; flex-wrap: wrap; gap: 20px; }
.toolbar-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip { background: var(--card); border: 1px solid var(--line); padding: 8px 16px; border-radius: 100px; font-size: 13px; color: var(--muted); cursor: pointer; transition: all 0.2s; }
.filter-chip:hover, .filter-chip.active { border-color: var(--neon); color: var(--neon); background: rgba(124,77,255,0.1); }
.toolbar-sort { display: flex; gap: 12px; align-items: center; }
.toolbar-sort label { font-size: 13px; color: var(--muted); }
.toolbar-sort select { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 8px 14px; color: var(--text); font-family: 'Sora', sans-serif; font-size: 13px; cursor: pointer; }

.catalog-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; padding-bottom: 80px; }
.sidebar { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 28px; height: fit-content; position: sticky; top: 90px; }
.sidebar h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; color: var(--neon); padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.sidebar-section { margin-bottom: 28px; }
.sidebar-section:last-child { margin-bottom: 0; }
.sidebar-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; cursor: pointer; color: var(--muted); }
.sidebar-row:hover { color: var(--text); }
.sidebar-row .check { width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--line); flex-shrink: 0; position: relative; }
.sidebar-row.checked .check { background: var(--gradient); border-color: transparent; }
.sidebar-row.checked .check::after { content: '✓'; position: absolute; inset: 0; display: grid; place-items: center; color: white; font-size: 11px; font-weight: 800; }
.sidebar-row .count { margin-left: auto; font-size: 11px; color: var(--muted); font-family: 'Space Mono', monospace; }
.price-range-track { height: 4px; background: var(--line); border-radius: 2px; position: relative; margin-top: 12px; }
.price-range-fill { position: absolute; height: 100%; background: var(--gradient); border-radius: 2px; left: 15%; right: 35%; }
.price-range-thumb { width: 16px; height: 16px; background: white; border-radius: 50%; border: 3px solid var(--neon-2); position: absolute; top: -6px; }
.price-range-thumb.left { left: 15%; transform: translateX(-50%); }
.price-range-thumb.right { left: 65%; transform: translateX(-50%); }
.price-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.price-input { background: var(--bg-3); border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; font-family: 'Space Mono', monospace; font-size: 12px; color: var(--text); text-align: center; }

.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding: 40px 0; }
.product-gallery { background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 40px; aspect-ratio: 1; position: relative; display: grid; place-items: center; overflow: hidden; }
.product-gallery .phone-body { width: 50%; height: 70%; position: relative; transform: none; top: 0; left: 0; }
.product-gallery::before { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(124,77,255,0.3), transparent 70%); top: -50px; right: -100px; }
.gallery-thumbs { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.gallery-thumb { width: 56px; height: 56px; background: var(--card-2); border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
.gallery-thumb.active { border-color: var(--neon); }

.product-detail-info h1 { font-size: 36px; font-weight: 800; letter-spacing: -1px; margin-bottom: 6px; }
.product-detail-meta { display: flex; gap: 16px; margin-bottom: 24px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.product-detail-meta .verified { color: var(--green); }
.product-detail-rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; padding: 16px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; }
.product-detail-rating-row .stars { color: var(--orange); font-size: 18px; letter-spacing: 2px; }
.product-detail-rating-row .num { font-weight: 700; }
.product-detail-rating-row .reviews { color: var(--muted); font-size: 13px; margin-left: auto; }

.colors-row, .memory-row { margin-bottom: 24px; }
.colors-row label, .memory-row label { font-size: 13px; color: var(--muted); margin-bottom: 10px; display: block; }
.colors-list { display: flex; gap: 10px; }
.color-swatch { width: 40px; height: 40px; border-radius: 12px; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; }
.color-swatch.active { border-color: var(--neon); transform: scale(1.05); }
.memory-list { display: flex; gap: 8px; flex-wrap: wrap; }
.memory-chip { background: var(--card); border: 1px solid var(--line); padding: 10px 18px; border-radius: 12px; font-family: 'Space Mono', monospace; font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.memory-chip.active { border-color: var(--neon); color: var(--neon); background: rgba(124,77,255,0.1); }

.detail-price-block { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 24px; margin-bottom: 20px; }
.detail-price-row { display: flex; align-items: end; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.detail-price { font-size: 44px; font-weight: 800; letter-spacing: -1.5px; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.detail-price-old { color: var(--muted); text-decoration: line-through; font-size: 18px; padding-bottom: 4px; }
.detail-price-save { background: var(--green); color: var(--bg); font-weight: 700; font-size: 12px; padding: 4px 10px; border-radius: 6px; margin-bottom: 6px; }
.installment { font-size: 13px; color: var(--muted); font-family: 'Space Mono', monospace; padding-top: 12px; border-top: 1px solid var(--line); }
.installment strong { color: var(--cyan); font-weight: 700; }
.detail-actions { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; margin-bottom: 16px; }
.detail-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 16px; background: var(--card-2); border-radius: 14px; }
.detail-perk { display: flex; gap: 10px; align-items: center; font-size: 12px; }
.detail-perk-icon { width: 32px; height: 32px; background: var(--bg-3); border-radius: 10px; display: grid; place-items: center; color: var(--neon); font-size: 14px; flex-shrink: 0; }
.detail-perk strong { display: block; font-size: 13px; }
.detail-perk span { color: var(--muted); font-size: 11px; }

.specs-section { padding: 30px 0 80px; }
.specs-tabs { display: flex; gap: 8px; border-bottom: 1px solid var(--line); margin-bottom: 24px; flex-wrap: wrap; }
.specs-tab { padding: 14px 24px; font-size: 14px; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; font-weight: 500; }
.specs-tab.active { color: var(--neon); border-bottom-color: var(--neon); }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--line); }
.specs-table td { padding: 14px 0; font-size: 14px; }
.specs-table td:first-child { color: var(--muted); width: 240px; }
.specs-table td:last-child { font-weight: 500; font-family: 'Space Mono', monospace; font-size: 13px; }

.about-hero { padding: 80px 0; text-align: center; background: var(--bg); position: relative; overflow: hidden; }
.about-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(124,77,255,0.15), transparent 50%); }
.about-hero h1 { font-size: 64px; font-weight: 800; letter-spacing: -2px; margin-bottom: 20px; position: relative; }
.about-hero h1 .gradient { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.about-hero p { font-size: 18px; color: var(--muted); max-width: 620px; margin: 0 auto; position: relative; }
.story-section { padding: 80px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-text h2 { font-size: 40px; font-weight: 800; letter-spacing: -1px; margin-bottom: 20px; }
.story-text h2 .gradient { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.story-text p { font-size: 15px; color: var(--muted); margin-bottom: 16px; line-height: 1.7; }
.story-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.stat-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.stat-num { font-size: 40px; font-weight: 800; letter-spacing: -1px; line-height: 1; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; }
.story-visual { position: relative; aspect-ratio: 4/5; background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 30px; overflow: hidden; }
.shop-mock { width: 100%; height: 100%; background: var(--bg-3); border-radius: 16px; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.shop-mock-row { display: flex; gap: 12px; }
.shop-mock-card { flex: 1; background: var(--card); border-radius: 12px; padding: 14px; }
.shop-mock-img { aspect-ratio: 1; background: var(--gradient); border-radius: 8px; margin-bottom: 10px; }
.shop-mock-img.alt-1 { background: linear-gradient(160deg, #1a1f30, #4a3858); }
.shop-mock-img.alt-2 { background: linear-gradient(160deg, #4a584a, #182818); }
.shop-mock-img.alt-3 { background: linear-gradient(160deg, #58484a, #281818); }
.shop-mock-line { height: 7px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-bottom: 5px; }
.shop-mock-line.short { width: 60%; }
.shop-mock-price { background: var(--gradient); height: 10px; border-radius: 4px; width: 70%; margin-top: 6px; }

.team-section { padding: 80px 0; background: var(--bg-2); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 28px 20px; text-align: center; transition: all 0.2s; }
.team-card:hover { border-color: var(--neon); transform: translateY(-4px); }
.team-avatar { width: 90px; height: 90px; margin: 0 auto 16px; border-radius: 50%; background: var(--gradient); display: grid; place-items: center; font-size: 32px; font-weight: 800; color: white; }
.team-name { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--neon); text-transform: uppercase; letter-spacing: 1px; }
.team-bio { font-size: 12px; color: var(--muted); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); line-height: 1.5; }

.timeline-section { padding: 80px 0; }
.timeline { max-width: 760px; margin: 40px auto 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 80px; top: 0; bottom: 0; width: 2px; background: var(--gradient); }
.tl-item { display: grid; grid-template-columns: 80px 1fr; gap: 40px; margin-bottom: 32px; position: relative; }
.tl-year { font-size: 24px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; padding-top: 8px; }
.tl-content { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 20px; position: relative; }
.tl-content::before { content: ''; position: absolute; left: -50px; top: 24px; width: 18px; height: 18px; border-radius: 50%; background: var(--gradient); border: 4px solid var(--bg); }
.tl-content h4 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.tl-content p { font-size: 13px; color: var(--muted); }

.contacts-section { padding: 60px 0 80px; }
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 30px; margin-bottom: 20px; }
.contact-info-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.contact-info-card .ic-sub { font-size: 12px; color: var(--neon); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.contact-rows { display: grid; gap: 14px; }
.contact-row { display: flex; gap: 14px; align-items: start; }
.contact-row-icon { width: 40px; height: 40px; background: var(--gradient); border-radius: 12px; display: grid; place-items: center; color: white; font-size: 16px; flex-shrink: 0; }
.contact-row-text { flex: 1; }
.contact-row-text strong { display: block; font-size: 14px; font-weight: 600; }
.contact-row-text span { font-size: 12px; color: var(--muted); }
.contact-form-card { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 36px; }
.contact-form-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.contact-form-card .cf-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; background: var(--bg-3); border: 1px solid var(--line); border-radius: 10px; color: var(--text); font-family: 'Sora', sans-serif; font-size: 14px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--neon); }
.field textarea { min-height: 90px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form-card .btn { width: 100%; justify-content: center; }
.map-block { margin-top: 20px; height: 220px; background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; position: relative; }

@media (max-width: 1024px) {
  .header-inner { grid-template-columns: auto 1fr; }
  .search-bar { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 44px; }
  .hero-visual { height: 400px; }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .banners-row { grid-template-columns: 1fr; }
  .banner-1 { grid-row: span 1; min-height: 280px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .story-grid, .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero h1 { font-size: 44px; }
}
@media (max-width: 720px) {
  .header-inner { padding: 14px 20px; gap: 14px; }
  .nav-inner { gap: 18px; padding: 0 20px; }
  .section-inner { padding: 0 20px; }
  .hero { padding: 40px 0 60px; }
  .hero h1 { font-size: 34px; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .tl-item { grid-template-columns: 60px 1fr; gap: 20px; }
  .tl-content::before { left: -34px; }
  .field-row { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 28px; }
  .page-header h1 { font-size: 32px; }
}
