*, *::before, *::after{box-sizing: border-box}
html{scroll-behavior: smooth}
body{
 margin: 0;
 font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
 color: var(--text);
 background: var(--bg);
 line-height: 1.55;
 -webkit-font-smoothing: antialiased;
 transition: background-color .2s ease, color .2s ease;
}
img{max-width: 100%;display: block}
a{color: inherit;text-decoration: none}
button{font-family: inherit;cursor: pointer;border: none;background: none}
.skip-link{
 position: absolute;
 top: -40px;
 left: 0;
 z-index: 1000;
 background: var(--primary);
 color: #fff;
 padding: 10px 16px;
 font-weight: 700;
 border-radius: 0 0 var(--radius-sm) 0;
 transition: top .15s ease;
}
.skip-link:focus{top: 0}
:root, [data-theme="light"]{
 --bg: #ffffff;
 --bg-soft: #f7f7f5;
 --bg-card: #ffffff;
 --bg-dark: #0b0b0b;
 --bg-darker: #000000;
 --text: #0b0b0b;
 --text-soft: #555552;
 --text-muted: #7f8282;
 --border: #dcdcda;
 --primary: #0b0b0b;
 --primary-dark: #181818;
 --accent: #00b67a;
 --success: #00b67a;
 --danger: #ff3722;
 --radius: 8px;
 --radius-sm: 6px;
 --radius-lg: 12px;
 --shadow-sm: 0 1px 2px rgba(11,11,11,.04);
 --shadow: 0 12px 32px rgba(11,11,11,.08);
 --shadow-lg: 0 28px 70px rgba(11,11,11,.14);
 --container: 1200px;
}
[data-theme="dark"]{
 --bg: #0b0b0b;
 --bg-soft: #181818;
 --bg-card: #111111;
 --bg-dark: #000000;
 --bg-darker: #000000;
 --text: #ffffff;
 --text-soft: #d8d8d4;
 --text-muted: #9c9c98;
 --border: #2a2a2a;
 --shadow-sm: 0 4px 14px rgba(0,0,0,.3);
 --shadow: 0 12px 32px rgba(0,0,0,.45);
 --shadow-lg: 0 24px 60px rgba(0,0,0,.55);
}
[data-theme="dark"] body{background: var(--bg);color: var(--text)}
[data-theme="dark"] .site-header{background: rgba(11,19,32,.85)}
[data-theme="dark"] .hero{background: var(--bg)}
[data-theme="dark"] .logos-strip{background: var(--bg-card)}
[data-theme="dark"] .product, [data-theme="dark"] .cat-card,
[data-theme="dark"] .feature, [data-theme="dark"] .testi,
[data-theme="dark"] .blog-card, [data-theme="dark"] .compare-col,
[data-theme="dark"] .faq details, [data-theme="dark"] .floating-card,
[data-theme="dark"] .filter, [data-theme="dark"] .map-card{background: var(--bg-card)}
[data-theme="dark"] .product-img{background: var(--bg-soft)}
[data-theme="dark"] .field input, [data-theme="dark"] .field select, [data-theme="dark"] .field textarea{
 background: var(--bg-card);color: var(--text);border-color: var(--border);
}
[data-theme="dark"] .nav.is-open{background: var(--bg-card)}
[data-theme="dark"] .btn-ghost{color: var(--text);border-color: var(--border)}
[data-theme="dark"] .btn-ghost:hover{background: var(--bg-soft)}
.container{
 width: 100%;
 max-width: var(--container);
 margin: 0 auto;
 padding: 0 24px;
}
.section{padding: 96px 0}
.section{content-visibility: auto;contain-intrinsic-size: auto 600px}
.hero{content-visibility: visible}
.section-alt{background: var(--bg-soft)}
.section-dark{
 background: var(--bg-dark);
 color: #f7f7f5;
}
.eyebrow{
 display: inline-block;
 font-size: 13px;
 font-weight: 500;
 letter-spacing: .04em;
 text-transform: uppercase;
 color: var(--primary);
 margin-bottom: 14px;
}
.eyebrow-light{color: rgba(255,255,255,.72)}
h1, h2, h3, h4{
 margin: 0 0 12px;
 line-height: 1.15;
 letter-spacing: 0;
 font-weight: 700;
}
h1{font-size: clamp(34px, 5vw, 58px)}
h2{font-size: clamp(28px, 3.4vw, 40px)}
h3{font-size: 18px}
p{margin: 0 0 16px;color: var(--text-soft)}
.grad{
 color: inherit;
}
.section-head{
 text-align: center;
 max-width: 720px;
 margin: 0 auto 56px;
}
.section-head p{font-size: 17px}
:focus{outline: none}
:focus-visible{
 outline: 2px solid var(--accent);
 outline-offset: 3px;
 border-radius: 2px;
}
:root{--text-soft: #4a4a47}
@media (prefers-reduced-motion: reduce){
 *, *::before, *::after{
 animation-duration: 0.01ms !important;
 animation-iteration-count: 1 !important;
 transition-duration: 0.01ms !important;
}
 html{scroll-behavior: auto}
}
@media print{
 .site-header, .site-footer, .nav-toggle, .theme-toggle,
 .wa-fab, .drawer, .drawer-overlay, .toast,
 .btn, .skip-link{display: none !important}
 body{color: #000;background: #fff;font-size: 12pt}
 a[href]::after{content: " (" attr(href) ")";font-size: 10pt;color: #555}
 a[href^="#"]::after, a[href^="tel:"]::after,
 a[href^="mailto:"]::after{content: ""}
 h1, h2, h3{page-break-after: avoid}
 img{max-width: 100%}
}
.btn{
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 min-height: 44px;
 padding: 12px 18px;
 border-radius: var(--radius-sm);
 font-weight: 500;
 font-size: 15px;
 line-height: 1;
 transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
 white-space: nowrap;
}
.btn-primary{
 background: var(--primary);
 color: #fff;
 border: 1px solid var(--primary);
}
.btn-primary:hover{background: var(--primary-dark);border-color: var(--primary-dark)}
.btn-ghost{
 background: transparent;
 color: var(--text);
 border: 1px solid var(--border);
}
.btn-ghost:hover{border-color: var(--text);background: var(--bg-soft)}
.section-dark .btn-primary{
 background: #fff;
 color: var(--bg-dark);
 border-color: #fff;
}
.section-dark .btn-ghost{
 color: #fff;
 border-color: rgba(255,255,255,.28);
}
.section-dark .btn-ghost:hover{background: rgba(255,255,255,.08);border-color: #fff}
.btn-lg{min-height: 52px;padding: 15px 22px;font-size: 16px}
.btn-sm{min-height: 36px;padding: 9px 14px;font-size: 14px}
.availability-bar{
 background: var(--bg-dark);
 color: rgba(255,255,255,.85);
 font-size: 12px;
 font-weight: 500;
 letter-spacing: .01em;
 padding: 6px 0;
 text-align: center;
}
.availability-bar a{
 color: rgba(255,255,255,.95);
 text-decoration: underline;
 text-underline-offset: 2px;
}
.availability-bar a:hover{color: #fff}
.availability-bar__inner{
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 6px;
}
.availability-bar__dot{
 display: inline-block;
 width: 7px;
 height: 7px;
 border-radius: 50%;
 background: #22c55e;
 box-shadow: 0 0 0 2px rgba(34,197,94,.3);
 animation: pulse-dot 2.5s ease infinite;
}
@keyframes pulse-dot{
 0%, 100%{box-shadow: 0 0 0 2px rgba(34,197,94,.3)}
 50%{box-shadow: 0 0 0 5px rgba(34,197,94,.0)}
}
@media (prefers-reduced-motion: reduce){
 .availability-bar__dot{animation: none}
}
@media (max-width: 480px){
 .availability-bar{display: none}
}
.site-header{
 position: sticky;
 top: 0;
 z-index: 50;
 background: rgba(255,255,255,.92);
 backdrop-filter: saturate(180%) blur(16px);
 border-bottom: 1px solid var(--border);
 transition: box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled{box-shadow: var(--shadow-sm)}
.header-inner{
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 24px;
 min-height: 68px;
}
.brand{
 display: inline-flex;
 align-items: center;
 gap: 12px;
 min-width: max-content;
}
.brand-logo{
 width: 36px;
 height: 36px;
 border: 1px solid var(--text);
 border-radius: var(--radius-sm);
 display: grid;
 place-items: center;
 color: var(--text);
 font-size: 12px;
 font-weight: 700;
 letter-spacing: 0;
 line-height: 1;
}
.brand-text{display: flex;flex-direction: column;line-height: 1.05}
.brand-text strong{font-size: 18px;font-weight: 700;letter-spacing: 0}
.brand-text small{font-size: 11px;color: var(--text-muted);font-weight: 400}
.brand-light .brand-logo{color: #fff;border-color: rgba(255,255,255,.5)}
.brand-light .brand-text strong, .brand-light .brand-text small{color: #fff}
.brand-svg{height: 36px;width: auto;color: var(--text);display: block}
.brand-light .brand-svg{color: #fff}
.nav{display: flex;gap: 26px}
.nav a{
 font-size: 14px;
 font-weight: 500;
 color: var(--text-soft);
 transition: color .15s ease;
}
.nav a:hover,
.nav a.active{color: var(--text)}
.header-cta{display: flex;align-items: center;gap: 10px}
.phone-link{
 display: inline-flex;
 align-items: center;
 gap: 6px;
 font-size: 14px;
 font-weight: 500;
 color: var(--text-soft);
}
.phone-link:hover{color: var(--text)}
.header-search-btn,
.theme-toggle,
.cart-btn,
.account-btn{
 display: inline-grid;
 place-items: center;
 width: 40px;
 height: 40px;
 border-radius: var(--radius-sm);
 border: 1px solid var(--border);
 color: var(--text);
 font-size: 0;
 transition: background .15s ease, border-color .15s ease;
}
.header-search-btn:hover,
.theme-toggle:hover,
.cart-btn:hover,
.account-btn:hover{background: var(--bg-soft);border-color: var(--text)}
.icon-ui{
 width: 18px;
 height: 18px;
 stroke: currentColor;
 stroke-width: 1.8;
 fill: none;
 stroke-linecap: round;
 stroke-linejoin: round;
}
.cart-btn{
 position: relative;
 font-size: 0;
}
.cart-count{
 position: absolute;
 top: -7px;
 right: -7px;
 min-width: 18px;
 height: 18px;
 padding: 0 5px;
 border-radius: 999px;
 background: var(--text);
 color: #fff;
 font-size: 11px;
 line-height: 18px;
 font-weight: 700;
}
.nav-toggle{
 display: none;
 flex-direction: column;
 gap: 5px;
 width: 40px;
 height: 40px;
 align-items: center;
 justify-content: center;
 border: 1px solid var(--border);
 border-radius: var(--radius-sm);
}
.nav-toggle span{
 width: 20px;
 height: 2px;
 background: var(--text);
 border-radius: 2px;
 transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.is-open span:nth-child(1){transform: translateY(7px) rotate(45deg)}
.nav-toggle.is-open span:nth-child(2){opacity: 0}
.nav-toggle.is-open span:nth-child(3){transform: translateY(-7px) rotate(-45deg)}
.hero{
 position: relative;
 overflow: hidden;
 padding: 88px 0 0;
 background: #fff;
}
.hero-grid{
 position: relative;
 display: grid;
 grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr);
 gap: 72px;
 align-items: center;
 padding-bottom: 92px;
}
.hero-copy .lead{
 font-size: 19px;
 color: var(--text-soft);
 max-width: 580px;
 margin: 18px 0 34px;
}
.hero-actions{display: flex;gap: 12px;flex-wrap: wrap;margin-bottom: 34px}
.hero-trust{
 list-style: none;
 padding: 18px 0 0;
 margin: 0;
 border-top: 1px solid var(--border);
 display: flex;
 flex-wrap: wrap;
 gap: 14px 24px;
 color: var(--text-soft);
 font-size: 14px;
 font-weight: 500;
}
.hero-trust li span{
 display: inline-flex;
 width: 18px;
 height: 18px;
 align-items: center;
 justify-content: center;
 margin-right: 6px;
 color: var(--accent);
 font-size: 13px;
 font-weight: 700;
}
.hero-visual{
 position: relative;
 min-height: 460px;
 display: grid;
 place-items: center;
}
.product-stage{
 position: relative;
 width: min(100%, 560px);
 aspect-ratio: 1.18;
 border-radius: var(--radius-lg);
 background: linear-gradient(180deg, #f7f7f5 0%, #fff 100%);
 border: 1px solid var(--border);
 display: grid;
 place-items: center;
 overflow: hidden;
}
.product-stage::before{
 content: '';
 position: absolute;
 width: 72%;
 height: 72%;
 border-radius: 50%;
 background: #fff;
 box-shadow: 0 30px 70px rgba(11,11,11,.08);
}
.hero-device{
 position: absolute;
 object-fit: contain;
 filter: drop-shadow(0 24px 34px rgba(11,11,11,.14));
}
.hero-device-main{
 width: 52%;
 left: 23%;
 top: 18%;
}
.hero-device-side{
 width: 31%;
 left: 8%;
 bottom: 16%;
}
.hero-device-small{
 width: 24%;
 right: 10%;
 bottom: 18%;
}
.hero-device-label{
 position: absolute;
 right: 24px;
 top: 24px;
 font-size: 12px;
 font-weight: 500;
 color: var(--text-muted);
}
.logos-strip{
 border-top: 1px solid var(--border);
 background: #fff;
 padding: 26px 0;
}
.logos-strip p{
 margin: 0;
 text-align: center;
 font-size: 13px;
 color: var(--text-muted);
 font-weight: 500;
}
.logos{display: none}
.categories{
 display: grid;
 grid-template-columns: repeat(4, minmax(0, 1fr));
 gap: 16px;
}
.cat-card{
 background: #fff;
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 24px;
 transition: transform .2s ease, border-color .2s ease, background .2s ease;
 display: flex;
 flex-direction: column;
 gap: 6px;
}
.cat-card:hover{
 transform: translateY(-2px);
 border-color: var(--text);
 background: var(--bg-soft);
}
.cat-icon{
 font-size: 12px;
 width: 48px;height: 48px;
 display: grid;
 place-items: center;
 background: #fff;
 border: 1px solid var(--border);
 border-radius: var(--radius-sm);
 margin-bottom: 16px;
 font-weight: 700;
 letter-spacing: .02em;
}
.cat-card p{font-size: 14px}
.cat-link{
 margin-top: auto;
 color: var(--text);
 font-weight: 600;
 font-size: 14px;
}
.filters{
 display: flex;
 flex-wrap: wrap;
 gap: 10px;
 justify-content: center;
 margin-bottom: 40px;
}
.filter{
 padding: 10px 20px;
 border-radius: var(--radius-sm);
 background: #fff;
 border: 1px solid var(--border);
 color: var(--text-soft);
 font-weight: 600;
 font-size: 14px;
 transition: all .15s ease;
}
.filter:hover{border-color: var(--text);color: var(--text)}
.filter.active{
 background: var(--text);
 color: #fff;
 border-color: var(--text);
}
.products{
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 24px;
}
.product{
 background: #fff;
 border: 1px solid var(--border);
 border-radius: var(--radius);
 overflow: hidden;
 display: flex;
 flex-direction: column;
 transition: transform .2s ease, border-color .2s ease;
}
.product:hover{transform: translateY(-2px);border-color: var(--text)}
.product.is-hidden{display: none}
.product-img{
 position: relative;
 aspect-ratio: 4/3;
 background: #f7f7f5;
 display: grid;
 place-items: center;
 font-size: 64px;
}
.product-img::before{
 content: attr(data-emoji);
 filter: drop-shadow(0 8px 14px rgba(11,27,43,.12));
}
.product-img.has-product-image::before{content: none}
.product-img img{
 width: 86%;
 height: 86%;
 object-fit: contain;
 position: relative;
 z-index: 1;
 filter: drop-shadow(0 10px 18px rgba(11,27,43,.12));
}
.product-img-placeholder{font-size: 42px}
.badge{
 position: absolute;
 top: 12px;left: 12px;
 background: var(--text);
 color: #fff;
 font-size: 11px;
 font-weight: 700;
 padding: 5px 10px;
 border-radius: 999px;
 letter-spacing: .03em;
 text-transform: uppercase;
}
.badge-blue{background: var(--text-soft)}
.badge-red{background: var(--danger)}
.product-body{
 padding: 18px 20px 20px;
 display: flex;
 flex-direction: column;
 flex: 1;
}
.product-body h3{font-size: 16px;margin-bottom: 6px}
.product-desc{
 font-size: 13px;
 color: var(--text-muted);
 margin: 0 0 16px;
 flex: 1;
}
.product-foot{
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 10px;
}
.price{display: flex;align-items: baseline;gap: 8px}
.price strong{font-size: 20px;font-weight: 800;color: var(--text)}
.price .old{
 font-size: 13px;
 text-decoration: line-through;
 color: var(--text-muted);
}
.catalog-foot{
 text-align: center;
 margin: 40px 0 0;
 font-size: 15px;
}
.catalog-foot a{color: var(--primary);font-weight: 600}
.features{
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 24px;
}
.feature{
 background: #fff;
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 28px;
 transition: transform .2s ease, border-color .2s ease;
}
.feature:hover{transform: translateY(-2px);border-color: var(--text)}
.feature-icon{
 font-size: 12px;
 width: 48px;height: 48px;
 display: grid;
 place-items: center;
 background: var(--bg-soft);
 border: 1px solid var(--border);
 border-radius: var(--radius-sm);
 margin-bottom: 16px;
 font-weight: 700;
 letter-spacing: .04em;
}
.feature p{font-size: 14px;margin: 0}
.catalog-toolbar{
 display: flex;
 flex-direction: column;
 gap: 16px;
 margin-bottom: 32px;
}
.catalog-search-wrap{width: 100%}
.catalog-search{
 width: 100%;
 padding: 12px 18px;
 border: 1px solid var(--border);
 border-radius: var(--radius);
 font-size: 15px;
 background: #fff;
 color: var(--text);
 transition: border-color .15s;
}
.catalog-search:focus{outline: none;border-color: var(--primary)}
.catalog-controls{
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 12px;
 justify-content: space-between;
}
.filter-bar{
 display: flex;
 flex-wrap: wrap;
 gap: 8px;
}
.sort-select{
 padding: 9px 14px;
 border: 1px solid var(--border);
 border-radius: var(--radius);
 font-size: 14px;
 background: #fff;
 color: var(--text);
 cursor: pointer;
}
.sort-select:focus{outline: none;border-color: var(--primary)}
.catalog-count{
 font-size: 14px;
 color: var(--text-soft);
 margin-bottom: 20px;
}
.catalog-empty{
 text-align: center;
 padding: 60px 20px;
 color: var(--text-soft);
 font-size: 16px;
}
.product-info{
 padding: 14px 16px 16px;
 display: flex;
 flex-direction: column;
 flex: 1;
 gap: 8px;
}
.product-name{
 font-size: 14px;
 font-weight: 600;
 margin: 0;
 line-height: 1.4;
}
.product-name a{color: var(--text);text-decoration: none}
.product-name a:hover{color: var(--primary)}
.product-price{
 font-size: 17px;
 font-weight: 800;
 color: var(--text);
}
.product-img-placeholder{
 font-size: 48px;
 opacity: .5;
}
.catalog-info{margin-top: 64px}
.catalog-info-grid{
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 20px;
}
.catalog-info-card{
 background: var(--bg-soft);
 border-radius: var(--radius);
 padding: 24px;
 display: flex;
 flex-direction: column;
 gap: 6px;
}
.catalog-info-icon{font-size: 28px}
.catalog-info-card strong{font-size: 15px}
.catalog-info-card p{font-size: 13px;color: var(--text-soft);margin: 0}
.footer-inner-full{
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 20px;
 text-align: center;
 padding: 32px 0;
}
.footer-brand{
 display: flex;
 align-items: center;
 gap: 10px;
}
.footer-brand strong{display: block;font-size: 15px}
.footer-brand small{font-size: 12px;color: var(--text-soft)}
.footer-links{
 display: flex;
 flex-wrap: wrap;
 gap: 16px;
 justify-content: center;
}
.footer-links a{font-size: 13px;color: var(--text-soft)}
.footer-links a:hover{color: var(--primary)}
.footer-copy{font-size: 12px;color: var(--text-muted);margin: 0}
@media (max-width: 768px){
 .catalog-info-grid{grid-template-columns: 1fr 1fr}
 .catalog-controls{flex-direction: column;align-items: flex-start}
}
.testimonials{
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 24px;
}
.testi{
 margin: 0;
 background: #fff;
 padding: 28px;
 border-radius: var(--radius);
 border: 1px solid var(--border);
 box-shadow: none;
 display: flex;
 flex-direction: column;
}
.testi p{
 font-size: 15px;
 color: var(--text);
 line-height: 1.6;
 margin-bottom: 16px;
 flex: 1;
}
.testi footer{font-size: 13px;color: var(--text-muted);margin-bottom: 6px}
.testi footer strong{color: var(--text)}
.stars{color: #f5b400;font-size: 16px;letter-spacing: 2px}
.about-grid{
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 64px;
 align-items: center;
}
.about-stats{
 list-style: none;
 padding: 0;
 margin: 24px 0 32px;
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 16px;
 border-top: 1px solid var(--border);
 border-bottom: 1px solid var(--border);
 padding: 24px 0;
}
.about-stats li{display: flex;flex-direction: column;line-height: 1.1}
.about-stats strong{
 font-size: 28px;
 font-weight: 800;
 color: var(--text);
 margin-bottom: 4px;
}
.about-stats span{font-size: 13px;color: var(--text-muted)}
.about-visual{
 position: relative;
 height: 360px;
 background: var(--bg-soft);
 border-radius: var(--radius-lg);
 display: grid;
 place-items: center;
 overflow: hidden;
}
.map-card{
 background: #fff;
 border-radius: var(--radius);
 box-shadow: none;
 border: 1px solid var(--border);
 padding: 20px 24px;
 display: flex;
 align-items: center;
 gap: 16px;
}
.map-pin{
 width: 42px;
 height: 42px;
 display: grid;
 place-items: center;
 border: 1px solid var(--text);
 border-radius: var(--radius-sm);
 font-size: 12px;
 font-weight: 700;
}
.map-card div{display: flex;flex-direction: column;line-height: 1.4}
.map-card strong{font-size: 16px}
.map-card span{font-size: 13px;color: var(--text-muted)}
.badge-pill{
 position: absolute;
 top: 24px;right: 24px;
 padding: 8px 14px;
 background: #fff;
 border: 1px solid var(--border);
 border-radius: var(--radius-sm);
 font-size: 12px;
 font-weight: 700;
 color: var(--text);
 box-shadow: none;
}
.faq{
 max-width: 780px;
 margin: 0 auto;
 display: flex;
 flex-direction: column;
 gap: 12px;
}
.faq details{
 background: #fff;
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 18px 22px;
 transition: box-shadow .2s ease;
}
.faq details[open]{box-shadow: var(--shadow-sm);border-color: transparent}
.faq summary{
 cursor: pointer;
 font-weight: 600;
 font-size: 16px;
 list-style: none;
 display: flex;
 justify-content: space-between;
 align-items: center;
}
.faq summary::-webkit-details-marker{display: none}
.faq summary::after{
 content: '+';
 font-size: 22px;
 color: var(--primary);
 font-weight: 400;
 transition: transform .2s ease;
}
.faq details[open] summary::after{transform: rotate(45deg)}
.faq p{margin: 14px 0 0;font-size: 15px}
.contact-grid{
 display: grid;
 grid-template-columns: 1fr 1.1fr;
 gap: 64px;
 align-items: start;
}
.contact-copy h2{color: #fff}
.contact-copy p{color: rgba(255,255,255,.78);font-size: 17px}
.contact-list{
 list-style: none;
 padding: 0;margin: 28px 0 0;
 display: flex;
 flex-direction: column;
 gap: 14px;
}
.contact-list li{
 display: flex;
 align-items: center;
 gap: 12px;
 color: rgba(255,255,255,.9);
 font-size: 15px;
}
.contact-list li > span:first-child{
 min-width: 42px;
 color: rgba(255,255,255,.58);
 font-size: 12px;
 font-weight: 500;
 text-transform: uppercase;
}
.contact-list a{color: #fff}
.contact-list a:hover{color: rgba(255,255,255,.72)}
.contact-form{
 background: #fff;
 color: var(--text);
 padding: 32px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow);
}
.field{display: flex;flex-direction: column;margin-bottom: 16px}
.field label{
 font-size: 13px;
 font-weight: 600;
 color: var(--text-soft);
 margin-bottom: 6px;
}
.field input, .field select, .field textarea{
 border: 1px solid var(--border);
 border-radius: var(--radius-sm);
 padding: 12px 14px;
 font-family: inherit;
 font-size: 15px;
 color: var(--text);
 background: #fff;
 transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
 outline: none;
 border-color: var(--primary);
 box-shadow: 0 0 0 4px rgba(0,182,122,.14);
}
.field textarea{resize: vertical;min-height: 110px}
.row{display: grid;grid-template-columns: 1fr 1fr;gap: 16px}
.checkbox{
 display: flex;
 align-items: flex-start;
 gap: 10px;
 margin: 8px 0 18px;
 font-size: 13px;
 color: var(--text-soft);
}
.checkbox input{margin-top: 3px}
.checkbox a{color: var(--primary)}
.contact-form .btn{width: 100%}
.form-note{
 margin-top: 14px;
 padding: 12px 14px;
 border-radius: var(--radius-sm);
 font-size: 14px;
}
.form-note.success{background: rgba(22,163,74,.10);color: var(--success)}
.form-note.error{background: rgba(220,38,38,.10);color: var(--danger)}
.site-footer{
 background: var(--bg-darker);
 color: rgba(255,255,255,.7);
 padding: 64px 0 24px;
}
.footer-grid{
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1fr;
 gap: 48px;
 margin-bottom: 48px;
}
.site-footer h4{
 color: #fff;
 font-size: 14px;
 text-transform: uppercase;
 letter-spacing: .08em;
 margin-bottom: 18px;
}
.site-footer ul{list-style: none;padding: 0;margin: 0;display: flex;flex-direction: column;gap: 10px}
.site-footer a{font-size: 14px;transition: color .15s ease}
.site-footer a:hover{color: var(--primary)}
.footer-tag{font-size: 14px;max-width: 320px;margin: 16px 0 0}
.footer-bottom{
 padding-top: 24px;
 border-top: 1px solid rgba(255,255,255,.08);
 font-size: 13px;
 color: rgba(255,255,255,.5);
}
.footer-bottom p{margin: 0;color: inherit}
.toast{
 position: fixed;
 bottom: 32px;left: 50%;
 transform: translateX(-50%) translateY(120%);
 background: var(--text);
 color: #fff;
 padding: 14px 22px;
 border-radius: 999px;
 font-size: 14px;
 font-weight: 500;
 box-shadow: var(--shadow-lg);
 z-index: 100;
 transition: transform .25s ease;
 pointer-events: none;
}
.toast.is-visible{transform: translateX(-50%) translateY(0)}
.wa-fab{
 position: fixed;
 bottom: 24px;right: 24px;
 width: 58px;height: 58px;
 border-radius: 50%;
 background: #25d366;
 color: #fff;
 display: grid;
 place-items: center;
 box-shadow: 0 12px 30px rgba(37,211,102,.4);
 z-index: 90;
 transition: transform .15s ease;
}
.wa-fab:hover{transform: scale(1.08)}
.reveal{
 opacity: 0;
 transform: translateY(20px);
 transition: opacity .6s ease, transform .6s ease;
}
.reveal.in{opacity: 1;transform: translateY(0)}
@media (max-width: 980px){
 .section{padding: 72px 0}
 .hero-grid{grid-template-columns: 1fr;gap: 32px;padding-bottom: 48px}
 .hero-visual{height: 360px}
 .categories, .features, .testimonials{grid-template-columns: repeat(2, 1fr)}
 .products{grid-template-columns: repeat(3, 1fr)}
 .about-grid, .contact-grid{grid-template-columns: 1fr;gap: 40px}
 .footer-grid{grid-template-columns: 1fr 1fr;gap: 36px}
}
@media (max-width: 720px){
 .nav{display: none}
 .nav.is-open{
 display: flex;
 flex-direction: column;
 position: absolute;
 top: 76px;left: 0;right: 0;
 background: #fff;
 border-bottom: 1px solid var(--border);
 padding: 18px 24px;
 gap: 16px;
 box-shadow: var(--shadow);
}
 .nav-toggle{display: flex}
 .phone-link{display: none}
 h1{font-size: 38px}
 .products{grid-template-columns: repeat(2, 1fr)}
 .hero-trust{grid-template-columns: 1fr 1fr}
 .row{grid-template-columns: 1fr}
 .about-stats{grid-template-columns: 1fr 1fr}
}
@media (max-width: 480px){
 .container{padding: 0 18px}
 .categories, .features, .testimonials{grid-template-columns: 1fr}
 .products{grid-template-columns: 1fr}
 .footer-grid{grid-template-columns: 1fr}
 .catalog-info-grid{grid-template-columns: 1fr}
 .hero-trust, .about-stats{grid-template-columns: 1fr 1fr}
 .header-cta .btn{display: none}
 .floating-card{transform: scale(.85)}
 .card-1{left: -10px}
 .card-2{right: -20px}
 .hero-visual{height: 280px;min-height: unset}
 .section{padding: 56px 0}
 .btn-lg{font-size: 14px;padding: 10px 16px}
 h1{font-size: 32px}
 .brand-svg{height: 28px}
}
.theme-toggle, .account-btn, .cart-btn{
 background: transparent;
 border: 1px solid var(--border);
 width: 40px;height: 40px;
 border-radius: 999px;
 display: inline-grid;
 place-items: center;
 font-size: 16px;
 color: var(--text);
 transition: background .15s ease, border-color .15s ease;
 position: relative;
}
.theme-toggle:hover, .account-btn:hover, .cart-btn:hover{background: var(--bg-soft);border-color: var(--text)}
.account-btn{font-size: 15px}
.cart-btn{width: auto;padding: 0 14px 0 12px;gap: 6px;display: inline-flex;align-items: center}
.cart-count{
 display: inline-grid;
 place-items: center;
 min-width: 20px;height: 20px;
 padding: 0 6px;
 border-radius: 999px;
 background: var(--text-muted);
 color: #fff;
 font-size: 11px;
 font-weight: 700;
 transition: background .15s ease;
}
.cart-count.has-items{background: var(--primary)}
.drawer-overlay{
 position: fixed;inset: 0;
 background: rgba(11,27,43,.6);
 z-index: 200;
 opacity: 0;
 pointer-events: none;
 transition: opacity .25s ease;
}
.drawer-overlay.is-visible{opacity: 1;pointer-events: auto}
.drawer{
 position: fixed;
 top: 0;right: 0;bottom: 0;
 width: 420px;
 max-width: 90vw;
 background: var(--bg);
 box-shadow: var(--shadow-lg);
 transform: translateX(100%);
 transition: transform .3s cubic-bezier(.4,0,.2,1);
 z-index: 201;
 display: flex;
 flex-direction: column;
}
.drawer.is-open{transform: translateX(0)}
.drawer-head{
 padding: 24px;
 border-bottom: 1px solid var(--border);
 display: flex;
 justify-content: space-between;
 align-items: center;
}
.drawer-head h3{margin: 0;font-size: 20px}
.drawer-close{
 width: 36px;height: 36px;
 border-radius: 50%;
 font-size: 24px;
 color: var(--text-soft);
 transition: background .15s ease;
}
.drawer-close:hover{background: var(--bg-soft);color: var(--text)}
.drawer-body{
 flex: 1;
 overflow-y: auto;
 padding: 16px 24px;
}
.cart-empty{
 text-align: center;
 padding: 60px 0;
}
.cart-empty p{font-size: 16px;margin-bottom: 20px}
.cart-item{
 display: grid;
 grid-template-columns: 70px 1fr auto;
 gap: 14px;
 padding: 16px 0;
 border-bottom: 1px solid var(--border);
 align-items: center;
}
.cart-item-img{
 width: 70px;height: 70px;
 background: var(--bg-soft);
 border-radius: var(--radius-sm);
 display: grid;
 place-items: center;
 font-size: 12px;
 font-weight: 700;
 letter-spacing: .02em;
 color: var(--text-muted);
}
.cart-item-img::before{content: 'Ajax'}
.cart-item-img.has-product-image::before{content: none}
.cart-item-img img{
 width: 86%;
 height: 86%;
 object-fit: contain;
}
.cart-item-info strong{display: block;font-size: 14px;line-height: 1.3;margin-bottom: 4px}
.cart-item-price{font-size: 12px;color: var(--text-muted)}
.cart-qty{
 display: flex;
 align-items: center;
 gap: 6px;
 margin-top: 8px;
}
.cart-qty button{
 width: 26px;height: 26px;
 border-radius: 6px;
 border: 1px solid var(--border);
 background: var(--bg);
 color: var(--text);
 font-size: 14px;
 transition: background .15s ease;
}
.cart-qty button:hover{background: var(--bg-soft)}
.cart-qty span{min-width: 24px;text-align: center;font-weight: 600;font-size: 14px}
.cart-remove{margin-left: 6px}
.cart-item-total{font-size: 15px;font-weight: 700}
.drawer-foot{
 border-top: 1px solid var(--border);
 padding: 20px 24px;
}
.cart-summary div{
 display: flex;
 justify-content: space-between;
 padding: 6px 0;
 font-size: 14px;
 color: var(--text-soft);
}
.cart-summary div strong{color: var(--text);font-weight: 600}
.cart-total{
 border-top: 1px solid var(--border);
 margin-top: 8px;
 padding-top: 12px !important;
 font-size: 16px !important;
}
.cart-total span, .cart-total strong{font-size: 18px !important;color: var(--text) !important;font-weight: 700 !important}
.cart-checkout{width: 100%;margin-top: 16px}
.cart-note{
 margin: 12px 0 0;
 font-size: 12px;
 color: var(--text-muted);
 text-align: center;
}
.cookie-banner{
 position: fixed;
 bottom: 16px;left: 16px;right: 16px;
 background: var(--bg);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 box-shadow: var(--shadow-lg);
 padding: 18px 22px;
 z-index: 150;
 animation: slideUp .3s ease;
}
@keyframes slideUp{from{transform: translateY(20px);opacity: 0}to{transform: translateY(0);opacity: 1}}
.cookie-inner{
 display: flex;
 gap: 24px;
 align-items: center;
 max-width: var(--container);
 margin: 0 auto;
}
.cookie-text{flex: 1}
.cookie-text strong{display: block;font-size: 15px;margin-bottom: 4px}
.cookie-text p{margin: 0;font-size: 13px;color: var(--text-soft)}
.cookie-text a{color: var(--primary);text-decoration: underline}
.cookie-actions{display: flex;gap: 8px;flex-shrink: 0}
.cookie-modal{
 position: fixed;
 inset: 0;
 background: rgba(11,27,43,.7);
 z-index: 250;
 display: grid;
 place-items: center;
 padding: 20px;
 animation: fadeIn .2s ease;
}
@keyframes fadeIn{from{opacity: 0}to{opacity: 1}}
.cookie-modal-card{
 background: var(--bg);
 border-radius: var(--radius-lg);
 padding: 32px;
 max-width: 480px;
 width: 100%;
 box-shadow: var(--shadow-lg);
}
.cookie-modal-card h2{margin: 0 0 20px}
.cookie-row{
 display: flex;
 justify-content: space-between;
 align-items: flex-start;
 padding: 16px 0;
 border-bottom: 1px solid var(--border);
 gap: 16px;
}
.cookie-row strong{display: block;margin-bottom: 4px}
.cookie-row span{font-size: 13px;color: var(--text-muted)}
.cookie-row input[type="checkbox"]{
 width: 22px;height: 22px;
 accent-color: var(--primary);
 flex-shrink: 0;
}
.cookie-modal-actions{
 display: flex;
 gap: 12px;
 margin-top: 24px;
 justify-content: flex-end;
}
@media (max-width: 720px){
 .cookie-inner{flex-direction: column;align-items: stretch;gap: 14px}
 .cookie-actions{justify-content: stretch}
 .cookie-actions .btn{flex: 1}
}
.lead-magnet{
 background: linear-gradient(140deg, #F7F7F5, #fff);
 border: 1px solid #DCDCDA;
 border-radius: var(--radius-lg);
 padding: 40px;
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 40px;
 align-items: center;
}
[data-theme="dark"] .lead-magnet{
 background: linear-gradient(140deg, #181818, var(--bg-card));
 border-color: var(--border);
}
.lead-magnet h2{margin-bottom: 8px}
.lead-magnet-form{
 background: var(--bg-card);
 border-radius: var(--radius);
 padding: 28px;
 box-shadow: var(--shadow);
 border: 1px solid var(--border);
}
.lead-magnet-form input[type="email"]{
 width: 100%;
 padding: 14px;
 border: 1px solid var(--border);
 border-radius: var(--radius-sm);
 font-family: inherit;
 font-size: 15px;
 background: var(--bg);
 color: var(--text);
 margin-bottom: 12px;
}
.lead-magnet-form .btn{width: 100%}
.lead-magnet-form .form-hint{
 margin: 12px 0 0;
 font-size: 12px;
 color: var(--text-muted);
 text-align: center;
}
.lead-magnet-form .form-hint a{color: var(--primary)}
@media (max-width: 720px){
 .lead-magnet{grid-template-columns: 1fr;padding: 28px}
}
.thanks-page{
 min-height: 60vh;
 display: grid;
 place-items: center;
 padding: 60px 0;
}
.thanks-card{
 background: var(--bg-card);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 padding: 48px 40px;
 max-width: 600px;
 width: 100%;
 text-align: center;
}
.thanks-icon{
 font-size: 56px;
 line-height: 1;
 margin-bottom: 20px;
}
.thanks-card h1{margin-bottom: 12px;font-size: 28px}
.thanks-lead{font-size: 16px;color: var(--text-soft);margin-bottom: 0}
.thanks-steps{
 text-align: left;
 margin-top: 32px;
 padding-top: 28px;
 border-top: 1px solid var(--border);
}
.thanks-steps h3{font-size: 16px;margin-bottom: 14px}
.thanks-steps ol{
 padding-left: 20px;
 display: flex;
 flex-direction: column;
 gap: 10px;
}
.thanks-steps li{font-size: 14px;color: var(--text-soft);line-height: 1.5}
.thanks-steps li strong{color: var(--text)}
.thanks-contact{
 margin-top: 28px;
 padding-top: 24px;
 border-top: 1px solid var(--border);
}
.thanks-contact p{font-size: 14px;color: var(--text-muted);margin-bottom: 12px}
.thanks-contact div{display: flex;gap: 10px;justify-content: center;flex-wrap: wrap}
.thanks-extras{
 margin-top: 32px;
 padding-top: 28px;
 border-top: 1px solid var(--border);
 text-align: left;
}
.thanks-extras h3{font-size: 16px;margin-bottom: 16px}
.thanks-cards{
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 12px;
}
.thanks-extra-card{
 background: var(--bg-soft);
 border: 1px solid var(--border);
 border-radius: var(--radius-sm);
 padding: 16px;
 text-decoration: none;
 display: block;
 transition: border-color .15s ease, background .15s ease;
}
.thanks-extra-card:hover{border-color: var(--primary);background: var(--bg)}
.thanks-extra-card strong{display: block;font-size: 13px;color: var(--text);margin-bottom: 6px}
.thanks-extra-card span{font-size: 12px;color: var(--text-muted);line-height: 1.4}
@media (max-width: 720px){
 .thanks-card{padding: 32px 20px}
 .thanks-cards{grid-template-columns: 1fr}
 .thanks-contact div{flex-direction: column}
}
.breadcrumb{
 padding: 20px 0 0;
 font-size: 13px;
 color: var(--text-muted);
}
.breadcrumb a{color: var(--text-soft);text-decoration: none}
.breadcrumb a:hover{color: var(--primary)}
.product-detail{padding: 32px 0 64px}
.product-detail-grid{
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 56px;
 align-items: start;
}
.product-img-large{
 aspect-ratio: 1;
 background: var(--bg-soft);
 border-radius: var(--radius-lg);
 display: grid;
 place-items: center;
 font-size: 160px;
 position: relative;
}
.product-img-large::before{
 content: attr(data-emoji);
 filter: drop-shadow(0 16px 28px rgba(11,11,11,.12));
}
.product-img-large.has-product-image::before{content: none}
.product-img-large img{
 width: 84%;
 height: 84%;
 object-fit: contain;
 filter: drop-shadow(0 18px 26px rgba(11,11,11,.14));
}
[data-theme="dark"] .product-img-large{background: var(--bg-soft)}
.product-detail-info h1{font-size: 36px;margin: 8px 0 14px}
.rating-row{display: flex;align-items: center;gap: 12px;margin-bottom: 20px}
.rating-meta{font-size: 13px;color: var(--text-muted)}
.product-detail-desc{font-size: 17px;color: var(--text-soft);margin-bottom: 24px}
.price-row{
 background: var(--bg-soft);
 border-radius: var(--radius);
 padding: 20px 24px;
 margin-bottom: 24px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 12px;
}
.price-row .price{gap: 10px}
.price-row .price strong{font-size: 32px}
.price-row .savings{
 font-size: 13px;
 background: rgba(22,163,74,.15);
 color: var(--success);
 padding: 3px 10px;
 border-radius: 999px;
 font-weight: 700;
 margin-left: 6px;
}
.stock{font-size: 14px;color: var(--success);font-weight: 600}
.qty-row{
 display: flex;
 gap: 12px;
 align-items: end;
 margin-bottom: 24px;
 flex-wrap: wrap;
}
.qty-row label{display: block;font-size: 13px;color: var(--text-soft);margin-bottom: 6px}
.qty-input{
 display: inline-flex;
 align-items: center;
 border: 1px solid var(--border);
 border-radius: 999px;
 overflow: hidden;
 background: var(--bg);
}
.qty-input button{
 width: 44px;height: 44px;
 background: transparent;
 color: var(--text);
 font-size: 18px;
 transition: background .15s ease;
}
.qty-input button:hover{background: var(--bg-soft)}
.qty-input input{
 width: 48px;
 height: 44px;
 text-align: center;
 border: none;
 background: transparent;
 color: var(--text);
 font-weight: 600;
 font-size: 16px;
}
.qty-input input::-webkit-outer-spin-button, .qty-input input::-webkit-inner-spin-button{
 -webkit-appearance: none;margin: 0;
}
.trust-list{
 list-style: none;
 padding: 0;margin: 0;
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 8px;
 font-size: 14px;
 color: var(--text-soft);
}
.product-tabs{padding: 64px 0 0}
.product-tabs h2{font-size: 22px;margin: 32px 0 16px}
.features-list{
 list-style: none;
 padding: 0;margin: 0;
 display: flex;
 flex-direction: column;
 gap: 10px;
}
.features-list li{
 background: var(--bg-soft);
 padding: 12px 18px;
 border-radius: var(--radius-sm);
 font-size: 15px;
 color: var(--text-soft);
}
.features-list li::before{content: '✓ ';color: var(--success);font-weight: 700}
.specs-table{
 width: 100%;
 border-collapse: collapse;
 border-radius: var(--radius);
 overflow: hidden;
 border: 1px solid var(--border);
}
.specs-table th, .specs-table td{padding: 14px 18px;text-align: left;font-size: 14px}
.specs-table th{background: var(--bg-soft);width: 40%;font-weight: 600;color: var(--text-soft)}
.specs-table tr:not(:last-child) th, .specs-table tr:not(:last-child) td{border-bottom: 1px solid var(--border)}
@media (max-width: 720px){
 .product-detail-grid{grid-template-columns: 1fr;gap: 32px}
 .product-img-large{font-size: 120px}
 .product-detail-info h1{font-size: 28px}
 .trust-list{grid-template-columns: 1fr}
}
.wizard-hero{
 padding: 60px 0 40px;
 background: var(--bg-soft);
 text-align: center;
}
.wizard-hero h1{font-size: clamp(32px, 5vw, 48px)}
.wizard-hero p{font-size: 17px;max-width: 540px;margin: 0 auto}
.wizard-card{
 max-width: 720px;
 margin: 0 auto;
 background: var(--bg-card);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 40px;
 box-shadow: none;
}
.wizard-progress{
 display: flex;
 align-items: center;
 gap: 16px;
 margin-bottom: 32px;
}
.wizard-progress{
 height: 6px;
 background: var(--border);
 border-radius: 999px;
 overflow: hidden;
 position: relative;
 margin-bottom: 12px;
}
.wizard-progress-bar{
 height: 100%;
 background: var(--primary);
 border-radius: 999px;
 transition: width .3s ease;
}
.wizard-progress span{
 position: absolute;
 top: 14px;
 right: 0;
 font-size: 12px;
 color: var(--text-muted);
 font-weight: 600;
}
.wizard-step{display: none;padding-top: 16px}
.wizard-step.active{display: block;animation: fadeUp .3s ease}
@keyframes fadeUp{from{opacity: 0;transform: translateY(10px)}to{opacity: 1;transform: translateY(0)}}
.wizard-step h2{font-size: 24px;margin-bottom: 20px}
.wizard-options{
 display: grid;
 gap: 12px;
}
.wizard-opt{
 text-align: left;
 padding: 16px 22px;
 border: 2px solid var(--border);
 background: var(--bg);
 color: var(--text);
 border-radius: var(--radius);
 font-weight: 600;
 font-size: 15px;
 transition: all .15s ease;
}
.wizard-opt:hover{
 border-color: var(--primary);
 background: rgba(11,11,11,.04);
 transform: translateY(-2px);
}
.wizard-nav{
 display: flex;
 justify-content: flex-start;
 margin-top: 24px;
 padding-top: 24px;
 border-top: 1px solid var(--border);
}
.wizard-result h2{font-size: 28px}
.wizard-result .reason{
 background: rgba(11,11,11,.06);
 border-left: 3px solid var(--primary);
 padding: 14px 18px;
 border-radius: var(--radius-sm);
 color: var(--text);
 margin-bottom: 24px;
}
.result-card{
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 24px;
 margin-bottom: 28px;
}
.result-card-head{
 display: flex;
 justify-content: space-between;
 align-items: center;
 margin-bottom: 16px;
 padding-bottom: 16px;
 border-bottom: 1px solid var(--border);
}
.result-card-head strong{font-size: 20px}
.result-features{
 list-style: none;
 padding: 0;margin: 0 0 24px;
 display: grid;
 gap: 8px;
}
.result-features li{color: var(--text-soft);font-size: 14px}
.result-actions{display: flex;gap: 12px;flex-wrap: wrap}
.wizard-extras{margin-top: 32px}
.wizard-extras h3{margin-bottom: 16px}
.link-btn{
 background: transparent;
 color: var(--primary);
 text-decoration: underline;
 padding: 8px 0;
 font-size: 14px;
 cursor: pointer;
}
@media (max-width: 720px){
 .wizard-card{padding: 24px}
}
.compare-grid{
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 24px;
}
.compare-col{
 background: var(--bg-card);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 32px 28px;
 position: relative;
 transition: transform .2s ease, box-shadow .2s ease;
}
.compare-col:hover{transform: translateY(-4px);box-shadow: var(--shadow)}
.compare-col.is-recommended{
 border-color: var(--primary);
 box-shadow: 0 0 0 1px var(--primary), var(--shadow);
}
.compare-col .badge{position: static;display: inline-block;margin-bottom: 12px}
.compare-product-img{
 width: 100%;
 height: 150px;
 object-fit: contain;
 margin: 0 0 18px;
 background: var(--bg-soft);
 border-radius: var(--radius-sm);
 padding: 14px;
}
.compare-col h2, .compare-col h3{font-size: 22px;margin-bottom: 6px}
.compare-for{font-size: 13px;color: var(--text-muted);margin-bottom: 20px}
.compare-price{
 padding: 20px 0;
 border-top: 1px solid var(--border);
 border-bottom: 1px solid var(--border);
 margin-bottom: 20px;
}
.compare-price strong{font-size: 32px;font-weight: 800;display: block}
.compare-price span{font-size: 13px;color: var(--text-muted)}
.compare-features{
 list-style: none;
 padding: 0;margin: 0 0 28px;
 display: grid;
 gap: 10px;
}
.compare-features li{font-size: 14px;padding: 6px 0;color: var(--text-soft)}
.compare-features li.has{color: var(--text)}
.compare-features li.no{color: var(--text-muted);opacity: .6}
.compare-actions{display: grid;gap: 10px}
.compare-col .btn{width: 100%}
.compare-cta{
 text-align: center;
 margin-top: 64px;
 padding: 48px;
 background: var(--bg-soft);
 border-radius: var(--radius-lg);
}
.compare-cta h2{margin-bottom: 8px}
.compare-cta div{display: flex;gap: 12px;justify-content: center;flex-wrap: wrap;margin-top: 24px}
@media (max-width: 980px){
 .compare-grid{grid-template-columns: 1fr}
}
.blog-grid{
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 32px;
 margin-bottom: 64px;
}
.blog-card{
 background: var(--bg-card);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 overflow: hidden;
 transition: transform .2s ease, box-shadow .2s ease;
 display: flex;
 flex-direction: column;
}
.blog-card:hover{transform: translateY(-4px);box-shadow: var(--shadow)}
.blog-cover{
 aspect-ratio: 16/9;
 display: grid;
 place-items: center;
 font-size: 80px;
 color: rgba(255,255,255,.85);
}
.blog-body{padding: 24px 28px 28px;flex: 1;display: flex;flex-direction: column}
.blog-cat{
 display: inline-block;
 font-size: 11px;
 font-weight: 700;
 letter-spacing: .08em;
 text-transform: uppercase;
 color: var(--primary);
 margin-bottom: 8px;
}
.blog-card h2{font-size: 22px;margin-bottom: 12px;line-height: 1.25}
.blog-card h2 a{color: var(--text);transition: color .15s ease}
.blog-card h2 a:hover{color: var(--primary)}
.blog-card p{font-size: 14px;flex: 1}
.blog-meta{font-size: 12px;color: var(--text-muted);margin-top: 8px}
.newsletter-box{
 background: var(--bg-dark);
 color: #fff;
 border-radius: var(--radius-lg);
 padding: 40px;
 text-align: center;
}
.newsletter-box h3{color: #fff;margin-bottom: 8px;font-size: 24px}
.newsletter-box p{color: rgba(255,255,255,.8);margin-bottom: 24px}
.newsletter-form{
 display: flex;
 gap: 8px;
 max-width: 480px;
 margin: 0 auto;
 flex-wrap: wrap;
}
.newsletter-form input{
 flex: 1;
 min-width: 220px;
 padding: 14px 18px;
 border: none;
 border-radius: 999px;
 font-family: inherit;
 font-size: 15px;
}
.form-hint{
 margin: 16px 0 0;
 font-size: 12px;
 color: rgba(255,255,255,.6);
}
.form-hint a{color: #D8D8D4}
@media (max-width: 720px){
 .blog-grid{grid-template-columns: 1fr}
}
.article-page{padding: 32px 0 80px}
.article-content{
 max-width: 760px;
}
.article-content .breadcrumb{padding-top: 0;margin-bottom: 8px}
.article-content h1{font-size: clamp(28px, 4vw, 40px);margin: 8px 0 16px;line-height: 1.2}
.article-meta{
 color: var(--text-muted);
 font-size: 14px;
 margin-bottom: 32px;
 padding-bottom: 32px;
 border-bottom: 1px solid var(--border);
}
.article-content .lead{font-size: 19px;color: var(--text-soft);margin-bottom: 32px}
.article-content h2{
 font-size: 26px;
 margin: 48px 0 16px;
}
.article-content h3{font-size: 19px;margin: 32px 0 12px}
.article-content p, .article-content ul, .article-content ol{
 font-size: 16px;
 color: var(--text-soft);
 line-height: 1.7;
 margin: 0 0 16px;
}
.article-content ul, .article-content ol{padding-left: 24px}
.article-content li{margin-bottom: 6px}
.article-content strong{color: var(--text)}
.article-content em{color: var(--text)}
.cta-box{
 background: linear-gradient(140deg, #F7F7F5, #fff);
 border: 1px solid #DCDCDA;
 border-radius: var(--radius);
 padding: 28px 32px;
 margin: 40px 0;
 text-align: center;
}
[data-theme="dark"] .cta-box{
 background: linear-gradient(140deg, #181818, var(--bg-card));
 border-color: var(--border);
}
.cta-box h3{color: var(--text);margin-bottom: 10px}
.cta-box p{margin-bottom: 18px}
.article-foot{
 margin-top: 48px;
 padding-top: 32px;
 border-top: 1px solid var(--border);
 font-size: 14px;
}
.article-foot a{color: var(--primary);font-weight: 600}
.legal-page{padding: 48px 0 80px;background: var(--bg)}
.legal-content{max-width: 820px}
.legal-content h1{font-size: clamp(32px, 4vw, 44px);margin: 8px 0 8px}
.legal-meta{color: var(--text-muted);font-size: 14px;margin-bottom: 32px}
.legal-content h2{font-size: 22px;margin: 36px 0 14px}
.legal-content h3{font-size: 17px;margin: 24px 0 10px}
.legal-content p, .legal-content ul, .legal-content ol{
 color: var(--text-soft);
 line-height: 1.7;
 font-size: 15px;
 margin: 0 0 14px;
}
.legal-content ul, .legal-content ol{padding-left: 22px}
.legal-content li{margin-bottom: 6px}
.legal-content a{color: var(--primary);text-decoration: underline}
.legal-content strong{color: var(--text)}
.legal-back{
 margin-top: 48px;
 padding-top: 24px;
 border-top: 1px solid var(--border);
}
.legal-table{
 width: 100%;
 border-collapse: collapse;
 margin: 16px 0 24px;
 font-size: 14px;
 border: 1px solid var(--border);
 border-radius: var(--radius-sm);
 overflow: hidden;
}
.legal-table th, .legal-table td{padding: 12px 14px;text-align: left}
.legal-table th{background: var(--bg-soft);font-weight: 600;color: var(--text);border-bottom: 1px solid var(--border)}
.legal-table tr:not(:last-child) td{border-bottom: 1px solid var(--border)}
.nav a.active{color: var(--primary)}
.section-head{color: var(--text)}
.section-head h1, .section-head h2{color: var(--text)}
@media (max-width: 720px){
 .theme-toggle, .account-btn, .cart-btn{width: 36px;height: 36px;padding: 0}
 .cart-btn{width: auto;padding: 0 10px}
}
.faq-list{
 margin: 2rem 0;
 border-top: 1px solid var(--border);
}
.faq-list dt{
 font-weight: 600;
 color: var(--text);
 padding: 1rem 0 0.25rem;
 font-size: 1rem;
}
.faq-list dd{
 margin: 0;
 padding: 0 0 1rem;
 color: var(--text-soft);
 line-height: 1.7;
 border-bottom: 1px solid var(--border);
}
.article-cta{
 background: var(--bg-soft);
 border-left: 3px solid var(--accent);
 border-radius: 8px;
 padding: 1.5rem 2rem;
 margin: 2.5rem 0;
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 1rem;
}
.article-cta p{
 margin: 0;
 font-weight: 500;
 flex: 1 1 200px;
}
.related-posts{
 margin: 2.5rem 0 1rem;
 padding-top: 2rem;
 border-top: 1px solid var(--border);
}
.related-posts h2{
 font-size: 1.1rem;
 margin-bottom: 1rem;
 color: var(--text-soft);
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: .06em;
}
.related-posts__grid{
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 1rem;
}
.related-post-card{
 display: block;
 padding: 1rem 1.25rem;
 border: 1px solid var(--border);
 border-radius: var(--radius);
 text-decoration: none;
 background: var(--bg-card);
 transition: border-color .15s, box-shadow .15s, transform .15s;
}
.related-post-card:hover{
 border-color: var(--primary);
 box-shadow: var(--shadow-sm);
 transform: translateY(-2px);
}
.related-post-card__cat{
 display: block;
 font-size: 0.7rem;
 font-weight: 700;
 letter-spacing: .08em;
 color: var(--primary);
 text-transform: uppercase;
 margin-bottom: .375rem;
}
.related-post-card__title{
 display: block;
 font-size: 0.95rem;
 font-weight: 600;
 color: var(--text);
 line-height: 1.35;
}
@media (max-width: 600px){
 .related-posts__grid{grid-template-columns: 1fr}
}
.kamara-product-faq{
 margin-top: 3rem;
 padding-top: 2rem;
 border-top: 1px solid var(--border);
}
.kamara-product-faq h2{
 margin-bottom: 1.5rem;
}
.kamara-product-faq__cta{
 margin-top: 1.5rem;
 font-size: 0.9rem;
 color: var(--text-soft);
}
.kamara-product-faq__cta a{
 color: var(--primary);
 font-weight: 500;
}
