:root{
 --gold:#C9A84C;
 --gold-light:#E8C96A;
 --dark:#0A0A0F;
 --dark2:#111118;
 --dark3:#1A1A24;
 --dark4:#22222E;
 --text:#F0EEE8;
 --muted:#8A8898;
 --accent:#5B6AF0;
}
 *{margin:0;padding:0;box-sizing:border-box}
 html,body{overflow-x:hidden}
 img{max-width:100%;height:auto}
 html{scroll-behavior:smooth}
 body{
 font-family:'Inter',sans-serif;
 background:var(--dark);
 color:var(--text);
 overflow-x:hidden;
}
 #age-gate{
 position:fixed;inset:0;z-index:9999;
 background:var(--dark);
 display:flex;align-items:center;justify-content:center;
 flex-direction:column;
 text-align:center;
 padding:2rem;
}
 #age-gate .logo-gate{font-size:2rem;font-weight:900;letter-spacing:0.2em;color:var(--gold);margin-bottom:2rem}
 #age-gate p{font-size:0.9rem;color:var(--muted);max-width:340px;margin-bottom:2.5rem;line-height:1.7}
 #age-gate h2{font-size:1.5rem;font-weight:700;margin-bottom:0.5rem}
 .age-btns{display:flex;gap:1rem;flex-wrap:wrap;justify-content:center}
 .btn-yes{
 padding:0.85rem 2.5rem;background:var(--gold);color:#000;
 border:none;border-radius:8px;font-weight:700;font-size:0.95rem;
 cursor:pointer;transition:background 0.2s;
}
 .btn-yes:hover{background:var(--gold-light)}
 .btn-no{
 padding:0.85rem 2.5rem;background:transparent;color:var(--muted);
 border:1px solid var(--dark4);border-radius:8px;font-weight:500;font-size:0.95rem;
 cursor:pointer;text-decoration:none;display:flex;align-items:center;
}
 header{
 position:fixed;top:0;left:0;right:0;z-index:100;
 padding:1.2rem 5%;
 display:flex;align-items:center;justify-content:space-between;
 background:rgba(10,10,15,0.85);
 backdrop-filter:blur(20px);
 border-bottom:1px solid rgba(201,168,76,0.12);
 transition:all 0.3s;
}
 .logo{font-size:1.4rem;font-weight:900;letter-spacing:0.15em;color:var(--gold);text-decoration:none;white-space:nowrap}
 nav{display:flex;gap:2rem}
 nav a{color:var(--muted);text-decoration:none;font-size:0.88rem;font-weight:500;letter-spacing:0.05em;transition:color 0.2s}
 nav a:hover{color:var(--text)}
 .header-cta{display:flex;align-items:center;gap:1rem}
 .header-phone{color:var(--text);text-decoration:none;font-size:0.9rem;font-weight:600}
 .btn-primary{
 padding:0.6rem 1.4rem;background:var(--gold);color:#000;
 border:none;border-radius:7px;font-weight:700;font-size:0.82rem;
 cursor:pointer;text-decoration:none;letter-spacing:0.03em;transition:background 0.2s;
}
 .btn-primary:hover{background:var(--gold-light)}
 .burger{
 display:none;flex-direction:column;gap:5px;background:none;border:none;
 cursor:pointer;padding:0.4rem;z-index:110;
}
 .burger span{width:22px;height:2px;background:var(--text);border-radius:2px;transition:all 0.25s}
 .burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
 .burger.open span:nth-child(2){opacity:0}
 .burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
 .mobile-nav{
 position:fixed;top:0;right:-100%;height:100vh;width:min(78%,320px);
 background:var(--dark2);z-index:105;padding:6rem 2rem 2rem;
 display:flex;flex-direction:column;gap:1.6rem;
 border-left:1px solid rgba(201,168,76,0.15);
 transition:right 0.3s ease;box-shadow:-20px 0 60px rgba(0,0,0,0.5);
}
 .mobile-nav.open{right:0}
 .mobile-nav a{
 color:var(--text);text-decoration:none;font-size:1.05rem;font-weight:600;
 letter-spacing:0.02em;padding-bottom:0.8rem;border-bottom:1px solid rgba(255,255,255,0.06);
}
 .mobile-nav-backdrop{
 position:fixed;inset:0;z-index:104;background:rgba(0,0,0,0.6);
 display:none;
}
 .mobile-nav-backdrop.open{display:block}
 .hero{
 min-height:100vh;display:flex;align-items:center;
 padding:8rem 5% 4rem;
 background:
 radial-gradient(ellipse 60% 80% at 70% 50%,rgba(201,168,76,0.07) 0%,transparent 70%),
 radial-gradient(ellipse 80% 60% at 20% 80%,rgba(91,106,240,0.05) 0%,transparent 60%),
 var(--dark);
 position:relative;overflow:hidden;
}
 .hero::before{
 content:'';
 position:absolute;top:-20%;right:-10%;width:600px;height:600px;
 border-radius:50%;
 background:radial-gradient(circle,rgba(201,168,76,0.08) 0%,transparent 70%);
 pointer-events:none;
}
 .hero-content{max-width:640px;position:relative;z-index:1}
 .hero-badge{
 display:inline-flex;align-items:center;gap:0.5rem;
 background:rgba(201,168,76,0.1);border:1px solid rgba(201,168,76,0.25);
 color:var(--gold);font-size:0.75rem;font-weight:600;
 padding:0.4rem 1rem;border-radius:50px;letter-spacing:0.1em;
 margin-bottom:2rem;
}
 .hero-badge::before{content:'●';font-size:0.5rem}
 .hero h1{
 font-size:clamp(2.8rem,6vw,5rem);font-weight:900;
 line-height:1.05;letter-spacing:-0.02em;
 margin-bottom:1.5rem;
}
 .hero h1 span{color:var(--gold)}
 .hero p{
 font-size:1.05rem;color:var(--muted);line-height:1.7;
 max-width:480px;margin-bottom:2.5rem;
}
 .hero-btns{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:3rem}
 .btn-outline{
 padding:0.85rem 2rem;background:transparent;color:var(--text);
 border:1px solid rgba(255,255,255,0.2);border-radius:8px;font-weight:600;
 font-size:0.9rem;cursor:pointer;text-decoration:none;transition:border-color 0.2s;
}
 .btn-outline:hover{border-color:var(--gold);color:var(--gold)}
 .btn-lg{padding:0.95rem 2.5rem;font-size:0.95rem;border-radius:8px}
 .hero-stats{display:flex;gap:2.5rem;flex-wrap:wrap}
 .stat{}
 .stat-num{font-size:1.8rem;font-weight:800;color:var(--gold)}
 .stat-label{font-size:0.78rem;color:var(--muted);letter-spacing:0.05em;margin-top:0.2rem}
 .hero-visual{
 position:absolute;right:5%;top:50%;transform:translateY(-50%);
 width:min(45%,520px);
 display:flex;align-items:center;justify-content:center;
}
 .device-card{
 width:100%;aspect-ratio:3/4;max-height:520px;
 background:linear-gradient(145deg,var(--dark3),var(--dark4));
 border-radius:32px;
 border:1px solid rgba(201,168,76,0.15);
 display:flex;flex-direction:column;align-items:center;justify-content:center;
 gap:1rem;position:relative;overflow:hidden;
}
 .device-card::before{
 content:'';
 position:absolute;top:-30%;left:-30%;width:160%;height:160%;
 background:radial-gradient(ellipse at 60% 30%,rgba(201,168,76,0.08) 0%,transparent 60%);
}
 .device-photo{
 max-width:220px;max-height:380px;width:auto;height:auto;
 object-fit:contain;
 filter:drop-shadow(0 30px 50px rgba(0,0,0,0.55));
 position:relative;z-index:1;
}
 .device-card-label{
 font-size:0.75rem;font-weight:600;letter-spacing:0.15em;
 color:var(--muted);position:relative;z-index:1;
}
 .device-card-price{font-size:1.5rem;font-weight:800;color:var(--gold);position:relative;z-index:1}
 .floating-badge{
 position:absolute;padding:0.6rem 1rem;
 background:var(--dark2);border:1px solid rgba(201,168,76,0.2);
 border-radius:10px;font-size:0.75rem;font-weight:600;
 display:flex;align-items:center;gap:0.4rem;
 white-space:nowrap;z-index:2;
 box-shadow:0 10px 30px rgba(0,0,0,0.4);
}
 .floating-badge.top-left{top:8%;left:6%;color:var(--text)}
 .floating-badge.bottom-right{bottom:8%;right:6%;color:var(--gold)}
 .ticker{
 background:var(--dark2);border-top:1px solid rgba(201,168,76,0.1);border-bottom:1px solid rgba(201,168,76,0.1);
 padding:0.9rem 0;overflow:hidden;white-space:nowrap;
}
 .ticker-inner{
 display:inline-flex;gap:0;
 animation:ticker 18s linear infinite;
}
 .ticker-item{
 display:inline-flex;align-items:center;gap:1rem;padding:0 2rem;
 font-size:0.78rem;font-weight:600;letter-spacing:0.12em;color:var(--muted);
 text-transform:uppercase;
}
 .ticker-item span{color:var(--gold)}
 .ticker-sep{color:rgba(201,168,76,0.3)}
 @keyframes ticker{from{transform:translateX(0)}to{transform:translateX(-50%)}}
 section{padding:6rem 5%}
 .section-label{
 font-size:0.72rem;font-weight:700;letter-spacing:0.2em;color:var(--gold);
 text-transform:uppercase;margin-bottom:1rem;
}
 .section-title{font-size:clamp(2rem,4vw,3rem);font-weight:800;line-height:1.1;margin-bottom:1rem}
 .section-sub{font-size:1rem;color:var(--muted);max-width:500px;line-height:1.7;margin-bottom:3rem}
 #catalog{background:var(--dark2)}
 .catalog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.5rem}
 .product-card{
 background:var(--dark3);border-radius:20px;overflow:hidden;
 border:1px solid rgba(255,255,255,0.05);transition:all 0.3s;
 position:relative;
}
 .product-card:hover{transform:translateY(-6px);border-color:rgba(201,168,76,0.25);box-shadow:0 30px 60px rgba(0,0,0,0.3)}
 .product-img{
 height:220px;background:linear-gradient(135deg,var(--dark4),#1e1e2a);
 display:flex;align-items:center;justify-content:center;
 position:relative;overflow:hidden;
}
 .product-img::before{
 content:'';
 position:absolute;top:-30%;left:-30%;width:160%;height:160%;
 background:radial-gradient(circle at 60% 40%,rgba(201,168,76,0.07),transparent 60%);
}
 .product-photo{
 max-width:70%;max-height:85%;width:auto;height:auto;
 object-fit:contain;position:relative;z-index:1;
 filter:drop-shadow(0 18px 30px rgba(0,0,0,0.5));
}
 .stick-img-icon{
 display:flex;gap:6px;align-items:flex-end;
}
 .stick-tube{
 width:14px;height:90px;border-radius:7px;
 border:1px solid rgba(201,168,76,0.2);
}
 .product-badge{
 position:absolute;top:12px;left:12px;
 padding:0.3rem 0.7rem;border-radius:6px;
 font-size:0.68rem;font-weight:700;letter-spacing:0.08em;
}
 .badge-hit{background:rgba(201,168,76,0.15);color:var(--gold);border:1px solid rgba(201,168,76,0.3)}
 .badge-new{background:rgba(91,106,240,0.15);color:#8899ff;border:1px solid rgba(91,106,240,0.3)}
 .product-body{padding:1.4rem}
 .product-name{font-size:1rem;font-weight:700;margin-bottom:0.4rem}
 .product-desc{font-size:0.82rem;color:var(--muted);line-height:1.6;margin-bottom:1.2rem}
 .product-footer{display:flex;align-items:center;justify-content:space-between}
 .product-price{font-size:1.3rem;font-weight:800;color:var(--gold)}
 .btn-order{
 padding:0.55rem 1.2rem;background:rgba(201,168,76,0.1);
 border:1px solid rgba(201,168,76,0.3);color:var(--gold);
 border-radius:8px;font-weight:700;font-size:0.82rem;cursor:pointer;
 text-decoration:none;transition:all 0.2s;
}
 .btn-order:hover{background:var(--gold);color:#000}
 .sticks-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:1rem}
 .stick-card{
 background:var(--dark3);border-radius:14px;padding:1.2rem;
 border:1px solid rgba(255,255,255,0.05);text-align:center;
 transition:all 0.2s;cursor:pointer;
}
 .stick-card:hover{border-color:rgba(201,168,76,0.3);transform:translateY(-3px)}
 .stick-color-bar{
 width:100%;height:6px;border-radius:3px;margin-bottom:0.9rem;
}
 .stick-name{font-size:0.85rem;font-weight:600;margin-bottom:0.3rem}
 .stick-origin{font-size:0.72rem;color:var(--muted);margin-bottom:0.6rem}
 .stick-price{font-size:1rem;font-weight:800;color:var(--gold)}
 #about{
 background:var(--dark);
 display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;
}
 .about-visual{
 background:linear-gradient(145deg,var(--dark3),var(--dark4));
 border-radius:28px;padding:3rem;aspect-ratio:1;
 border:1px solid rgba(201,168,76,0.1);
 display:grid;grid-template-columns:1fr 1fr;gap:1rem;
 position:relative;overflow:hidden;
}
 .about-visual::before{
 content:'';
 position:absolute;bottom:-20%;right:-20%;width:300px;height:300px;
 border-radius:50%;
 background:radial-gradient(circle,rgba(201,168,76,0.06),transparent 70%);
}
 .about-stat-box{
 background:var(--dark2);border-radius:16px;padding:1.5rem;
 border:1px solid rgba(255,255,255,0.04);
 display:flex;flex-direction:column;justify-content:space-between;
}
 .about-stat-box:nth-child(2){margin-top:0}
 .about-stat-box:nth-child(4){margin-top:0}
 .about-stat-num{font-size:2rem;font-weight:900;color:var(--gold)}
 .about-stat-desc{font-size:0.78rem;color:var(--muted);line-height:1.5;margin-top:0.5rem}
 .why-list{display:flex;flex-direction:column;gap:1.2rem}
 .why-item{
 display:flex;align-items:flex-start;gap:1rem;
 padding:1.2rem;background:var(--dark3);border-radius:14px;
 border:1px solid rgba(255,255,255,0.04);transition:border-color 0.2s;
}
 .why-item:hover{border-color:rgba(201,168,76,0.2)}
 .why-num{
 width:36px;height:36px;border-radius:10px;
 background:rgba(201,168,76,0.1);border:1px solid rgba(201,168,76,0.2);
 color:var(--gold);font-weight:800;font-size:0.85rem;
 display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
 .why-content h4{font-size:0.92rem;font-weight:700;margin-bottom:0.25rem}
 .why-content p{font-size:0.8rem;color:var(--muted);line-height:1.6}
 #delivery{background:var(--dark2)}
 .steps-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1.5rem}
 .step-card{
 background:var(--dark3);border-radius:18px;padding:1.8rem;
 border:1px solid rgba(255,255,255,0.04);position:relative;
}
 .step-num{
 font-size:3.5rem;font-weight:900;color:rgba(201,168,76,0.08);
 line-height:1;margin-bottom:1rem;
}
 .step-card h3{font-size:0.95rem;font-weight:700;margin-bottom:0.5rem}
 .step-card p{font-size:0.82rem;color:var(--muted);line-height:1.6}
 #promo{background:var(--dark)}
 .promo-card{
 background:linear-gradient(135deg,rgba(201,168,76,0.08),rgba(201,168,76,0.02));
 border:1px solid rgba(201,168,76,0.2);border-radius:24px;
 padding:3rem;display:flex;align-items:center;
 justify-content:space-between;gap:2rem;flex-wrap:wrap;
}
 .promo-text h3{font-size:1.6rem;font-weight:800;margin-bottom:0.5rem}
 .promo-text p{color:var(--muted);font-size:0.9rem;max-width:400px;line-height:1.6}
 .promo-badge-lg{
 background:var(--gold);color:#000;
 font-size:1.8rem;font-weight:900;padding:1rem 1.8rem;border-radius:14px;
 letter-spacing:-0.02em;
}
 #contacts{background:var(--dark2)}
 .contacts-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem}
 .contact-method{
 display:flex;align-items:center;gap:1.2rem;padding:1.4rem;
 background:var(--dark3);border-radius:16px;
 border:1px solid rgba(255,255,255,0.04);text-decoration:none;
 transition:all 0.2s;margin-bottom:1rem;
}
 .contact-method:hover{border-color:rgba(201,168,76,0.3)}
 .contact-icon{
 width:48px;height:48px;border-radius:12px;
 background:rgba(201,168,76,0.1);display:flex;align-items:center;justify-content:center;
 font-size:1.3rem;flex-shrink:0;
}
 .contact-label{font-size:0.75rem;color:var(--muted);letter-spacing:0.05em}
 .contact-value{font-size:1rem;font-weight:600;color:var(--text)}
 .contact-form-box{
 background:var(--dark3);border-radius:20px;padding:2rem;
 border:1px solid rgba(255,255,255,0.05);
}
 .contact-form-box h3{font-size:1.2rem;font-weight:700;margin-bottom:0.4rem}
 .contact-form-box p{font-size:0.82rem;color:var(--muted);margin-bottom:1.5rem}
 .form-group{margin-bottom:1rem}
 .form-group input,.form-group textarea{
 width:100%;padding:0.85rem 1rem;
 background:var(--dark2);border:1px solid rgba(255,255,255,0.08);
 border-radius:10px;color:var(--text);font-family:inherit;font-size:0.9rem;
 outline:none;transition:border-color 0.2s;resize:none;
}
 .form-group input:focus,.form-group textarea:focus{border-color:rgba(201,168,76,0.4)}
 .form-group input::placeholder,.form-group textarea::placeholder{color:var(--muted)}
 .form-group textarea{height:100px}
 .btn-full{width:100%;padding:0.95rem;font-size:0.95rem;font-weight:700;border-radius:10px}
 footer{
 background:var(--dark);border-top:1px solid rgba(255,255,255,0.05);
 padding:2.5rem 5%;display:flex;align-items:center;justify-content:space-between;
 flex-wrap:wrap;gap:1rem;
}
 footer .logo{font-size:1.1rem}
 .footer-links{display:flex;gap:2rem}
 .footer-links a{color:var(--muted);text-decoration:none;font-size:0.82rem;transition:color 0.2s}
 .footer-links a:hover{color:var(--text)}
 .footer-copy{font-size:0.78rem;color:var(--muted)}
 .warning-bar{
 background:rgba(201,168,76,0.05);border-top:1px solid rgba(201,168,76,0.1);
 padding:0.7rem 5%;text-align:center;
 font-size:0.72rem;color:var(--muted);letter-spacing:0.05em;
}
 .modal-overlay{
 position:fixed;inset:0;z-index:200;
 background:rgba(0,0,0,0.8);backdrop-filter:blur(8px);
 display:none;align-items:center;justify-content:center;padding:2rem;
}
 .modal-overlay.open{display:flex}
 .modal{
 background:var(--dark3);border-radius:24px;padding:2.5rem;
 border:1px solid rgba(201,168,76,0.2);max-width:440px;width:100%;
 position:relative;
}
 .modal h3{font-size:1.3rem;font-weight:800;margin-bottom:0.5rem}
 .modal p{font-size:0.85rem;color:var(--muted);margin-bottom:1.5rem;line-height:1.6}
 .modal-close{
 position:absolute;top:1.2rem;right:1.2rem;
 background:var(--dark4);border:none;color:var(--muted);
 width:32px;height:32px;border-radius:8px;cursor:pointer;font-size:1rem;
}
 @media (max-width:900px){
 nav{display:none}
 .burger{display:flex}
 .hero-visual{position:static;transform:none;width:100%;max-width:280px;margin:2.5rem auto 0}
 .hero{flex-direction:column;align-items:flex-start;padding-bottom:3rem}
 .hero-content{max-width:100%}
 #about{grid-template-columns:1fr;gap:3rem}
 .about-visual{order:-1;max-width:420px;margin:0 auto;aspect-ratio:auto}
 .about-stat-box:nth-child(2),.about-stat-box:nth-child(4){margin-top:0}
 .contacts-grid{grid-template-columns:1fr}
 .promo-card{flex-direction:column;text-align:center}
 .promo-text p{max-width:100%}
}
 @media (max-width:600px){
 section{padding:3.5rem 5%}
 .hero{padding:6.5rem 5% 2.5rem;min-height:auto}
 .hero-btns{flex-direction:column}
 .hero-btns a{width:100%;text-align:center}
 .hero-stats{gap:1.5rem}
 header{padding:1rem 5%}
 .header-phone{display:none}
 .btn-primary.header-order{padding:0.55rem 1rem;font-size:0.78rem}
 .catalog-grid{grid-template-columns:1fr}
 .sticks-grid{grid-template-columns:repeat(2,1fr)}
 .steps-grid{grid-template-columns:1fr}
 .contacts-grid{gap:1.5rem}
 .promo-badge-lg{font-size:1.3rem;padding:0.8rem 1.4rem}
 .age-btns{flex-direction:column;width:100%}
 .age-btns .btn-yes,.age-btns .btn-no{width:100%;justify-content:center;text-align:center}
 footer{padding:2rem 5%;flex-direction:column;align-items:flex-start}
 .footer-links{flex-wrap:wrap;gap:1rem 1.5rem}
}
 @media (max-width:420px){
 .hero h1{font-size:2.3rem}
 .sticks-grid{grid-template-columns:1fr 1fr;gap:0.7rem}
 .stick-card{padding:0.9rem}
}
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,[tabindex]:focus-visible{outline:2px solid #C9A84C;outline-offset:2px;border-radius:4px}
.modal-close{min-width:44px;min-height:44px}
.why-num{min-width:44px;min-height:44px}
.btn-order,.stk-var{min-height:44px}
/* a11y: кнопки корзины как button — сброс дефолтов */
.ilm-btn,.stk-btn{border:none;font-family:inherit}


/* === EXTRACTED INLINE CSS === */
.sec-label{color:#C9A84C;font-size:.8rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;margin-bottom:.8rem}
.sec-title{font-size:2.4rem;font-weight:800;line-height:1.1;margin-bottom:.8rem}
.sec-sub{color:#8A8898;font-size:.95rem;line-height:1.6}
.dev-grid{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem}
.ilm-card{background:linear-gradient(145deg,#1A1A24,#15151d);border:1px solid rgba(255,255,255,.06);border-radius:22px;padding:1.5rem;position:relative;transition:transform .45s cubic-bezier(.16,1,.3,1),box-shadow .45s,border-color .3s}
.ilm-card:hover{transform:translateY(-8px);box-shadow:0 28px 55px -15px rgba(0,0,0,.65);border-color:rgba(201,168,76,.35)}
.ilm-badge{position:absolute;top:1.1rem;left:1.1rem;z-index:2;padding:.3rem .7rem;border-radius:7px;font-size:.66rem;font-weight:800;background:rgba(201,168,76,.15);color:#C9A84C;border:1px solid rgba(201,168,76,.35)}
.ilm-badge-new{background:rgba(91,106,240,.15);color:#8899ff;border-color:rgba(91,106,240,.35)}
.ilm-photo-wrap{position:relative;height:220px;display:flex;align-items:center;justify-content:center;margin-bottom:1rem}
.ilm-photo-wrap::before{content:'';position:absolute;width:70%;height:70%;border-radius:50%;background:radial-gradient(circle,rgba(201,168,76,.14),transparent 70%);filter:blur(15px)}
.ilm-photo{max-height:210px;max-width:80%;object-fit:contain;position:relative;z-index:1;filter:drop-shadow(0 18px 28px rgba(0,0,0,.5));transition:opacity .16s ease,transform .5s}
.ilm-card:hover .ilm-photo{transform:scale(1.06)}
.ilm-colors{display:flex;gap:.5rem;justify-content:center;margin-bottom:1.2rem}
.ilm-dot{width:24px;height:24px;border-radius:50%;border:2px solid rgba(255,255,255,.15);cursor:pointer;transition:transform .2s,border-color .2s;padding:0}.ilm-dot:hover{transform:scale(1.15)}.ilm-dot.active{border-color:#C9A84C;transform:scale(1.1)}
.ilm-name{font-size:1.15rem;font-weight:700;margin-bottom:.4rem}
.ilm-desc{font-size:.82rem;color:#8A8898;line-height:1.6;margin-bottom:1.3rem;min-height:3.2em}
.ilm-footer{display:flex;align-items:center;justify-content:space-between}
.ilm-price{font-size:1.5rem;font-weight:800;color:#C9A84C}
.ilm-btn,.stk-btn{padding:.65rem 1.4rem;background:#C9A84C;color:#000;border-radius:10px;font-weight:700;font-size:.85rem;text-decoration:none;cursor:pointer;transition:transform .2s,box-shadow .3s}
.ilm-btn:hover,.stk-btn:hover{transform:translateY(-2px);box-shadow:0 8px 20px -6px rgba(201,168,76,.6)}
.stk-filters{display:flex;gap:.6rem;justify-content:center;flex-wrap:wrap;margin-bottom:2.5rem}
.stk-filter{padding:.55rem 1.2rem;background:#1A1A24;border:1px solid rgba(255,255,255,.08);color:#8A8898;border-radius:10px;font-size:.85rem;font-weight:600;cursor:pointer;font-family:'Inter',sans-serif}
.stk-filter.active{background:#C9A84C;color:#000;border-color:#C9A84C}
.stk-grid{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:1.2rem}
.stk-card{background:linear-gradient(145deg,#1A1A24,#15151d);border:1px solid rgba(255,255,255,.05);border-radius:16px;padding:1.2rem;transition:transform .4s cubic-bezier(.16,1,.3,1),box-shadow .4s,border-color .3s}
.stk-card:hover{transform:translateY(-6px);box-shadow:0 18px 40px -12px rgba(0,0,0,.6);border-color:rgba(201,168,76,.3)}
.stk-photo{height:150px;display:flex;align-items:center;justify-content:center;margin-bottom:.8rem;background:radial-gradient(circle,rgba(255,255,255,.03),transparent 70%);border-radius:12px}
.stk-photo img{max-height:145px;max-width:90%;object-fit:contain}
.stk-flag{font-size:.74rem;color:#8A8898;margin-bottom:.3rem}
.stk-name{font-size:.98rem;font-weight:700;margin-bottom:.35rem}
.stk-desc{font-size:.74rem;color:#8A8898;line-height:1.45;margin-bottom:.9rem;min-height:3em}
.stk-foot{display:flex;flex-direction:column;align-items:stretch;gap:.55rem}
.stk-price{font-size:1.15rem;font-weight:800;color:#C9A84C;line-height:1}
.stk-btn{padding:.62rem .9rem;font-size:.8rem;white-space:nowrap;text-align:center;display:block}
.stk-variants{display:flex;gap:.25rem;margin:.2rem 0 .75rem;padding:.25rem;background:#13131b;border:1px solid rgba(255,255,255,.06);border-radius:11px}
.stk-var{flex:1;padding:.42rem .3rem;background:transparent;border:none;color:#9b99a7;border-radius:8px;font-size:.74rem;font-weight:700;font-family:Inter,sans-serif;cursor:pointer;transition:color .2s,background .2s}
.stk-var:hover{color:#D8D6CE}
.stk-var.active{background:#C9A84C;color:#000;box-shadow:0 2px 8px -2px rgba(201,168,76,.5)}
.stk-card.hidden{display:none}
.soon-wrap{max-width:1100px;margin:3.2rem auto 0;text-align:center}
.soon-title{font-size:.8rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:#8A8898;margin-bottom:.35rem}
.soon-sub{font-size:.85rem;color:#9a98a8;margin-bottom:1.4rem}
.soon-grid{display:flex;gap:.8rem;justify-content:center;flex-wrap:wrap}
.soon-chip{display:flex;flex-direction:column;align-items:center;gap:.4rem;min-width:120px;padding:1.1rem 1.3rem;background:rgba(255,255,255,.02);border:1px dashed rgba(201,168,76,.3);border-radius:14px}
.soon-flag{font-size:1.7rem;line-height:1}
.soon-name{font-size:.9rem;font-weight:700;color:#D8D6CE}
.soon-badge{font-size:.64rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:#C9A84C;background:rgba(201,168,76,.1);padding:.2rem .55rem;border-radius:6px}
@media(max-width:600px){#catalog,#sticks{padding:3.5rem 5%!important}.sec-title{font-size:1.8rem!important}.stk-grid{grid-template-columns:1fr 1fr!important}}
.hero{justify-content:space-between!important;gap:3rem;align-items:center!important}
.hero-visual{position:static!important;top:auto!important;transform:none!important;flex:0 0 auto;width:min(42%,460px)!important}
.hero-content{flex:1;max-width:560px}
@media(max-width:900px){.hero{flex-direction:column;align-items:flex-start!important;padding:7rem 5% 3rem!important}.hero-visual{width:100%!important;max-width:340px!important;margin:2rem auto 0!important}.hero-content{max-width:100%}}
@media(max-width:600px){.hero h1{font-size:2.2rem!important}.dev-grid{grid-template-columns:1fr!important}.stk-grid{grid-template-columns:1fr 1fr!important}.sec-title{font-size:1.7rem!important}.hero-btns{flex-direction:column}.hero-btns a{width:100%;text-align:center}}
@media(max-width:400px){.stk-grid{grid-template-columns:1fr!important}.hero h1{font-size:1.9rem!important}}
@media(max-width:360px){.logo{font-size:1.05rem!important;letter-spacing:.06em!important;white-space:nowrap!important}}
/* ===== 1. SCROLL-REVEAL (плавное появление при прокрутке) ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
/* ===== 2. ПРЕМИАЛЬНОЕ СВЕЧЕНИЕ за hero-устройством ===== */
.hero-visual { position: relative; }
.hero-visual::after {
  content: '';
  position: absolute; inset: -15% -15% -15% -15%;
  background: radial-gradient(circle at 50% 45%, rgba(201,168,76,0.22), rgba(201,168,76,0.05) 45%, transparent 70%);
  filter: blur(20px); z-index: -1;
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{opacity:0.7; transform:scale(1)} 50%{opacity:1; transform:scale(1.06)} }
/* ===== 3. 3D-TILT и premium hover для карточек товаров ===== */
.product-card, .stick-card {
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s, border-color 0.3s;
  transform-style: preserve-3d;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 24px 50px -12px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.25);
  border-color: rgba(201,168,76,0.4) !important;
}
.product-card:hover .product-photo { transform: scale(1.06) translateY(-4px); }
.product-photo { transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
/* ===== 4. ПЛАВНОЕ СВЕЧЕНИЕ кнопок (premium shine) ===== */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.6s;
}
.btn-primary:hover::after { left: 130%; }
/* ===== 5. ДВИЖУЩИЙСЯ градиентный фон у hero ===== */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 80% 50% at 70% 0%, rgba(91,106,240,0.08), transparent 60%),
              radial-gradient(ellipse 60% 50% at 20% 100%, rgba(201,168,76,0.06), transparent 60%);
  animation: bgShift 12s ease-in-out infinite alternate;
}
@keyframes bgShift { 0%{transform:translateX(0)} 100%{transform:translateX(-3%)} }
/* ===== 6. Счётчики hero — плавный счёт (через JS) ===== */
.stat-num { font-variant-numeric: tabular-nums; }
/* Уважение к prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity:1 !important; transform:none !important; }
  .hero-visual::after, .hero::before { animation: none; }
}
.fhero{display:grid;grid-template-columns:1.05fr .95fr;gap:2.5rem;align-items:center;padding:105px 6% 45px;background:#0A0A0F}
.fhero .fh-head{grid-column:1;grid-row:1;align-self:end}
.fhero .fh-buy{grid-column:1;grid-row:2;align-self:start}
.fhero .fh-img{grid-column:2;grid-row:1 / span 2;display:flex;align-items:center;justify-content:center}
.fhero .fh-img .device-card{max-width:360px;width:100%;margin:0}
.fhero h1{font-size:3rem;line-height:1.05;margin:.4rem 0 .9rem;font-weight:800;color:#F0EEE8}
.fhero h1 span{color:var(--gold)}
.fhero .fh-bc{font-size:.82rem;margin-bottom:1rem;color:#888}
.fhero .fh-bc a{color:#C9A84C;text-decoration:none}
.fhero p{color:#cfcabf;line-height:1.6;margin-bottom:1.3rem;max-width:480px}
@media(max-width:900px){.fhero{grid-template-columns:1fr;gap:1.1rem;padding:88px 6% 32px;text-align:center}.fhero .fh-head{grid-row:1;grid-column:1}.fhero .fh-img{grid-row:2;grid-column:1}.fhero .fh-buy{grid-row:3;grid-column:1}.fhero h1{font-size:2.2rem}.fhero .fh-img .device-card{max-width:300px}.fhero .stk-buy,.fhero .hero-badge,.fhero p{margin-left:auto;margin-right:auto}}
.site-stat{font-size:.76rem;color:var(--muted,#9a9aa6);margin:.55rem auto 0;text-align:center;display:flex;align-items:center;justify-content:center;gap:.45rem;font-variant-numeric:tabular-nums}
    .site-stat b{color:var(--text,#ededf2);font-weight:700}
    .site-stat .ss-dot{width:7px;height:7px;border-radius:50%;background:#3ad17a;box-shadow:0 0 0 0 rgba(58,209,122,.6);animation:ssPulse 2.2s infinite}
    @keyframes ssPulse{0%{box-shadow:0 0 0 0 rgba(58,209,122,.5)}70%{box-shadow:0 0 0 8px rgba(58,209,122,0)}100%{box-shadow:0 0 0 0 rgba(58,209,122,0)}}
img{-webkit-user-drag:none;-moz-user-drag:none;user-drag:none;-webkit-touch-callout:none}
.hdr-search-btn{background:#1A1A24;border:1px solid rgba(255,255,255,.08);color:#C9A84C;width:40px;height:40px;border-radius:10px;cursor:pointer;font-size:1.05rem;display:inline-flex;align-items:center;justify-content:center;margin-left:.4rem}
.hdr-search-btn:hover{border-color:#C9A84C}
#site-search{display:none;position:fixed;inset:0;z-index:10001;background:rgba(0,0,0,.78);backdrop-filter:blur(4px);align-items:flex-start;justify-content:center;padding:12vh 1rem 1rem;font-family:'Inter',sans-serif}
#site-search .ss-box{background:#15151d;border:1px solid rgba(201,168,76,.25);border-radius:18px;max-width:560px;width:100%;overflow:hidden}
#ss-input{width:100%;background:#13131b;border:none;border-bottom:1px solid rgba(255,255,255,.08);color:#F0EEE8;padding:1.1rem 1.3rem;font-size:1.05rem;outline:none;font-family:'Inter',sans-serif}
#ss-results{max-height:60vh;overflow:auto}
#ss-results a{display:flex;align-items:center;gap:.7rem;padding:.8rem 1.3rem;color:#F0EEE8;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.05)}
#ss-results a:hover{background:#1d1d27}
#ss-results .ic{font-size:1.1rem}
#ss-results .nm{font-weight:700}
#ss-results .sub{color:#8A8898;font-size:.78rem}
#ss-results .pr{margin-left:auto;color:#C9A84C;font-weight:700;font-size:.85rem;white-space:nowrap}
#ss-results .empty{color:#8A8898;padding:1.2rem 1.3rem;font-size:.9rem}