: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}
 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}
