:root{
  font-family:Inter,Manrope,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  --rk-ink:#101828;
  --rk-muted:#667085;
  --rk-line:#e6eaf0;
  --rk-bg:#f5f7fa;
  --rk-surface:#ffffff;
  --rk-blue:#185adb;
  --rk-blue-dark:#0f3f9d;
  --rk-red:#e53935;
  --rk-navy:#101c2d;
  --rk-soft-blue:#edf4ff;
  --rk-radius:20px;
  --rk-shadow:0 18px 44px rgba(16,24,40,.08);
  color:var(--rk-ink);
  background:var(--rk-bg);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--rk-bg);color:var(--rk-ink);line-height:1.55;-webkit-font-smoothing:antialiased}
a{color:inherit;text-decoration:none}
img,video{display:block;max-width:100%}
button,input{font:inherit}
.container{width:min(1200px,calc(100% - 40px));margin:0 auto}

/* HEADER */
.rk-header{position:sticky;top:0;z-index:80;background:rgba(255,255,255,.96);border-bottom:1px solid var(--rk-line);backdrop-filter:blur(16px)}
.rk-header-inner{min-height:82px;display:flex;align-items:center;gap:30px}
.rk-brand{display:inline-flex;align-items:center;gap:12px;flex:0 0 auto}
.rk-logo-symbol{position:relative;width:39px;height:39px;display:block}
.rk-logo-symbol i{position:absolute;left:0;width:34px;height:9px;border-radius:3px 8px 8px 3px;transform-origin:left center}
.rk-logo-symbol i:nth-child(1){top:4px;background:var(--rk-red);transform:skewX(-18deg)}
.rk-logo-symbol i:nth-child(2){top:15px;width:29px;background:var(--rk-navy);transform:skewX(18deg)}
.rk-logo-symbol i:nth-child(3){top:26px;width:21px;background:var(--rk-red);transform:skewX(-18deg)}
.rk-logo-word{display:flex;flex-direction:column;line-height:1}
.rk-logo-word strong{font-size:20px;letter-spacing:.055em;font-weight:900}
.rk-logo-word small{margin-top:5px;color:var(--rk-muted);font-size:9px;letter-spacing:.02em}
.rk-nav{margin-left:auto;display:flex;align-items:center;gap:8px}
.rk-nav a{display:inline-flex;align-items:center;min-height:42px;padding:0 14px;border-radius:11px;font-size:14px;font-weight:750;color:#344054;white-space:nowrap}
.rk-nav a:hover{background:#f1f4f8;color:var(--rk-blue)}
.rk-header-search{margin:0;flex:1;max-width:470px}
.rk-header-search input{min-height:44px}

/* SEARCH */
.search-box{position:relative}
.search-box input{width:100%;padding:15px 18px;border:1px solid #cfd7e3;border-radius:14px;background:#fff;outline:none;font-size:16px;box-shadow:0 5px 16px rgba(16,24,40,.04)}
.search-box input:focus{border-color:#7da6f4;box-shadow:0 0 0 4px rgba(24,90,219,.10)}
#search-results{position:absolute;left:0;right:0;top:calc(100% + 8px);display:none;z-index:100;background:#fff;border:1px solid var(--rk-line);border-radius:16px;box-shadow:0 24px 60px rgba(16,24,40,.16);max-height:430px;overflow:auto}
.search-result{display:flex;gap:12px;padding:12px 14px;border-bottom:1px solid #eef1f5}
.search-result:hover{background:#f7f9fc}
.search-result img{width:58px;height:58px;object-fit:contain;border-radius:9px}

/* HOME HERO */
.rk-home{overflow:hidden}
.rk-hero{background:
  radial-gradient(circle at 85% 10%,rgba(24,90,219,.16),transparent 28%),
  linear-gradient(135deg,#f9fbff 0%,#ffffff 50%,#eef4ff 100%);
  border-bottom:1px solid var(--rk-line);
  padding:72px 0 58px;
}
.rk-hero-grid{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);gap:46px;align-items:center}
.rk-kicker{font-size:12px;line-height:1.2;text-transform:uppercase;letter-spacing:.13em;color:#637083;font-weight:800}
.rk-hero-main h1{font-size:clamp(44px,5.3vw,72px);line-height:.98;letter-spacing:-.045em;margin:16px 0 20px;font-weight:900;max-width:900px}
.rk-hero-main h1 span{color:var(--rk-blue)}
.rk-hero-lead{max-width:780px;margin:0;color:#475467;font-size:18px;line-height:1.65}
.rk-search{max-width:790px;margin-top:30px}
.rk-search input{min-height:60px;border-radius:16px;font-size:17px;padding-left:20px}
.rk-search-hints{display:flex;flex-wrap:wrap;gap:10px;margin-top:13px}
.rk-search-hints span{font-size:12px;font-weight:700;color:#526075;background:#fff;border:1px solid #dde4ed;border-radius:999px;padding:7px 10px}
.rk-hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:22px}
.rk-btn{display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 18px;border-radius:12px;font-weight:800;font-size:14px}
.rk-btn-primary{background:var(--rk-blue);color:#fff;box-shadow:0 10px 24px rgba(24,90,219,.22)}
.rk-btn-primary:hover{background:var(--rk-blue-dark)}
.rk-btn-ghost{background:#fff;border:1px solid #d9e0e9;color:#344054}
.rk-hero-aside{display:grid;grid-template-columns:1fr 1fr;gap:12px;background:#fff;border:1px solid var(--rk-line);padding:14px;border-radius:24px;box-shadow:var(--rk-shadow)}
.rk-metric{min-height:144px;padding:18px;border-radius:16px;background:#f7f9fc;display:flex;flex-direction:column;justify-content:flex-end}
.rk-metric-accent{background:linear-gradient(145deg,#185adb,#0d3e9d);color:#fff}
.rk-metric strong{display:block;font-size:27px;line-height:1.05;letter-spacing:-.03em}
.rk-metric span{display:block;margin-top:8px;font-size:12px;line-height:1.4;color:#667085}
.rk-metric-accent span{color:#dbe8ff}

/* BENEFITS */
.rk-benefits{background:#fff;border-bottom:1px solid var(--rk-line);padding:24px 0}
.rk-benefits-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.rk-benefit{display:flex;gap:13px;align-items:flex-start;padding:18px;border:1px solid var(--rk-line);border-radius:16px;background:#fff}
.rk-benefit-icon{flex:0 0 38px;width:38px;height:38px;display:grid;place-items:center;border-radius:11px;background:var(--rk-soft-blue);color:var(--rk-blue);font-weight:900;font-size:18px}
.rk-benefit strong{display:block;font-size:15px;margin-bottom:5px}
.rk-benefit p{margin:0;color:var(--rk-muted);font-size:12.5px;line-height:1.5}

/* SECTIONS */
.rk-section{padding:64px 0 28px}
.rk-section-head{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:22px}
.rk-section-head h2{margin:7px 0 0;font-size:36px;line-height:1.08;letter-spacing:-.035em}
.rk-section-head p{margin:0;color:var(--rk-muted);font-size:14px}
.rk-category-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.rk-category-card{display:flex;align-items:center;gap:16px;min-height:104px;padding:18px;border:1px solid var(--rk-line);background:#fff;border-radius:17px;box-shadow:0 5px 18px rgba(16,24,40,.035);transition:.18s ease}
.rk-category-card:hover{transform:translateY(-2px);border-color:#c8d6ec;box-shadow:var(--rk-shadow)}
.rk-category-number{font-size:11px;color:#98a2b3;font-weight:800;letter-spacing:.08em}
.rk-category-content{display:flex;flex:1;min-width:0;flex-direction:column}
.rk-category-content strong{font-size:17px;line-height:1.25}
.rk-category-content small{margin-top:5px;color:var(--rk-muted)}
.rk-category-arrow{font-size:22px;color:var(--rk-blue)}

/* FITMENT */
.rk-fitment{margin:48px 0 10px;padding:56px 0;background:var(--rk-navy);color:#fff}
.rk-fitment-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:55px;align-items:center}
.rk-kicker-light{color:#9fb6d8}
.rk-fitment-copy h2{font-size:40px;line-height:1.05;letter-spacing:-.035em;margin:10px 0 14px}
.rk-fitment-copy p{margin:0;color:#c5cfdd;line-height:1.65;max-width:600px}
.rk-steps{display:grid;gap:12px}
.rk-step{display:grid;grid-template-columns:52px 1fr;gap:14px;align-items:center;padding:16px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);border-radius:15px}
.rk-step b{width:42px;height:42px;display:grid;place-items:center;border-radius:12px;background:#fff;color:var(--rk-navy);font-size:13px}
.rk-step strong{display:block;font-size:15px}
.rk-step span{display:block;margin-top:3px;color:#bcc8d7;font-size:12.5px}

/* PRODUCT CARDS - keep compatible with all pages */
.category-grid,.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:16px}
.category-card{background:#fff;border:1px solid var(--rk-line);border-radius:16px;padding:18px;display:flex;flex-direction:column;gap:5px}
.rk-price-box{margin-top:20px;padding:20px;border:1px solid #dce5f2;border-radius:18px;background:linear-gradient(135deg,#f8fbff,#fff)}
.rk-price-label{font-size:12px;text-transform:uppercase;letter-spacing:.08em;font-weight:800;color:#667085}
.rk-price-main{margin-top:5px;font-size:34px;line-height:1.1;font-weight:900;letter-spacing:-.035em;color:var(--rk-navy)}
.lm-preorder-button{border:0;cursor:pointer;font:inherit;text-align:left;background:transparent;padding:0}.lm-preorder-button:hover{text-decoration:underline}
.lm-product-community{margin:28px 0 10px}.lm-community-head{display:flex;justify-content:space-between;align-items:end;margin-bottom:14px}.lm-community-head h2{margin:4px 0 0;font-size:28px}.lm-community-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.lm-community-card{background:#fff;border:1px solid var(--rk-line);border-radius:18px;padding:18px}.lm-community-card h3{margin:0 0 12px;font-size:20px}.lm-community-card h3 span{color:var(--rk-muted);font-size:14px}.lm-community-list{display:grid;gap:10px;margin-bottom:14px}.lm-public-message{border:1px solid #edf0f4;border-radius:12px;padding:12px;background:#fafbfc}.lm-public-message p{margin:6px 0 0;line-height:1.5}.lm-public-answer{margin-top:10px;padding:10px;border-left:3px solid #185adb;background:#f4f7ff;border-radius:8px}.lm-review-stars{color:#e6a400;letter-spacing:2px;margin-bottom:5px}.lm-community-form{display:grid;gap:9px}.lm-community-form input,.lm-community-form textarea,.lm-community-form select{width:100%;border:1px solid #d7dde5;border-radius:10px;padding:11px 12px;font:inherit;background:#fff}.lm-community-form textarea{min-height:92px;resize:vertical}.lm-community-form button{height:42px;border:0;border-radius:10px;background:#185adb;color:#fff;font-weight:800;cursor:pointer}.lm-community-form small{color:var(--rk-muted);line-height:1.4}.lm-honeypot{position:absolute!important;left:-9999px!important;opacity:0!important}.lm-form-status{padding:9px 11px;border-radius:9px;font-size:13px}.lm-form-status.is-ok{background:#edf9f0;color:#146c34}.lm-form-status.is-error{background:#fff1f1;color:#a11}.lm-modal-backdrop{position:fixed;inset:0;background:rgba(8,17,34,.52);z-index:9999;display:flex;align-items:center;justify-content:center;padding:20px}.lm-modal-backdrop[hidden]{display:none}.lm-modal{position:relative;width:min(460px,100%);background:#fff;border-radius:20px;padding:24px;box-shadow:0 24px 70px rgba(0,0,0,.25)}.lm-modal h2{margin:0 35px 8px 0}.lm-modal>p{color:var(--rk-muted);line-height:1.5}.lm-modal-close{position:absolute;right:14px;top:12px;width:34px;height:34px;border:0;border-radius:50%;background:#f1f3f6;font-size:24px;cursor:pointer}
@media(max-width:760px){.lm-community-grid{grid-template-columns:1fr}.lm-community-head h2{font-size:23px}}

.rk-price-pending{margin-top:6px;font-size:22px;font-weight:850;color:#667085}
.rk-price-note{margin-top:8px;font-size:12px;line-height:1.5;color:#667085}
.rk-card-price{margin-top:12px;font-size:20px;font-weight:900;color:var(--rk-navy)}
.rk-card-price-muted{font-size:14px;color:#98a2b3;font-weight:700}
.product-card{border:1px solid var(--rk-line);border-radius:18px;overflow:hidden;background:#fff;box-shadow:0 5px 18px rgba(16,24,40,.045);transition:.18s ease}
.product-card:hover{transform:translateY(-2px);box-shadow:var(--rk-shadow)}
.product-card img,.image-placeholder{width:100%;height:220px;object-fit:contain;background:#fff;padding:12px}
.image-placeholder{display:flex;align-items:center;justify-content:center;color:#98a2b3}
.product-card-body{padding:15px 16px 18px;border-top:1px solid #eff2f5}
.product-card h3{font-size:15px;line-height:1.4;margin:7px 0 8px}
.article,.brand,.product-kicker,.eyebrow{font-size:12px;color:var(--rk-muted);text-transform:uppercase;letter-spacing:.07em}
.rk-products{grid-template-columns:repeat(5,1fr)}

/* FAQ + B2B */
.rk-duo{display:grid;grid-template-columns:1fr 1fr;gap:18px;padding:52px 0 68px}
.rk-promo{position:relative;overflow:hidden;min-height:250px;padding:28px;border-radius:22px;display:grid;grid-template-columns:auto 1fr;gap:18px;border:1px solid var(--rk-line)}
.rk-promo-faq{background:linear-gradient(145deg,#eef5ff,#ffffff)}
.rk-promo-business{background:linear-gradient(145deg,#fff2ee,#ffffff)}
.rk-promo-badge{width:56px;height:56px;border-radius:16px;display:grid;place-items:center;font-weight:900;background:#fff;border:1px solid rgba(0,0,0,.06)}
.rk-promo h2{font-size:27px;line-height:1.12;letter-spacing:-.03em;margin:7px 0 10px}
.rk-promo p{margin:0;color:var(--rk-muted);max-width:520px}
.rk-promo>.rk-btn{grid-column:2;justify-self:start;margin-top:4px}
.rk-btn-dark{background:var(--rk-navy);color:#fff}
.rk-btn-ghost-dark{border:1px solid #d9e0e9;background:rgba(255,255,255,.78);color:#344054}

/* FOOTER */
.rk-footer{background:#0d1726;color:#d7deea;padding:48px 0 18px}
.rk-footer-grid{display:grid;grid-template-columns:1.35fr .8fr .9fr 1.15fr;gap:34px}
.rk-brand-footer .rk-logo-word strong{color:#fff}
.rk-brand-footer .rk-logo-word small{color:#9aa8bb}
.rk-footer-brand p{max-width:410px;color:#9eabbc;font-size:13px;line-height:1.65}
.rk-footer-col{display:flex;flex-direction:column;gap:9px}
.rk-footer-col strong{color:#fff;margin-bottom:4px}
.rk-footer-col a,.rk-footer-col span{color:#aab5c4;font-size:13px;line-height:1.45}
.rk-footer-col a:hover{color:#fff}
.rk-footer-bottom{display:flex;justify-content:space-between;gap:20px;border-top:1px solid #243248;margin-top:32px;padding-top:17px;color:#77869a;font-size:12px}

/* LEGACY CATEGORY + PRODUCT PAGE STYLES */
main.container{padding-bottom:24px}
section{padding:34px 0}
section>h2{font-size:28px;letter-spacing:-.03em;margin:0 0 18px}
.breadcrumbs{padding:24px 0 18px;color:#758096;font-size:13px}
.product-page{background:#fff;border-radius:26px;margin-top:22px;padding-left:32px;padding-right:32px;box-shadow:0 8px 30px rgba(30,55,90,.05)}
.product-layout{display:grid;grid-template-columns:minmax(520px,1.08fr) minmax(390px,.92fr);gap:58px;padding:12px 0 42px;align-items:start}
.gallery{min-width:0}
.gallery-stage{height:590px;border:1px solid var(--rk-line);border-radius:22px;background:#fff;display:flex;align-items:center;justify-content:center;overflow:hidden}
.gallery-stage-media{width:100%;height:100%;object-fit:contain;background:#fff}
.gallery-thumbs{display:flex;gap:9px;overflow-x:auto;padding:12px 2px 4px}
.gallery-thumb{flex:0 0 74px;height:74px;border:1px solid var(--rk-line);background:#fff;border-radius:12px;padding:5px;cursor:pointer;display:flex;align-items:center;justify-content:center;overflow:hidden}
.gallery-thumb img{width:100%;height:100%;object-fit:contain}
.gallery-thumb.active{border:2px solid var(--rk-blue)}
.gallery-meta{font-size:13px;color:var(--rk-muted);padding-top:8px}
.product-info h1{font-size:clamp(30px,3vw,43px);line-height:1.12;letter-spacing:-.03em;margin:11px 0 18px}
.product-meta-row{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:24px}
.meta-pill{background:#f3f6fa;border:1px solid #e4e9f1;padding:7px 10px;border-radius:999px;font-size:13px}
.trust-card,.commerce-placeholder{padding:18px 20px;border-radius:16px;display:flex;flex-direction:column;gap:5px;margin:20px 0}
.trust-card{background:#eef5ff;border:1px solid #d9e7fb}
.commerce-placeholder{background:#f7f8fa;border:1px solid #e8ebf0}
.applicability-seo-block{margin:6px 0 28px;padding:24px;border:1px solid #d9e7fb;border-radius:18px;background:#f6f9ff}
.product-tabs{padding:8px 0 34px}
.tab-buttons{display:flex;gap:8px;flex-wrap:wrap;border-bottom:1px solid var(--rk-line);padding-bottom:12px;margin-bottom:24px}
.tab-button{border:0;background:#eef2f6;border-radius:12px;padding:11px 15px;font-weight:700;cursor:pointer}
.tab-button.active{background:var(--rk-blue);color:#fff}
.tab-panel{display:none;padding:4px 0 12px}
.tab-panel.active{display:block}
.attributes{margin:0;max-width:1080px;border:1px solid var(--rk-line);border-radius:16px;overflow:hidden;background:#fff}
.attr-row{display:grid;grid-template-columns:minmax(230px,.8fr) 1.2fr;padding:12px 16px;border-bottom:1px solid #edf0f4}
.attr-row:nth-child(even){background:#fafbfd}
.attr-row dt{font-weight:700;color:#435068}
.attr-row dd{margin:0}
.faq-page{padding-top:18px}
.faq-hero{padding:34px 0 20px;max-width:900px}
.faq-search-box input{width:100%;padding:15px 17px;border:1px solid #d7deea;border-radius:14px;background:#fff}
.global-faq-groups{display:grid;gap:22px;padding:8px 0 36px}
.faq-product-group{background:#fff;border:1px solid var(--rk-line);border-radius:20px;padding:20px}
.faq-item{border:1px solid var(--rk-line);border-radius:14px;padding:0 16px;margin:10px 0;background:#fff}
.faq-item summary{cursor:pointer;font-weight:700;padding:15px 0}
.faq-answer{padding:0 0 16px;color:#3c4a5f}
.applicability-tags{display:flex;flex-wrap:wrap;gap:8px}
.applicability-tag{display:inline-flex;padding:9px 11px;border:1px solid #cfe0f6;background:#f3f8ff;border-radius:10px;font-size:14px}
.lead{color:var(--rk-muted)}


/* v0.8.3 — единый стиль карточек и FAQ */
.rk-product-page{margin-top:26px;margin-bottom:46px;background:#fff;border:1px solid var(--rk-line);border-radius:28px;padding:0 32px 28px;box-shadow:0 12px 36px rgba(16,24,40,.055)}
.rk-product-breadcrumbs .breadcrumbs{padding-top:24px}
.rk-product-layout{padding-top:6px}
.rk-product-info{position:sticky;top:108px}
.rk-product-info h1{font-size:clamp(34px,3.2vw,48px);line-height:1.06;letter-spacing:-.042em;margin:12px 0 20px}
.rk-product-help{display:grid;grid-template-columns:46px 1fr;gap:14px;padding:18px;margin:22px 0;border:1px solid #cfe0fa;background:linear-gradient(145deg,#eef5ff,#f8fbff);border-radius:18px}
.rk-product-help-icon{width:42px;height:42px;border-radius:12px;display:grid;place-items:center;background:var(--rk-blue);color:#fff;font-weight:900}
.rk-product-help strong{display:block;font-size:15px;margin-bottom:5px}
.rk-product-help span{display:block;color:#5e6b7f;font-size:13px;line-height:1.5}
.rk-commerce-placeholder{margin-top:12px}
.rk-applicability{border-radius:22px;background:linear-gradient(145deg,#f6f9ff,#fff);padding:28px}
.rk-applicability .section-intro h2{font-size:32px;letter-spacing:-.035em;margin:8px 0 8px}
.rk-product-tabs-wrap{padding-top:4px}
.rk-product-tabs-wrap .tab-buttons{position:sticky;top:82px;z-index:20;background:#fff;padding-top:12px}
.rk-faq-page{background:var(--rk-bg);min-height:70vh}
.rk-faq-hero{padding:62px 0 34px;background:radial-gradient(circle at 85% 10%,rgba(24,90,219,.14),transparent 30%),linear-gradient(145deg,#fff,#eef4ff);border-bottom:1px solid var(--rk-line)}
.rk-faq-hero-grid{display:grid;grid-template-columns:1fr auto;gap:36px;align-items:end}
.rk-faq-hero h1{font-size:clamp(42px,5vw,68px);line-height:1;letter-spacing:-.045em;margin:14px 0 18px;max-width:880px}
.rk-faq-hero h1 span{color:var(--rk-blue)}
.rk-faq-hero p{max-width:780px;margin:0;color:#526075;font-size:17px;line-height:1.65}
.rk-faq-stats{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.rk-faq-stats>div{min-width:150px;padding:18px;background:#fff;border:1px solid var(--rk-line);border-radius:16px}
.rk-faq-stats strong{display:block;font-size:27px}
.rk-faq-stats span{display:block;margin-top:4px;color:var(--rk-muted);font-size:12px}
.rk-faq-search{max-width:900px;margin-top:26px}
.rk-faq-search input{width:100%;min-height:58px;padding:0 18px;border:1px solid #cfd7e3;border-radius:16px;background:#fff;font-size:16px;outline:none;box-shadow:0 8px 22px rgba(16,24,40,.05)}
.rk-faq-search input:focus{border-color:#7da6f4;box-shadow:0 0 0 4px rgba(24,90,219,.1)}
.rk-faq-content{padding-top:34px;padding-bottom:60px}
.faq-product-group{padding:24px;border-radius:22px;box-shadow:0 8px 26px rgba(16,24,40,.045)}
.faq-product-head{display:flex;justify-content:space-between;align-items:flex-start;gap:22px;padding-bottom:18px;border-bottom:1px solid var(--rk-line)}
.faq-product-head h2{font-size:23px;line-height:1.25;letter-spacing:-.02em;margin:7px 0 5px}
.faq-product-meta{color:var(--rk-muted);font-size:12px}
.faq-product-link{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 14px;background:var(--rk-soft-blue);color:var(--rk-blue);border-radius:11px;font-weight:800;font-size:13px;white-space:nowrap}
.faq-product-items{padding-top:10px}
.faq-item{transition:.16s ease}
.faq-item:hover{border-color:#cfd9e8}
.faq-item[open]{background:#f9fbff;border-color:#cbdcf4}
.faq-item summary{font-size:14px}


/* v0.8.4 — category design system */
.rk-category-page{background:var(--rk-bg);min-height:70vh}
.rk-category-hero{padding:42px 0 38px;background:radial-gradient(circle at 86% 16%,rgba(24,90,219,.13),transparent 31%),linear-gradient(145deg,#fff,#eef4ff);border-bottom:1px solid var(--rk-line)}
.rk-category-breadcrumbs .breadcrumbs{padding:0 0 24px}
.rk-category-hero-grid{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:42px;align-items:end}
.rk-category-hero h1{font-size:clamp(42px,5vw,66px);line-height:1;letter-spacing:-.045em;margin:10px 0 17px;max-width:920px}
.rk-category-hero p{margin:0;max-width:760px;color:#526075;font-size:17px;line-height:1.65}
.rk-category-stat{min-width:190px;padding:23px 24px;background:#fff;border:1px solid var(--rk-line);border-radius:20px;box-shadow:0 10px 28px rgba(16,24,40,.055)}
.rk-category-stat strong{display:block;font-size:38px;letter-spacing:-.04em;color:var(--rk-navy)}
.rk-category-stat span{display:block;margin-top:4px;color:var(--rk-muted);font-size:13px}
.rk-category-content{padding-top:30px;padding-bottom:62px}
.rk-category-children,.rk-category-products{padding:20px 0 28px}
.rk-section-head{display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:18px}
.rk-section-head h2{font-size:30px;letter-spacing:-.035em;margin:5px 0 0}
.rk-section-count{font-size:12px;color:var(--rk-muted);background:#fff;border:1px solid var(--rk-line);border-radius:999px;padding:8px 11px;white-space:nowrap}
.rk-category-subgrid{grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.rk-category-subcard{min-height:108px;display:grid;grid-template-columns:40px 1fr auto;gap:12px;align-items:center;padding:18px;border-radius:18px;background:#fff;border:1px solid var(--rk-line);box-shadow:0 7px 20px rgba(16,24,40,.035)}
.rk-category-subcard:hover{transform:translateY(-2px);border-color:#c9d8ee;box-shadow:0 12px 28px rgba(16,24,40,.07)}
.rk-category-number{width:36px;height:36px;border-radius:11px;display:grid;place-items:center;background:var(--rk-soft-blue);color:var(--rk-blue);font-size:12px;font-weight:900}
.rk-category-subbody{min-width:0;display:flex;flex-direction:column;gap:5px}
.rk-category-subbody strong{font-size:15px;line-height:1.3;color:var(--rk-navy)}
.rk-category-subbody span{font-size:12px;color:var(--rk-muted)}
.rk-category-arrow{color:var(--rk-blue);font-size:19px;font-weight:900}
.rk-category-product-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.rk-category-empty{margin-top:16px;padding:28px;background:#fff;border:1px solid var(--rk-line);border-radius:20px}
.rk-category-empty h2{margin:0 0 7px;font-size:24px}
.rk-category-empty p{margin:0;color:var(--rk-muted)}

@media(max-width:1050px){
  .rk-category-subgrid{grid-template-columns:1fr 1fr}
  .rk-category-product-grid{grid-template-columns:repeat(3,1fr)}
  .rk-product-info{position:static}
  .rk-faq-hero-grid{grid-template-columns:1fr}
  .rk-hero-grid,.rk-fitment-grid{grid-template-columns:1fr}
  .rk-benefits-grid{grid-template-columns:1fr 1fr}
  .rk-category-grid{grid-template-columns:1fr 1fr}
  .rk-products{grid-template-columns:repeat(3,1fr)}
  .rk-footer-grid{grid-template-columns:1fr 1fr}
  .product-layout{grid-template-columns:1fr}
}
@media(max-width:760px){
  .rk-category-hero{padding:30px 0}
  .rk-category-hero-grid{grid-template-columns:1fr;gap:20px}
  .rk-category-stat{min-width:0}
  .rk-category-subgrid,.rk-category-product-grid{grid-template-columns:1fr}
  .rk-section-head{align-items:flex-start;flex-direction:column}
  .rk-product-page{padding-left:14px;padding-right:14px;border-radius:18px}
  .rk-faq-stats{grid-template-columns:1fr 1fr}
  .faq-product-head{flex-direction:column}
  .container{width:calc(100% - 24px)}
  .rk-header-inner{min-height:72px;flex-wrap:wrap;padding:10px 0;gap:12px}
  .rk-nav{width:100%;order:3;overflow-x:auto;margin-left:0}
  .rk-nav a{padding:0 10px}
  .rk-header-search{order:2;max-width:none;flex-basis:100%}
  .rk-hero{padding:48px 0 38px}
  .rk-hero-main h1{font-size:43px}
  .rk-hero-aside{grid-template-columns:1fr 1fr}
  .rk-benefits-grid,.rk-category-grid,.rk-duo{grid-template-columns:1fr}
  .rk-products{grid-template-columns:repeat(2,1fr)}
  .rk-section-head{align-items:flex-start;flex-direction:column}
  .rk-promo{grid-template-columns:1fr}
  .rk-promo>.rk-btn{grid-column:1}
  .rk-footer-grid{grid-template-columns:1fr}
  .rk-footer-bottom{flex-direction:column}
  .product-page{padding-left:14px;padding-right:14px;border-radius:18px}
  .gallery-stage{height:84vw}
  .attr-row{grid-template-columns:1fr;gap:5px}
}
@media(max-width:480px){
  .rk-logo-word small{display:none}
  .rk-hero-main h1{font-size:38px}
  .rk-hero-aside{grid-template-columns:1fr}
  .rk-products{grid-template-columns:1fr}
}

/* v0.9.1 — compact desktop + production-minded responsive layout */
@media(min-width:1060px){
  .container{width:min(1320px,calc(100% - 48px))}
  .rk-header-inner{min-height:68px;gap:20px}
  .rk-logo-symbol{width:34px;height:34px;transform:scale(.9);transform-origin:left center}
  .rk-logo-word strong{font-size:18px}
  .rk-logo-word small{margin-top:3px;font-size:8px}
  .rk-nav{gap:3px}
  .rk-nav a{min-height:38px;padding:0 10px;font-size:13px;border-radius:9px}
  .rk-header-search{max-width:430px}
  .rk-header-search input{min-height:40px;padding:10px 14px;font-size:14px;border-radius:10px}

  .rk-hero{padding:46px 0 38px}
  .rk-hero-grid{grid-template-columns:minmax(0,1.45fr) minmax(285px,.55fr);gap:34px}
  .rk-hero-main h1{font-size:clamp(38px,4.2vw,58px);margin:12px 0 14px;max-width:820px}
  .rk-hero-lead{font-size:16px;line-height:1.55}
  .rk-search{margin-top:22px}
  .rk-search input{min-height:50px;font-size:15px;border-radius:12px}
  .rk-hero-aside{padding:10px;border-radius:18px}
  .rk-metric{min-height:112px;padding:14px;border-radius:13px}
  .rk-metric strong{font-size:23px}
  .rk-benefits{padding:16px 0}
  .rk-benefit{padding:13px;border-radius:13px}
  .rk-section{padding:44px 0 20px}
  .rk-section-head{margin-bottom:16px}
  .rk-section-head h2{font-size:29px}
  .rk-category-card{min-height:82px;padding:14px;border-radius:14px}
  .rk-category-content strong{font-size:15px}

  .rk-product-page,.product-page{max-width:1320px;margin-top:16px;padding-left:24px;padding-right:24px;border-radius:20px}
  .rk-product-breadcrumbs .breadcrumbs,.breadcrumbs{padding-top:16px;padding-bottom:12px;font-size:12px}
  .rk-product-layout,.product-layout{grid-template-columns:minmax(430px,.92fr) minmax(420px,1.08fr);gap:34px;padding-top:2px;padding-bottom:28px}
  .rk-product-info{top:86px}
  .rk-product-info h1,.product-info h1{font-size:clamp(26px,2.15vw,34px);line-height:1.12;letter-spacing:-.028em;margin:8px 0 13px}
  .gallery{max-width:610px}
  .gallery-stage{height:470px;max-height:470px;border-radius:16px}
  .gallery-stage-media{max-height:470px}
  .gallery-thumbs{gap:7px;padding:8px 2px 2px}
  .gallery-thumb{flex-basis:60px;width:60px;height:60px;border-radius:9px;padding:4px}
  .gallery-meta{padding-top:5px;font-size:12px}
  .rk-product-help{grid-template-columns:38px 1fr;gap:11px;padding:13px;margin:14px 0;border-radius:13px}
  .rk-product-help-icon{width:36px;height:36px;border-radius:10px}
  .rk-product-help strong{font-size:13px;margin-bottom:2px}
  .rk-product-help span{font-size:12px;line-height:1.4}
  .rk-price-box{margin-top:13px;padding:15px 16px;border-radius:14px}
  .rk-price-main{font-size:29px}
  .rk-price-pending{font-size:19px}
  .rk-price-note{margin-top:5px;font-size:11.5px}
  .product-meta{gap:7px}
  .meta-pill{padding:5px 8px;font-size:11.5px}

  .rk-category-hero{padding:28px 0 26px}
  .rk-category-hero h1{font-size:clamp(34px,3.7vw,50px);margin:8px 0 12px}
  .rk-category-hero p{font-size:15px;line-height:1.55}
  .rk-category-stat{min-width:160px;padding:16px 18px;border-radius:15px}
  .rk-category-stat strong{font-size:31px}
  .rk-category-content{padding-top:20px;padding-bottom:42px}
  .rk-category-children,.rk-category-products{padding:14px 0 20px}
  .rk-category-product-grid{grid-template-columns:repeat(5,minmax(0,1fr));gap:11px}
  .category-grid,.product-grid{grid-template-columns:repeat(auto-fill,minmax(190px,1fr));gap:11px}
  .product-card{border-radius:14px}
  .product-card img,.image-placeholder{height:180px;padding:9px}
  .product-card-body{padding:11px 12px 13px}
  .product-card h3{font-size:13.5px;line-height:1.32;margin:5px 0 6px}
  .article,.brand,.product-kicker,.eyebrow{font-size:10.5px;letter-spacing:.055em}
  .rk-card-price{margin-top:8px;font-size:18px}
  .rk-card-price-muted{font-size:12px}

  .rk-product-tabs-wrap .tab-buttons{top:68px;padding-top:8px;margin-bottom:16px}
  .tab-button{padding:8px 12px;border-radius:9px;font-size:13px}
  .attributes{border-radius:12px}
  .attr-row{grid-template-columns:minmax(210px,.72fr) 1.28fr;padding:9px 13px;font-size:13px}
  .rk-applicability{padding:20px;border-radius:16px}
}

@media(max-width:1059px) and (min-width:761px){
  .container{width:calc(100% - 32px)}
  .rk-header-inner{min-height:68px;gap:14px}
  .rk-product-page,.product-page{margin-top:14px;padding-left:18px;padding-right:18px}
  .rk-product-layout,.product-layout{grid-template-columns:minmax(0,1fr);gap:22px}
  .gallery{max-width:760px;margin:0 auto}
  .gallery-stage{height:min(58vw,520px)}
  .rk-product-info h1,.product-info h1{font-size:clamp(26px,4vw,36px);margin:8px 0 14px}
  .rk-category-product-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}

@media(max-width:760px){
  body{font-size:15px;line-height:1.48}
  .container{width:calc(100% - 20px)}
  .rk-header{position:sticky;top:0}
  .rk-header-inner{min-height:58px;padding:7px 0;gap:8px}
  .rk-brand{gap:8px}
  .rk-logo-symbol{width:31px;height:31px;transform:scale(.78);transform-origin:left center}
  .rk-logo-word strong{font-size:16px}
  .rk-header-search{order:3;flex-basis:100%;width:100%}
  .rk-header-search input{min-height:40px;padding:9px 12px;font-size:14px;border-radius:10px}
  .rk-nav{order:2;width:auto;max-width:48%;margin-left:auto;gap:2px;overflow-x:auto}
  .rk-nav a{min-height:34px;padding:0 8px;font-size:12px}

  .rk-hero{padding:30px 0 26px}
  .rk-hero-main h1{font-size:clamp(30px,9vw,40px);line-height:1.02;margin:10px 0 12px}
  .rk-hero-lead{font-size:15px;line-height:1.5}
  .rk-search{margin-top:18px}
  .rk-search input{min-height:46px;font-size:15px}
  .rk-benefits{padding:12px 0}
  .rk-benefit{padding:12px}
  .rk-section{padding:34px 0 16px}
  .rk-section-head h2{font-size:25px}

  .rk-product-page,.product-page{width:100%;margin:0;border-left:0;border-right:0;border-radius:0;padding:0 10px 18px;box-shadow:none}
  .rk-product-breadcrumbs .breadcrumbs,.breadcrumbs{padding:12px 0 9px;font-size:11px;white-space:nowrap;overflow-x:auto}
  .rk-product-layout,.product-layout{grid-template-columns:1fr;gap:14px;padding:0 0 20px}
  .rk-product-gallery-wrap{min-width:0}
  .gallery{width:100%;max-width:none}
  .gallery-stage{height:min(92vw,420px);max-height:420px;border-radius:13px}
  .gallery-stage-media{max-height:420px}
  .gallery-thumbs{gap:6px;padding:7px 0 2px}
  .gallery-thumb{flex:0 0 56px;width:56px;height:56px;border-radius:8px;padding:3px}
  .gallery-meta{font-size:11px;padding-top:4px}
  .rk-product-info{position:static}
  .rk-product-info h1,.product-info h1{font-size:clamp(24px,7vw,31px);line-height:1.12;letter-spacing:-.025em;margin:7px 0 11px}
  .product-meta{gap:6px}
  .meta-pill{padding:5px 8px;font-size:11px}
  .rk-product-help{grid-template-columns:34px 1fr;gap:9px;padding:11px;margin:12px 0;border-radius:12px}
  .rk-product-help-icon{width:32px;height:32px;border-radius:9px;font-size:13px}
  .rk-product-help strong{font-size:12.5px;margin-bottom:2px}
  .rk-product-help span{font-size:11.5px;line-height:1.4}
  .rk-price-box{margin-top:10px;padding:13px 14px;border-radius:12px}
  .rk-price-main{font-size:27px}
  .rk-price-pending{font-size:18px}
  .rk-price-note{font-size:11px;line-height:1.4}

  .rk-category-hero{padding:22px 0 20px}
  .rk-category-hero h1{font-size:clamp(29px,9vw,40px);margin:6px 0 10px}
  .rk-category-hero p{font-size:14px;line-height:1.5}
  .rk-category-stat{padding:13px 15px;border-radius:13px}
  .rk-category-stat strong{font-size:28px}
  .rk-category-content{padding-top:15px;padding-bottom:30px}
  .rk-category-children,.rk-category-products{padding:10px 0 15px}
  .rk-category-subgrid{grid-template-columns:1fr 1fr;gap:8px}
  .rk-category-subcard{min-height:82px;padding:11px;border-radius:12px;grid-template-columns:32px 1fr auto;gap:8px}
  .rk-category-number{width:30px;height:30px;border-radius:8px;font-size:10px}
  .rk-category-subbody strong{font-size:13px}
  .rk-category-subbody span{font-size:10.5px}
  .rk-category-product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .category-grid,.product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .product-card{border-radius:11px;box-shadow:0 3px 10px rgba(16,24,40,.04)}
  .product-card img,.image-placeholder{height:148px;padding:7px}
  .product-card-body{padding:9px 9px 11px}
  .product-card h3{font-size:12.5px;line-height:1.3;margin:4px 0 5px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
  .article,.brand,.product-kicker,.eyebrow{font-size:9.5px;letter-spacing:.045em}
  .rk-card-price{margin-top:6px;font-size:16px}
  .rk-card-price-muted{font-size:11px}

  .rk-product-tabs-wrap .tab-buttons{position:static;display:flex;flex-wrap:nowrap;overflow-x:auto;gap:6px;margin-bottom:12px;padding:6px 0}
  .tab-button{flex:0 0 auto;padding:8px 10px;font-size:12px;border-radius:9px}
  .attributes{border-radius:10px}
  .attr-row{grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:8px;padding:9px 10px;font-size:12px}
  .attr-row dt{font-weight:650}
  .rk-applicability{padding:15px;border-radius:13px}
  .rk-applicability .section-intro h2{font-size:24px}
  .video-list{grid-template-columns:1fr}
}

@media(max-width:390px){
  .container{width:calc(100% - 16px)}
  .rk-nav{max-width:44%}
  .rk-nav a{padding:0 6px;font-size:11px}
  .rk-category-subgrid{grid-template-columns:1fr}
  .rk-category-product-grid,.category-grid,.product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:6px}
  .product-card img,.image-placeholder{height:132px}
  .product-card-body{padding:8px}
  .product-card h3{font-size:11.8px}
  .rk-product-info h1,.product-info h1{font-size:23px}
  .gallery-stage{height:94vw}
  .attr-row{grid-template-columns:1fr;gap:3px}
}

/* v0.9.3 — AMAGU-inspired ecommerce shell, original Phoenix/LOMANIA styling */
:root{
  --am-blue:#185adb;
  --am-blue-dark:#0f3f9d;
  --am-red:#e53935;
  --am-yellow:#ffcc33;
  --am-ink:#161b22;
  --am-muted:#6f7782;
  --am-line:#e9edf2;
  --am-bg:#f7f8fa;
  --am-card:#fff;
}
body{background:var(--am-bg)}
.am-servicebar{background:#f2f4f7;border-bottom:1px solid #e8ebef;color:#56606d;font-size:12px}
.am-servicebar-inner{height:34px;display:flex;align-items:center;justify-content:space-between;gap:20px}
.am-service-points,.am-service-links{display:flex;align-items:center;gap:22px}
.am-service-points span:before{content:"•";color:var(--am-blue);margin-right:7px}
.am-service-links a:hover{color:var(--am-blue)}

.am-header{position:sticky;top:0;z-index:90;background:#fff;border-bottom:1px solid var(--am-line);box-shadow:0 4px 18px rgba(20,31,50,.035)}
.am-header-main{min-height:78px;display:flex;align-items:center;gap:14px}
.am-brand{display:flex;align-items:center;gap:10px;flex:0 0 auto}
.am-brand-mark{width:40px;height:40px;border-radius:12px;display:grid;place-items:center;background:linear-gradient(145deg,var(--am-blue),var(--am-blue-dark));color:#fff;font-weight:900;font-size:13px;box-shadow:0 6px 16px rgba(24,90,219,.22)}
.am-brand-copy{display:flex;flex-direction:column;line-height:1}
.am-brand-copy strong{font-size:18px;letter-spacing:.015em;font-weight:950;color:#182232}
.am-brand-copy strong span{color:var(--am-red);padding:0 1px}
.am-brand-copy small{font-size:10px;color:#828b98;margin-top:5px}
.am-catalog-button{height:44px;padding:0 16px;border-radius:11px;background:var(--am-blue);color:#fff;display:flex;align-items:center;gap:8px;font-weight:850;font-size:14px}
.am-catalog-button:hover{background:var(--am-blue-dark)}
.am-burger{font-size:17px}
.am-header-search{flex:1;min-width:180px}
.am-header-search input{height:44px;padding:0 46px 0 16px;border-radius:11px;background:#f7f8fa;border:1px solid #dde2e8;box-shadow:none;font-size:14px}
.am-header-search input:focus{background:#fff}
.am-header-actions{display:flex;align-items:center;gap:2px;margin-left:auto}
.am-action{position:relative;min-width:68px;height:60px;padding:5px 8px;border:0;background:transparent;border-radius:11px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4px;color:#48515d;cursor:pointer}
.am-action:hover{background:#f5f7fa;color:var(--am-blue)}
.am-action b{font-size:20px;line-height:1;font-weight:700}
.am-action span{font-size:11.5px;font-weight:800}
.am-action i,.am-mobile-cart i{position:absolute;top:1px;right:7px;min-width:18px;height:18px;padding:0 5px;border-radius:20px;background:var(--am-red);color:#fff;font:800 10px/18px Arial;text-align:center}

.am-home{overflow:hidden}
.am-hero{padding:22px 0 10px;background:#fff}
.am-hero-grid{display:grid;grid-template-columns:minmax(0,1.65fr) minmax(260px,.55fr);gap:14px}
.am-hero-main{position:relative;min-height:360px;overflow:hidden;border-radius:24px;background:linear-gradient(118deg,#e9f2ff 0%,#f6f9ff 55%,#eef3f9 100%);display:grid;grid-template-columns:minmax(0,1.1fr) minmax(240px,.9fr)}
.am-hero-copy{z-index:2;padding:50px 24px 46px 48px;align-self:center}
.am-eyebrow{font-size:11px;font-weight:850;letter-spacing:.11em;text-transform:uppercase;color:#677488}
.am-hero-copy h1{max-width:720px;margin:11px 0 15px;font-size:clamp(38px,4vw,60px);line-height:1.01;letter-spacing:-.045em;color:#172236}
.am-hero-copy p{max-width:650px;margin:0;color:#586578;font-size:16px;line-height:1.55}
.am-hero-button{display:inline-flex;align-items:center;gap:14px;min-height:46px;margin-top:24px;padding:0 18px;border-radius:10px;background:var(--am-blue);color:#fff;font-size:14px;font-weight:850}
.am-hero-button:hover{background:var(--am-blue-dark)}
.am-hero-visual{display:flex;align-items:center;justify-content:center;padding:26px 34px 26px 0}
.am-hero-visual:before{content:"";position:absolute;width:360px;height:360px;border-radius:50%;right:-45px;top:4px;background:rgba(255,255,255,.64)}
.am-hero-visual img{position:relative;z-index:1;width:100%;height:300px;object-fit:contain;filter:drop-shadow(0 20px 24px rgba(23,40,70,.12))}
.am-hero-visual-empty{font-size:70px;font-weight:950;color:rgba(24,90,219,.18)}
.am-hero-side{display:grid;grid-template-rows:1fr 1fr;gap:14px}
.am-side-card{min-height:172px;padding:25px;border-radius:22px;display:flex;flex-direction:column;justify-content:flex-end;color:#fff;position:relative;overflow:hidden}
.am-side-card:after{content:"";position:absolute;width:150px;height:150px;border-radius:50%;right:-35px;top:-40px;background:rgba(255,255,255,.12)}
.am-side-card-blue{background:linear-gradient(145deg,#185adb,#0f3f9d)}
.am-side-card-red{background:linear-gradient(145deg,#e84b47,#ba2926)}
.am-side-label{font-size:11px;text-transform:uppercase;letter-spacing:.11em;opacity:.82}
.am-side-card strong{font-size:22px;line-height:1.08;margin:7px 0 10px}
.am-side-card>span:last-child{font-size:12px;font-weight:750;opacity:.9}

.am-trustbar{background:#fff;border-bottom:1px solid var(--am-line);padding:17px 0}
.am-trustbar-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.am-trustbar-grid>div{display:flex;align-items:center;gap:11px;padding:3px 18px;border-right:1px solid var(--am-line)}
.am-trustbar-grid>div:first-child{padding-left:0}.am-trustbar-grid>div:last-child{border-right:0}
.am-trustbar-grid b{flex:0 0 35px;width:35px;height:35px;display:grid;place-items:center;border-radius:50%;background:#eef4ff;color:var(--am-blue)}
.am-trustbar-grid span{display:flex;flex-direction:column}
.am-trustbar-grid strong{font-size:13px;line-height:1.2}
.am-trustbar-grid small{margin-top:4px;font-size:11px;color:#818a97}

.am-section{padding:44px 0 12px}
.am-section-head{display:flex;justify-content:space-between;align-items:flex-end;gap:20px;margin-bottom:18px}
.am-section-head>div>span{font-size:11px;text-transform:uppercase;letter-spacing:.11em;color:#7c8592;font-weight:800}
.am-section-head h2{margin:5px 0 0;font-size:30px;line-height:1.1;letter-spacing:-.035em}
.am-section-head>a{font-size:13px;font-weight:800;color:var(--am-blue)}
.am-count{font-size:12px;color:#7f8895}

.am-category-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.am-category-card{min-height:180px;padding:22px;border-radius:18px;background:#fff;border:1px solid var(--am-line);display:grid;grid-template-columns:minmax(0,1fr) 42%;align-items:end;overflow:hidden;transition:.18s ease}
.am-category-card:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(16,24,40,.08)}
.am-category-copy{display:flex;flex-direction:column;align-self:stretch;justify-content:flex-end;position:relative;z-index:2}
.am-category-copy small{font-size:10px;color:#8a93a0}
.am-category-copy strong{font-size:18px;line-height:1.15;margin:7px 0 18px}
.am-category-copy>span:last-child{font-size:11px;color:var(--am-blue);font-weight:850}
.am-category-image{height:140px;display:flex;align-items:flex-end;justify-content:flex-end}
.am-category-image img{width:100%;height:100%;object-fit:contain}
.am-category-image-empty{font-size:44px;color:#d7e3f8}

.am-product-strip{grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.am-product-strip .product-card{border-radius:16px;box-shadow:none}
.am-product-strip .product-card:hover{box-shadow:0 10px 24px rgba(16,24,40,.08)}
.am-product-strip .product-card img,.am-product-strip .image-placeholder{height:220px}

.am-promo-wide{margin-top:48px;background:linear-gradient(120deg,#17283d,#0d1c2f);color:#fff}
.am-promo-wide-inner{min-height:260px;display:flex;align-items:center;justify-content:space-between;gap:40px;padding-top:36px;padding-bottom:36px}
.am-promo-wide h2{font-size:38px;line-height:1.05;letter-spacing:-.04em;margin:9px 0 13px}
.am-promo-wide p{max-width:730px;margin:0;color:#bac6d5;line-height:1.6}
.am-eyebrow-light{color:#9eb6d7}
.am-hero-button-light{background:#fff;color:#142235;white-space:nowrap}
.am-hero-button-light:hover{background:#eef3fa}

.am-about{margin-top:50px;margin-bottom:55px;padding:36px;border-radius:22px;background:#fff;border:1px solid var(--am-line);display:grid;grid-template-columns:1.4fr .6fr;gap:42px;align-items:center}
.am-about h2{font-size:34px;letter-spacing:-.04em;margin:7px 0 12px}
.am-about p{margin:0;color:#687384;line-height:1.65}
.am-about-stats{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.am-about-stats div{min-height:110px;border-radius:16px;background:#f6f8fb;padding:18px;display:flex;flex-direction:column;justify-content:flex-end}
.am-about-stats strong{font-size:26px}.am-about-stats span{font-size:11px;color:#7d8795}

.am-footer{background:#152235;color:#dbe2eb;padding:48px 0 16px}
.am-footer-grid{display:grid;grid-template-columns:1.25fr 1fr 1fr 1.2fr;gap:36px}
.am-brand-footer .am-brand-copy strong{color:#fff}
.am-brand-footer .am-brand-copy small{color:#8fa0b6}
.am-footer-brand p{max-width:400px;color:#9caabe;font-size:13px;line-height:1.6}
.am-footer-col{display:flex;flex-direction:column;gap:9px}
.am-footer-col strong{color:#fff;margin-bottom:4px}
.am-footer-col a,.am-footer-col span{color:#9fadc0;font-size:12.5px;line-height:1.45}
.am-footer-col a:hover{color:#fff}
.am-footer-bottom{margin-top:30px;padding-top:16px;border-top:1px solid #2a3a50;display:flex;justify-content:space-between;gap:20px;color:#718198;font-size:11px}

.am-mobile-nav{display:none}

/* Bring inner pages into the same retail shell */
.rk-category-page,.rk-faq-page{background:var(--am-bg)}
.rk-category-hero,.rk-faq-hero{background:#fff}
.product-card{border-color:var(--am-line);box-shadow:none}
.rk-card-price{color:#142235}

@media(max-width:1050px){
  .am-header-main{flex-wrap:wrap;padding:10px 0}
  .am-header-search{order:3;flex-basis:100%}
  .am-hero-grid{grid-template-columns:1fr}
  .am-hero-side{grid-template-columns:1fr 1fr;grid-template-rows:none}
  .am-trustbar-grid{grid-template-columns:1fr 1fr;gap:14px}
  .am-trustbar-grid>div{border-right:0;padding:5px 0}
  .am-category-grid{grid-template-columns:repeat(2,1fr)}
  .am-product-strip{grid-template-columns:repeat(3,1fr)}
  .am-footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:760px){
  body{padding-bottom:68px}
  .am-servicebar{display:none}
  .am-header{top:0}
  .am-header-main{min-height:64px;padding:8px 0;display:grid;grid-template-columns:1fr auto;gap:9px}
  .am-brand-mark{width:36px;height:36px;border-radius:10px}
  .am-brand-copy strong{font-size:16px}
  .am-brand-copy small{font-size:9px}
  .am-catalog-button{height:39px;padding:0 13px}
  .am-header-search{grid-column:1/-1;order:initial}
  .am-header-search input{height:42px}
  .am-header-actions{display:none}

  .am-hero{padding:10px 0 4px}
  .am-hero-main{min-height:380px;grid-template-columns:1fr;border-radius:18px}
  .am-hero-copy{padding:27px 22px 8px}
  .am-hero-copy h1{font-size:34px;margin-top:8px}
  .am-hero-copy p{font-size:14px}
  .am-hero-button{min-height:43px;margin-top:18px}
  .am-hero-visual{height:150px;padding:0 20px 12px}
  .am-hero-visual:before{width:220px;height:220px;top:auto;bottom:-80px;right:-20px}
  .am-hero-visual img{height:145px}
  .am-hero-side{grid-template-columns:1fr 1fr;gap:8px}
  .am-side-card{min-height:128px;padding:16px;border-radius:16px}
  .am-side-card strong{font-size:16px}
  .am-side-card>span:last-child{font-size:10px}

  .am-trustbar{padding:12px 0}
  .am-trustbar-grid{grid-template-columns:1fr 1fr;gap:8px}
  .am-trustbar-grid>div{padding:5px 0;align-items:flex-start}
  .am-trustbar-grid b{width:30px;height:30px;flex-basis:30px}
  .am-trustbar-grid strong{font-size:11px}
  .am-trustbar-grid small{font-size:9px}

  .am-section{padding-top:32px}
  .am-section-head{align-items:flex-end}
  .am-section-head h2{font-size:24px}
  .am-section-head>div>span{font-size:9px}
  .am-section-head>a{font-size:11px}

  .am-category-grid{grid-template-columns:1fr 1fr;gap:8px}
  .am-category-card{min-height:145px;padding:14px;grid-template-columns:1fr}
  .am-category-copy strong{font-size:14px;margin:5px 0 8px}
  .am-category-image{height:72px;order:-1;align-items:center;justify-content:center}
  .am-category-copy>span:last-child{font-size:9px}

  .am-product-strip{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .am-product-strip .product-card img,.am-product-strip .image-placeholder{height:155px}
  .am-product-strip .product-card-body{padding:10px}
  .am-product-strip .product-card h3{font-size:12px;line-height:1.3}
  .am-product-strip .rk-card-price{font-size:16px}

  .am-promo-wide{margin-top:34px}
  .am-promo-wide-inner{min-height:0;display:block;padding-top:30px;padding-bottom:30px}
  .am-promo-wide h2{font-size:28px}
  .am-promo-wide p{font-size:13px}
  .am-promo-wide .am-hero-button{margin-top:20px}

  .am-about{margin-top:34px;margin-bottom:30px;padding:22px;grid-template-columns:1fr;gap:22px}
  .am-about h2{font-size:27px}
  .am-about-stats div{min-height:90px}

  .am-footer{padding-bottom:20px}
  .am-footer-grid{grid-template-columns:1fr;gap:24px}
  .am-footer-bottom{flex-direction:column}

  .am-mobile-nav{position:fixed;left:0;right:0;bottom:0;z-index:120;height:64px;padding:4px max(6px,env(safe-area-inset-left)) calc(4px + env(safe-area-inset-bottom));display:grid;grid-template-columns:repeat(5,1fr);background:rgba(255,255,255,.98);border-top:1px solid #dde2e8;box-shadow:0 -6px 24px rgba(20,31,50,.08);backdrop-filter:blur(16px)}
  .am-mobile-nav a,.am-mobile-nav button{position:relative;border:0;background:transparent;color:#616a77;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;font:inherit}
  .am-mobile-nav b{font-size:20px;line-height:1}
  .am-mobile-nav span{font-size:9px;font-weight:750}
  .am-mobile-nav a:first-child{color:var(--am-blue)}
  .am-mobile-cart i{top:2px;right:calc(50% - 20px)}
}
@media(max-width:390px){
  .am-brand-copy strong{font-size:14px}
  .am-catalog-button span:last-child{display:none}
  .am-catalog-button{width:40px;padding:0;justify-content:center}
  .am-hero-copy h1{font-size:30px}
  .am-category-grid{grid-template-columns:1fr 1fr}
}


/* v0.9.4 — Lomania visual polish */
.am-hero-main{background:linear-gradient(125deg,#eef5ff 0%,#fbfcff 54%,#f2f5f9 100%)}
.am-hero-visual-brand{position:relative;isolation:isolate;min-width:0;overflow:hidden}
.am-hero-visual-brand:before{width:340px;height:340px;right:-42px;top:12px;background:linear-gradient(145deg,rgba(255,255,255,.94),rgba(231,240,255,.82));box-shadow:inset 0 0 0 1px rgba(24,90,219,.08)}
.lm-hero-orbit{position:absolute;border:1px solid rgba(24,90,219,.15);border-radius:50%;z-index:0}
.lm-hero-orbit-a{width:285px;height:285px;right:12px;top:37px}
.lm-hero-orbit-b{width:205px;height:205px;right:52px;top:77px;border-color:rgba(229,57,53,.12)}
.lm-hero-brand-card{position:relative;z-index:3;width:min(245px,90%);min-height:168px;padding:24px;border-radius:26px;background:rgba(255,255,255,.92);border:1px solid rgba(24,90,219,.12);box-shadow:0 24px 50px rgba(26,55,95,.13);display:flex;flex-direction:column;justify-content:flex-end}
.lm-hero-brand-card>span{position:absolute;top:22px;right:22px;width:50px;height:50px;border-radius:16px;display:grid;place-items:center;background:linear-gradient(145deg,var(--am-blue),var(--am-blue-dark));color:#fff;font-size:15px;font-weight:950;letter-spacing:.05em}
.lm-hero-brand-card strong{font-size:29px;letter-spacing:.08em;line-height:1;color:#18263a}
.lm-hero-brand-card small{margin-top:9px;color:#778395;font-size:11px}
.lm-hero-chip{position:absolute;z-index:4;padding:8px 12px;border-radius:999px;background:#fff;border:1px solid #e5eaf1;box-shadow:0 9px 24px rgba(16,24,40,.09);font-size:10px;font-weight:850;color:#475467;white-space:nowrap}
.lm-chip-one{right:8px;top:58px}.lm-chip-two{left:4px;bottom:62px}.lm-chip-three{right:14px;bottom:34px}

/* Contrast surfaces for catalogue photography */
.product-card>a:first-child,.am-category-image,.gallery-stage,.gallery-thumb{background:linear-gradient(145deg,#f1f3f6,#fafbfc)}
.product-card>a:first-child{display:block;overflow:hidden;border-radius:15px 15px 0 0;border-bottom:1px solid #edf0f4}
.product-card>a:first-child img{mix-blend-mode:multiply}
.am-category-image{border-radius:14px;padding:8px;align-items:center;justify-content:center}
.am-category-image img{mix-blend-mode:multiply}
.gallery-stage{border:1px solid #e7ebf0}
.gallery-stage img{mix-blend-mode:multiply}
.gallery-thumb{border-color:#e1e6ec}

/* Mobile nav: predictable geometry on narrow phones */
@media(max-width:760px){
  body{padding-bottom:calc(70px + env(safe-area-inset-bottom))}
  .am-mobile-nav{height:calc(66px + env(safe-area-inset-bottom));padding:5px 4px env(safe-area-inset-bottom);grid-template-columns:repeat(5,minmax(0,1fr));align-items:stretch}
  .am-mobile-nav a,.am-mobile-nav button{min-width:0;width:100%;padding:4px 1px;gap:3px;overflow:visible;-webkit-tap-highlight-color:transparent}
  .am-mobile-nav svg{width:21px;height:21px;display:block;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;flex:0 0 auto}
  .am-mobile-nav span{display:block;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:9px;line-height:1.1;text-align:center}
  .am-mobile-cart i{top:1px;right:calc(50% - 22px)}
  .am-hero-visual-brand{height:170px;padding:0 14px 12px}
  .am-hero-visual-brand:before{width:220px;height:220px;top:auto;bottom:-70px;right:-18px}
  .lm-hero-orbit-a{width:190px;height:190px;right:4px;top:4px}.lm-hero-orbit-b{width:135px;height:135px;right:31px;top:31px}
  .lm-hero-brand-card{width:190px;min-height:116px;padding:16px;border-radius:19px}
  .lm-hero-brand-card>span{top:14px;right:14px;width:38px;height:38px;border-radius:12px;font-size:11px}
  .lm-hero-brand-card strong{font-size:21px}.lm-hero-brand-card small{font-size:9px;margin-top:6px}
  .lm-hero-chip{padding:6px 9px;font-size:8px}.lm-chip-one{right:5px;top:18px}.lm-chip-two{left:4px;bottom:32px}.lm-chip-three{right:7px;bottom:16px}
  .product-card>a:first-child{border-radius:11px 11px 0 0}
}
@media(max-width:360px){
  .am-mobile-nav span{font-size:8px}
  .am-mobile-nav svg{width:20px;height:20px}
  .am-mobile-nav a,.am-mobile-nav button{padding-left:0;padding-right:0}
}


/* v0.9.5 — LOMANIA AMAGU-like retail storefront */
.am-header-main{min-height:88px}.am-brand-mark{width:48px;height:48px;font-size:26px;border-radius:13px}.am-brand-copy strong{font-size:21px;letter-spacing:.09em}.am-brand-copy small{font-size:10.5px}.am-header-actions svg{width:28px;height:28px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}.am-action b{display:none}
.lm-hero-shell{display:grid;grid-template-columns:minmax(0,1.65fr) minmax(250px,.55fr);gap:14px}.lm-hero-carousel{position:relative;min-height:430px;border-radius:24px;overflow:hidden;background:#eef4ff}.lm-hero-slide{position:absolute;inset:0;display:grid;grid-template-columns:minmax(0,1.12fr) minmax(260px,.88fr);opacity:0;visibility:hidden;transform:translateX(18px);transition:opacity .4s ease,transform .4s ease,visibility .4s}.lm-hero-slide.is-active{opacity:1;visibility:visible;transform:none}.lm-slide-copy{padding:42px 32px 58px 48px;align-self:center;position:relative;z-index:2}.lm-slide-copy h1,.lm-slide-copy h2{max-width:720px;margin:10px 0 15px;font-size:clamp(36px,3.65vw,56px);line-height:1.01;letter-spacing:-.045em;color:#172236}.lm-slide-copy p{max-width:650px;margin:0;color:#586578;font-size:16px;line-height:1.55}.lm-slide-art{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;overflow:hidden;color:#185adb}.lm-slide-art:before{content:"";position:absolute;width:330px;height:330px;border-radius:50%;background:rgba(255,255,255,.65);box-shadow:inset 0 0 0 1px rgba(24,90,219,.08)}.lm-art-logo{position:relative;z-index:2;width:112px;height:112px;border-radius:30px;display:grid;place-items:center;background:linear-gradient(145deg,#185adb,#0f3f9d);color:#fff;font-size:67px;font-weight:950;box-shadow:0 24px 50px rgba(24,90,219,.22)}.lm-slide-art>span{position:relative;z-index:2;margin-top:18px;font-size:12px;font-weight:900;letter-spacing:.14em}.lm-art-ring{position:absolute;width:250px;height:250px;border-radius:50%;border:1px solid rgba(24,90,219,.2)}.lm-art-two svg{position:relative;z-index:2;width:180px;height:180px;fill:none;stroke:#185adb;stroke-width:8;stroke-linecap:round;stroke-linejoin:round}.lm-art-three strong{position:relative;z-index:2;font-size:58px;letter-spacing:-.05em}.lm-cubes{position:absolute;z-index:1;width:230px;height:180px}.lm-cubes i{position:absolute;width:74px;height:74px;border-radius:18px;background:#fff;border:1px solid #dce7f8;box-shadow:0 15px 32px rgba(20,50,90,.08)}.lm-cubes i:nth-child(1){left:14px;top:34px;transform:rotate(-9deg)}.lm-cubes i:nth-child(2){right:20px;top:12px;transform:rotate(8deg)}.lm-cubes i:nth-child(3){left:76px;bottom:0;transform:rotate(4deg)}.lm-cubes i:nth-child(4){right:8px;bottom:24px;transform:rotate(-5deg)}.lm-hero-arrow{position:absolute;z-index:10;top:50%;width:38px;height:38px;margin-top:-19px;border:0;border-radius:50%;background:rgba(255,255,255,.94);box-shadow:0 6px 18px rgba(16,24,40,.12);font-size:27px;line-height:1;color:#344054;cursor:pointer}.lm-prev{left:12px}.lm-next{right:12px}.lm-hero-dots{position:absolute;z-index:10;left:48px;bottom:19px;display:flex;gap:7px}.lm-hero-dots button{width:8px;height:8px;padding:0;border:0;border-radius:50%;background:#b7c0cc;cursor:pointer}.lm-hero-dots button.is-active{width:26px;border-radius:8px;background:#185adb}
.am-category-grid{grid-template-columns:repeat(4,minmax(0,1fr))}.am-category-card{min-height:190px;background:#fff}.am-category-image{background:#f5f6f8}.am-category-image img{mix-blend-mode:multiply}
.lm-shelf-track{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(190px,1fr);grid-template-columns:repeat(6,minmax(190px,1fr));gap:12px;overflow-x:auto;padding:2px 2px 12px;scroll-snap-type:x proximity;scrollbar-width:thin}.lm-shelf-track .product-card{scroll-snap-align:start;min-width:0}.lm-new-track{grid-template-columns:repeat(8,minmax(190px,1fr))}.product-card{display:flex;flex-direction:column;height:100%;background:#fff}.lm-product-link{display:flex!important;flex-direction:column;flex:1;border-radius:16px 16px 0 0!important;border-bottom:0!important;background:#fff!important}.lm-product-media{height:218px;margin:10px 10px 0;border-radius:13px;display:flex;align-items:center;justify-content:center;overflow:hidden;background:linear-gradient(145deg,#f2f3f5,#fafafa);border:1px solid #eef0f3}.lm-product-media img,.lm-product-media .image-placeholder{width:100%;height:100%;padding:10px;object-fit:contain;background:transparent;mix-blend-mode:multiply}.product-card-body{border-top:0;display:flex;flex-direction:column;flex:1}.product-card h3{min-height:58px}.lm-card-action{padding:0 14px 14px}.lm-card-action a{display:flex;align-items:center;justify-content:center;height:38px;border-radius:9px;background:#185adb;color:#fff;font-size:12px;font-weight:850}.lm-card-action a:hover{background:#0f3f9d}.rk-card-price{margin-top:auto;padding-top:9px}

/* CLOUD v0.3.3 — compact cards + FBS stock */
.product-card{max-height:430px}
.lm-product-media{height:176px}
.product-card-body{padding:10px 14px 8px!important}
.product-card h3,.lm-card-title{
  min-height:42px!important;
  margin:6px 0 4px!important;
  font-size:13px!important;
  line-height:1.34!important;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.product-card .brand{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:11px}
.lm-card-stock{margin-top:6px;font-size:11px;font-weight:800;line-height:1.2}
.lm-card-stock-in,.lm-stock-in{color:#14804a}
.lm-card-stock-preorder,.lm-stock-preorder{color:#9a6700}
.lm-card-stock-out,.lm-stock-out{color:#8a94a6}
.lm-stock{margin-top:10px;font-size:14px;font-weight:850}
.lm-stock span{font-weight:700;color:#667085}
.rk-card-price{font-size:18px!important}
.lm-card-action{padding:0 14px 10px}
.lm-card-action a{height:34px}

.am-footer{padding-top:54px}.am-footer-grid{grid-template-columns:1.25fr .8fr 1fr 1.15fr}.am-brand-footer .am-brand-mark{box-shadow:none}
@media(max-width:1050px){.lm-hero-shell{grid-template-columns:1fr}.lm-hero-carousel{min-height:430px}.lm-shelf-track{grid-template-columns:none;grid-auto-columns:minmax(190px,31%)}.lm-new-track{grid-template-columns:none}.am-category-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:760px){.am-header-main{grid-template-columns:1fr auto;min-height:68px}.am-brand-mark{width:40px;height:40px;font-size:22px;border-radius:11px}.am-brand-copy strong{font-size:15px}.lm-hero-carousel{min-height:500px;border-radius:18px}.lm-hero-slide{grid-template-columns:1fr;grid-template-rows:auto 170px}.lm-slide-copy{padding:28px 22px 8px}.lm-slide-copy h1,.lm-slide-copy h2{font-size:34px}.lm-slide-copy p{font-size:14px}.lm-slide-art:before{width:220px;height:220px}.lm-art-logo{width:78px;height:78px;border-radius:22px;font-size:47px}.lm-art-two svg{width:120px;height:120px}.lm-art-three strong{font-size:42px}.lm-cubes{width:170px;height:125px}.lm-cubes i{width:54px;height:54px}.lm-hero-dots{left:22px;bottom:14px}.lm-hero-arrow{display:none}.lm-shelf-track{grid-auto-columns:minmax(150px,47%);gap:8px}.lm-product-media{height:138px;margin:7px 7px 0}.product-card h3{min-height:40px!important;font-size:12px!important}.lm-card-action{padding:0 9px 10px}.lm-card-action a{height:34px;font-size:11px}.am-category-card{min-height:155px}}
@media(max-width:390px){.lm-hero-carousel{min-height:480px}.lm-slide-copy h1,.lm-slide-copy h2{font-size:30px}.lm-shelf-track{grid-auto-columns:minmax(145px,48%)}.lm-product-media{height:134px}}

/* v0.9.6 — stronger product/photo contrast + stable category pictograms */
:root{--am-bg:#e9edf2;--rk-bg:#e9edf2}
body,.am-home,.rk-category-page,.rk-faq-page{background:#e9edf2}
.am-hero{background:#e9edf2}
.am-trustbar{background:#f6f8fa}
.am-section{position:relative}
.am-category-grid{gap:14px}
.am-category-card{
  min-height:210px;
  grid-template-columns:minmax(0,1fr) 132px;
  align-items:center;
  padding:24px;
  background:#f8fafc;
  border:1px solid #d7dee8;
  box-shadow:0 8px 24px rgba(16,24,40,.045)
}
.am-category-card:hover{background:#fff;box-shadow:0 16px 34px rgba(16,24,40,.10)}
.am-category-copy{justify-content:center}
.am-category-copy small{font-size:11px;color:#687588}
.am-category-copy strong{font-size:20px;margin:8px 0 22px}
.am-category-icon{
  width:118px;height:118px;border-radius:28px;
  display:grid;place-items:center;justify-self:end;
  background:linear-gradient(145deg,#dce8ff,#f5f8ff);
  color:#185adb;border:1px solid #cfddf6;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9)
}
.am-category-icon svg{width:62px;height:62px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.product-card{background:#fff;border-color:#d9dfe7;box-shadow:0 5px 18px rgba(16,24,40,.055)}
.lm-product-link{background:#fff!important}
.lm-product-media,.product-card>a:first-child,.gallery-stage,.gallery-thumb{
  background:#eef1f4!important;
  border-color:#dfe4ea
}
.lm-product-media img,.product-card>a:first-child img,.gallery-stage img,.gallery-thumb img{mix-blend-mode:multiply}
.rk-category-hero,.rk-faq-hero{background:#f7f9fb}
.rk-category-content{padding-top:28px}
.rk-category-subcard{background:#f8fafc;border-color:#d7dee8}
.rk-category-subicon{
  flex:0 0 54px;width:54px;height:54px;border-radius:15px;
  display:grid;place-items:center;background:#e7efff;color:#185adb
}
.rk-category-subicon svg{width:30px;height:30px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.am-about{background:#f8fafc;border-color:#d7dee8}
@media(max-width:760px){
  .am-category-card{min-height:170px;grid-template-columns:1fr 78px;padding:16px}
  .am-category-icon{width:70px;height:70px;border-radius:18px}
  .am-category-icon svg{width:38px;height:38px}
  .am-category-copy strong{font-size:16px;margin-bottom:13px}
}


/* v0.9.8 — urgent legal + robust mobile shell */
html,body{max-width:100%;overflow-x:hidden}
.am-footer-legal span{overflow-wrap:anywhere}
@media(max-width:900px){
  .container{width:auto!important;max-width:none!important;margin-left:14px!important;margin-right:14px!important}
  .am-header-main{min-height:0!important;padding:9px 0!important;display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;gap:8px!important;align-items:center!important}
  .am-brand{min-width:0!important;overflow:hidden}
  .am-brand-copy{min-width:0}
  .am-brand-copy strong{font-size:15px!important;white-space:nowrap}
  .am-brand-copy small{font-size:8px!important;white-space:nowrap}
  .am-catalog-button{height:40px!important;max-width:130px!important;padding:0 12px!important}
  .am-header-search{grid-column:1/-1!important;min-width:0!important;width:100%!important;order:initial!important}
  .am-header-search input{width:100%!important;min-width:0!important}
  .am-header-actions{display:none!important}
  .lm-hero-shell,.am-hero-grid{grid-template-columns:1fr!important}
  .lm-hero-carousel{min-width:0!important;max-width:100%!important}
  .lm-hero-slide{grid-template-columns:1fr!important}
  .lm-slide-copy{padding:28px 20px 18px!important}
  .lm-slide-copy h1,.lm-slide-copy h2{font-size:clamp(28px,8vw,38px)!important}
  .lm-slide-art{min-height:150px!important}
  .am-category-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  .am-category-card{min-width:0!important}
  .am-product-strip,.rk-products,.category-grid,.product-grid,.rk-category-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  .product-card{min-width:0!important}
  .am-about,.rk-fitment-grid,.product-layout,.rk-product-layout{grid-template-columns:1fr!important}
  .am-about{padding:20px!important}
  .am-footer{padding:34px 0 calc(84px + env(safe-area-inset-bottom))!important}
  .am-footer-grid{display:grid!important;grid-template-columns:1fr!important;gap:26px!important}
  .am-footer-col,.am-footer-brand{min-width:0!important;width:100%!important}
  .am-footer-bottom{display:flex!important;flex-direction:column!important;align-items:flex-start!important;gap:8px!important;overflow-wrap:anywhere}
  .am-mobile-nav{display:grid!important}
}
@media(max-width:480px){
  .container{margin-left:10px!important;margin-right:10px!important}
  .am-category-grid{grid-template-columns:1fr!important}
  .am-category-card{grid-template-columns:minmax(0,1fr) 78px!important;min-height:132px!important}
  .am-product-strip,.rk-products,.category-grid,.product-grid,.rk-category-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:7px!important}
  .product-card h3{font-size:11px!important;line-height:1.28!important}
  .rk-card-price{font-size:15px!important}
  .am-footer-grid{grid-template-columns:1fr!important}
}


/* v0.6.8 — robust animated mobile bottom navigation */
@media(max-width:760px){
  .am-mobile-nav{position:fixed;display:flex!important;align-items:stretch!important;isolation:isolate;overflow:hidden!important}
  .am-mobile-nav>[data-mobile-tab]{position:relative!important;flex:0 0 20%!important;width:20%!important;min-width:20%!important;max-width:20%!important;box-sizing:border-box!important;z-index:2!important;pointer-events:auto!important;touch-action:manipulation!important;transform:none!important;inset:auto!important;margin:0!important}
  .am-mobile-nav-indicator{position:absolute;z-index:1;left:0;top:6px;bottom:calc(6px + env(safe-area-inset-bottom));width:0;transform:none;border-radius:16px;background:linear-gradient(180deg,#edf4ff,#e7efff);box-shadow:inset 0 0 0 1px rgba(24,90,219,.10),0 5px 14px rgba(24,90,219,.08);transition:left .30s cubic-bezier(.22,.85,.34,1),width .18s ease;pointer-events:none!important;box-sizing:border-box}
  .am-mobile-nav-indicator:before{content:"";position:absolute;left:50%;top:0;width:24px;height:3px;border-radius:0 0 4px 4px;background:var(--am-blue);transform:translateX(-50%);box-shadow:0 2px 8px rgba(24,90,219,.22);pointer-events:none}
  .am-mobile-nav a,.am-mobile-nav button{transition:color .20s ease,transform .20s ease}
  .am-mobile-nav a.is-active,.am-mobile-nav button.is-active{color:var(--am-blue)}
  .am-mobile-nav a.is-active svg,.am-mobile-nav button.is-active svg{transform:translateY(-1px);transition:transform .20s ease}
}


/* v0.9.13 — wide adaptive storefront + 3:4 Ozon product media + legal/info pages */
@media(min-width:901px){
  .container{width:min(1680px,calc(100% - clamp(40px,5vw,96px)))!important;max-width:none!important}
  .am-header-main{grid-template-columns:auto auto minmax(360px,1fr) auto!important}
  .lm-hero-shell{grid-template-columns:minmax(0,1.8fr) minmax(280px,.48fr)!important}
  .am-category-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important}
  .lm-shelf-track{grid-auto-columns:minmax(205px,1fr);grid-template-columns:repeat(7,minmax(205px,1fr))}
  .lm-new-track{grid-template-columns:repeat(8,minmax(205px,1fr))}
  .rk-category-product-grid{grid-template-columns:repeat(5,minmax(0,1fr))!important}
  .rk-product-layout,.product-layout{
    grid-template-columns:minmax(460px,680px) minmax(420px,1fr)!important;
    gap:clamp(34px,4vw,72px)!important;
    align-items:start
  }
  .rk-product-gallery-wrap{width:100%;max-width:680px;justify-self:start}
  .gallery-stage{
    width:100%!important;height:auto!important;max-height:none!important;
    aspect-ratio:3/4!important;border-radius:22px
  }
  .gallery-stage-media{width:100%!important;height:100%!important;max-height:none!important;object-fit:contain!important}
}
@media(min-width:1800px){
  .container{width:min(1760px,calc(100% - 112px))!important}
}
@media(max-width:900px){
  .gallery-stage{height:auto!important;max-height:none!important;aspect-ratio:3/4!important}
  .gallery-stage-media{height:100%!important;max-height:none!important;object-fit:contain!important}
}
.rk-info-page{background:var(--rk-bg);min-height:55vh}
.rk-info-hero{background:#f7f9fb;border-bottom:1px solid #dfe5ec;padding:44px 0 38px}
.rk-info-hero h1{font-size:clamp(32px,4vw,54px);line-height:1.05;margin:8px 0 0;letter-spacing:-.035em}
.rk-info-content{padding-top:38px;padding-bottom:64px;max-width:1100px!important}
.rk-info-content h2{margin:32px 0 10px;font-size:24px;line-height:1.2}
.rk-info-content ul{padding-left:22px;margin:12px 0 20px}
.rk-info-content li{margin:7px 0;color:#344054}
.rk-info-content a{color:var(--rk-blue);text-decoration:underline;text-underline-offset:2px}
.rk-info-content p,.rk-info-content li{font-size:16px;color:#475467;line-height:1.75}
.rk-info-content h2{margin:34px 0 10px;font-size:24px}
.rk-info-content a{color:var(--rk-blue);font-weight:700}
.rk-info-cards{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.rk-info-cards>div{display:flex;flex-direction:column;gap:5px;padding:20px;border:1px solid #d8e0e9;border-radius:16px;background:#fff}
.am-footer-grid-v0913{grid-template-columns:1.25fr .75fr .8fr 1fr 1fr!important;gap:clamp(22px,3vw,48px)!important}
.am-footer-contact{display:flex;flex-direction:column;gap:5px;margin-top:15px}
.am-footer-contact a{font-size:18px;font-weight:850;color:#fff}
.am-footer-contact span{color:#9fadc0;font-size:13px}
@media(max-width:1100px){
  .am-footer-grid-v0913{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media(max-width:760px){
  .am-footer-grid-v0913{grid-template-columns:1fr!important}
  .rk-info-content{padding-top:24px;padding-bottom:42px}
  .rk-info-cards{grid-template-columns:1fr}
}


/* v0.9.13.5 — stronger, clearer LOMANIA typography */
:root{
  --lm-text:#172033;
  --lm-text-secondary:#445168;
  --lm-text-muted:#5c687a;
}
body{
  color:var(--lm-text);
  font-size:16px;
  font-weight:500;
  line-height:1.58;
  letter-spacing:-.005em;
  text-rendering:optimizeLegibility;
}
button,input,select,textarea{font-weight:500;color:var(--lm-text)}

/* Small interface copy must stay readable on large desktop displays */
.am-servicebar{font-size:14px!important;font-weight:600!important;color:#445168!important}
.am-service-points,.am-service-links{font-weight:600!important}
.am-brand-copy small,.rk-logo-word small{font-size:11px!important;font-weight:650!important;color:#657186!important}
.am-header-search input,.rk-header-search input,.search-box input{font-size:16px!important;font-weight:500!important;color:#202b3d!important}
.am-action span{font-size:13px!important;font-weight:750!important;color:#303b4d!important}
.am-catalog-button{font-size:15px!important;font-weight:800!important}

/* Hero and trust bar */
.am-eyebrow,.eyebrow,.product-kicker{font-size:12px!important;font-weight:800!important;color:#5b687b!important}
.am-hero-copy p,.rk-hero-lead{font-size:18px!important;font-weight:500!important;color:#405069!important;line-height:1.6!important}
.am-hero-button{font-size:15px!important;font-weight:800!important}
.am-trustbar-grid strong{font-size:15px!important;font-weight:800!important;color:#1d2939!important}
.am-trustbar-grid small{font-size:13px!important;font-weight:550!important;color:#58667b!important;line-height:1.4!important}
.am-trustbar-grid b{font-size:17px!important;font-weight:850!important}

/* Section and category typography */
.am-section-head>div>span,.rk-section-head>div>span{font-size:12px!important;font-weight:800!important;color:#657186!important}
.am-section-head h2,.rk-section-head h2{font-weight:850!important;color:#101828!important}
.am-section-head>a{font-size:14px!important;font-weight:800!important}
.am-count,.rk-section-count{font-size:13px!important;font-weight:600!important;color:#59667a!important}
.am-category-copy small{font-size:12px!important;font-weight:600!important;color:#657186!important}
.am-category-copy strong{font-size:20px!important;font-weight:800!important;color:#111827!important;line-height:1.18!important}
.am-category-copy>span:last-child{font-size:13px!important;font-weight:800!important}
.rk-category-subbody strong{font-size:16px!important;font-weight:800!important}
.rk-category-subbody span{font-size:13px!important;font-weight:600!important;color:#5e6a7d!important}
.rk-category-number{font-size:13px!important;font-weight:850!important}
.rk-category-hero p{font-size:18px!important;font-weight:500!important;color:#435168!important}
.rk-category-stat span{font-size:14px!important;font-weight:600!important;color:#59667a!important}

/* Product cards */
.product-card h3{font-size:16px!important;font-weight:750!important;line-height:1.38!important;color:#162033!important}
.article,.brand{font-size:12px!important;font-weight:650!important;color:#59667a!important;letter-spacing:.035em!important}
.rk-card-price{font-size:20px!important;font-weight:850!important;color:#101828!important}
.rk-card-price-muted{font-size:13px!important;font-weight:600!important;color:#5e6a7d!important}

/* Product page */
.breadcrumbs,.rk-product-breadcrumbs .breadcrumbs{font-size:14px!important;font-weight:550!important;color:#536178!important}
.rk-product-info h1,.product-info h1{font-weight:850!important;color:#111827!important}
.meta-pill{font-size:13px!important;font-weight:650!important;color:#344054!important}
.rk-product-help strong{font-size:15px!important;font-weight:800!important}
.rk-product-help span{font-size:13px!important;font-weight:550!important;color:#4e5d73!important}
.rk-price-note{font-size:13px!important;font-weight:550!important;color:#58667a!important}
.gallery-meta{font-size:13px!important;font-weight:550!important;color:#5d697b!important}
.tab-button{font-size:14px!important;font-weight:750!important}
.attr-row{font-size:14px!important;font-weight:500!important;color:#263247!important}
.attr-row dt{font-weight:750!important;color:#39465b!important}

/* Info pages and footer */
.rk-info-content p,.rk-info-content li{font-size:17px!important;font-weight:500!important;color:#3e4c61!important}
.am-footer-brand p{font-size:14px!important;font-weight:500!important;color:#aeb9c8!important}
.am-footer-col strong{font-size:15px!important;font-weight:800!important}
.am-footer-col a,.am-footer-col span{font-size:14px!important;font-weight:550!important;color:#aeb9c8!important}
.am-footer-bottom{font-size:12px!important;font-weight:550!important;color:#8c9aae!important}

@media(min-width:1060px){
  body{font-size:17px!important}
  .am-servicebar{font-size:14px!important}
  .am-header-main{min-height:82px!important}
  .am-brand-copy strong{font-size:21px!important;font-weight:900!important}
  .am-action b{font-size:26px!important}
  .am-action span{font-size:13px!important}
  .am-hero-copy h1{font-weight:900!important}
  .am-section-head h2,.rk-section-head h2{font-size:32px!important}
  .product-card h3{font-size:16px!important}
}

@media(max-width:760px){
  body{font-size:15.5px!important;font-weight:500!important}
  .am-header-search input{font-size:15px!important}
  .am-category-copy strong{font-size:17px!important}
  .product-card h3{font-size:13.5px!important;line-height:1.34!important}
  .article,.brand,.product-kicker,.eyebrow{font-size:11px!important}
  .rk-card-price{font-size:17px!important}
  .rk-category-subbody strong{font-size:14px!important}
  .rk-category-subbody span{font-size:12px!important}
  .breadcrumbs,.rk-product-breadcrumbs .breadcrumbs{font-size:12px!important}
  .rk-product-help span{font-size:12.5px!important}
}


/* LOMANIA auth preview v0.2.4 — DOMContentLoaded safe */
.lm-auth{position:fixed;inset:0;z-index:220;display:none;align-items:center;justify-content:center;padding:20px}
.lm-auth.is-open{display:flex}
.lm-auth-backdrop{position:absolute;inset:0;background:rgba(15,23,42,.55);backdrop-filter:blur(5px)}
.lm-auth-dialog{position:relative;z-index:1;width:min(100%,460px);max-height:calc(100vh - 32px);overflow:auto;background:#fff;border-radius:24px;box-shadow:0 30px 80px rgba(15,23,42,.28);padding:30px}
.lm-auth-close{position:absolute;right:16px;top:14px;width:38px;height:38px;border:0;border-radius:50%;background:#f2f4f7;color:#344054;font-size:27px;line-height:1;cursor:pointer}
.lm-auth-brand{display:flex;align-items:center;gap:12px;padding-right:42px;margin-bottom:24px}
.lm-auth-brand .am-brand-mark{flex:0 0 auto}
.lm-auth-brand div{display:flex;flex-direction:column;gap:3px}
.lm-auth-brand strong{font-size:21px;color:#101828}
.lm-auth-brand small{font-size:13px;color:#667085}
.lm-auth-tabs{display:grid;grid-template-columns:1fr 1fr;gap:5px;padding:5px;background:#f2f4f7;border-radius:13px;margin-bottom:20px}
.lm-auth-tabs button{height:42px;border:0;border-radius:9px;background:transparent;font:inherit;font-weight:750;color:#667085;cursor:pointer}
.lm-auth-tabs button.is-active{background:#fff;color:#185adb;box-shadow:0 2px 8px rgba(16,24,40,.08)}
.lm-auth-form{display:none;gap:14px}
.lm-auth-form.is-active{display:grid}
.lm-auth-form label{display:grid;gap:7px;font-size:13px;font-weight:750;color:#344054}
.lm-auth-form label>span,.lm-auth-form label>small{font-weight:500;color:#98a2b3}
.lm-auth-form input{width:100%;height:46px;border:1px solid #d0d5dd;border-radius:11px;padding:0 13px;font:inherit;color:#101828;background:#fff;outline:none}
.lm-auth-form input:focus{border-color:#185adb;box-shadow:0 0 0 3px rgba(24,90,219,.10)}
.lm-auth-submit,.lm-auth-logout{height:48px;border:0;border-radius:11px;font:inherit;font-weight:800;cursor:pointer}
.lm-auth-submit{margin-top:4px;background:#185adb;color:#fff}
.lm-auth-submit:disabled,.lm-auth-logout:disabled{opacity:.55;cursor:wait}
.lm-auth-message{min-height:20px;margin-top:12px;font-size:13px;font-weight:650;color:#b42318}
.lm-auth-message.is-success{color:#067647}
.lm-auth-note{margin:9px 0 0;font-size:11px;line-height:1.5;color:#98a2b3}
.lm-auth-account{text-align:center}
.lm-auth-avatar{width:76px;height:76px;margin:8px auto 14px;border-radius:50%;display:grid;place-items:center;background:#eaf0ff;color:#185adb;font-size:30px;font-weight:900}
.lm-auth-account h3{margin:0;font-size:23px;color:#101828}
.lm-auth-account>p{margin:5px 0 20px;color:#667085;font-size:14px}
.lm-auth-account-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;text-align:left;margin-bottom:12px}
.lm-auth-account-grid>div,.lm-auth-placeholder{padding:14px;border:1px solid #eaecf0;border-radius:12px;background:#fafafa}
.lm-auth-account-grid span,.lm-auth-placeholder span{display:block;font-size:11px;color:#98a2b3;margin-bottom:4px}
.lm-auth-account-grid strong,.lm-auth-placeholder strong{font-size:13px;color:#344054}
.lm-auth-placeholder{text-align:left;margin-bottom:14px}
.lm-auth-placeholder strong{display:block;margin-bottom:4px}
.lm-auth-logout{width:100%;background:#f2f4f7;color:#344054}


.lm-account-tabs{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin:0 0 12px}
.lm-account-tabs button{border:1px solid #d0d5dd;background:#fff;color:#475467;border-radius:10px;padding:10px 12px;font:inherit;font-weight:800;cursor:pointer}
.lm-account-tabs button.is-active{background:#185adb;color:#fff;border-color:#185adb}
.lm-auth-companies-box{padding:14px;margin-top:12px}
.lm-auth-company-actions{display:flex;gap:8px;margin-top:12px}
.lm-auth-company-actions button{border:0;border-radius:9px;padding:10px 14px;background:#185adb;color:#fff;font:inherit;font-weight:800;cursor:pointer}
.lm-auth-company-list{display:grid;gap:10px;margin-top:12px}
.lm-auth-company-card{border:1px solid #e4e7ec;border-radius:12px;padding:12px;background:#fff;text-align:left}
.lm-auth-company-card-head{display:flex;justify-content:space-between;align-items:flex-start;gap:10px}
.lm-auth-company-card-title{font-weight:800;color:#344054;font-size:13px}
.lm-auth-company-card-meta{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;margin-top:10px}
.lm-auth-company-card-meta div{display:flex;flex-direction:column;gap:2px}
.lm-auth-company-card-meta span{font-size:10px;color:#98a2b3;text-transform:uppercase}
.lm-auth-company-card-meta b{font-size:12px;color:#475467;word-break:break-word}
.lm-auth-company-card-address{margin-top:10px;font-size:11px;line-height:1.45;color:#667085}
.lm-auth-company-card-actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}
.lm-auth-company-card-actions button{border:1px solid #d0d5dd;border-radius:8px;background:#fff;padding:8px 10px;font:inherit;font-size:11px;font-weight:800;color:#475467;cursor:pointer}
.lm-auth-company-card-actions button[data-company-make-default]{border-color:#185adb;color:#185adb}
.lm-auth-company-card-actions button[data-company-remove]{border-color:#f1b3b3;color:#b42318}
.lm-auth-empty{padding:12px;border:1px dashed #d0d5dd;border-radius:10px;color:#98a2b3;font-size:12px}
.lm-auth-company-box{padding:14px}
.lm-auth-company-lookup-form{margin-top:12px}
.lm-auth-company-lookup-row{display:grid;grid-template-columns:1fr auto;gap:8px}
.lm-auth-company-lookup-row input{width:100%;box-sizing:border-box;border:1px solid #d0d5dd;border-radius:9px;padding:10px 11px;font:inherit;font-size:12px}
.lm-auth-company-lookup-row button{border:0;border-radius:9px;padding:10px 14px;background:#185adb;color:#fff;font:inherit;font-weight:800;cursor:pointer}
.lm-auth-company-result{margin-top:12px;padding:12px;border:1px solid #dbe5ff;border-radius:10px;background:#f8faff;text-align:left}
.lm-auth-company-result-head{display:flex;align-items:flex-start;justify-content:space-between;gap:10px}
.lm-auth-company-result-head strong{font-size:13px;color:#344054}
.lm-auth-company-fields{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:10px}
.lm-auth-company-fields div,.lm-auth-company-address{display:flex;flex-direction:column;gap:2px}
.lm-auth-company-fields span,.lm-auth-company-address span{font-size:10px;color:#98a2b3;text-transform:uppercase;letter-spacing:.03em}
.lm-auth-company-fields b,.lm-auth-company-address b{font-size:12px;color:#475467;word-break:break-word}
.lm-auth-company-address{margin-top:10px}
.lm-auth-company-note{margin-top:10px;padding-top:9px;border-top:1px solid #e4e7ec;color:#667085;font-size:11px;line-height:1.45}
.lm-auth-profile-box,.lm-auth-password-box{padding:14px}
.lm-auth-profile-form{margin-top:12px;padding-top:12px;border-top:1px solid #eaecf0;text-align:left}
.lm-auth-profile-form>label{display:block;margin-bottom:9px}
.lm-auth-profile-form>label span{display:block;margin:0 0 4px;color:#475467;font-size:11px;font-weight:700}
.lm-auth-profile-form input{width:100%;box-sizing:border-box;border:1px solid #d0d5dd;border-radius:9px;padding:9px 10px;font:inherit;font-size:12px}
.lm-auth-addresses{padding:14px}
.lm-auth-address-head{display:flex;justify-content:space-between;align-items:flex-start;gap:10px}
.lm-auth-address-head>div{min-width:0}
.lm-auth-address-add{border:0;border-radius:9px;padding:8px 10px;background:#eaf0ff;color:#185adb;font-weight:800;cursor:pointer}
.lm-auth-address-empty{padding:12px 0 2px;color:#98a2b3;font-size:12px}
.lm-auth-address-card{margin-top:10px;padding:11px;border:1px solid #eaecf0;border-radius:10px;background:#fff}
.lm-auth-address-card.is-default{border-color:#a8c2ff;background:#f8faff}
.lm-auth-address-card-top{display:flex;justify-content:space-between;gap:8px;text-align:left}
.lm-auth-address-card-top b{font-size:13px;color:#344054}
.lm-auth-address-badge{font-size:10px;color:#185adb;background:#eaf0ff;padding:3px 6px;border-radius:999px}
.lm-auth-address-line{text-align:left;color:#667085;font-size:12px;line-height:1.45;margin-top:4px}
.lm-auth-address-actions{display:flex;flex-wrap:wrap;gap:6px;margin-top:8px}
.lm-auth-address-actions button{border:0;border-radius:8px;padding:6px 8px;background:#f2f4f7;color:#344054;font-size:11px;font-weight:700;cursor:pointer}
.lm-auth-address-actions button.danger{background:#fff1f0;color:#b42318}
.lm-auth-address-form{margin-top:12px;padding-top:12px;border-top:1px solid #eaecf0;text-align:left}
.lm-auth-address-grid{display:grid;grid-template-columns:1fr 1fr;gap:9px}
.lm-auth-address-grid label{display:block}
.lm-auth-address-grid label span{display:block;margin:0 0 4px;color:#475467;font-size:11px;font-weight:700}
.lm-auth-address-grid input{width:100%;box-sizing:border-box;border:1px solid #d0d5dd;border-radius:9px;padding:9px 10px;font:inherit;font-size:12px}
.lm-auth-default{display:flex;align-items:center;gap:6px;margin:10px 0;color:#475467;font-size:12px;font-weight:700}
.lm-auth-address-form-actions{display:grid;grid-template-columns:1fr 1.5fr;gap:8px}
.lm-auth-address-form-actions button{border:0;border-radius:9px;padding:10px;font:inherit;font-weight:800;cursor:pointer;background:#f2f4f7;color:#344054}
.lm-auth-address-form-actions button[type="submit"]{background:#185adb;color:#fff}

body.lm-auth-lock{overflow:hidden}
@media(max-width:560px){.lm-auth-company-fields{grid-template-columns:1fr}.lm-auth-company-card-meta{grid-template-columns:1fr 1fr}.lm-auth-company-lookup-row{grid-template-columns:1fr}.lm-auth-address-grid{grid-template-columns:1fr}.lm-auth-address-head{flex-direction:column}.lm-auth-address-add{width:100%}.lm-auth{padding:0;align-items:flex-end}.lm-auth-dialog{width:100%;max-height:92vh;border-radius:22px 22px 0 0;padding:24px 18px calc(22px + env(safe-area-inset-bottom))}.lm-auth-account-grid{grid-template-columns:1fr}}


/* v0.3.1 — fixed full header.
   We intentionally use fixed instead of sticky because the site has
   overflow containers that prevent position:sticky from following
   the viewport reliably in desktop browsers. */
@media(min-width:1101px){
  body{padding-top:122px!important}
  .am-servicebar{
    position:fixed!important;
    left:0!important;
    right:0!important;
    top:0!important;
    width:100%!important;
    z-index:1002!important;
  }
  .am-header{
    position:fixed!important;
    left:0!important;
    right:0!important;
    top:34px!important;
    width:100%!important;
    z-index:1001!important;
  }
}
@media(min-width:761px) and (max-width:1100px){
  body{padding-top:152px!important}
  .am-servicebar{
    position:fixed!important;
    left:0!important;
    right:0!important;
    top:0!important;
    width:100%!important;
    z-index:1002!important;
  }
  .am-header{
    position:fixed!important;
    left:0!important;
    right:0!important;
    top:34px!important;
    width:100%!important;
    z-index:1001!important;
  }
}
@media(max-width:760px){
  body{padding-top:120px!important}
  .am-servicebar{display:none!important}
  .am-header{
    position:fixed!important;
    left:0!important;
    right:0!important;
    top:0!important;
    width:100%!important;
    z-index:1001!important;
  }
}

/* Product page: keep first screen dense, closer to large marketplace layouts */
@media(min-width:901px){
  .rk-product-page,.product-page{
    width:min(1500px,calc(100% - 64px))!important;
    max-width:1500px!important;
    margin-top:16px!important;
    padding-left:24px!important;
    padding-right:24px!important;
  }
  .rk-product-layout,.product-layout{
    grid-template-columns:minmax(420px,560px) minmax(460px,1fr)!important;
    gap:clamp(28px,3vw,48px)!important;
    padding-top:0!important;
    padding-bottom:24px!important;
  }
  .rk-product-gallery-wrap{
    width:100%!important;
    max-width:560px!important;
    justify-self:start!important;
  }
  .gallery-stage{
    width:100%!important;
    height:min(62vh,610px)!important;
    max-height:610px!important;
    aspect-ratio:auto!important;
    border-radius:18px!important;
  }
  .gallery-stage-media{
    width:100%!important;
    height:100%!important;
    max-height:610px!important;
    object-fit:contain!important;
  }
  .gallery-thumbs{
    gap:8px!important;
    margin-top:10px!important;
  }
  .gallery-thumb{
    width:66px!important;
    height:66px!important;
    min-width:66px!important;
    border-radius:10px!important;
  }
  .rk-product-info,.product-info{
    max-width:720px!important;
    padding-top:2px!important;
  }
  .rk-product-info h1,.product-info h1{
    font-size:clamp(27px,2vw,36px)!important;
    line-height:1.1!important;
    margin:7px 0 12px!important;
  }
  .product-meta-row{
    margin-bottom:14px!important;
  }
  .rk-product-help{
    margin:12px 0!important;
    padding:13px 14px!important;
  }
  .rk-price-box{
    margin-top:14px!important;
    padding:18px!important;
  }
}

/* On shorter notebook screens reduce the gallery again so price/action stays above the fold */
@media(min-width:901px) and (max-height:850px){
  .gallery-stage{
    height:min(57vh,520px)!important;
    max-height:520px!important;
  }
  .gallery-stage-media{
    max-height:520px!important;
  }
}




/* v0.7.2 — LOMANIA commerce UI, Ozon-familiar structure with LOMANIA branding */
.lm-add-cart-v072{display:flex!important;align-items:center!important;justify-content:center!important;gap:10px!important;width:100%!important;min-height:52px!important;margin-top:16px!important;padding:0 20px!important;border:0!important;border-radius:14px!important;background:linear-gradient(180deg,#1769ff 0%,#185adb 100%)!important;color:#fff!important;font-size:16px!important;font-weight:900!important;letter-spacing:.005em!important;cursor:pointer!important;box-shadow:0 9px 22px rgba(24,90,219,.22)!important;transition:transform .15s ease,box-shadow .15s ease,background .15s ease!important}.lm-add-cart-v072:hover{transform:translateY(-1px)!important;box-shadow:0 12px 28px rgba(24,90,219,.28)!important}.lm-add-cart-v072:active{transform:translateY(0)!important}.lm-add-cart-v072.is-added{background:linear-gradient(180deg,#159a5b,#13834d)!important;box-shadow:0 9px 22px rgba(19,131,77,.20)!important}.lm-add-cart-icon{font-size:18px;line-height:1}.lm-delivery-note{margin-top:10px!important;color:#42526b!important;font-size:13px!important}.lm-delivery-note:before{content:'✓';display:inline-grid;place-items:center;width:18px;height:18px;margin-right:7px;border-radius:50%;background:#e8f8ef;color:#16814c;font-weight:900}
.lm-cart-v072{padding-top:34px!important;padding-bottom:110px!important}.lm-cart-title-row h1{margin:0 0 24px!important;font-size:38px!important;line-height:1.1!important}.lm-cart-title-row sup{font-size:16px!important;font-weight:700!important;color:#5f6b7a!important;vertical-align:top!important;margin-left:3px!important}.lm-cart-layout{display:grid!important;grid-template-columns:minmax(0,1fr) 390px!important;gap:24px!important;align-items:start!important}.lm-cart-left{min-width:0}.lm-cart-toolbar-card,.lm-cart-products-card,.lm-cart-summary{background:#fff!important;border:1px solid #e7ebf1!important;border-radius:20px!important;box-shadow:0 5px 18px rgba(16,24,40,.04)!important}.lm-cart-toolbar-card{min-height:66px!important;padding:14px 18px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:14px!important;margin-bottom:14px!important}.lm-check-label{display:flex!important;align-items:center!important;gap:10px!important;font-size:16px!important;font-weight:750!important;cursor:pointer!important}.lm-check-label input,.lm-cart-item-select{width:21px!important;height:21px!important;accent-color:#1769ff!important;cursor:pointer!important}.lm-cart-toolbar-delete{border:0!important;background:#f4f6f9!important;color:#526071!important;border-radius:11px!important;padding:10px 14px!important;font-weight:750!important;cursor:pointer!important}.lm-cart-toolbar-delete:hover{background:#edf0f4!important;color:#b42318!important}.lm-cart-products-card{overflow:hidden!important}.lm-cart-section-title{margin:14px 16px 2px!important;padding:13px 16px!important;border-radius:13px!important;background:#f5f7fa!important;font-size:16px!important;font-weight:900!important}.lm-cart-item{display:grid!important;grid-template-columns:26px 112px minmax(0,1fr) 158px!important;gap:16px!important;align-items:center!important;padding:20px 18px!important;border-bottom:1px solid #edf0f4!important}.lm-cart-item:last-child{border-bottom:0!important}.lm-cart-item-image{width:112px!important;height:112px!important;object-fit:contain!important;border-radius:14px!important;background:#f7f8fa!important}.lm-cart-item-main{align-self:stretch!important;padding-top:3px!important}.lm-cart-item-title{display:block!important;font-size:16px!important;font-weight:780!important;line-height:1.38!important;color:#0d1b35!important;text-decoration:none!important}.lm-cart-item-title:hover{color:#185adb!important}.lm-cart-item-meta{margin-top:7px!important;font-size:12px!important;color:#6b7687!important}.lm-cart-item-delivery{display:inline-flex!important;align-items:center!important;gap:5px!important;margin-top:10px!important;padding:5px 8px!important;border-radius:8px!important;background:#edf9f2!important;color:#147a48!important;font-size:11px!important;font-weight:800!important}.lm-cart-item-side{display:flex!important;flex-direction:column!important;align-items:flex-end!important;justify-content:space-between!important;min-height:108px!important;text-align:right!important}.lm-cart-item-price{font-size:20px!important;font-weight:950!important;color:#111827!important}.lm-cart-qty{display:grid!important;grid-template-columns:38px 42px 38px!important;align-items:center!important;border-radius:12px!important;background:#f4f6f8!important;padding:3px!important}.lm-cart-qty button{width:38px!important;height:36px!important;border:0!important;border-radius:9px!important;background:transparent!important;color:#111827!important;font-size:22px!important;font-weight:500!important;cursor:pointer!important}.lm-cart-qty button:hover{background:#fff!important;box-shadow:0 2px 7px rgba(16,24,40,.08)!important}.lm-cart-qty span{text-align:center!important;font-weight:900!important}.lm-cart-remove{margin-top:7px!important;border:0!important;background:transparent!important;color:#667085!important;font-size:12px!important;font-weight:750!important;cursor:pointer!important}.lm-cart-remove:hover{color:#d92d20!important}.lm-cart-summary{position:sticky!important;top:104px!important;padding:20px!important}.lm-cart-checkout{width:100%!important;min-height:54px!important;border:0!important;border-radius:14px!important;background:linear-gradient(180deg,#1769ff,#185adb)!important;color:#fff!important;font-size:16px!important;font-weight:900!important;cursor:pointer!important;box-shadow:0 9px 22px rgba(24,90,219,.20)!important}.lm-cart-checkout:hover{filter:brightness(.98)!important}.lm-cart-delivery-copy{margin:14px 2px 18px!important;color:#667085!important;font-size:13px!important;line-height:1.45!important}.lm-cart-delivery-copy strong{color:#16814c!important;font-size:14px!important}.lm-cart-summary-divider{height:1px!important;background:#e8ebf0!important;margin:0 -20px 18px!important}.lm-cart-summary-head{display:flex!important;justify-content:space-between!important;align-items:baseline!important;gap:12px!important}.lm-cart-summary-head h2{margin:0!important;font-size:22px!important}.lm-cart-summary-head span{color:#667085!important;font-size:12px!important}.lm-cart-summary-row,.lm-cart-total{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:14px!important}.lm-cart-summary-row{margin-top:17px!important;font-size:14px!important}.lm-cart-total{margin-top:16px!important;padding-top:17px!important;border-top:1px solid #e8ebf0!important;font-size:22px!important;font-weight:950!important}.lm-cart-total strong{font-size:24px!important;color:#16814c!important}.lm-cart-empty{text-align:center!important;padding:58px 20px!important}.lm-cart-empty-icon{font-size:42px!important}.lm-cart-empty h2{margin:8px 0 4px!important}.lm-cart-empty p{margin:0 auto!important;max-width:440px!important;color:#667085!important}.lm-cart-empty a{display:inline-flex!important;margin-top:18px!important;padding:12px 18px!important;border-radius:12px!important;background:#185adb!important;color:#fff!important;font-weight:850!important}.lm-cart-mobile-total{display:none!important}.lm-cart-toast{position:fixed!important;right:22px!important;bottom:24px!important;z-index:100000!important;padding:13px 17px!important;border-radius:13px!important;background:#132238!important;color:#fff!important;font-weight:800!important;box-shadow:0 14px 36px rgba(0,0,0,.22)!important}
.lm-cookie-banner-v072{position:fixed;left:18px;right:18px;bottom:18px;z-index:100001;display:flex;align-items:center;justify-content:space-between;gap:22px;padding:15px 17px;border:1px solid #dbe2ec;border-radius:16px;background:#fff;box-shadow:0 16px 48px rgba(8,20,43,.22);color:#14213a}.lm-cookie-main-v072{display:flex;align-items:flex-start;gap:12px;min-width:0}.lm-cookie-icon-v072{display:grid;place-items:center;flex:0 0 36px;width:36px;height:36px;border-radius:11px;background:#edf4ff;color:#185adb;font-size:18px;font-weight:900}.lm-cookie-copy-v072 strong{display:block;font-size:14px;margin-bottom:2px}.lm-cookie-copy-v072 span{display:block;color:#5f6b7a;font-size:12px;line-height:1.45}.lm-cookie-copy-v072 a{color:#185adb;text-decoration:underline}.lm-cookie-ok-v072{flex:0 0 auto;min-width:110px;border:0;border-radius:11px;background:#185adb;color:#fff;padding:11px 16px;font-weight:850;cursor:pointer}
@media(max-width:800px){.lm-add-cart-v072{min-height:50px!important}.lm-cart-v072{padding-top:20px!important;padding-bottom:150px!important}.lm-cart-title-row h1{font-size:30px!important}.lm-cart-layout{grid-template-columns:1fr!important}.lm-cart-summary{position:static!important}.lm-cart-item{grid-template-columns:24px 78px minmax(0,1fr)!important;gap:10px!important;padding:15px 13px!important}.lm-cart-item-image{width:78px!important;height:78px!important}.lm-cart-item-side{grid-column:2/4!important;display:flex!important;flex-direction:row!important;align-items:center!important;min-height:0!important;margin-top:2px!important}.lm-cart-item-title{font-size:14px!important}.lm-cart-summary .lm-cart-checkout-top{display:none!important}.lm-cart-mobile-total{display:flex!important;position:fixed!important;left:0!important;right:0!important;bottom:72px!important;z-index:900!important;align-items:center!important;gap:12px!important;padding:10px 13px!important;background:#fff!important;border-top:1px solid #e2e7ee!important;box-shadow:0 -8px 26px rgba(16,24,40,.10)!important}.lm-cart-mobile-total>div{min-width:92px!important}.lm-cart-mobile-total span,.lm-cart-mobile-total strong{display:block!important}.lm-cart-mobile-total span{font-size:11px!important;color:#667085!important}.lm-cart-mobile-total strong{font-size:18px!important}.lm-cart-mobile-total button{flex:1!important;min-height:48px!important;border:0!important;border-radius:12px!important;background:#185adb!important;color:#fff!important;font-weight:900!important}.lm-cart-toolbar-card{padding:12px 13px!important}.lm-cart-toolbar-delete{padding:9px 10px!important;font-size:12px!important}.lm-cookie-banner-v072{left:8px;right:8px;bottom:82px;display:block;padding:13px}.lm-cookie-main-v072{gap:9px}.lm-cookie-ok-v072{width:100%;margin-top:11px}.lm-cookie-copy-v072 span{font-size:11px}}

/* v0.7.4 — compact product CTA + cart directly from catalog cards */
.lm-add-cart-v072{width:auto!important;min-width:188px!important;max-width:218px!important;min-height:48px!important;padding:0 20px!important;margin-top:14px!important;border-radius:12px!important;align-self:flex-start!important}.lm-product-buy-box .lm-add-cart-v072,.rk-product-buy .lm-add-cart-v072{width:auto!important}.lm-card-cart-action{padding:0 12px 12px!important;margin-top:auto}.lm-card-add-cart{width:100%;height:40px;border:0;border-radius:10px;background:#185adb;color:#fff;display:flex;align-items:center;justify-content:center;gap:7px;font-size:13px;font-weight:900;cursor:pointer;box-shadow:none;transition:background .15s ease,transform .15s ease}.lm-card-add-cart:hover{background:#0f4ec7;transform:translateY(-1px)}.lm-card-add-cart:active{transform:none}.lm-card-add-cart.is-added{background:#14804a}.lm-card-add-cart.is-added:hover{background:#106d3f}.lm-card-cart-qty{width:100%;height:40px;display:grid;grid-template-columns:42px 1fr 42px;overflow:hidden;border-radius:10px;background:#e7f1ff;border:1px solid #cfe0fb}.lm-card-cart-qty[hidden]{display:none!important}.lm-card-cart-qty button{border:0;background:#dbeaff;color:#0f3f9d;font-size:22px;font-weight:900;cursor:pointer}.lm-card-cart-qty button:hover{background:#cfe2ff}.lm-card-cart-qty strong{display:grid;place-items:center;color:#0e1b37;font-size:14px}.lm-card-action>a{width:100%}
@media(max-width:800px){.lm-add-cart-v072{min-width:172px!important;max-width:196px!important;min-height:46px!important;padding:0 16px!important}.lm-card-add-cart,.lm-card-cart-qty{height:38px}.lm-card-cart-qty{grid-template-columns:38px 1fr 38px}}