:root {
  --yellow: #facc15;
  --yellow-bright: #ffdc19;
  --ink: #0b0b0b;
  --dark: #151515;
  --soft-dark: #222;
  --muted: #686868;
  --line: #e7e7e3;
  --soft: #f5f5f1;
  --cream: #fffdf3;
  --white: #fff;
  --green: #22c55e;
  --shadow: 0 24px 70px rgba(0,0,0,.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
button, a, select, input { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid rgba(250,204,21,.5);
  outline-offset: 3px;
}
.sr-only { clip:rect(0 0 0 0); clip-path:inset(50%); height:1px; overflow:hidden; position:absolute; white-space:nowrap; width:1px; }
.stale-warning { background:#fff3bf; border-bottom:1px solid #e7c840; color:#5d4b00; font-size:11px; font-weight:600; padding:9px 20px; text-align:center; }

.topbar {
  align-items: center;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(0,0,0,.07);
  display: grid;
  grid-template-columns: 1fr auto;
  height: 68px;
  padding: 0 clamp(20px,5vw,76px);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}
.establishment-heading { color:var(--ink); display:flex; flex-direction:column; text-decoration:none; width:max-content; }
.establishment-heading strong { font-size:16px; letter-spacing:-.025em; }
.brand {
  color: var(--ink);
  font-size: 27px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -2.3px;
  line-height: 1;
  text-decoration: none;
  width: max-content;
}
.brand b { color: var(--yellow); font-weight: inherit; }
.topbar nav { display: flex; gap: 34px; }
.topbar nav a { color: #353535; font-size: 13px; font-weight: 600; text-decoration: none; }
.topbar nav a:hover { color: #000; }
.live-status {
  align-items: center;
  color: #656565;
  display: flex;
  font-size: 11px;
  font-weight: 600;
  gap: 9px;
  justify-self: end;
}
.live-status i, .footer-status i {
  background: var(--green);
  border: 4px solid #dcfce7;
  border-radius: 50%;
  display: block;
  height: 13px;
  width: 13px;
}

.hero {
  background:
    radial-gradient(circle at 70% 85%,rgba(250,204,21,.18),transparent 27%),
    linear-gradient(180deg,#fff 0%,#fffef8 100%);
  display: block;
  min-height: 0;
  overflow: hidden;
  padding:42px clamp(20px,5vw,72px) 54px;
  position: relative;
}
.hero-content { margin:0 auto; max-width:1296px; position:relative; text-align:left; z-index:2; }
.eyebrow {
  align-items: center;
  color: #555;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 9px;
  letter-spacing: .11em;
  margin-bottom: 26px;
  text-transform: uppercase;
}
.eyebrow span { color: var(--yellow); font-size: 17px; line-height: 1; }
.hero h1 {
  font-size: clamp(38px,4.5vw,56px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .98;
  margin: 0 0 25px;
}
.hero h1 em { font-style: normal; position: relative; z-index: 1; }
.hero h1 em::before {
  background: var(--yellow);
  bottom: .06em;
  content: "";
  height: .22em;
  left: -.03em;
  position: absolute;
  right: -.03em;
  transform: rotate(-1deg);
  z-index: -1;
}
.hero-content > p { color:var(--muted); font-size:15px; line-height:1.65; margin:0 0 27px; max-width:600px; }
.hero-search {
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 20px;
  box-shadow: 0 18px 55px rgba(0,0,0,.11);
  display: grid;
  grid-template-columns: 34px 1fr auto;
  max-width: 690px;
  margin:0;
  padding: 9px;
  position: relative;
}
.search-symbol, .empty-search {
  border: 2px solid var(--yellow);
  border-radius: 50%;
  display: block;
  height: 16px;
  margin: 15px 0 0 8px;
  position: relative;
  width: 16px;
}
.search-symbol::after, .empty-search::after {
  background: var(--yellow);
  content: "";
  height: 2px;
  position: absolute;
  right: -7px;
  top: 13px;
  transform: rotate(45deg);
  width: 8px;
}
.hero-search input {
  background:transparent;
  border: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  min-width: 0;
  outline: none;
  padding: 0 14px;
}
.hero-search input::placeholder { color:#aaa; }
.hero-search button {
  background: var(--yellow);
  border: 0;
  border-radius: 13px;
  color: #000;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  min-height: 52px;
  padding: 0 27px;
}
.hero-search button:hover { background: var(--yellow-bright); }
.search-hint {
  bottom: -27px;
  color: #777;
  font-size: 10px;
  left: 10px;
  position: absolute;
}
.hero-meta { align-items: center; display: flex; gap: 27px; margin-top: 48px; }
.hero-meta > div:not(.meta-divider) { display: flex; flex-direction: column; }
.hero-meta strong { font-size: 17px; font-weight: 700; letter-spacing: -.02em; }
.hero-meta span { color: #8a8a8a; font-size: 10px; margin-top: 2px; }
.meta-divider { background: #ddd; height: 32px; width: 1px; }

.hero-visual { align-self: center; height: 390px; justify-self: center; position: relative; transform: scale(.88); width: min(100%,500px); }
.yellow-disc { background: var(--yellow); border-radius: 50%; height: 390px; left: 60px; position: absolute; top: 20px; width: 390px; }
.visual-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 2;
}
.card-front { height: 285px; left: 95px; padding: 28px; top: 75px; transform: rotate(-3deg); width: 300px; }
.card-back { background: #161616; color: #fff; height: 190px; justify-content: flex-end; left: 30px; padding: 25px; top: 15px; transform: rotate(-12deg); width: 220px; z-index: 1; }
.card-back span { color: var(--yellow); font-size: 9px; font-weight: 700; letter-spacing: .15em; }
.card-back strong { font-size: 36px; letter-spacing: -.06em; margin-top: 8px; }
.card-back small { color: #888; }
.mini-top { align-items: center; display: flex; justify-content: space-between; }
.mini-top span { color: #777; font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.mini-top i { background: var(--green); border-radius: 50%; height: 8px; width: 8px; }
.mini-product { align-items: center; display: flex; gap: 13px; margin: 30px 0; }
.mini-mark { background: var(--yellow); border-radius: 12px; display: grid; font-size: 22px; font-weight: 800; height: 52px; place-items: center; width: 52px; }
.mini-product b,.mini-product small { display: block; }
.mini-product b { font-size: 14px; }
.mini-product small { color: #999; font-size: 9px; margin-top: 2px; }
.mini-price { font-size: 42px; letter-spacing: -.07em; }
.mini-line { background: #eee; height: 1px; margin: 20px 0 12px; }
.card-front > small { color: #999; font-size: 9px; }
.dot-grid {
  background-image: radial-gradient(#111 1.5px,transparent 1.5px);
  background-size: 13px 13px;
  bottom: 10px;
  height: 85px;
  opacity: .18;
  position: absolute;
  right: 0;
  width: 110px;
}

.quick-access {
  align-items: center;
  background: var(--dark);
  color: #fff;
  display: grid;
  gap: 50px;
  grid-template-columns: 290px 1fr;
  padding: 34px clamp(24px,7vw,112px);
}
.quick-copy span { color: var(--yellow); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.quick-copy h2 { font-size: 23px; letter-spacing: -.04em; margin: 7px 0 0; }
.category-chips { display: flex; gap: 10px; overflow-x: auto; padding: 3px; scrollbar-width: none; }
.category-chips::-webkit-scrollbar { display: none; }
.category-chip {
  align-items: center;
  background: #242424;
  border: 1px solid #363636;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 600;
  gap: 9px;
  padding: 10px 15px 10px 10px;
}
.category-chip:hover,.category-chip.active { background: var(--yellow); border-color: var(--yellow); color: #000; }
.category-chip i { background: #414141; border-radius: 50%; display: grid; font-size: 10px; font-style: normal; height: 26px; place-items: center; width: 26px; }
.category-chip:hover i,.category-chip.active i { background: rgba(0,0,0,.12); }
.category-chip small { color: #909090; font-size: 9px; }
.category-chip:hover small,.category-chip.active small { color: rgba(0,0,0,.55); }

.catalog { margin: 0 auto; max-width: 1440px; padding: 64px clamp(20px,5vw,72px) 90px; }
.mobile-sticky-tools { display:none; }
.catalog-header { align-items: end; display: flex; justify-content: space-between; margin-bottom: 31px; }
.section-kicker { color: #777; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.catalog-header h2 { font-size: clamp(34px,3.6vw,48px); letter-spacing: -.055em; line-height: 1; margin: 11px 0 0; }
.catalog-tools { align-items: center; display: flex; gap: 13px; }
.filter-trigger {
  align-items: center;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  font-size: 12px;
  font-weight: 600;
  gap: 10px;
  height: 44px;
  padding: 0 15px;
}
.filter-trigger b { background: var(--yellow); border-radius: 50%; display: grid; font-size: 9px; height: 20px; place-items: center; width: 20px; }
.filter-icon { border-bottom: 2px solid #111; border-top: 2px solid #111; height: 12px; position: relative; width: 16px; }
.filter-icon::after { background:#111; content:""; height:2px; left:3px; position:absolute; top:3px; width:10px; }
.view-switch { background: var(--soft); border-radius: 12px; display: flex; padding: 4px; }
.view-switch button { background: transparent; border: 0; border-radius: 9px; cursor: pointer; display: grid; height: 36px; place-items: center; width: 38px; }
.view-switch button.active { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.grid-icon { background: linear-gradient(90deg,#111 42%,transparent 42%,transparent 58%,#111 58%),linear-gradient(#111 42%,transparent 42%,transparent 58%,#111 58%); height: 15px; width: 15px; }
.list-icon,.list-icon::before,.list-icon::after { background:#111; display:block; height:2px; position:relative; width:17px; }
.list-icon::before,.list-icon::after { content:""; position:absolute; }
.list-icon::before { top:-5px; }
.list-icon::after { top:5px; }

.filter-panel {
  align-items: end;
  background: var(--soft);
  border: 1px solid #e7e7e2;
  border-radius: 22px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1.15fr 1.15fr .78fr .78fr auto;
  margin-bottom: 25px;
  max-height: 260px;
  opacity: 1;
  overflow: hidden;
  padding: 20px;
  transition: max-height .3s,opacity .25s,padding .3s,margin .3s,border .3s;
}
.filter-panel.collapsed { border-width: 0; margin-bottom: 0; max-height: 0; opacity: 0; padding-bottom: 0; padding-top: 0; }
.field label { color:#666; display:block; font-size:10px; font-weight:600; margin:0 0 7px 3px; }
.field input,.field select {
  background:#fff;
  border:1px solid #deded9;
  border-radius:12px;
  color:#111;
  height:48px;
  outline:none;
  padding:0 13px;
  width:100%;
}
.field select { appearance:none; background-image:linear-gradient(45deg,transparent 50%,#555 50%),linear-gradient(135deg,#555 50%,transparent 50%);background-position:calc(100% - 17px) 20px,calc(100% - 12px) 20px;background-repeat:no-repeat;background-size:5px 5px,5px 5px;padding-right:32px; }
.field input:focus,.field select:focus { border-color:#c5a900; box-shadow:0 0 0 3px rgba(250,204,21,.18); }
.input-suffix { position:relative; }
.input-suffix span { color:#999; position:absolute; right:14px; top:13px; }
.input-suffix input { padding-right:30px; }
.stock-control { align-items:center; cursor:pointer; display:flex; gap:10px; height:48px; }
.stock-control input { height:1px; opacity:0; position:absolute; width:1px; }
.switch { background:#d2d2cd; border-radius:999px; height:27px; position:relative; transition:background .2s; width:47px; }
.switch::after { background:#fff; border-radius:50%; box-shadow:0 2px 4px rgba(0,0,0,.14); content:""; height:21px; left:3px; position:absolute; top:3px; transition:transform .2s; width:21px; }
.stock-control input:checked + .switch { background:var(--yellow); }
.stock-control input:checked + .switch::after { transform:translateX(20px); }
.stock-control strong,.stock-control small { display:block; }
.stock-control strong { font-size:10px; }
.stock-control small { color:#888; font-size:9px; }
.filter-actions { display:flex; gap:8px; }
.button { border:0; border-radius:12px; cursor:pointer; font-size:11px; font-weight:700; min-height:48px; padding:0 17px; transition:transform .2s,background .2s; }
.button:hover { transform:translateY(-1px); }
.button-primary { background:var(--yellow); color:#000; }
.button-primary:hover { background:var(--yellow-bright); }
.button-ghost { background:#fff; border:1px solid #deded9; color:#333; }

.results-bar { align-items:center; border-bottom:1px solid var(--line); display:flex; justify-content:space-between; min-height:58px; }
.result-copy { align-items:baseline; display:flex; gap:7px; }
.result-copy strong { font-size:22px; letter-spacing:-.04em; }
.result-copy span { color:#777; font-size:11px; }
.active-summary { color:#776300; font-size:10px; font-weight:600; }

.product-grid { display:grid; gap:14px; grid-template-columns:repeat(3,minmax(0,1fr)); margin-top:25px; scroll-margin-top:100px; }
.product-card {
  background:#f2f2ef;
  border:1px solid var(--line);
  border-radius:19px;
  display:flex;
  flex-direction:column;
  min-height:310px;
  overflow:hidden;
  padding:0;
  position:relative;
  transition:border .2s,box-shadow .2s,transform .2s;
}
.product-card::before { background:var(--yellow); content:""; height:3px; left:18px; position:absolute; top:0; width:38px; z-index:2; }
.product-card:hover { border-color:#d4bd2e; box-shadow:0 16px 38px rgba(0,0,0,.08); transform:translateY(-3px); }
.product-image { align-items:center; background:#fff; display:flex; height:145px; justify-content:center; overflow:hidden; padding:14px; }
.product-image img { height:100%; max-width:100%; object-fit:contain; opacity:0; transition:opacity .25s; width:100%; }
.product-image img.loaded { opacity:1; }
.product-image.no-image span { align-items:center; background:#e9e9e4; border-radius:18px; color:#aaa; display:flex; font-size:32px; font-weight:800; height:70px; justify-content:center; width:70px; }
.product-content { background:#f2f2ef; display:flex; flex:1; flex-direction:column; padding:17px 19px 18px; }
.product-topline { align-items:center; display:flex; justify-content:space-between; }
.product-family { color:#786400; font-size:9px; font-weight:700; letter-spacing:.08em; max-width:48%; overflow:hidden; text-overflow:ellipsis; text-transform:uppercase; white-space:nowrap; }
.availability { align-items:center; color:#888; display:flex; font-size:8px; font-weight:600; gap:5px; }
.availability i { background:#aaa; border-radius:50%; height:6px; width:6px; }
.availability.available { color:#15803d; }
.availability.available i { background:var(--green); }
.product-main { align-items:flex-end; display:flex; flex:1; gap:14px; justify-content:space-between; margin:18px 0 16px; }
.product-main h3 { font-size:15px; letter-spacing:-.025em; line-height:1.4; margin:0 0 7px; }
.product-main p { color:#888; font-size:9px; margin:0; }
.product-price { background:var(--yellow); border-radius:11px; font-size:20px; letter-spacing:-.05em; padding:8px 10px; white-space:nowrap; }
.product-code { border-top:1px solid #eee; color:#777; font-size:9px; padding-top:12px; }
.product-code span { color:#aaa; margin-right:5px; text-transform:uppercase; }
.product-grid.list-view { grid-template-columns:1fr; }
.product-grid.list-view .product-card { align-items:stretch; display:grid; grid-template-columns:105px 1fr; min-height:125px; }
.product-grid.list-view .product-card::before { bottom:18px; height:auto; left:0; top:18px; width:3px; }
.product-grid.list-view .product-image { height:100%; min-height:125px; padding:10px; }
.product-grid.list-view .product-content { padding:16px 20px; }
.product-grid.list-view .product-main { align-items:center; margin:10px 0; }
.product-grid.list-view .product-main > div { padding-right:20px; }
.load-sentinel { height:2px; width:100%; }

.empty-state { background:var(--soft); border-radius:24px; margin-top:25px; padding:65px 20px; text-align:center; }
.empty-search { height:27px; margin:0 auto 25px; width:27px; }
.empty-search::after { height:3px; right:-11px; top:23px; width:13px; }
.empty-state h3 { font-size:22px; letter-spacing:-.03em; margin:0 0 8px; }
.empty-state p { color:#777; font-size:12px; margin:0 0 22px; }

.help-strip {
  background:var(--yellow);
  display:grid;
  gap:1px;
  grid-template-columns:repeat(3,1fr);
  padding:0 clamp(24px,7vw,112px);
}
.help-strip > div { border-right:1px solid rgba(0,0,0,.15); padding:50px 8vw 50px 0; }
.help-strip > div:nth-child(2),.help-strip > div:nth-child(3) { padding-left:5vw; }
.help-strip > div:last-child { border:0; }
.help-number { display:block; font-size:9px; font-weight:700; margin-bottom:18px; }
.help-strip strong { display:block; font-size:22px; letter-spacing:-.04em; }
.help-strip p { font-size:11px; margin:5px 0 0; }

footer { align-items:center; background:#0b0b0b; color:#888; display:grid; grid-template-columns:1fr auto 1fr; padding:28px clamp(24px,5vw,76px); }
.footer-update { display:flex; flex-direction:column; gap:5px; }
.footer-business { color:#fff; font-size:12px; }
.footer-update span { color:#aaa; font-size:9px; }
footer p { color:#777; font-size:10px; justify-self:center; margin:0; }
.back-to-top { background:var(--ink); border:0; border-radius:50%; bottom:20px; box-shadow:0 8px 25px rgba(0,0,0,.2); color:var(--yellow); cursor:pointer; display:grid; font-size:20px; height:46px; opacity:0; place-items:center; pointer-events:none; position:fixed; right:20px; transform:translateY(10px); transition:.2s; width:46px; z-index:30; }
.back-to-top.visible { opacity:1; pointer-events:auto; transform:translateY(0); }

@media (max-width:1100px) {
  .hero { grid-template-columns:1fr 360px; padding-left:5vw; padding-right:5vw; }
  .hero-visual { transform:scale(.75); }
  .filter-panel { grid-template-columns:repeat(4,1fr); }
  .filter-actions { justify-content:flex-end; }
  .product-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width:800px) {
  .topbar { grid-template-columns:1fr auto; }
  .topbar nav { display:none; }
  .hero { min-height:auto; padding-bottom:44px; }
  .hero-content { margin:0 auto; }
  .eyebrow { justify-content:center; }
  .hero h1 { font-size:clamp(40px,9vw,58px); }
  .hero-content > p { margin-left:auto; margin-right:auto; }
  .hero-search { margin-left:auto; margin-right:auto; text-align:left; }
  .hero-meta { justify-content:center; text-align:left; }
  .hero-visual { display:none; }
  .catalog { padding-top:48px; }
  .filter-panel { grid-template-columns:repeat(2,1fr); max-height:500px; }
  .filter-panel.collapsed { max-height:0; }
  .product-grid.list-view .product-card { grid-template-columns:105px 1fr; }
  .help-strip { padding:0 5vw; }
  .help-strip > div { padding-right:3vw; }
}

@media (max-width:560px) {
  .topbar { height:62px; padding:0 18px; }
  .brand { font-size:24px; }
  .live-status span { display:none; }
  .hero { padding:27px 18px 34px; }
  .hero h1 { font-size:32px; margin-bottom:12px; }
  .hero-content > p { font-size:14px; }
  .hero-search { grid-template-columns:28px 1fr auto; padding:7px; }
  .hero-search input { font-size:13px; padding:0 8px; }
  .hero-search button { min-height:46px; padding:0 16px; }
  .search-symbol { margin-left:4px; margin-top:13px; }
  .search-hint { display:none; }
  .hero-meta { display:none; }
  .hero-meta strong { font-size:14px; }
  .catalog { padding:38px 16px 68px; }
  .mobile-sticky-tools { align-items:center; background:rgba(255,255,255,.96); border-bottom:1px solid #eee; display:none; gap:8px; grid-template-columns:1fr auto; margin:0 -16px 28px; padding:9px 16px; position:sticky; top:62px; z-index:18; }
  .mobile-sticky-tools.visible { display:grid; }
  .mobile-sticky-tools input { background:#111; border:0; border-radius:10px; color:#fff; height:42px; min-width:0; padding:0 13px; }
  .mobile-sticky-tools input::placeholder { color:#aaa; }
  .mobile-sticky-tools button { background:var(--yellow); border:0; border-radius:10px; font-size:11px; font-weight:700; height:42px; padding:0 14px; }
  .catalog-header { align-items:flex-start; flex-direction:column; gap:25px; }
  .catalog-tools { justify-content:space-between; width:100%; }
  .filter-panel { display:flex; flex-direction:column; max-height:800px; padding:18px; }
  .filter-panel.collapsed { padding-left:18px; padding-right:18px; }
  .field,.filter-actions { width:100%; }
  .filter-actions .button { flex:1; }
  .results-bar { align-items:flex-start; flex-direction:column; gap:8px; justify-content:center; padding:10px 0; }
  .product-grid { grid-template-columns:1fr; }
  .product-card { display:grid; grid-template-columns:92px 1fr; min-height:150px; }
  .product-image { height:100%; min-height:150px; padding:8px; }
  .product-image.no-image span { border-radius:13px; font-size:24px; height:50px; width:50px; }
  .product-content { padding:15px; }
  .product-main { align-items:flex-start; flex-direction:column; gap:10px; margin:12px 0; }
  .product-price { font-size:18px; }
  .product-grid.list-view .product-card { align-items:stretch; display:grid; grid-template-columns:92px 1fr; min-height:150px; }
  .product-grid.list-view .product-main { margin:20px 0; }
  .product-grid.list-view .product-code { border-left:0; border-top:1px solid #eee; display:block; padding:11px 0 0; }
  .help-strip { grid-template-columns:1fr; padding:20px 18px; }
  .help-strip > div,.help-strip > div:nth-child(2),.help-strip > div:nth-child(3) { border-bottom:1px solid rgba(0,0,0,.15); border-right:0; padding:25px 0; }
  .help-strip > div:last-child { border:0; }
  footer { align-items:center; display:flex; flex-direction:column; gap:14px; padding:26px 20px; text-align:center; }
}

@media (prefers-reduced-motion:reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { transition:none!important; }
}
