:root{
  --ink:#18212A;
  --ink-soft:#2C3741;
  --muted:#6D747A;
  --paper:#F5F0E7;
  --surface:#FFFFFF;
  --surface-2:#EEE8DE;
  --line:rgba(24,33,42,.11);
  --yellow:#FFB800;
  --yellow-soft:#FFD66F;
  --danger:#B53A31;
  --shadow:0 12px 34px rgba(24,33,42,.09);
  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:16px;
  --safe-top:env(safe-area-inset-top,0px);
  --safe-bottom:env(safe-area-inset-bottom,0px);
  --content-max:760px;
  --tap:44px;
}

*{box-sizing:border-box}
html{background:var(--ink);scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  min-width:320px;
  min-height:100dvh;
  background:var(--paper);
  color:var(--ink);
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Text","SF Pro Display","Segoe UI",Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overscroll-behavior-y:none;
}
button,input{font:inherit}
button{color:inherit}
button,a{-webkit-tap-highlight-color:transparent}
img{max-width:100%;display:block}
svg{display:block;width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
[hidden]{display:none!important}

.app-shell{min-height:100dvh;background:var(--paper);padding-bottom:calc(28px + var(--safe-bottom))}
.app-header{
  position:relative;
  min-height:calc(68px + var(--safe-top));
  padding:calc(12px + var(--safe-top)) 18px 10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:var(--ink);
  color:#fff;
  overflow:hidden;
}
.header-inner{width:100%;display:flex;align-items:center;justify-content:space-between;gap:12px}

.app-header::after{
  content:"";
  position:absolute;
  top:-45px;
  right:-25px;
  width:130px;
  height:130px;
  border:20px solid rgba(255,184,0,.16);
  transform:rotate(42deg);
  pointer-events:none;
}
.brand-button{position:relative;z-index:1;border:0;background:transparent;padding:4px 0;min-height:44px;display:flex;align-items:center;cursor:pointer}
.brand-logo{width:142px;height:auto;filter:brightness(0) invert(1);object-fit:contain}
.header-partner{position:relative;z-index:1;display:flex;align-items:center;gap:8px;min-width:0}
.header-partner span{font-size:9px;line-height:1;text-transform:uppercase;letter-spacing:.12em;color:rgba(255,255,255,.55);font-weight:800}
.header-partner img{width:72px;height:24px;object-fit:contain}

.search-dock{
  position:sticky;
  z-index:30;
  top:0;
  padding:10px 14px 9px;
  background:linear-gradient(to bottom,rgba(245,240,231,.98),rgba(245,240,231,.94));
  border-bottom:1px solid rgba(24,33,42,.07);
  backdrop-filter:saturate(155%) blur(16px);
  -webkit-backdrop-filter:saturate(155%) blur(16px);
}
.search-field-wrap{position:relative;max-width:var(--content-max);margin:0 auto;display:flex;align-items:center}
.search-icon{position:absolute;left:14px;color:#4F5962;pointer-events:none}
.search-input{
  width:100%;
  height:52px;
  border:1px solid rgba(24,33,42,.13);
  border-radius:18px;
  outline:none;
  padding:0 96px 0 47px;
  background:#fff;
  color:var(--ink);
  font-size:16px;
  font-weight:650;
  box-shadow:0 5px 18px rgba(24,33,42,.06);
  appearance:none;
  -webkit-appearance:none;
}
.search-input::-webkit-search-cancel-button{display:none}
.search-input::placeholder{color:#7C8388;font-weight:550}
.search-input:focus{border-color:rgba(24,33,42,.45);box-shadow:0 0 0 3px rgba(255,184,0,.22),0 8px 22px rgba(24,33,42,.08)}
.icon-button,.scan-button{
  width:var(--tap);height:var(--tap);border:0;border-radius:13px;background:transparent;display:grid;place-items:center;cursor:pointer
}
.search-clear{position:absolute;right:51px;color:#697179}
.search-clear svg{width:20px;height:20px}
.scan-button{position:absolute;right:4px;color:var(--ink);background:#F4EEE4}
.scan-button svg{width:21px;height:21px}
.search-hint{max-width:var(--content-max);margin:6px auto 0;padding:0 3px;font-size:11px;color:#7A807F;line-height:1.25;transition:.2s ease}
.search-dock.has-query .search-hint{color:#535B61}

.main-content{max-width:var(--content-max);margin:0 auto;outline:none}

.hero{
  position:relative;
  margin:8px 14px 0;
  min-height:280px;
  border-radius:30px;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 85% 12%,rgba(255,184,0,.72),transparent 27%),
    linear-gradient(140deg,#111820 0%,#1D2832 65%,#34404A 100%);
  box-shadow:0 20px 42px rgba(24,33,42,.16);
}
.hero::before{
  content:"";position:absolute;inset:0;
  background:
    repeating-linear-gradient(135deg,rgba(255,255,255,.045) 0 1px,transparent 1px 16px),
    linear-gradient(115deg,transparent 0 62%,rgba(255,184,0,.12) 62.2% 100%);
}
.hero::after{
  content:"";position:absolute;right:-56px;bottom:-62px;width:180px;height:180px;border:22px solid rgba(255,184,0,.36);transform:rotate(40deg)
}
.hero-content{position:relative;z-index:2;padding:27px 24px 25px}
.hero-kicker{display:inline-flex;align-items:center;gap:8px;margin-bottom:18px;font-size:11px;line-height:1;text-transform:uppercase;letter-spacing:.15em;font-weight:900;color:var(--yellow)}
.hero-kicker::before{content:"";width:26px;height:3px;border-radius:9px;background:var(--yellow)}
.hero h1{margin:0;font-size:clamp(35px,10vw,54px);line-height:.94;letter-spacing:-.055em;font-weight:950;max-width:320px}
.hero h1 span{display:block;color:var(--yellow)}
.hero p{margin:16px 0 0;max-width:310px;color:rgba(255,255,255,.72);font-size:14px;line-height:1.45;font-weight:560}
.hero-stats{display:flex;gap:8px;flex-wrap:wrap;margin-top:22px}
.hero-stat{display:flex;align-items:baseline;gap:6px;padding:9px 11px;border-radius:14px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.11);backdrop-filter:blur(4px)}
.hero-stat b{font-size:18px;line-height:1;color:#fff;letter-spacing:-.03em}
.hero-stat span{font-size:10px;color:rgba(255,255,255,.64);text-transform:uppercase;letter-spacing:.07em;font-weight:800}

.section-block{padding:28px 14px 0}
.section-heading{display:flex;align-items:end;justify-content:space-between;gap:16px;margin-bottom:14px}
.section-heading h2{margin:0;font-size:26px;line-height:1;letter-spacing:-.045em;font-weight:920}
.section-heading p{margin:7px 0 0;color:var(--muted);font-size:13px;line-height:1.35}
.section-eyebrow{font-size:10px;letter-spacing:.14em;text-transform:uppercase;color:#7B807F;font-weight:900;margin-bottom:7px}

.category-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.category-card{
  --accent:var(--yellow);
  position:relative;
  min-height:188px;
  border:1px solid rgba(24,33,42,.09);
  border-radius:22px;
  background:#fff;
  overflow:hidden;
  padding:15px 15px 14px;
  text-align:left;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(24,33,42,.055);
  isolation:isolate;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.category-card::before{content:"";position:absolute;left:0;top:0;right:0;height:5px;background:var(--accent)}
.category-card::after{content:"";position:absolute;width:82px;height:82px;right:-30px;top:16px;border-radius:50%;background:color-mix(in srgb,var(--accent) 17%,transparent);z-index:-1}
.category-number{display:block;position:relative;z-index:1;color:var(--accent);font-size:31px;line-height:1;font-weight:950;letter-spacing:-.055em;margin-bottom:10px;padding-right:52px}
.category-title{display:block;position:relative;z-index:1;font-size:14px;line-height:1.2;font-weight:870;letter-spacing:-.015em;max-width:calc(100% - 12px);min-height:50px;padding-right:54px}
.category-count{display:block;min-height:34px;margin-top:auto;padding:10px 106px 0 0;font-size:11px;line-height:1.2;color:#7B8184;font-weight:680;position:relative;z-index:1}
.category-image{position:absolute;right:-4px;bottom:-7px;width:92px;height:82px;object-fit:contain;filter:drop-shadow(0 7px 9px rgba(24,33,42,.12));opacity:.93;z-index:0}
.category-arrow{position:absolute;right:11px;top:22px;width:40px;height:40px;display:grid;place-items:center;background:transparent;color:var(--ink-soft);z-index:2;opacity:.82;pointer-events:none}
.category-arrow svg{width:19px;height:19px;stroke-width:2.15;transition:transform .18s ease,opacity .18s ease}

.catalog-note{margin:20px 14px 0;padding:17px 18px;border-radius:20px;background:#EAE3D8;border:1px solid rgba(24,33,42,.07);display:flex;gap:12px;align-items:flex-start}
.catalog-note-icon{flex:0 0 34px;width:34px;height:34px;border-radius:11px;background:var(--ink);color:var(--yellow);display:grid;place-items:center}
.catalog-note-icon svg{width:18px;height:18px}
.catalog-note b{display:block;font-size:13px;margin-bottom:3px}
.catalog-note p{margin:0;color:#676E72;font-size:12px;line-height:1.4}


.contact-cta{
  position:relative;
  margin:18px 14px 0;
  padding:24px 20px 20px;
  border-radius:26px;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 92% 12%,rgba(255,184,0,.36),transparent 28%),
    linear-gradient(145deg,#111820 0%,#1B2630 72%,#303A42 100%);
  box-shadow:0 16px 38px rgba(24,33,42,.14);
  isolation:isolate;
}
.contact-cta::before{content:"";position:absolute;inset:0;background:repeating-linear-gradient(135deg,rgba(255,255,255,.045) 0 1px,transparent 1px 17px);pointer-events:none;z-index:-1}
.contact-cta::after{content:"";position:absolute;width:170px;height:170px;right:-92px;bottom:-92px;border:24px solid rgba(255,184,0,.30);transform:rotate(36deg);pointer-events:none;z-index:-1}
.contact-cta-copy{position:relative;z-index:1}
.contact-cta-kicker{margin-bottom:10px;color:var(--yellow);font-size:10px;line-height:1;text-transform:uppercase;letter-spacing:.14em;font-weight:900}
.contact-cta h2{margin:0;max-width:310px;font-size:25px;line-height:1.01;letter-spacing:-.04em;font-weight:930}
.contact-cta p{margin:12px 0 0;max-width:390px;color:rgba(255,255,255,.70);font-size:12.5px;line-height:1.46}
.contact-cta-actions{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:19px}
.contact-action{min-height:48px;border-radius:15px;padding:0 13px;display:flex;align-items:center;gap:8px;text-decoration:none;font-size:12px;font-weight:850;transition:transform .16s ease,filter .16s ease,background .16s ease}
.contact-action svg{width:18px;height:18px;flex:0 0 auto}
.contact-action-primary{background:var(--yellow);color:#17212A}
.contact-action-secondary{background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.14);color:#fff}
.contact-action-secondary svg:last-child{margin-left:auto;width:16px;height:16px}
.contact-cta-details{position:relative;z-index:1;display:flex;flex-wrap:wrap;gap:7px 16px;margin-top:13px;padding-top:12px;border-top:1px solid rgba(255,255,255,.10)}
.contact-cta-details a{color:rgba(255,255,255,.75);font-size:10.5px;font-weight:690;text-decoration:none;font-variant-numeric:tabular-nums}

.category-page{padding:9px 14px 0}
.category-hero{
  --accent:var(--yellow);
  position:relative;
  min-height:204px;
  padding:20px 19px;
  border-radius:26px;
  overflow:hidden;
  background:linear-gradient(145deg,#fff,#EEE7DD);
  border:1px solid rgba(24,33,42,.08);
}
.category-hero::before{content:"";position:absolute;left:0;top:0;bottom:0;width:7px;background:var(--accent)}
.category-hero::after{content:"";position:absolute;right:-55px;top:-58px;width:170px;height:170px;border:26px solid color-mix(in srgb,var(--accent) 20%,transparent);transform:rotate(28deg)}
.category-topline{display:flex;align-items:center;justify-content:space-between;gap:14px;position:relative;z-index:1}
.back-button{min-height:44px;border:0;background:#fff;border-radius:14px;padding:0 12px 0 9px;display:inline-flex;align-items:center;gap:5px;box-shadow:0 5px 16px rgba(24,33,42,.07);font-weight:780;font-size:13px;cursor:pointer}
.back-button svg{width:20px;height:20px}
.category-index{color:var(--accent);font-size:40px;line-height:.9;font-weight:950;letter-spacing:-.06em}
.category-hero h1{position:relative;z-index:1;margin:22px 0 8px;max-width:320px;font-size:30px;line-height:.98;letter-spacing:-.045em;font-weight:940}
.category-hero p{position:relative;z-index:1;margin:0;max-width:330px;font-size:12.5px;line-height:1.43;color:#646B70}
.category-meta{position:relative;z-index:1;margin-top:14px;font-size:11px;font-weight:850;text-transform:uppercase;letter-spacing:.09em;color:#687076}

.product-toolbar{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:23px 2px 12px}
.product-toolbar h2{margin:0;font-size:20px;letter-spacing:-.03em}
.product-toolbar span{font-size:12px;color:#73797D;font-weight:650}

.product-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.product-card{
  position:relative;
  border:1px solid rgba(24,33,42,.085);
  border-radius:22px;
  background:#fff;
  overflow:hidden;
  text-align:left;
  padding:0;
  min-width:0;
  cursor:pointer;
  box-shadow:0 7px 21px rgba(24,33,42,.045);
  display:flex;
  flex-direction:column;
}
.product-image-wrap{position:relative;aspect-ratio:1.12/1;background:linear-gradient(145deg,#F3EDE4,#EAE3D8);overflow:hidden}
.product-image-wrap::after{content:"";position:absolute;inset:auto 0 0;height:42%;background:linear-gradient(to top,rgba(24,33,42,.05),transparent);pointer-events:none}
.product-image{width:100%;height:100%;object-fit:contain;padding:13px;mix-blend-mode:multiply}
.product-card-body{padding:12px 12px 12px;display:flex;flex:1;flex-direction:column}
.product-article{display:inline-flex;align-items:center;min-height:22px;padding:0 7px;border-radius:7px;background:#F1ECE4;color:#586168;font-size:9px;line-height:1;font-weight:900;letter-spacing:.055em;text-transform:uppercase;max-width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.product-title{margin:8px 0 0;font-size:13px;line-height:1.24;letter-spacing:-.012em;font-weight:830;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;overflow:hidden;min-height:48px}
.product-price{margin-top:10px;font-size:17px;line-height:1;font-weight:930;letter-spacing:-.025em;color:var(--ink)}
.product-more{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-top:13px;padding-top:10px;border-top:1px solid rgba(24,33,42,.08);color:#697176;font-size:10.5px;line-height:1;font-weight:820;letter-spacing:.01em}
.product-more svg{width:15px;height:15px;stroke-width:2.1;transition:transform .18s ease,color .18s ease}
.product-card:active,.category-card:active{transform:scale(.988)}
.product-card:active .product-more{color:var(--ink)}

.search-view{padding:9px 14px 0}
.search-summary{padding:15px 3px 12px;display:flex;align-items:end;justify-content:space-between;gap:14px}
.search-summary h1{margin:0;font-size:23px;line-height:1.04;letter-spacing:-.035em;font-weight:920}
.search-summary p{margin:5px 0 0;color:#737A7E;font-size:12px}
.search-summary .query-code{font-feature-settings:"tnum";font-variant-numeric:tabular-nums}
.search-count{flex:0 0 auto;font-size:12px;font-weight:800;color:#626A6F;background:#EAE4DB;border-radius:999px;padding:7px 9px}
.search-results{display:grid;gap:9px}
.search-result{
  width:100%;
  min-height:116px;
  display:grid;
  grid-template-columns:96px minmax(0,1fr);
  gap:12px;
  padding:10px;
  border-radius:20px;
  border:1px solid rgba(24,33,42,.085);
  background:#fff;
  text-align:left;
  cursor:pointer;
  box-shadow:0 6px 20px rgba(24,33,42,.045);
}
.search-result-image{width:96px;height:96px;border-radius:15px;background:#F0E9DF;object-fit:contain;padding:8px;mix-blend-mode:multiply}
.search-result-body{min-width:0;padding:3px 4px 3px 0}
.search-result-category{display:flex;align-items:center;gap:6px;color:#7A8083;font-size:9px;text-transform:uppercase;letter-spacing:.07em;font-weight:850;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.search-result-category::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--accent,var(--yellow));flex:0 0 auto}
.search-result h3{margin:7px 0 5px;font-size:13px;line-height:1.23;letter-spacing:-.012em;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}
.search-result-codes{display:flex;gap:6px;flex-wrap:wrap;align-items:center;font-size:10px;color:#656D72;font-variant-numeric:tabular-nums}
.search-result-codes b{color:var(--ink);font-weight:850}
.search-result-price{margin-top:7px;font-size:15px;font-weight:930}
mark{background:#FFE49A;color:inherit;border-radius:3px;padding:0 .05em}
.empty-state{padding:42px 20px 30px;text-align:center}
.empty-icon{width:64px;height:64px;border-radius:22px;background:#E8E1D6;margin:0 auto 18px;display:grid;place-items:center;color:#596168}
.empty-icon svg{width:28px;height:28px}
.empty-state h2{margin:0;font-size:21px;letter-spacing:-.03em}
.empty-state p{margin:8px auto 0;max-width:300px;color:#737A7D;font-size:13px;line-height:1.46}
.empty-action{margin-top:17px;min-height:44px;border:0;border-radius:14px;background:var(--ink);color:#fff;padding:0 16px;font-weight:800;cursor:pointer}
.load-more{width:100%;min-height:48px;margin-top:12px;border-radius:16px;border:1px solid rgba(24,33,42,.12);background:#fff;font-weight:820;cursor:pointer}

.product-layer{position:fixed;inset:0;z-index:100;pointer-events:none;visibility:hidden}
.product-layer.is-open{pointer-events:auto;visibility:visible}
.product-backdrop{position:absolute;inset:0;background:rgba(11,16,22,.48);opacity:0;transition:opacity .24s ease;backdrop-filter:blur(3px)}
.product-layer.is-open .product-backdrop{opacity:1}
.product-sheet{
  --accent:var(--yellow);
  position:absolute;
  left:0;right:0;bottom:0;
  max-width:760px;
  max-height:calc(100dvh - max(var(--safe-top),10px));
  margin:0 auto;
  background:var(--paper);
  border-radius:30px 30px 0 0;
  overflow:auto;
  overscroll-behavior:contain;
  padding-bottom:calc(24px + var(--safe-bottom));
  transform:translateY(100%);
  transition:transform .32s cubic-bezier(.2,.8,.2,1);
  box-shadow:0 -24px 60px rgba(0,0,0,.22);
}
.product-layer.is-open .product-sheet{transform:translateY(0)}
.product-sheet-header{position:sticky;top:0;z-index:5;display:flex;justify-content:space-between;align-items:center;padding:10px 12px;background:rgba(245,240,231,.91);backdrop-filter:blur(16px);border-bottom:1px solid rgba(24,33,42,.06)}
.sheet-close,.sheet-share{width:44px;height:44px;border:0;border-radius:14px;background:#fff;display:grid;place-items:center;box-shadow:0 4px 14px rgba(24,33,42,.07);cursor:pointer}
.sheet-close svg,.sheet-share svg{width:20px;height:20px}
.sheet-category{max-width:calc(100% - 108px);display:flex;align-items:center;gap:7px;font-size:10px;text-transform:uppercase;letter-spacing:.075em;font-weight:900;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#5E666B}
.sheet-category::before{content:"";width:8px;height:8px;border-radius:50%;background:var(--accent);flex:0 0 auto}
.product-detail-media{position:relative;margin:0 14px;aspect-ratio:1.18/1;border-radius:24px;background:linear-gradient(145deg,#F0E9DF,#E4DDD2);overflow:hidden}
.product-detail-media::before{content:"";position:absolute;left:0;top:0;width:7px;height:100%;background:var(--accent)}
.product-detail-media img{width:100%;height:100%;object-fit:contain;padding:24px;mix-blend-mode:multiply;filter:drop-shadow(0 14px 18px rgba(24,33,42,.11))}
.product-detail{padding:20px 16px 0}
.product-detail h1{margin:0;font-size:29px;line-height:1.02;letter-spacing:-.045em;font-weight:940}
.product-detail-price{margin-top:13px;font-size:28px;line-height:1;font-weight:950;letter-spacing:-.04em}
.code-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:18px}
.code-card{min-width:0;border:1px solid rgba(24,33,42,.09);background:#fff;border-radius:17px;padding:12px;cursor:pointer;text-align:left}
.code-card span{display:block;font-size:9px;text-transform:uppercase;letter-spacing:.1em;color:#7C8284;font-weight:900;margin-bottom:6px}
.code-card b{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:12px;font-variant-numeric:tabular-nums;letter-spacing:.02em}
.code-card small{display:flex;align-items:center;gap:4px;margin-top:6px;color:#7A8083;font-size:9px;font-weight:700}
.code-card small svg{width:13px;height:13px}
.spec-block{margin-top:24px}
.spec-block-title{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:9px}
.spec-block-title h2{margin:0;font-size:19px;letter-spacing:-.03em}
.spec-block-title span{font-size:11px;color:#818687}
.spec-list{border-radius:20px;background:#fff;border:1px solid rgba(24,33,42,.08);overflow:hidden}
.spec-row{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.15fr);gap:14px;padding:12px 13px;border-bottom:1px solid rgba(24,33,42,.075);font-size:12px;line-height:1.35}
.spec-row:last-child{border-bottom:0}
.spec-key{color:#747B7E}
.spec-value{font-weight:760;text-align:right;overflow-wrap:anywhere;font-variant-numeric:tabular-nums}
.spec-row-complex{grid-template-columns:1fr;gap:9px;padding-top:14px;padding-bottom:14px}
.spec-row-complex>.spec-key{color:var(--ink);font-weight:850;font-size:12px;letter-spacing:-.01em}
.spec-items{display:grid;border-radius:13px;background:#F7F3ED;overflow:hidden}
.spec-subrow{display:grid;grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);gap:12px;align-items:start;padding:9px 10px;border-bottom:1px solid rgba(24,33,42,.065);font-size:11.5px;line-height:1.35}
.spec-subrow:last-child{border-bottom:0}
.spec-sublabel{color:#737A7E;overflow-wrap:anywhere}
.spec-sublabel-empty{min-height:1px}
.spec-subvalue{text-align:right;font-weight:790;overflow-wrap:anywhere;font-variant-numeric:tabular-nums}
.spec-groups{display:grid;gap:10px}
.spec-group{padding-left:10px;border-left:3px solid var(--accent)}
.spec-group-label{margin:0 0 6px;font-size:10px;line-height:1.25;font-weight:900;letter-spacing:.035em;text-transform:uppercase;color:#515A61}
.spec-group .spec-items{background:#F8F5F0}

.product-help{margin-top:20px;padding:18px;border-radius:20px;background:var(--ink);color:#fff;position:relative;overflow:hidden;isolation:isolate}
.product-help::after{content:"";position:absolute;width:108px;height:108px;right:-54px;top:-48px;border-radius:50%;background:color-mix(in srgb,var(--accent) 38%,transparent);z-index:-1}
.product-help-kicker{margin-bottom:8px;color:var(--yellow);font-size:9px;line-height:1;text-transform:uppercase;letter-spacing:.12em;font-weight:900}
.product-help h2{margin:0;font-size:18px;line-height:1.08;letter-spacing:-.025em}
.product-help p{margin:9px 0 0;color:rgba(255,255,255,.70);font-size:11px;line-height:1.45}
.product-help p b{color:#fff;font-weight:850;font-variant-numeric:tabular-nums}
.product-help-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:14px}
.product-help-action{min-height:44px;border-radius:13px;padding:0 11px;display:flex;align-items:center;gap:7px;text-decoration:none;font-size:11px;font-weight:850}
.product-help-action svg{width:16px;height:16px;flex:0 0 auto}
.product-help-call{background:var(--yellow);color:var(--ink)}
.product-help-mail{background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.13);color:#fff}
.product-help-mail svg:last-child{margin-left:auto;width:14px;height:14px}
.product-help-contacts{display:flex;flex-wrap:wrap;gap:6px 12px;margin-top:10px;color:rgba(255,255,255,.50);font-size:9.5px;font-weight:650;font-variant-numeric:tabular-nums}
.detail-footer-note{margin:16px 0 0;padding:14px;border-radius:17px;background:#EAE3D8;color:#666D71;font-size:11px;line-height:1.4}


.site-footer{max-width:var(--content-max);margin:26px auto 0;padding:0 14px calc(8px + var(--safe-bottom))}
.site-footer-inner{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;padding:20px 18px;border-radius:22px;background:#202A33;color:#fff;border:1px solid rgba(255,255,255,.06)}
.site-footer-brand{min-width:0}
.site-footer-brand img{width:116px;height:auto;filter:brightness(0) invert(1)}
.site-footer-brand p{margin:8px 0 0;color:rgba(255,255,255,.52);font-size:10.5px;line-height:1.35}
.site-footer-contacts{display:grid;justify-items:end;gap:5px;text-align:right}
.site-footer-contacts>span{margin-bottom:2px;color:var(--yellow);font-size:8.5px;line-height:1;text-transform:uppercase;letter-spacing:.12em;font-weight:900}
.site-footer-contacts a{color:rgba(255,255,255,.82);font-size:10.5px;font-weight:720;text-decoration:none;font-variant-numeric:tabular-nums}

.scanner-layer{position:fixed;inset:0;z-index:130;pointer-events:none;visibility:hidden;background:#0E151C;color:#fff}
.scanner-layer.is-open{pointer-events:auto;visibility:visible}
.scanner-shell{min-height:100dvh;padding:calc(var(--safe-top) + 12px) 14px calc(var(--safe-bottom) + 18px);display:flex;flex-direction:column}
.scanner-header{display:flex;align-items:center;justify-content:space-between;gap:10px}
.scanner-header h2{margin:0;font-size:18px}
.scanner-close{width:44px;height:44px;border:0;border-radius:14px;background:rgba(255,255,255,.1);color:#fff;display:grid;place-items:center}
.scanner-video-wrap{position:relative;flex:1;min-height:340px;margin-top:14px;border-radius:26px;overflow:hidden;background:#05080B}
.scanner-video{width:100%;height:100%;object-fit:cover}
.scanner-frame{position:absolute;left:9%;right:9%;top:33%;height:25%;border:2px solid var(--yellow);border-radius:18px;box-shadow:0 0 0 999px rgba(0,0,0,.29)}
.scanner-frame::after{content:"";position:absolute;left:8%;right:8%;top:50%;height:2px;background:var(--yellow);box-shadow:0 0 12px rgba(255,184,0,.7)}
.scanner-help{margin:14px 5px 0;color:rgba(255,255,255,.72);font-size:13px;line-height:1.4;text-align:center}

.toast-region{position:fixed;left:12px;right:12px;bottom:calc(12px + var(--safe-bottom));z-index:200;display:grid;justify-items:center;pointer-events:none}
.toast{max-width:420px;background:#151D25;color:#fff;border:1px solid rgba(255,255,255,.12);border-radius:14px;padding:11px 14px;font-size:12px;font-weight:700;box-shadow:0 14px 34px rgba(0,0,0,.22);animation:toastIn .2s ease both}
@keyframes toastIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}

.data-state{margin:34px 14px 0;padding:34px 22px;border-radius:24px;background:#fff;border:1px solid rgba(24,33,42,.08);text-align:center;box-shadow:0 8px 26px rgba(24,33,42,.05)}
.data-state-icon{width:48px;height:48px;margin:0 auto 14px;border-radius:16px;background:#F0E9DF;color:#5B646B;display:grid;place-items:center}
.data-state-icon svg{width:22px;height:22px}
.data-state h1{margin:0;font-size:21px;line-height:1.08;letter-spacing:-.03em}
.data-state p{max-width:430px;margin:8px auto 0;color:#747B7E;font-size:12px;line-height:1.45}
.search-input:disabled{opacity:.72;cursor:wait}

.noscript{margin:20px;padding:16px;border-radius:16px;background:#fff;color:#222}

@media (min-width:540px){
  .app-header{padding-left:24px;padding-right:24px}
  .search-dock{padding-left:20px;padding-right:20px}
  .hero{margin-left:20px;margin-right:20px;min-height:320px}
  .hero-content{padding:36px 34px}
  .section-block,.category-page,.search-view{padding-left:20px;padding-right:20px}
  .category-grid{gap:13px}
  .category-card{min-height:210px;padding:18px}
  .category-title{font-size:16px;max-width:190px}
  .category-image{width:116px;height:102px}
  .product-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
  .contact-cta,.site-footer{margin-left:20px;margin-right:20px}
}

@media (max-width:360px){
  .brand-logo{width:125px}
  .header-partner span{display:none}
  .header-partner img{width:64px}
  .category-card{min-height:178px;padding:13px}
  .category-number{font-size:27px}
  .category-title{font-size:13px}
  .category-image{width:78px;height:70px}
  .product-title{font-size:12px}
  .product-card-body{padding:10px}
  .code-grid{grid-template-columns:1fr}
  .contact-cta-actions,.product-help-actions{grid-template-columns:1fr}
  .site-footer-inner{flex-direction:column}
  .site-footer-contacts{justify-items:start;text-align:left}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{scroll-behavior:auto!important;transition-duration:.001ms!important;animation-duration:.001ms!important;animation-iteration-count:1!important}
}

/* Desktop / large tablet adaptation */
@media (min-width:768px){
  :root{--content-max:1180px}
  body{background:#EDE7DE}
  .app-shell{background:var(--paper)}
  .app-header{min-height:76px;padding:0 28px}
  .header-inner{width:100%;max-width:var(--content-max);margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:24px;min-height:76px}
  .brand-logo{width:164px}
  .header-partner span{font-size:10px}
  .header-partner img{width:82px;height:28px}

  .search-dock{padding:14px 28px 12px}
  .search-field-wrap{max-width:var(--content-max)}
  .search-input{height:56px;border-radius:18px;font-size:16px;padding-left:50px}
  .search-hint{max-width:var(--content-max);font-size:12px;margin-top:7px}

  .main-content{max-width:var(--content-max)}
  .hero{margin:22px 0 0;min-height:390px;border-radius:32px}
  .hero-content{padding:54px 52px 48px}
  .hero h1{font-size:clamp(54px,6vw,78px);max-width:610px}
  .hero p{max-width:550px;font-size:16px;line-height:1.5}
  .hero-stats{margin-top:30px}
  .hero-stat{padding:11px 14px}
  .hero-stat b{font-size:22px}
  .hero-stat span{font-size:11px}

  .section-block{padding:42px 0 0}
  .section-heading{margin-bottom:20px}
  .section-heading h2{font-size:34px}
  .section-heading p{font-size:14px}
  .section-eyebrow{font-size:11px}
  .category-grid{grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}
  .category-card{min-height:230px;padding:20px 20px 18px;border-radius:24px;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
  .category-number{font-size:37px;margin-bottom:13px}
  .category-title{font-size:16px;max-width:100%;min-height:58px;padding-right:62px}
  .category-count{padding:12px 136px 0 0;font-size:12px}
  .category-image{width:125px;height:112px;right:-2px;bottom:-8px}
  .category-arrow{right:14px;top:27px;width:44px;height:44px}
  .catalog-note{margin:26px 0 0;padding:20px 22px}
  .contact-cta{margin:24px 0 0;padding:34px 36px 28px;display:grid;grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);column-gap:42px;align-items:end}
  .contact-cta h2{max-width:600px;font-size:38px}
  .contact-cta p{max-width:570px;font-size:14px}
  .contact-cta-actions{margin-top:0}
  .contact-cta-details{grid-column:2;margin-top:14px}
  .contact-action{min-height:52px;font-size:13px}

  .category-page{padding:22px 0 0}
  .category-hero{min-height:270px;padding:28px 32px;border-radius:30px}
  .category-index{font-size:58px}
  .category-hero h1{margin-top:34px;max-width:720px;font-size:44px}
  .category-hero p{max-width:700px;font-size:15px}
  .category-meta{font-size:12px;margin-top:18px}
  .product-toolbar{padding:34px 2px 16px}
  .product-toolbar h2{font-size:26px}
  .product-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
  .product-card{border-radius:23px;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
  .product-card-body{padding:15px 15px 16px}
  .product-title{font-size:14px;min-height:52px}
  .product-price{font-size:19px}
  .product-more{font-size:11px;margin-top:15px;padding-top:12px}

  .search-view{padding:22px 0 0}
  .search-summary{padding:12px 2px 18px}
  .search-summary h1{font-size:32px}
  .search-summary p{font-size:14px}
  .search-results{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  .search-result{min-height:138px;grid-template-columns:116px minmax(0,1fr);padding:11px;border-radius:22px;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
  .search-result-image{width:116px;height:116px}
  .search-result h3{font-size:14px;-webkit-line-clamp:3}
  .search-result-category{font-size:9.5px}
  .search-result-codes{font-size:10.5px}
  .search-result-price{font-size:17px}
  .load-more{max-width:420px;display:block;margin:18px auto 0}

  .product-sheet{
    left:50%;right:auto;bottom:50%;
    width:min(1080px,calc(100vw - 56px));
    max-width:none;max-height:min(820px,calc(100dvh - 64px));
    display:grid;grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);grid-template-rows:auto minmax(0,1fr);
    border-radius:30px;
    padding-bottom:0;
    overflow:hidden;
    transform:translate(-50%,calc(50% + 30px)) scale(.985);
    opacity:0;
    transition:transform .26s cubic-bezier(.2,.8,.2,1),opacity .2s ease;
  }
  .product-layer.is-open .product-sheet{transform:translate(-50%,50%) scale(1);opacity:1}
  .product-sheet-header{grid-column:1/-1;padding:11px 14px}
  .product-detail-media{grid-column:1;grid-row:2;margin:20px 0 20px 20px;aspect-ratio:auto;min-height:0;height:calc(100% - 40px);border-radius:24px}
  .product-detail-media img{padding:38px}
  .product-detail{grid-column:2;grid-row:2;min-height:0;overflow:auto;padding:26px 28px 26px 28px;overscroll-behavior:contain}
  .product-detail h1{font-size:36px}
  .product-detail-price{font-size:31px}
  .code-grid{margin-top:22px;gap:10px}
  .code-card{padding:14px}
  .spec-block{margin-top:28px}
  .spec-row{padding:13px 14px;font-size:12.5px}
  .spec-row-complex{padding-top:15px;padding-bottom:15px}
  .spec-row-complex>.spec-key{font-size:12.5px}
  .spec-subrow{padding:10px 11px;font-size:12px}
  .spec-group-label{font-size:10.5px}
  .data-state{margin:48px 0 0;padding:44px 32px}
  .product-help{margin-top:24px;padding:20px}
  .product-help h2{font-size:20px}
  .product-help p{font-size:11.5px}
  .product-help-action{min-height:46px;font-size:11.5px}
  .detail-footer-note{margin-bottom:0}
  .site-footer{padding-left:0;padding-right:0;margin:36px auto 0}
  .site-footer-inner{padding:24px 26px}
  .site-footer-brand img{width:132px}
  .site-footer-brand p,.site-footer-contacts a{font-size:11.5px}

  .scanner-shell{max-width:760px;margin:0 auto}

}

@media (min-width:768px) and (hover:hover) and (pointer:fine){
  .category-card:hover,.product-card:hover,.search-result:hover{transform:translateY(-3px);box-shadow:0 14px 34px rgba(24,33,42,.10);border-color:rgba(24,33,42,.16)}
  .category-card:hover .category-arrow svg,.product-card:hover .product-more svg{transform:translateX(3px)}
  .product-card:hover .product-more{color:var(--ink)}
  .back-button:hover,.empty-action:hover,.load-more:hover,.sheet-close:hover,.sheet-share:hover,.code-card:hover{filter:brightness(.98);box-shadow:0 8px 22px rgba(24,33,42,.10)}
  .contact-action:hover,.product-help-action:hover{transform:translateY(-1px);filter:brightness(1.03)}
  .site-footer a:hover,.contact-cta-details a:hover{text-decoration:underline;text-underline-offset:3px}
}

@media (min-width:1200px){
  :root{--content-max:1280px}
  .app-header{padding-left:36px;padding-right:36px}
  .search-dock{padding-left:36px;padding-right:36px}
  .hero{min-height:420px}
  .category-card{min-height:244px}
  .category-image{width:140px;height:124px}
  .product-grid{grid-template-columns:repeat(5,minmax(0,1fr));gap:16px}
}

@media (min-width:1600px){
  :root{--content-max:1360px}
}
