:root{
  --bqm-bg:#120d08;
  --bqm-panel:rgba(24,18,13,.86);
  --bqm-panel-2:rgba(33,24,17,.92);
  --bqm-shadow:0 22px 48px rgba(0,0,0,.34);
  --bqm-text:#f8f1e8;
  --bqm-muted:#d0c0ae;
  --bqm-line:rgba(255,219,173,.12);
  --bqm-red:#b63b1e;
  --bqm-red-dark:#7e2311;
  --bqm-white:#ffffff;
  --bqm-amber:#ffb75b;
  --bqm-ember:#ff8c37;
}
.bqm-wrap{
  position:relative;
  isolation:isolate;
  background:
    linear-gradient(180deg,rgba(8,6,4,.54),rgba(10,7,4,.48) 18%,rgba(12,8,5,.54) 44%,rgba(8,6,4,.76) 100%),
    radial-gradient(circle at top center,rgba(255,171,84,.16),transparent 30%),
    url('../images/hero-top.jpg') center top/cover no-repeat fixed;
  min-height:100vh;
  color:var(--bqm-text);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
.bqm-wrap::before{
  content:'';
  position:fixed;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(180deg,rgba(14,9,5,.42),rgba(6,4,3,.54)),
    radial-gradient(circle at 50% 14%, rgba(255,172,84,.18), transparent 22%),
    url('../images/hero-top.jpg') center top/cover no-repeat;
  transform:scale(1.04);
  filter:saturate(1.08) contrast(1.04);
  pointer-events:none;
}
.bqm-wrap::after{
  content:'';
  position:fixed;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(180deg,rgba(5,4,3,.08),rgba(5,4,3,.64) 26%,rgba(7,5,3,.82) 100%);
  pointer-events:none;
}
.bqm-shell{
  position:relative;
  z-index:1;
  max-width:1120px;
  margin:0 auto;
  padding:24px 16px 44px;
}
@media (max-width:768px){
  .bqm-wrap{
    background-attachment:scroll;
  }
  .bqm-wrap::before,
  .bqm-wrap::after{
    position:absolute;
  }
}
.bqm-hero{
  background:
    linear-gradient(100deg,rgba(18,12,7,.70) 0%,rgba(30,18,10,.42) 48%,rgba(11,8,5,.66) 100%),
    linear-gradient(180deg,rgba(255,181,88,.05),rgba(0,0,0,.26)),
    url('../images/hero-top.jpg') center/cover no-repeat;
  border:1px solid rgba(255,220,176,.12);
  border-radius:28px;
  box-shadow:0 20px 46px rgba(0,0,0,.22);
  position:relative;
  overflow:hidden;
}
.bqm-hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,189,108,.20), transparent 24%),
    radial-gradient(circle at 24% 76%, rgba(255,135,54,.10), transparent 22%);
  pointer-events:none;
}
.bqm-hero__content{
  position:relative;
  z-index:1;
  max-width:1120px;
  margin:0 auto;
  padding:42px 16px 34px;
}
.bqm-kicker{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#fff;
  margin-bottom:12px;
}
.bqm-hero h1{
  margin:0;
  font-size:clamp(28px,6vw,54px);
  line-height:1.02;
}
.bqm-hero p{
  margin:14px 0 0;
  color:#f2ddc6;
  font-size:16px;
  max-width:720px;
}
.bqm-meta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
  color:#ffe7e8;
  font-size:14px;
}
.bqm-note{
  display:inline-block;
  margin-top:18px;
  background:rgba(255,239,220,.94);
  color:#1b1c1f;
  padding:10px 14px;
  border-radius:14px;
  font-weight:700;
}
.bqm-table-badge{
  display:inline-flex;
  margin:0 0 18px;
  background:#221214;
  color:#ffdfe2;
  border:1px solid #63333b;
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
}
.bqm-section-head{
  margin-bottom:18px;
}
.bqm-section-head h2,.bqm-category-top h2{
  margin:0 0 8px;
  font-size:clamp(24px,4vw,34px);
}
.bqm-section-head p,.bqm-category-top p,.bqm-footer-note,.bqm-empty{
  margin:0;
  color:var(--bqm-muted);
}
.bqm-category-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.bqm-category-card{
  min-height:180px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:8px;
  padding:18px;
  border-radius:22px;
  text-decoration:none;
  color:#fff;
  background:
    linear-gradient(180deg,rgba(18,13,9,.08),rgba(18,13,9,.72)),
    linear-gradient(135deg,rgba(43,28,19,.68),rgba(15,10,7,.72));
  border:1px solid rgba(255,220,176,.12);
  box-shadow:0 14px 28px rgba(0,0,0,.18);
  backdrop-filter:none;
  background-size:cover;
  background-position:center;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.bqm-category-card:hover{
  transform:translateY(-2px);
  border-color:rgba(255,206,143,.22);
  box-shadow:0 24px 46px rgba(0,0,0,.32);
}
.bqm-category-card__label{
  font-size:24px;
  line-height:1.08;
  font-weight:800;
}
.bqm-category-card__desc{
  color:#e7eaee;
  font-size:14px;
}
.bqm-category-top{
  margin-bottom:14px;
}
.bqm-back{
  display:inline-flex;
  margin-bottom:12px;
  color:#ffd6d8;
  text-decoration:none;
  font-weight:700;
}
.bqm-chip-row{
  position:sticky;
  top:0;
  z-index:8;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:0 0 20px;
  padding:12px 0;
  background:linear-gradient(180deg,rgba(11,12,14,.98),rgba(11,12,14,.88));
  backdrop-filter:blur(6px);
}
.bqm-chip{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  text-decoration:none;
  color:#f7f7f8;
  background:#17191e;
  border:1px solid var(--bqm-line);
  font-weight:600;
  font-size:14px;
}
.bqm-chip.is-active{
  background:var(--bqm-red);
  border-color:var(--bqm-red);
  color:#fff;
}
.bqm-product-list{
  display:grid;
  gap:14px;
}
.bqm-product{
  display:grid;
  grid-template-columns:140px minmax(0,1fr);
  gap:16px;
  background:linear-gradient(180deg,rgba(27,20,14,.92),rgba(16,12,9,.92));
  border:1px solid rgba(255,220,176,.10);
  border-radius:24px;
  overflow:hidden;
  backdrop-filter:blur(10px);
  box-shadow:var(--bqm-shadow);
}
.bqm-product__media{
  min-height:100%;
  background:#272b33;
}
.bqm-product__media img{
  display:block;
  width:100%;
  height:100%;
  min-height:100%;
  object-fit:cover;
}
.bqm-product__media.is-placeholder{
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(135deg,#d71920,#6b0f14);
}
.bqm-product__media.is-placeholder span{
  font-size:40px;
  font-weight:800;
}
.bqm-product__body{
  padding:18px 18px 18px 0;
}
.bqm-product__topline{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.bqm-product__topline h3{
  margin:0;
  font-size:24px;
  line-height:1.08;
}
.bqm-product__body p{
  margin:10px 0 0;
  color:var(--bqm-muted);
}
.bqm-badge{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(215,25,32,.14);
  color:#ffd7d9;
  font-size:12px;
  font-weight:700;
}
.bqm-prices{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}
.bqm-price{
  min-width:140px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--bqm-line);
  border-radius:16px;
  padding:12px 14px;
}
.bqm-price__label{
  display:block;
  color:var(--bqm-muted);
  font-size:12px;
  margin-bottom:4px;
}
.bqm-price strong{
  font-size:20px;
  line-height:1;
}
.bqm-product__actions{
  margin-top:16px;
}
.bqm-order{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
  padding:12px 16px;
  border-radius:14px;
  background:linear-gradient(180deg,var(--bqm-red),#b41218);
  color:#fff;
  font-weight:800;
  box-shadow:0 10px 22px rgba(215,25,32,.22);
}
.bqm-order::before{content:'•';font-size:16px;line-height:1;}
.bqm-order:hover{
  background:var(--bqm-red-dark);
}
.bqm-unavailable{
  display:inline-flex;
  padding:12px 14px;
  background:#24181a;
  border:1px solid #513136;
  border-radius:14px;
  color:#f0c3c7;
}
.bqm-footer-note{
  margin-top:24px;
  padding-top:16px;
  border-top:1px solid var(--bqm-line);
  font-size:14px;
}
@media (max-width: 860px){
  .bqm-category-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .bqm-product{grid-template-columns:120px minmax(0,1fr);}
}
@media (max-width: 640px){
  .bqm-shell{padding:20px 14px 34px;}
  .bqm-hero__content{padding:34px 14px 28px;}
  .bqm-category-grid{grid-template-columns:1fr;}
  .bqm-product{
    grid-template-columns:1fr;
  }
  .bqm-product__media{
    aspect-ratio:16/10;
  }
  .bqm-product__body{
    padding:16px;
  }
  .bqm-price{
    width:100%;
  }
  .bqm-order{
    width:100%;
  }
}

.bqm-category-card__meta{display:inline-flex;align-self:flex-start;padding:6px 10px;border-radius:999px;background:rgba(255,255,255,.12);color:#fff;font-size:12px;font-weight:700;}
.bqm-category-top__meta{display:inline-flex;margin:0 0 10px;padding:7px 12px;border:1px solid rgba(255,255,255,.10);border-radius:999px;background:#17191e;color:#f5f7fa;font-size:12px;font-weight:700;}

@media (max-width: 640px){.bqm-chip-row{flex-wrap:nowrap;overflow:auto;padding-bottom:8px}.bqm-chip-row::-webkit-scrollbar{display:none}.bqm-category-card{min-height:150px}.bqm-product__topline h3{font-size:22px}}


.bqm-hero__actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
.bqm-hero__button,.bqm-hero__ghost{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:42px;padding:0 16px;border-radius:999px;font-weight:700;font-size:14px;text-decoration:none
}
.bqm-hero__button{background:#fff;color:#14161a;box-shadow:0 10px 24px rgba(0,0,0,.18)}
.bqm-hero__ghost{background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.16);color:#fff}
.bqm-category-card{position:relative;overflow:hidden}
.bqm-category-card::after{
  content:'';
  position:absolute;inset:auto -20% -34% auto;width:180px;height:180px;
  background:radial-gradient(circle,rgba(255,255,255,.18),transparent 62%);
  opacity:.75;pointer-events:none
}
.bqm-product{position:relative}
.bqm-product:hover{border-color:rgba(255,255,255,.12)}
.bqm-product__body{display:flex;flex-direction:column}
.bqm-product__actions{margin-top:auto;padding-top:16px}
.bqm-footer-note{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;
  font-size:13px;color:#d2d8df
}
@media (max-width:640px){
  .bqm-hero__actions{margin-top:14px}
  .bqm-hero__button,.bqm-hero__ghost{width:auto}
}


/* v2.4.0 safe polish */

:root{--bqm-radius-xl:28px;--bqm-radius-lg:20px;--bqm-radius-md:16px;}
.bqm-shell{max-width:1180px;padding-bottom:56px}
.bqm-hero__content{padding-top:48px;padding-bottom:38px}
.bqm-hero h1{letter-spacing:-.03em}
.bqm-note{box-shadow:0 14px 28px rgba(0,0,0,.18)}
.bqm-category-grid{gap:18px}
.bqm-category-card{
  min-height:196px;
  border-radius:var(--bqm-radius-xl);
  box-shadow:0 18px 40px rgba(0,0,0,.26);
}
.bqm-category-card:hover{transform:translateY(-4px)}
.bqm-category-card__label{letter-spacing:-.02em}
.bqm-chip-row{top:0;padding-top:10px;padding-bottom:14px;scrollbar-width:none}
.bqm-chip{transition:background .18s ease,border-color .18s ease,transform .18s ease}
.bqm-chip:hover{transform:translateY(-1px);border-color:rgba(255,255,255,.16)}
.bqm-product{
  grid-template-columns:156px minmax(0,1fr);
  border-radius:var(--bqm-radius-xl);
  background:
    linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,0)),
    linear-gradient(180deg,#16191e,#101216);
  transition:border-color .18s ease,transform .18s ease,box-shadow .18s ease;
}
.bqm-product:hover{transform:translateY(-2px);box-shadow:0 22px 42px rgba(0,0,0,.26)}
.bqm-product__media{position:relative;overflow:hidden}
.bqm-product__media::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,transparent,rgba(0,0,0,.08));pointer-events:none}
.bqm-product__body{padding-top:20px;padding-bottom:20px}
.bqm-product__topline h3{letter-spacing:-.02em}
.bqm-prices{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;align-items:stretch}
.bqm-price{min-width:0;border-radius:18px;background:linear-gradient(180deg,#1d2229,#181c22)}
.bqm-price strong{font-size:22px}
.bqm-order{min-height:48px;padding-inline:18px;border-radius:15px;transition:transform .18s ease,background .18s ease,box-shadow .18s ease}
.bqm-order:hover{transform:translateY(-1px);box-shadow:0 14px 28px rgba(215,25,32,.28)}
.bqm-footer-note{margin-top:28px;padding-top:18px}
@media (max-width:860px){
  .bqm-product{grid-template-columns:132px minmax(0,1fr)}
  .bqm-category-card{min-height:172px}
}
@media (max-width:640px){
  .bqm-shell{padding:18px 14px 40px}
  .bqm-hero__content{padding-top:32px;padding-bottom:28px}
  .bqm-hero h1{font-size:clamp(26px,8.4vw,40px)}
  .bqm-note{display:block}
  .bqm-category-grid{gap:14px}
  .bqm-category-card{min-height:156px;border-radius:22px}
  .bqm-chip-row{gap:8px;scroll-snap-type:x proximity}
  .bqm-chip{scroll-snap-align:start;white-space:nowrap}
  .bqm-product{grid-template-columns:1fr;border-radius:22px}
  .bqm-product__media{aspect-ratio:16/9}
  .bqm-prices{grid-template-columns:1fr}
  .bqm-order{width:100%}
}
@media (prefers-reduced-motion:reduce){
  .bqm-category-card,.bqm-chip,.bqm-product,.bqm-order{transition:none}
}


/* v2.5.0 safe polish */
.bqm-section-head{display:flex;align-items:end;justify-content:space-between;gap:16px;padding-bottom:8px;border-bottom:1px solid rgba(255,255,255,.06)}
.bqm-section-head p{max-width:560px}
.bqm-category-top{padding:18px 20px;border:1px solid rgba(255,255,255,.08);border-radius:24px;background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.01));box-shadow:0 12px 28px rgba(0,0,0,.16)}
.bqm-category-banner{position:relative;display:flex;align-items:flex-end;min-height:180px;margin:0 0 18px;border-radius:26px;overflow:hidden;background-size:cover;background-position:center;box-shadow:0 20px 44px rgba(0,0,0,.24)}
.bqm-category-banner::after{content:'';position:absolute;inset:0;background:radial-gradient(circle at top right,rgba(255,255,255,.16),transparent 35%);pointer-events:none}
.bqm-category-banner__inner{position:relative;z-index:1;display:flex;flex-direction:column;gap:6px;padding:20px 22px;color:#fff}
.bqm-category-banner__inner span{display:inline-flex;align-self:flex-start;padding:6px 10px;border-radius:999px;background:rgba(255,255,255,.14);font-size:12px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}
.bqm-category-banner__inner strong{font-size:clamp(24px,3vw,34px);line-height:1.05;letter-spacing:-.02em}
.bqm-category-banner__inner small{font-size:14px;color:#f3dfe1}
.bqm-category-card__label{max-width:12ch}
.bqm-product__body p{line-height:1.55;max-width:68ch}
.bqm-badge{background:linear-gradient(180deg,rgba(215,25,32,.18),rgba(215,25,32,.10));border:1px solid rgba(255,255,255,.08)}
.bqm-price{box-shadow:inset 0 1px 0 rgba(255,255,255,.03)}
.bqm-price__label{text-transform:uppercase;letter-spacing:.04em}
.bqm-order{letter-spacing:.01em}
.bqm-order:focus-visible,.bqm-chip:focus-visible,.bqm-category-card:focus-visible,.bqm-back:focus-visible{outline:2px solid rgba(255,255,255,.7);outline-offset:3px}
.bqm-footer-note{justify-content:center;text-align:center}
@media (max-width:640px){
  .bqm-section-head{display:block;padding-bottom:0;border-bottom:0}
  .bqm-category-top{padding:16px;border-radius:22px}
  .bqm-category-banner{min-height:148px;border-radius:22px;margin-bottom:16px}
  .bqm-category-banner__inner{padding:16px}
  .bqm-category-banner__inner strong{font-size:28px}
}


/* v2.6.0 safe polish */
.bqm-hero{overflow:hidden}
.bqm-hero__content{display:flex;flex-direction:column;align-items:flex-start}
.bqm-hero p{line-height:1.6}
.bqm-hero__button{transition:transform .18s ease,box-shadow .18s ease,background .18s ease}
.bqm-hero__button:hover{transform:translateY(-1px);box-shadow:0 14px 28px rgba(0,0,0,.22)}
.bqm-category-grid{align-items:stretch}
.bqm-category-card{
  isolation:isolate;
  padding:20px;
  background-blend-mode:normal,normal;
}
.bqm-category-card__meta{backdrop-filter:blur(6px)}
.bqm-category-card__desc{max-width:30ch;line-height:1.5}
.bqm-category-card::before{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(255,255,255,.06),transparent 26%,rgba(0,0,0,.12));
  opacity:.9;pointer-events:none;z-index:0;
}
.bqm-category-card > *{position:relative;z-index:1}
.bqm-category-top{backdrop-filter:blur(10px)}
.bqm-category-banner{border:1px solid rgba(255,255,255,.08)}
.bqm-product{
  align-items:stretch;
  background:
    linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,0)),
    linear-gradient(180deg,#171a20,#101216);
}
.bqm-product__body{gap:0}
.bqm-product__topline{justify-content:space-between}
.bqm-product__body p{font-size:15px}
.bqm-prices{margin-top:18px}
.bqm-price{
  position:relative;
  overflow:hidden;
  border-color:rgba(255,255,255,.07);
}
.bqm-price::after{
  content:'';position:absolute;inset:auto -16% -36% auto;width:110px;height:110px;
  background:radial-gradient(circle,rgba(255,255,255,.08),transparent 60%);
  pointer-events:none;
}
.bqm-price strong{display:block;letter-spacing:-.02em}
.bqm-product__actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.bqm-order{position:relative;overflow:hidden}
.bqm-order::after{
  content:'';position:absolute;inset:0;background:linear-gradient(90deg,transparent,rgba(255,255,255,.12),transparent);
  transform:translateX(-120%);
}
.bqm-order:hover::after{transform:translateX(120%);transition:transform .5s ease}
.bqm-fab{
  position:fixed;right:18px;bottom:18px;z-index:30;
  display:inline-flex;align-items:center;justify-content:center;
  min-height:54px;padding:0 18px;border-radius:999px;
  background:linear-gradient(180deg,#22c55e,#16a34a);color:#fff;text-decoration:none;font-weight:800;
  box-shadow:0 18px 36px rgba(0,0,0,.28),0 10px 22px rgba(34,197,94,.22);
  border:1px solid rgba(255,255,255,.12);
}
.bqm-fab:hover{transform:translateY(-1px)}
@media (max-width:860px){
  .bqm-product__topline{align-items:flex-start;justify-content:flex-start}
}
@media (max-width:640px){
  .bqm-category-card__desc{max-width:none}
  .bqm-product__body p{font-size:14px}
  .bqm-fab{left:14px;right:14px;bottom:14px;min-height:52px;padding:0 16px}
  .bqm-shell{padding-bottom:96px}
}
@media (prefers-reduced-motion:reduce){
  .bqm-hero__button,.bqm-fab,.bqm-order::after{transition:none}
}

/* v2.7.0 immersive visual layer */
:root{
  --bqm-glass:rgba(255,255,255,.09);
  --bqm-glass-line:rgba(255,255,255,.12);
}
.bqm-wrap{position:relative;overflow:hidden}
.bqm-wrap::before,
.bqm-wrap::after{
  content:'';
  position:fixed;
  inset:auto;
  width:42vw;
  height:42vw;
  border-radius:50%;
  pointer-events:none;
  filter:blur(54px);
  opacity:.16;
  z-index:0;
}
.bqm-wrap::before{top:-8vw;right:-10vw;background:radial-gradient(circle,#ff4b55,transparent 65%);animation:bqmAurora 14s ease-in-out infinite}
.bqm-wrap::after{bottom:-14vw;left:-10vw;background:radial-gradient(circle,#8d0f18,transparent 65%);animation:bqmAurora 18s ease-in-out infinite reverse}
.bqm-shell,.bqm-hero__content{position:relative;z-index:1}

.bqm-hero{
  isolation:isolate;
  background:
    linear-gradient(120deg,rgba(215,25,32,.88),rgba(15,16,19,.60)),
    linear-gradient(180deg,rgba(255,255,255,.06),rgba(0,0,0,.34)),
    url('../images/hero-top.jpg') center/cover no-repeat;
}
.bqm-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 22%,rgba(255,255,255,.18),transparent 22%),
    radial-gradient(circle at 82% 18%,rgba(255,255,255,.14),transparent 20%),
    linear-gradient(120deg,transparent 0%,rgba(255,255,255,.06) 44%,transparent 58%),
    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:auto,auto,auto,24px 24px,24px 24px;
  mix-blend-mode:screen;
  opacity:.6;
  animation:bqmGridFloat 14s linear infinite;
}
.bqm-hero__content{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,440px);
  gap:28px;
  align-items:center;
}
.bqm-hero__copy{max-width:760px}
.bqm-hero__stage{
  position:relative;
  min-height:320px;
  perspective:1200px;
  transform-style:preserve-3d;
}
.bqm-grid-glow{
  position:absolute;
  inset:22px;
  border-radius:28px;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px),
    linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.02));
  background-size:18px 18px,18px 18px,auto;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 30px 50px rgba(0,0,0,.28);
  transform:rotateY(-14deg) rotateX(16deg) translateZ(0);
  backdrop-filter:blur(10px);
}
.bqm-orb{
  position:absolute;
  border-radius:50%;
  filter:blur(6px);
  opacity:.95;
}
.bqm-orb--one{width:118px;height:118px;top:12px;right:42px;background:radial-gradient(circle,#ffd7da,rgba(255,111,123,.18) 58%,transparent 72%);animation:bqmFloat 7s ease-in-out infinite}
.bqm-orb--two{width:164px;height:164px;bottom:18px;left:26px;background:radial-gradient(circle,rgba(255,255,255,.5),rgba(215,25,32,.26) 54%,transparent 72%);animation:bqmFloat 9s ease-in-out infinite reverse}
.bqm-floating-card,
.bqm-floating-chip{
  position:absolute;
  border:1px solid var(--bqm-glass-line);
  background:linear-gradient(180deg,rgba(255,255,255,.18),rgba(255,255,255,.06));
  box-shadow:0 26px 50px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter:blur(16px);
  color:#fff;
}
.bqm-floating-card{
  width:min(82%,280px);
  border-radius:24px;
  padding:16px 18px;
  transform-style:preserve-3d;
}
.bqm-floating-card span{display:block;font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#ffe4e5}
.bqm-floating-card strong{display:block;margin-top:8px;font-size:20px;line-height:1.12;letter-spacing:-.02em}
.bqm-floating-card--primary{top:40px;left:18px;transform:translateZ(44px) rotateY(-18deg) rotateX(10deg);animation:bqmCardOne 8.5s ease-in-out infinite}
.bqm-floating-card--secondary{right:8px;bottom:56px;transform:translateZ(70px) rotateY(18deg) rotateX(-8deg);animation:bqmCardTwo 9.5s ease-in-out infinite}
.bqm-floating-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.bqm-floating-chip::before{content:'';width:8px;height:8px;border-radius:50%;background:#7cf3ad;box-shadow:0 0 18px rgba(124,243,173,.95);margin-right:10px}
.bqm-floating-chip{left:26px;bottom:30px;transform:translateZ(24px) rotateX(8deg)}
.bqm-floating-chip--alt{left:auto;right:18px;top:26px;transform:translateZ(18px) rotateY(-12deg)}

.bqm-category-card,
.bqm-product{
  transform-style:preserve-3d;
  will-change:transform,box-shadow;
}
.bqm-category-card::after,
.bqm-price::after{opacity:.95}
.bqm-category-card .bqm-category-card__label,
.bqm-category-card .bqm-category-card__meta,
.bqm-category-card .bqm-category-card__desc,
.bqm-product__body > *,
.bqm-product__media,
.bqm-price{
  transform:translateZ(18px);
}
.bqm-category-card:hover,
.bqm-product:hover{
  box-shadow:0 26px 56px rgba(0,0,0,.32);
}
.bqm-category-card::before,
.bqm-product::before{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(120deg,rgba(255,255,255,.10),transparent 38%,transparent 60%,rgba(255,255,255,.06));
  opacity:.72;
}
.bqm-product__media img{transition:transform .55s ease,filter .55s ease}
.bqm-product:hover .bqm-product__media img{transform:scale(1.04);filter:saturate(1.06) contrast(1.04)}
.bqm-chip.is-active,
.bqm-order,
.bqm-fab{position:relative;overflow:hidden}
.bqm-chip.is-active::after,
.bqm-order::before,
.bqm-fab::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(105deg,transparent 28%,rgba(255,255,255,.18) 50%,transparent 72%);
  transform:translateX(-130%);
}
.bqm-chip.is-active:hover::after,
.bqm-order:hover::before,
.bqm-fab:hover::before{transform:translateX(130%);transition:transform .75s ease}

.bqm-reveal{opacity:0;transform:translateY(22px) scale(.985)}
.bqm-reveal.is-visible{opacity:1;transform:none;transition:opacity .55s ease,transform .55s ease}

@keyframes bqmAurora{0%,100%{transform:translate3d(0,0,0) scale(1)}50%{transform:translate3d(3vw,2vw,0) scale(1.08)}}
@keyframes bqmGridFloat{0%{transform:translate3d(0,0,0)}50%{transform:translate3d(0,-12px,0)}100%{transform:translate3d(0,0,0)}}
@keyframes bqmFloat{0%,100%{transform:translate3d(0,0,0)}50%{transform:translate3d(0,-14px,0)}}
@keyframes bqmCardOne{0%,100%{transform:translateZ(44px) rotateY(-18deg) rotateX(10deg) translateY(0)}50%{transform:translateZ(58px) rotateY(-13deg) rotateX(7deg) translateY(-8px)}}
@keyframes bqmCardTwo{0%,100%{transform:translateZ(70px) rotateY(18deg) rotateX(-8deg) translateY(0)}50%{transform:translateZ(86px) rotateY(12deg) rotateX(-6deg) translateY(-10px)}}

@media (max-width:980px){
  .bqm-hero__content{grid-template-columns:1fr}
  .bqm-hero__stage{order:-1;min-height:260px;margin-bottom:4px}
  .bqm-grid-glow{inset:10px;transform:rotateY(-8deg) rotateX(10deg)}
}
@media (max-width:640px){
  .bqm-wrap::before,.bqm-wrap::after{display:none}
  .bqm-hero::before{opacity:.4;background-size:auto,auto,auto,18px 18px,18px 18px}
  .bqm-hero__stage{min-height:210px}
  .bqm-floating-card{width:calc(100% - 48px);max-width:none}
  .bqm-floating-card strong{font-size:17px}
  .bqm-floating-card--primary{top:16px;left:10px;transform:translateZ(0) rotateY(-10deg) rotateX(8deg)}
  .bqm-floating-card--secondary{right:10px;bottom:48px;transform:translateZ(0) rotateY(10deg) rotateX(-6deg)}
  .bqm-floating-chip{left:12px;bottom:10px;padding:0 12px;min-height:40px;font-size:11px}
  .bqm-floating-chip--alt{top:12px;right:12px;left:auto}
}
@media (prefers-reduced-motion:reduce){
  .bqm-wrap::before,.bqm-wrap::after,.bqm-hero::before,.bqm-orb,.bqm-floating-card,.bqm-chip.is-active::after,.bqm-order::before,.bqm-fab::before{animation:none;transition:none}
  .bqm-reveal,.bqm-reveal.is-visible{opacity:1;transform:none}
}


/* v2.9.0 premium vitrins */
.bqm-hero{
  background:
    linear-gradient(120deg,rgba(215,25,32,.84),rgba(15,16,19,.56)),
    linear-gradient(180deg,rgba(255,255,255,.06),rgba(0,0,0,.38)),
    url('../images/hero-v290.jpg') center/cover no-repeat;
}
.bqm-stage-filmstrip{
  position:absolute;
  right:28px;
  top:50%;
  transform:translateY(-50%) translateZ(38px) rotateY(-12deg);
  display:grid;
  gap:10px;
  width:98px;
}
.bqm-stage-filmstrip img{
  width:98px;
  height:78px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 18px 36px rgba(0,0,0,.22);
}
.bqm-showcase{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin:0 0 18px;
}
.bqm-showcase-card{
  position:relative;
  min-height:112px;
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg,#17191e,#111317);
  box-shadow:0 16px 34px rgba(0,0,0,.22);
}
.bqm-showcase-card img{
  width:100%;
  height:100%;
  min-height:112px;
  object-fit:cover;
  display:block;
  transition:transform .45s ease,filter .45s ease;
}
.bqm-showcase-card::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,0) 12%,rgba(0,0,0,.72) 100%);
}
.bqm-showcase-card span{
  position:absolute;
  left:14px;
  right:14px;
  bottom:12px;
  z-index:1;
  color:#fff;
  font-weight:800;
  font-size:15px;
  line-height:1.15;
  letter-spacing:-.01em;
}
.bqm-showcase-card:hover img{transform:scale(1.05);filter:saturate(1.08) contrast(1.04)}
.bqm-product__media img{background:#111}
.bqm-product__media::before{
  content:'';
  position:absolute;
  inset:auto 12px 12px auto;
  width:48px;height:48px;border-radius:16px;
  background:linear-gradient(180deg,rgba(255,255,255,.14),rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(10px);
  box-shadow:0 16px 30px rgba(0,0,0,.24);
  z-index:1;
}
.bqm-product__media::before{mask: radial-gradient(circle at 40% 40%, transparent 8px, black 9px)}
@media (max-width:980px){
  .bqm-stage-filmstrip{display:none}
}
@media (max-width:640px){
  .bqm-showcase{grid-template-columns:1fr;gap:10px}
  .bqm-showcase-card{min-height:92px;border-radius:18px}
  .bqm-showcase-card img{min-height:92px}
}


.bqm-service-dot{display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;background:rgba(255,255,255,.14);font-size:12px;font-weight:700;color:#fff}
.bqm-service-dot.is-open{background:rgba(32,191,107,.16);color:#dff8e8;border:1px solid rgba(32,191,107,.28)}
.bqm-service-dot.is-paused{background:rgba(215,25,32,.18);color:#ffe5e7;border:1px solid rgba(215,25,32,.28)}
.bqm-service-banner{margin:0 0 18px;background:linear-gradient(135deg,#5a1115,#2f1013);border:1px solid rgba(255,255,255,.08);color:#fff;padding:14px 16px;border-radius:18px;box-shadow:var(--bqm-shadow)}
.bqm-search-row{margin:0 0 18px}
.bqm-search{width:100%;background:#17191e;border:1px solid var(--bqm-line);border-radius:16px;padding:14px 16px;color:#fff;font:inherit;box-shadow:var(--bqm-shadow)}
.bqm-search::placeholder{color:#99a3af}
.bqm-badge--gold{background:rgba(243,190,41,.16);color:#ffe6a6}
.bqm-badge--dark{background:rgba(255,110,64,.14);color:#ffd7cc}
.bqm-badge--soft{background:rgba(255,255,255,.08);color:#fff}
.bqm-note-inline{margin-top:12px;padding:10px 12px;border-radius:14px;background:#13161a;border:1px solid var(--bqm-line);color:#e6eaef;font-size:13px}
.bqm-product.is-hidden{display:none}


/* v3.0.1 package-a stabilization */
body,
.bqm-wrap{
  overflow-x:hidden;
}
.bqm-hero__content,
.bqm-shell{
  width:min(100%, 1180px);
}
.bqm-kicker,
.bqm-category-card__meta,
.bqm-category-top__meta,
.bqm-service-dot,
.bqm-badge,
.bqm-chip,
.bqm-price__label,
.bqm-unavailable,
.bqm-note-inline,
.bqm-empty,
.bqm-service-banner,
.bqm-table-badge,
.bqm-footer-note{
  overflow-wrap:anywhere;
}
.bqm-hero p,
.bqm-note,
.bqm-category-top p,
.bqm-footer-note,
.bqm-service-banner,
.bqm-empty{
  line-height:1.6;
}
.bqm-note{
  max-width:min(100%, 760px);
}
.bqm-category-grid{
  align-items:stretch;
}
.bqm-category-card{
  min-height:clamp(168px, 24vw, 212px);
}
.bqm-category-card__label{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  max-width:none;
  text-wrap:balance;
}
.bqm-category-card__desc{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  overflow:hidden;
}
.bqm-section-head,
.bqm-category-top,
.bqm-product,
.bqm-price,
.bqm-note-inline,
.bqm-search,
.bqm-service-banner,
.bqm-empty{
  box-sizing:border-box;
}
.bqm-search-row{
  position:relative;
}
.bqm-search{
  min-height:52px;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.bqm-search:focus{
  outline:none;
  border-color:rgba(215,25,32,.5);
  box-shadow:0 0 0 4px rgba(215,25,32,.12), var(--bqm-shadow);
}
.bqm-service-banner.is-soft{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  color:#f5f7fa;
}
.bqm-empty{
  padding:18px 20px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}
.bqm-empty--panel{
  margin:0 0 18px;
}
.bqm-empty-search{
  margin-top:14px;
}
.bqm-product{
  grid-template-columns:minmax(132px, 156px) minmax(0, 1fr);
}
.bqm-product__media{
  aspect-ratio:4/5;
}
.bqm-product__media img{
  aspect-ratio:4/5;
}
.bqm-product__body{
  min-width:0;
}
.bqm-product__topline{
  align-items:flex-start;
}
.bqm-product__topline h3{
  flex:1 1 240px;
  min-width:0;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  text-wrap:balance;
}
.bqm-product__desc{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  overflow:hidden;
}
.bqm-note-inline{
  line-height:1.5;
}
.bqm-prices{
  grid-template-columns:repeat(auto-fit, minmax(148px, 1fr));
}
.bqm-price{
  min-height:86px;
}
.bqm-price strong{
  display:block;
  word-break:keep-all;
}
.bqm-product__actions{
  align-items:stretch;
}
.bqm-order,
.bqm-unavailable{
  min-height:48px;
  width:100%;
  justify-content:center;
  text-align:center;
}
.bqm-unavailable{
  display:inline-flex;
  align-items:center;
  padding:0 14px;
  border-radius:15px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}
@media (max-width: 860px){
  .bqm-hero__content{
    padding-top:36px;
    padding-bottom:28px;
  }
  .bqm-meta{
    gap:8px;
  }
  .bqm-category-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px){
  .bqm-shell{
    padding:18px 14px 90px;
  }
  .bqm-hero__content{
    padding:28px 14px 24px;
  }
  .bqm-note,
  .bqm-table-badge,
  .bqm-service-banner,
  .bqm-empty,
  .bqm-search,
  .bqm-category-top{
    border-radius:18px;
  }
  .bqm-section-head h2,
  .bqm-category-top h2{
    text-wrap:balance;
  }
  .bqm-category-grid{
    grid-template-columns:1fr;
  }
  .bqm-category-card{
    min-height:148px;
    padding:18px;
  }
  .bqm-product{
    grid-template-columns:1fr;
  }
  .bqm-product__media,
  .bqm-product__media img{
    aspect-ratio:16/10;
  }
  .bqm-product__body{
    padding:16px;
  }
  .bqm-product__topline{
    gap:8px;
  }
  .bqm-product__topline h3{
    flex-basis:100%;
    font-size:clamp(20px, 6vw, 24px);
  }
  .bqm-prices{
    grid-template-columns:1fr;
  }
  .bqm-chip-row{
    padding-top:8px;
    padding-bottom:10px;
  }
  .bqm-chip{
    min-height:40px;
    align-items:center;
  }
  .bqm-fab{
    left:14px;
    right:14px;
    bottom:14px;
    width:auto;
  }
}
@media (prefers-reduced-motion: reduce){
  .bqm-search{
    transition:none;
  }
}


/* v3.0.3 sales conversion layer */
.bqm-section-head--split{margin-top:28px}
.bqm-featured-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}
.bqm-featured-card{
  display:grid;
  grid-template-columns:132px minmax(0,1fr);
  gap:0;
  text-decoration:none;
  color:var(--bqm-text);
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(180deg,#171a20,#101216);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--bqm-shadow);
}
.bqm-featured-card__media{min-height:100%;background:#20242b}
.bqm-featured-card__media img{display:block;width:100%;height:100%;object-fit:cover}
.bqm-featured-card__media.is-placeholder{display:grid;place-items:center;background:linear-gradient(135deg,#d71920,#6b0f14);color:#fff}
.bqm-featured-card__media.is-placeholder span{font-size:38px;font-weight:800}
.bqm-featured-card__body{padding:16px 18px;display:flex;flex-direction:column;gap:8px}
.bqm-featured-card__top{display:flex;align-items:flex-start;justify-content:space-between;gap:8px}
.bqm-featured-card__top strong{font-size:21px;line-height:1.08;letter-spacing:-.02em}
.bqm-featured-card__meta{color:#ffd8da;font-weight:700;font-size:14px}
.bqm-featured-card__body p{margin:0;color:var(--bqm-muted);line-height:1.5}

.bqm-toolbar{display:grid;gap:12px;margin:0 0 14px}
.bqm-filter-row{display:flex;gap:10px;flex-wrap:wrap}
.bqm-filter{
  appearance:none;border:1px solid var(--bqm-line);background:#17191e;color:#f5f7fa;
  border-radius:999px;padding:10px 14px;font-weight:700;font-size:14px;cursor:pointer;
}
.bqm-filter.is-active{background:var(--bqm-red);border-color:var(--bqm-red);color:#fff}

.bqm-order-builder{
  margin-top:18px;
  padding:16px;
  border-radius:18px;
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.01));
  border:1px solid rgba(255,255,255,.07);
}
.bqm-portion-picker{display:flex;gap:10px;flex-wrap:wrap}
.bqm-portion{
  appearance:none;border:1px solid var(--bqm-line);background:#17191e;color:#fff;
  border-radius:16px;padding:12px 14px;display:flex;align-items:center;justify-content:space-between;
  gap:14px;min-width:148px;font-weight:700;cursor:pointer;
}
.bqm-portion span{color:var(--bqm-muted);font-size:12px;text-transform:uppercase;letter-spacing:.04em}
.bqm-portion strong{font-size:18px;line-height:1}
.bqm-portion.is-active{border-color:rgba(215,25,32,.7);background:linear-gradient(180deg,rgba(215,25,32,.22),rgba(215,25,32,.10));box-shadow:0 12px 28px rgba(215,25,32,.14)}
.bqm-portion-picker.is-single .bqm-portion{cursor:default}
.bqm-order-inline{display:grid;grid-template-columns:auto minmax(0,1fr);gap:12px;align-items:stretch;margin-top:14px}
.bqm-qty{display:inline-grid;grid-template-columns:44px 70px 44px;border:1px solid var(--bqm-line);border-radius:16px;overflow:hidden;background:#121418}
.bqm-qty__btn,.bqm-qty__input{appearance:none;border:0;background:transparent;color:#fff;text-align:center}
.bqm-qty__btn{font-size:22px;font-weight:700;cursor:pointer}
.bqm-qty__input{width:100%;font-size:18px;font-weight:800;padding:0 8px}
.bqm-note-field{display:grid;gap:6px}
.bqm-note-field span{font-size:12px;font-weight:700;color:var(--bqm-muted);text-transform:uppercase;letter-spacing:.05em}
.bqm-order-note{
  width:100%;min-height:46px;border-radius:16px;border:1px solid var(--bqm-line);background:#121418;color:#fff;
  padding:0 14px;font-size:14px
}
.bqm-order-preview{color:#cfd5dd;font-size:13px;font-weight:700}

.bqm-product.is-hidden{display:none}

@media (max-width:860px){
  .bqm-featured-grid{grid-template-columns:1fr}
  .bqm-order-inline{grid-template-columns:1fr}
}
@media (max-width:640px){
  .bqm-filter-row{flex-wrap:nowrap;overflow:auto;padding-bottom:4px}
  .bqm-filter-row::-webkit-scrollbar{display:none}
  .bqm-featured-card{grid-template-columns:1fr}
  .bqm-featured-card__media{aspect-ratio:16/9}
  .bqm-portion-picker{display:grid;grid-template-columns:1fr}
  .bqm-portion{width:100%}
  .bqm-order-builder{padding:14px}
  .bqm-order-preview{display:block;width:100%}
}

/* v3.0.4 package-d premium polish */
.bqm-wrap{
  position:relative;
  isolation:isolate;
}
.bqm-wrap::before,
.bqm-wrap::after{
  content:'';
  position:fixed;
  inset:auto;
  width:44vw;
  height:44vw;
  pointer-events:none;
  z-index:0;
  filter:blur(42px);
  opacity:.18;
}
.bqm-wrap::before{
  top:8vh;
  right:-12vw;
  background:radial-gradient(circle,rgba(215,25,32,.28),transparent 68%);
}
.bqm-wrap::after{
  bottom:10vh;
  left:-16vw;
  background:radial-gradient(circle,rgba(255,255,255,.09),transparent 65%);
}
.bqm-shell,.bqm-hero{position:relative;z-index:1}

.bqm-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 10px;
  color:#ffd6d8;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.bqm-eyebrow::before{
  content:'';
  width:24px;
  height:1px;
  background:linear-gradient(90deg,rgba(255,255,255,.16),rgba(215,25,32,.88));
}

.bqm-hero{
  overflow:hidden;
}
.bqm-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(130deg,rgba(255,255,255,.06),transparent 36%),
    radial-gradient(circle at 84% 18%,rgba(255,255,255,.18),transparent 18%),
    radial-gradient(circle at 18% 20%,rgba(255,255,255,.10),transparent 22%);
  pointer-events:none;
}
.bqm-hero__content{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(300px,.96fr);
  align-items:center;
  gap:28px;
}
.bqm-hero__copy{min-width:0}
.bqm-note{
  box-shadow:0 18px 34px rgba(0,0,0,.16);
}
.bqm-hero__stats{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin-top:18px;
}
.bqm-hero-stat{
  padding:14px 14px 13px;
  border-radius:18px;
  background:linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
  box-shadow:0 18px 32px rgba(0,0,0,.14);
}
.bqm-hero-stat span{
  display:block;
  color:#ffe5e7;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:800;
}
.bqm-hero-stat strong{
  display:block;
  margin-top:6px;
  font-size:22px;
  line-height:1;
  color:#fff;
}
.bqm-hero__actions{margin-top:18px}
.bqm-hero__stage{
  position:relative;
  min-height:420px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg,rgba(0,0,0,.10),rgba(0,0,0,.26));
  box-shadow:0 34px 60px rgba(0,0,0,.24);
  overflow:hidden;
}
.bqm-hero__stage::before{
  content:'';
  position:absolute;
  inset:18px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  pointer-events:none;
}
.bqm-stage-badge{
  position:absolute;
  top:22px;
  right:24px;
  z-index:2;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(12,13,16,.54);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  backdrop-filter:blur(10px);
}
.bqm-stage-filmstrip{
  box-shadow:0 24px 48px rgba(0,0,0,.30);
}
.bqm-stage-tags{
  position:absolute;
  left:24px;
  right:24px;
  bottom:82px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  z-index:2;
}
.bqm-stage-tags span{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(12,13,16,.48);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  font-size:12px;
  font-weight:700;
  backdrop-filter:blur(10px);
}

.bqm-section-head,
.bqm-category-top{
  position:relative;
}
.bqm-category-top{
  padding:20px 22px;
  border-radius:24px;
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--bqm-shadow);
}
.bqm-category-top__meta{
  color:#ffe3e5;
  font-weight:800;
}
.bqm-insight-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:14px 0 12px;
}
.bqm-insight-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#f0f3f6;
  font-size:13px;
  font-weight:700;
}
.bqm-insight-pill strong{font-size:14px;color:#fff}

.bqm-category-card,
.bqm-featured-card,
.bqm-product,
.bqm-showcase-card{
  position:relative;
}
.bqm-category-card::before,
.bqm-featured-card::before,
.bqm-product::before,
.bqm-showcase-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(130deg,rgba(255,255,255,.06),transparent 28%,transparent 72%,rgba(255,255,255,.03));
  opacity:.9;
  pointer-events:none;
}
.bqm-category-card::after,
.bqm-featured-card::after,
.bqm-product::after{
  content:'';
  position:absolute;
  inset:1px;
  border-radius:inherit;
  border:1px solid rgba(255,255,255,.03);
  pointer-events:none;
}
.bqm-category-card__meta{
  display:inline-flex;
  align-items:center;
  width:max-content;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(12,13,16,.42);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:none;
}

.bqm-featured-card{
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.bqm-featured-card:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.14);
  box-shadow:0 30px 52px rgba(0,0,0,.28);
}
.bqm-featured-card__top{
  gap:12px;
}
.bqm-featured-card__index{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:38px;
  height:38px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(215,25,32,.12);
  color:#ffd4d6;
  border:1px solid rgba(215,25,32,.25);
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
}
.bqm-featured-card__top strong{flex:1}

.bqm-showcase{
  gap:14px;
}
.bqm-showcase-card{
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--bqm-shadow);
}
.bqm-showcase-card span{
  background:linear-gradient(180deg,transparent,rgba(9,10,12,.84));
  padding-top:24px;
}

.bqm-toolbar{
  padding:16px;
  border-radius:22px;
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--bqm-shadow);
}
.bqm-chip-row,
.bqm-filter-row{
  position:relative;
}
.bqm-chip-row.is-scrollable::before,
.bqm-chip-row.is-scrollable::after,
.bqm-filter-row.is-scrollable::before,
.bqm-filter-row.is-scrollable::after{
  content:'';
  position:absolute;
  top:0;
  bottom:0;
  width:28px;
  pointer-events:none;
  opacity:0;
  transition:opacity .18s ease;
}
.bqm-chip-row.is-scrollable::before,
.bqm-filter-row.is-scrollable::before{
  left:0;
  background:linear-gradient(90deg,rgba(11,12,14,.98),rgba(11,12,14,0));
}
.bqm-chip-row.is-scrollable::after,
.bqm-filter-row.is-scrollable::after{
  right:0;
  background:linear-gradient(270deg,rgba(11,12,14,.98),rgba(11,12,14,0));
}
.bqm-chip-row.is-left::before,
.bqm-filter-row.is-left::before{opacity:1}
.bqm-chip-row.is-right::after,
.bqm-filter-row.is-right::after{opacity:1}

.bqm-product{
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.bqm-product:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.14);
  box-shadow:0 30px 54px rgba(0,0,0,.28);
}
.bqm-product__body{position:relative;z-index:1}
.bqm-product__meta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.bqm-product__meta-pill{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#dde3ea;
  font-size:12px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.bqm-product__meta-pill.is-strong{
  background:rgba(215,25,32,.10);
  border-color:rgba(215,25,32,.22);
  color:#ffd6d9;
}
.bqm-order-builder{
  border-radius:20px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}
.bqm-order-preview{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 12px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
}

@media (max-width:980px){
  .bqm-hero__content{grid-template-columns:1fr}
  .bqm-hero__stage{min-height:360px}
}
@media (max-width:860px){
  .bqm-hero__stats{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:640px){
  .bqm-wrap::before,.bqm-wrap::after{display:none}
  .bqm-hero__stage{min-height:320px;border-radius:24px}
  .bqm-stage-badge{top:16px;right:16px}
  .bqm-stage-tags{left:16px;right:16px;bottom:70px}
  .bqm-stage-tags span{font-size:11px}
  .bqm-category-top{padding:18px}
  .bqm-toolbar{padding:14px}
  .bqm-product__meta-row{gap:8px}
  .bqm-product__meta-pill{font-size:11px;letter-spacing:.05em}
}


/* v3.1.0 final cleanup */
*,*::before,*::after{box-sizing:border-box}
.bqm-wrap,.bqm-shell,.bqm-hero__content,.bqm-hero__copy,.bqm-hero__stage,.bqm-product,.bqm-product__body,.bqm-featured-card,.bqm-featured-card__body,.bqm-category-card,.bqm-toolbar,.bqm-order-inline{min-width:0}
.bqm-section-head p,.bqm-eyebrow,.bqm-stage-badge,.bqm-floating-chip,.bqm-category-banner__inner span,.bqm-category-banner__inner small{display:none!important}
.bqm-hero__content{grid-template-columns:minmax(0,1.08fr) minmax(280px,.92fr);gap:clamp(18px,2.8vw,30px)}
.bqm-hero__copy{max-width:700px}
.bqm-hero__stage{min-height:clamp(300px,34vw,400px);max-width:100%}
.bqm-hero__stats{grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}
.bqm-hero-stat{min-width:0;padding:12px 13px}
.bqm-hero-stat strong{font-size:clamp(18px,2.4vw,22px)}
.bqm-hero__actions{gap:8px}
.bqm-hero__button,.bqm-hero__ghost{min-height:44px}
.bqm-grid-glow{inset:18px}
.bqm-floating-card{width:min(70%,236px);padding:14px 16px}
.bqm-floating-card strong{margin-top:0;font-size:clamp(16px,2vw,19px)}
.bqm-stage-filmstrip{right:18px;width:88px}
.bqm-stage-filmstrip img{width:88px;height:72px;border-radius:16px}
.bqm-section-head{margin-bottom:14px}
.bqm-section-head h2,.bqm-category-top h2{margin-bottom:0;text-wrap:balance}
.bqm-category-banner__inner{gap:0;min-height:148px;justify-content:flex-end}
.bqm-category-banner__inner strong{max-width:14ch;text-wrap:balance}
.bqm-showcase{grid-template-columns:repeat(3,minmax(0,1fr))}
.bqm-showcase-card span{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}
.bqm-toolbar{padding:14px;gap:10px}
.bqm-filter-row,.bqm-chip-row{gap:8px}
.bqm-filter,.bqm-chip{min-height:42px}
.bqm-product__meta-row{margin-bottom:8px}
.bqm-product__meta-pill{max-width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.bqm-order-builder{padding:14px}
.bqm-note-field span{font-size:11px}
.bqm-order-note{min-height:44px}
.bqm-fab{min-height:52px;font-size:15px}
@media (max-width:1100px){.bqm-hero__content{grid-template-columns:minmax(0,1fr) minmax(260px,.88fr)}.bqm-hero__stage{min-height:360px}}
@media (max-width:980px){.bqm-hero__content{grid-template-columns:1fr}.bqm-hero__stage{order:-1;min-height:320px;width:min(100%,620px);margin:0 auto 2px}.bqm-hero__copy{max-width:none}}
@media (max-width:860px){.bqm-hero__stats{grid-template-columns:repeat(2,minmax(0,1fr))}.bqm-showcase{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:640px){.bqm-shell{padding:16px 12px 88px}.bqm-hero__content{gap:16px}.bqm-hero__stage{min-height:250px;border-radius:22px}.bqm-grid-glow{inset:12px;border-radius:18px}.bqm-floating-card{width:min(76%,206px);border-radius:18px;padding:12px 14px}.bqm-floating-card--primary{top:14px;left:12px}.bqm-floating-card--secondary{right:12px;bottom:18px}.bqm-stage-filmstrip{right:12px;top:16px;transform:none;width:74px;gap:8px}.bqm-stage-filmstrip img{width:74px;height:58px;border-radius:14px}.bqm-hero h1{font-size:clamp(26px,8vw,36px)}.bqm-hero p{font-size:14px}.bqm-meta{gap:8px}.bqm-note{padding:10px 12px;font-size:13px}.bqm-hero-stat{padding:11px 12px}.bqm-hero-stat span{font-size:10px}.bqm-category-card{min-height:142px}.bqm-category-card__label{font-size:22px}.bqm-featured-card__body{padding:14px}.bqm-featured-card__top strong{font-size:18px}.bqm-showcase{grid-template-columns:1fr}.bqm-showcase-card{min-height:88px}.bqm-showcase-card img{min-height:88px}.bqm-toolbar{padding:12px}.bqm-filter,.bqm-chip{min-height:40px;padding-inline:12px}.bqm-order-builder{padding:12px}}


/* v3.2.0 final ai visuals and scaling pass */
.bqm-hero__stage,.bqm-category-banner,.bqm-category-card,.bqm-featured-card__media,.bqm-product__media,.bqm-showcase-card{overflow:hidden}
.bqm-category-card__label,.bqm-featured-card__top strong,.bqm-product__topline h3{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden;text-wrap:balance}
.bqm-category-card__label{-webkit-line-clamp:2}
.bqm-featured-card__top strong,.bqm-product__topline h3{-webkit-line-clamp:2}
.bqm-product__topline h3{font-size:clamp(20px,2.3vw,24px)}
.bqm-product__media,.bqm-featured-card__media{aspect-ratio:4/3}
.bqm-product__media img,.bqm-featured-card__media img,.bqm-showcase-card img{width:100%;height:100%;object-fit:cover;display:block}
.bqm-stage-filmstrip img{object-fit:cover}
.bqm-category-banner{background-position:center;background-size:cover}
.bqm-chip-row,.bqm-filter-row{-webkit-overflow-scrolling:touch;scrollbar-width:none}
.bqm-chip-row::-webkit-scrollbar,.bqm-filter-row::-webkit-scrollbar{display:none}
.bqm-order-inline{align-items:stretch}
.bqm-note-field,.bqm-qty{min-height:44px}
@media (max-width:640px){.bqm-product{grid-template-columns:118px minmax(0,1fr)}.bqm-product__body{padding:14px 14px 14px 0}.bqm-featured-card__media{aspect-ratio:16/10}.bqm-category-card__label{font-size:20px}}


/* v3.2.1 live polish patch */
.bqm-service-banner.is-soft{
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
  color:#f4f6f8;
}
.bqm-category-top__summary{
  margin:12px 0 4px;
  color:var(--bqm-muted);
  font-size:14px;
  font-weight:700;
}
.bqm-product__media a,
.bqm-showcase-card a,
.bqm-product__media img,
.bqm-showcase-card img{
  -webkit-user-drag:none;
}
.bqm-product__meta-row{
  margin-bottom:8px;
}
.bqm-product__meta-pill.is-strong{
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.bqm-unavailable{
  background:#22181a;
}
@media (max-width:640px){
  .bqm-hero__stats{grid-template-columns:repeat(2,minmax(0,1fr))}
}

/* v3.3.0 cart layer */
.bqm-product__actions--cart{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:10px;
  align-items:center;
}
.bqm-product__actions--cart .bqm-order-preview{
  grid-column:1 / -1;
}
.bqm-add-cart{
  min-height:46px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
  color:#fff;
  font-weight:800;
  cursor:pointer;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}
.bqm-add-cart:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.18);
}
.bqm-add-cart.is-added{
  background:linear-gradient(180deg,rgba(39,174,96,.28),rgba(39,174,96,.14));
  border-color:rgba(39,174,96,.42);
}
.bqm-cart-fab{
  position:fixed;
  right:18px;
  bottom:82px;
  z-index:41;
  display:flex;
  align-items:center;
  gap:12px;
  min-height:62px;
  padding:12px 14px;
  border:none;
  border-radius:18px;
  background:linear-gradient(180deg,#d71920,#a80f15);
  color:#fff;
  box-shadow:0 22px 48px rgba(0,0,0,.34);
  cursor:pointer;
}
.bqm-cart-fab__icon{font-size:20px;line-height:1}
.bqm-cart-fab__content{display:flex;flex-direction:column;align-items:flex-start;gap:2px}
.bqm-cart-fab__content small{font-size:11px;letter-spacing:.08em;text-transform:uppercase;opacity:.84}
.bqm-cart-fab__content strong{font-size:15px;line-height:1.1}
.bqm-cart-fab__count{
  min-width:28px;
  height:28px;
  padding:0 8px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#fff;
  color:#101216;
  font-size:12px;
  font-weight:900;
}
.bqm-cart-fab__count[hidden]{display:none}
.bqm-cart-overlay{
  position:fixed;
  inset:0;
  z-index:44;
  background:rgba(6,4,3,.68);
  backdrop-filter:blur(5px);
}
.bqm-cart{
  position:fixed;
  top:0;
  right:0;
  width:min(440px,100vw);
  height:100dvh;
  max-height:100dvh;
  z-index:45;
  display:flex;
  flex-direction:column;
  background:
    linear-gradient(180deg,rgba(19,13,9,.98),rgba(10,8,6,.98)),
    url('../images/hero-top.jpg') center/cover no-repeat;
  border-left:1px solid rgba(255,220,176,.12);
  box-shadow:-24px 0 54px rgba(0,0,0,.32);
  transform:translateX(104%);
  transition:transform .22s ease;
  overscroll-behavior:contain;
}
.bqm-cart.is-open{transform:translateX(0)}
.bqm-cart__header,
.bqm-cart__footer{
  padding:18px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.bqm-cart__footer{
  margin-top:auto;
  flex:0 0 auto;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:none;
  background:rgba(0,0,0,.24);
  backdrop-filter:blur(10px);
}
.bqm-cart__header{display:flex;align-items:flex-start;justify-content:space-between;gap:14px}
.bqm-cart__header strong{display:block;font-size:24px;line-height:1.1}
.bqm-cart__header p{margin:8px 0 0;color:var(--bqm-muted);font-size:14px}
.bqm-cart__close{
  min-width:42px;height:42px;border-radius:12px;border:1px solid rgba(255,255,255,.1);background:transparent;color:#fff;font-size:28px;line-height:1;cursor:pointer;
}
.bqm-cart__body{
  flex:1 1 auto;
  min-height:0;
  padding:14px 18px 18px;
  overflow-y:auto;
  overflow-x:hidden;
  display:grid;
  align-content:start;
  gap:12px;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior:contain;
  touch-action:pan-y;
}
.bqm-cart__list{display:grid;gap:12px}
.bqm-cart__empty{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.03);
  border:1px dashed rgba(255,255,255,.12);
  color:var(--bqm-muted);
}
.bqm-cart-item{
  display:grid;
  gap:12px;
  padding:14px;
  border-radius:18px;
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
}
.bqm-cart-item__meta{display:grid;gap:6px}
.bqm-cart-item__meta strong{font-size:17px;line-height:1.2}
.bqm-cart-item__meta span{color:#e9edf1;font-size:13px}
.bqm-cart-item__meta small{color:var(--bqm-muted);font-size:12px}
.bqm-cart-item__controls{display:flex;align-items:center;justify-content:space-between;gap:12px}
.bqm-cart-item__qty{display:inline-flex;align-items:center;gap:10px;padding:8px 10px;border-radius:999px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08)}
.bqm-cart-item__qty button{width:30px;height:30px;border:none;border-radius:999px;background:rgba(215,25,32,.16);color:#fff;font-size:20px;line-height:1;cursor:pointer}
.bqm-cart-item__qty span{min-width:20px;text-align:center;font-weight:800}
.bqm-cart-item__remove{border:none;background:transparent;color:#ffd5d8;font-weight:700;cursor:pointer}
.bqm-cart__summary{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-bottom:14px}
.bqm-cart__summary span{display:grid;gap:4px;padding:12px 14px;border-radius:16px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.08)}
.bqm-cart__summary small{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--bqm-muted)}
.bqm-cart__summary strong{font-size:18px;line-height:1.15}
.bqm-cart__actions{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:10px}
.bqm-cart__ghost,
.bqm-cart__send{
  min-height:48px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:800;
  text-decoration:none;
}
.bqm-cart__ghost{border:1px solid rgba(255,255,255,.10);background:transparent;color:#fff;cursor:pointer}
.bqm-cart__send{border:1px solid rgba(215,25,32,.32);background:linear-gradient(180deg,#d71920,#a80f15);color:#fff}
.bqm-cart__send.is-disabled{opacity:.55;cursor:not-allowed;filter:saturate(.72)}
body.bqm-cart-open,
html.bqm-cart-open{
  overflow:hidden;
}
.bqm-cart__send.is-disabled:hover{transform:none;box-shadow:none}
.bqm-cart__actions > *{min-height:52px}
@media (max-width:640px){
  .bqm-cart-fab{right:12px;left:12px;bottom:72px;justify-content:space-between}
  .bqm-fab{bottom:12px;left:12px;right:12px;width:auto;justify-content:center}
  .bqm-cart{
    width:100vw;
    height:100dvh;
    max-height:100dvh;
    padding-bottom:max(0px, env(safe-area-inset-bottom));
  }
  .bqm-cart__actions,.bqm-product__actions--cart{grid-template-columns:1fr}
}

/* v3.4.0 cart flow expansion */
.bqm-cart__eyebrow{
  display:block;
  margin:0 0 8px;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--bqm-muted);
}
.bqm-cart__service{display:grid;gap:10px;margin-bottom:14px}
.bqm-cart__service-options{display:flex;flex-wrap:wrap;gap:8px}
.bqm-cart__service-option{
  min-height:42px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  color:#fff;
  font-weight:700;
  cursor:pointer;
}
.bqm-cart__service-option.is-active{
  background:linear-gradient(180deg,rgba(215,25,32,.26),rgba(215,25,32,.12));
  border-color:rgba(215,25,32,.42);
}
.bqm-cart__note{display:grid;gap:8px;margin-bottom:14px}
.bqm-cart__note textarea{
  width:100%;
  min-height:88px;
  resize:vertical;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  color:#fff;
  padding:12px 14px;
}
.bqm-cart__note textarea::placeholder{color:rgba(255,255,255,.42)}
.bqm-cart__hint{
  margin:0 0 14px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  color:#e9edf1;
}
.bqm-cart__notice{
  margin:0 0 14px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(215,25,32,.12);
  border:1px solid rgba(215,25,32,.28);
  color:#ffdfe2;
  font-weight:700;
}


/* v3.5.0 customer info + working hours */
.bqm-cart__customer-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin:0 0 14px;
}
.bqm-cart__field,
.bqm-cart__address{
  display:grid;
  gap:8px;
}
.bqm-cart__field input,
.bqm-cart__address textarea{
  width:100%;
  min-height:48px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  color:#fff;
  padding:12px 14px;
}
.bqm-cart__address textarea{
  min-height:92px;
  resize:vertical;
}
.bqm-cart__field input::placeholder,
.bqm-cart__address textarea::placeholder{
  color:rgba(255,255,255,.42);
}
.bqm-cart__micro{
  color:var(--bqm-muted);
  font-size:12px;
  line-height:1.45;
}
@media (max-width:640px){
  .bqm-cart__customer-grid{
    grid-template-columns:1fr;
  }
}


/* v3.6.0 delivery zones + waiter call */
.bqm-cart__hint--soft{background:rgba(34,197,94,.08);border-color:rgba(34,197,94,.22);color:#eafff2}
.bqm-cart__zone.is-hidden{display:none}
.bqm-cart__field select{
  width:100%;
  min-height:48px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  color:#fff;
  padding:12px 14px;
}
.bqm-cart__field select option{color:#0f1419;background:#fff}
.bqm-cart__totals{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin:0 0 14px;
}
.bqm-cart__totals span{
  display:grid;
  gap:4px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}
.bqm-cart__totals small{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--bqm-muted)}
.bqm-cart__totals strong{font-size:17px;line-height:1.15}
.bqm-waiter-fab{
  position:fixed;
  right:18px;
  bottom:84px;
  z-index:29;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 16px;
  border-radius:999px;
  background:linear-gradient(180deg,#111827,#1f2937);
  color:#fff;
  text-decoration:none;
  font-weight:800;
  box-shadow:0 16px 32px rgba(0,0,0,.28),0 8px 18px rgba(15,23,42,.22);
  border:1px solid rgba(255,255,255,.12);
}
.bqm-waiter-fab:hover{transform:translateY(-1px)}
@media (max-width:640px){
  .bqm-cart__totals{grid-template-columns:1fr}
  .bqm-waiter-fab{left:12px;right:12px;bottom:132px;width:auto}
}

/* v3.7.5 mobile polish */
@media (max-width: 640px){
  .bqm-hero__content{
    padding-top:28px;
    padding-bottom:24px;
  }
  .bqm-kicker{
    margin-bottom:10px;
  }
  .bqm-hero p,
  .bqm-section-head p,
  .bqm-category-top p,
  .bqm-footer-note{
    font-size:14px;
    line-height:1.55;
  }
  .bqm-meta{
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
    margin-top:14px;
  }
  .bqm-note,
  .bqm-table-badge{
    width:100%;
    box-sizing:border-box;
    justify-content:center;
    text-align:center;
  }
  .bqm-hero__actions{
    width:100%;
    display:grid;
    grid-template-columns:1fr;
  }
  .bqm-hero__button,
  .bqm-hero__ghost{
    width:100%;
  }
  .bqm-category-card{
    padding:16px;
  }
  .bqm-category-card__label{
    max-width:none;
    font-size:clamp(22px,7vw,28px);
  }
  .bqm-category-card__desc{
    font-size:13px;
    line-height:1.45;
  }
  .bqm-chip-row{
    margin-bottom:16px;
    padding-top:8px;
    padding-bottom:10px;
  }
  .bqm-chip{
    min-height:42px;
    padding:0 14px;
    align-items:center;
  }
  .bqm-product{
    gap:0;
  }
  .bqm-product__media{
    aspect-ratio:4/3;
  }
  .bqm-product__topline{
    gap:8px;
  }
  .bqm-product__topline h3{
    font-size:22px;
    line-height:1.12;
  }
  .bqm-product__body{
    padding:14px;
  }
  .bqm-prices,
  .bqm-product__actions,
  .bqm-product__actions--cart{
    grid-template-columns:1fr;
  }
  .bqm-order,
  .bqm-add-cart{
    width:100%;
    min-height:48px;
  }
  .bqm-order-preview{
    display:block;
    width:100%;
    line-height:1.45;
  }
  .bqm-cart-fab{
    bottom:70px;
    left:12px;
    right:12px;
    width:auto;
  }
  .bqm-cart{
    width:100vw;
    max-width:100vw;
    border-radius:24px 24px 0 0;
  }
  .bqm-cart__header,
  .bqm-cart__footer{
    padding-left:14px;
    padding-right:14px;
  }
  .bqm-cart__body{
    padding:12px 14px 16px;
  }
  .bqm-cart__header strong{
    font-size:22px;
  }
  .bqm-cart__list,
  .bqm-cart__service,
  .bqm-cart__note,
  .bqm-cart__customer-grid,
  .bqm-cart__summary,
  .bqm-cart__totals,
  .bqm-cart__actions{
    grid-template-columns:1fr;
  }
  .bqm-cart-item{
    grid-template-columns:1fr;
    gap:10px;
  }
  .bqm-cart-item__controls{
    flex-wrap:wrap;
    justify-content:flex-start;
  }
  .bqm-cart-item__remove{
    padding:0;
  }
  .bqm-cart__service-options{
    display:grid;
    grid-template-columns:1fr;
  }
  .bqm-cart__service-option{
    width:100%;
    justify-content:center;
    min-height:44px;
  }
  .bqm-cart__field input,
  .bqm-cart__field select,
  .bqm-cart__address textarea{
    min-height:46px;
    font-size:16px;
  }
  .bqm-cart__address textarea{
    min-height:112px;
  }
  .bqm-cart__ghost,
  .bqm-cart__send{
    min-height:48px;
  }
}


/* v3.7.6 cart usability polish */
.bqm-shell{
  padding-bottom:max(132px, calc(132px + env(safe-area-inset-bottom)));
}
.bqm-cart{
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
  padding-bottom:env(safe-area-inset-bottom);
}
.bqm-cart__header{
  position:sticky;
  top:0;
  z-index:3;
  backdrop-filter:blur(16px);
  background:linear-gradient(180deg,rgba(18,20,24,.96),rgba(18,20,24,.88));
}
.bqm-cart__footer{
  position:sticky;
  bottom:0;
  z-index:3;
  backdrop-filter:blur(16px);
  background:linear-gradient(180deg,rgba(16,18,22,.92),rgba(11,13,16,.98));
  padding-bottom:calc(18px + env(safe-area-inset-bottom));
}
.bqm-cart__body{
  padding-bottom:24px;
}
.bqm-cart__service-option,
.bqm-cart__ghost,
.bqm-cart__send,
.bqm-cart-item__qty button,
.bqm-cart__close{
  touch-action:manipulation;
}
.bqm-cart__field input:focus,
.bqm-cart__field select:focus,
.bqm-cart__address textarea:focus,
.bqm-cart__note textarea:focus{
  outline:none;
  border-color:rgba(255,255,255,.22);
  box-shadow:0 0 0 3px rgba(215,25,32,.16);
}
.bqm-cart__field input.is-invalid,
.bqm-cart__field select.is-invalid,
.bqm-cart__address textarea.is-invalid,
.bqm-cart__zone.is-invalid select{
  border-color:rgba(255,123,134,.88);
  box-shadow:0 0 0 3px rgba(215,25,32,.18);
}
.bqm-cart__service-options.is-invalid{
  padding:8px;
  border-radius:16px;
  border:1px solid rgba(255,123,134,.4);
  background:rgba(215,25,32,.08);
}
.bqm-cart__notice{
  line-height:1.5;
}
.bqm-cart__summary,
.bqm-cart__totals{
  align-items:stretch;
}
.bqm-cart__summary span,
.bqm-cart__totals span{
  min-height:72px;
}
.bqm-cart-item{
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}
.bqm-cart-item__remove{
  min-height:38px;
  padding:0 4px;
}
@media (max-width: 640px){
  .bqm-shell{
    padding-bottom:max(156px, calc(156px + env(safe-area-inset-bottom)));
  }
  .bqm-cart{
    top:auto;
    left:0;
    right:0;
    width:100vw;
    height:min(90vh, 860px);
    border-left:none;
    border-top:1px solid rgba(255,255,255,.08);
    border-radius:24px 24px 0 0;
    transform:translateY(104%);
  }
  .bqm-cart.is-open{
    transform:translateY(0);
  }
  .bqm-cart__header p{
    max-width:28ch;
  }
  .bqm-cart__body{
    padding:12px 14px 22px;
  }
  .bqm-cart__summary span,
  .bqm-cart__totals span{
    min-height:64px;
  }
  .bqm-cart__actions{
    gap:12px;
  }
  .bqm-cart__ghost,
  .bqm-cart__send{
    min-height:52px;
    font-size:15px;
  }
  .bqm-cart-fab{
    bottom:max(72px, calc(72px + env(safe-area-inset-bottom)));
    min-height:64px;
    border-radius:20px;
  }
  .bqm-waiter-fab{
    bottom:max(138px, calc(138px + env(safe-area-inset-bottom)));
  }
}


/* v3.7.7 hero compatibility polish */
.bqm-hero{
  background-position:center 62%;
}
.bqm-hero::after{
  background:
    radial-gradient(circle at top right,rgba(255,255,255,.14),transparent 34%),
    linear-gradient(180deg,rgba(0,0,0,.10),rgba(0,0,0,.22));
}
.bqm-hero__content{
  gap:24px;
  padding-top:40px;
  padding-bottom:30px;
}
.bqm-hero__copy{
  max-width:680px;
}
.bqm-hero p{
  max-width:620px;
}
.bqm-hero__stage{
  min-height:300px;
}
.bqm-grid-glow{
  opacity:.92;
}
@media (max-width:980px){
  .bqm-hero{
    background-position:center 66%;
  }
  .bqm-hero__content{
    gap:18px;
  }
  .bqm-hero__stage{
    min-height:220px;
  }
}
@media (max-width:640px){
  .bqm-hero{
    background-position:center 70%;
  }
  .bqm-hero__content{
    padding-top:28px;
    padding-bottom:24px;
  }
  .bqm-hero h1{
    font-size:clamp(26px,9.2vw,42px);
    line-height:1.04;
  }
  .bqm-hero p{
    font-size:15px;
  }
  .bqm-meta{
    gap:8px;
  }
  .bqm-note{
    width:100%;
    text-align:center;
  }
  .bqm-hero__stage{
    min-height:196px;
    margin-bottom:0;
  }
}


/* v3.7.9 cart precision + hero continuity */
.bqm-cart-overlay{cursor:pointer;}
body.bqm-cart-open{overflow:hidden;}
.bqm-cart__body{padding-bottom:max(22px, env(safe-area-inset-bottom));}
.bqm-cart__notice{scroll-margin-top:92px;}
.bqm-cart__footer{backdrop-filter:blur(10px);background:linear-gradient(180deg,rgba(18,20,24,.82),rgba(11,13,16,.96));}
@media (max-width:640px){
  .bqm-cart{height:100dvh;}
  .bqm-cart__header strong{font-size:22px;}
  .bqm-cart__body{padding-bottom:max(28px, env(safe-area-inset-bottom));}
  .bqm-cart__field input,
  .bqm-cart__field select,
  .bqm-cart__address textarea,
  .bqm-cart__note textarea{font-size:16px;}
  .bqm-cart-item__qty button{width:36px;height:36px;}
}


/* v3.8.0 hero background + cart visibility + clarity pass */
.bqm-hero{
  background:
    linear-gradient(120deg,rgba(215,25,32,.82),rgba(15,16,19,.54)),
    linear-gradient(180deg,rgba(255,255,255,.04),rgba(0,0,0,.34)),
    url('../images/hero-top.jpg') center/cover no-repeat !important;
}
.bqm-hero__content{grid-template-columns:minmax(0,1fr) minmax(320px,460px);align-items:center}
.bqm-hero__copy{max-width:640px}
.bqm-hero__stage{position:relative;min-height:clamp(280px,32vw,380px)!important;border-radius:28px;border:1px solid rgba(255,255,255,.10);box-shadow:0 28px 54px rgba(0,0,0,.30);background:linear-gradient(180deg,rgba(9,10,12,.08),rgba(9,10,12,.26)),url('../images/hero-v290.jpg') center/cover no-repeat!important;perspective:none!important;transform-style:flat!important;overflow:hidden}
.bqm-hero__stage::before{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(255,255,255,.04),transparent 24%,rgba(0,0,0,.18));}
.bqm-grid-glow,.bqm-orb,.bqm-floating-card,.bqm-floating-chip,.bqm-stage-tags,.bqm-stage-filmstrip,.bqm-hero__stats,.bqm-hero__ghost,.bqm-category-card__meta,.bqm-category-top__meta,.bqm-category-top__summary,.bqm-showcase{display:none!important}
.bqm-note{display:none!important}
.bqm-hero p{max-width:56ch}
.bqm-meta{margin-top:14px}
.bqm-section-head--split{margin-top:10px}
.bqm-featured-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.bqm-featured-card{grid-template-columns:108px minmax(0,1fr);min-height:108px;border-radius:20px}
.bqm-featured-card__media{aspect-ratio:1/1;min-height:108px}
.bqm-featured-card__body{padding:12px 14px;gap:6px}
.bqm-featured-card__top{gap:6px}
.bqm-featured-card__top strong{font-size:18px;line-height:1.12}
.bqm-featured-card__index{font-size:11px;padding:5px 7px}
.bqm-featured-card__meta{font-size:13px}
.bqm-featured-card__body p{display:none!important}
.bqm-product{grid-template-columns:172px minmax(0,1fr)}
.bqm-product__media{background:#0f1114;aspect-ratio:4/3}
.bqm-product__media::after{display:none!important}
.bqm-product__media img,.bqm-featured-card__media img,.bqm-showcase-card img{image-rendering:auto;-webkit-user-drag:none}
.bqm-product:hover .bqm-product__media img{transform:none!important;filter:none!important}
.bqm-product__topline h3{font-size:clamp(19px,2vw,22px)}
.bqm-product__body p{color:#c8ced6}
.bqm-fab{display:none!important}
.bqm-cart-fab{display:flex!important;right:16px;bottom:max(16px,calc(16px + env(safe-area-inset-bottom)));left:auto;z-index:80;min-width:220px;border:1px solid rgba(255,255,255,.14);box-shadow:0 24px 54px rgba(0,0,0,.36),0 12px 24px rgba(215,25,32,.18)}
.bqm-waiter-fab{bottom:max(88px,calc(88px + env(safe-area-inset-bottom)))}
.bqm-shell{padding-bottom:max(118px,calc(118px + env(safe-area-inset-bottom)))}
@media (max-width:980px){.bqm-hero__content{grid-template-columns:1fr;gap:14px}.bqm-hero__stage{order:-1;width:min(100%,700px);margin:0 auto}.bqm-featured-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:640px){.bqm-shell{padding:14px 12px 108px}.bqm-hero__content{gap:14px}.bqm-hero__stage{min-height:220px!important;border-radius:22px}.bqm-product{grid-template-columns:1fr!important}.bqm-product__media{aspect-ratio:4/3}.bqm-product__body{padding:14px!important}.bqm-featured-grid{grid-template-columns:1fr;gap:10px}.bqm-featured-card{grid-template-columns:92px minmax(0,1fr);min-height:92px}.bqm-featured-card__media{min-height:92px}.bqm-featured-card__top strong{font-size:16px}.bqm-cart-fab{left:12px;right:12px;bottom:max(12px,calc(12px + env(safe-area-inset-bottom)));width:auto;justify-content:space-between;min-width:0}.bqm-waiter-fab{bottom:max(84px,calc(84px + env(safe-area-inset-bottom)))}}


/* v3.8.1 cart visibility + featured balance + image clarity */
.bqm-cart-fab[hidden]{display:flex!important}
.bqm-cart-fab{
  min-height:68px;
  padding:14px 16px;
  border-radius:20px;
  backdrop-filter:blur(10px);
  background:linear-gradient(180deg,#df1e25 0%,#b01218 100%)!important;
}
.bqm-cart-fab__content small{font-size:10px;opacity:.92}
.bqm-cart-fab__content strong{font-size:16px}
.bqm-cart-fab__count{display:grid!important;min-width:30px;height:30px;font-size:13px;box-shadow:0 8px 16px rgba(0,0,0,.18)}
.bqm-cart{width:min(440px,100vw)}
.bqm-cart__header p{display:none}
.bqm-cart__summary,.bqm-cart__totals{gap:8px}
.bqm-cart__summary span,.bqm-cart__totals span{padding:10px 12px;border-radius:14px}

.bqm-section-head--split h2{font-size:clamp(20px,2.5vw,24px)}
.bqm-featured-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important}
.bqm-featured-card{
  grid-template-columns:88px minmax(0,1fr)!important;
  min-height:88px!important;
  border-radius:18px!important;
}
.bqm-featured-card__media{min-height:88px!important;aspect-ratio:1/1!important}
.bqm-featured-card__body{padding:12px 13px!important}
.bqm-featured-card__top{align-items:center!important}
.bqm-featured-card__index,.bqm-featured-card__body p{display:none!important}
.bqm-featured-card__top strong{font-size:16px!important;line-height:1.16!important}
.bqm-featured-card__meta{font-size:12px!important}

.bqm-category-card__desc,.bqm-note-inline,.bqm-product__meta-row{display:none!important}
.bqm-service-banner{padding:10px 12px;font-size:14px;border-radius:14px}
.bqm-hero__content{gap:18px!important}
.bqm-hero__copy{max-width:600px}
.bqm-hero p{font-size:15px;line-height:1.55;max-width:48ch}
.bqm-hero__stage{background-position:center center!important}

.bqm-product{
  grid-template-columns:188px minmax(0,1fr)!important;
  align-items:stretch;
}
.bqm-product__media{
  aspect-ratio:1/1!important;
  background:#0d0f12!important;
}
.bqm-product__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  transform:none!important;
  filter:none!important;
}
.bqm-product__topline h3{font-size:clamp(18px,2vw,21px)!important}
.bqm-product__body p{
  font-size:14px;
  line-height:1.5;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
}
.bqm-order-builder{gap:10px}
.bqm-order-preview{font-size:13px}

@media (max-width:860px){
  .bqm-featured-grid{grid-template-columns:1fr!important}
  .bqm-product{grid-template-columns:156px minmax(0,1fr)!important}
}
@media (max-width:640px){
  .bqm-cart-fab{left:12px!important;right:12px!important;bottom:max(12px,calc(12px + env(safe-area-inset-bottom)))!important;width:auto!important;justify-content:space-between!important}
  .bqm-featured-card{grid-template-columns:82px minmax(0,1fr)!important;min-height:82px!important}
  .bqm-featured-card__media{min-height:82px!important}
  .bqm-product{grid-template-columns:1fr!important}
  .bqm-product__media{aspect-ratio:4/3!important}
  .bqm-product__body{padding:14px!important}
}


/* v3.8.2 clarity + cart visibility + hero cleanup */
.bqm-hero{
  background:
    linear-gradient(115deg,rgba(215,25,32,.72),rgba(13,15,18,.38)),
    linear-gradient(180deg,rgba(255,255,255,.02),rgba(0,0,0,.28)),
    url('../images/hero-top.jpg') center/cover no-repeat !important;
}
.bqm-hero__content{
  gap:16px !important;
}
.bqm-hero__stage{
  min-height:clamp(260px,30vw,360px) !important;
  background:
    linear-gradient(180deg,rgba(8,9,11,.04),rgba(8,9,11,.16)),
    url('../images/hero-v290.jpg') center/cover no-repeat !important;
  box-shadow:0 20px 42px rgba(0,0,0,.24) !important;
}
.bqm-hero__stage::before{background:linear-gradient(180deg,rgba(255,255,255,.03),transparent 26%,rgba(0,0,0,.10)) !important}
.bqm-hero p{max-width:44ch !important}
.bqm-meta{gap:8px !important}
.bqm-service-banner{margin-bottom:16px}
.bqm-section-head--split{margin-top:8px !important}
.bqm-featured-grid{
  grid-template-columns:minmax(0,1fr) !important;
  gap:10px !important;
}
.bqm-featured-card{
  grid-template-columns:84px minmax(0,1fr) !important;
  min-height:84px !important;
  border-radius:18px !important;
}
.bqm-featured-card__media{
  min-height:84px !important;
  aspect-ratio:1/1 !important;
}
.bqm-featured-card__body{padding:11px 12px !important; gap:4px !important}
.bqm-featured-card__top strong{font-size:16px !important; line-height:1.12 !important}
.bqm-featured-card__index,.bqm-badge{display:none !important}
.bqm-featured-card__meta{font-size:12px !important; color:#fff0f1 !important}

.bqm-product{
  grid-template-columns:200px minmax(0,1fr) !important;
  gap:14px !important;
}
.bqm-product__media{
  aspect-ratio:1 / 1 !important;
  border-right:1px solid rgba(255,255,255,.06);
  background:#0d0f12 !important;
}
.bqm-product__media img{
  object-fit:cover !important;
  object-position:center center !important;
  image-rendering:auto !important;
  filter:none !important;
}
.bqm-product__body{
  padding:16px 16px 16px 0 !important;
}
.bqm-product__body p{
  display:none !important;
}
.bqm-prices{
  margin-top:12px !important;
}
.bqm-cart-fab{
  z-index:9998 !important;
  min-height:70px !important;
  padding:14px 16px !important;
  border-radius:22px !important;
  box-shadow:0 22px 46px rgba(0,0,0,.34),0 10px 24px rgba(215,25,32,.22) !important;
}
.bqm-cart-fab__icon{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:rgba(255,255,255,.14);
}
.bqm-cart-fab__content small{
  font-size:10px !important;
  opacity:.9;
}
.bqm-cart-fab__content strong{
  font-size:15px !important;
}
.bqm-cart-fab__count{
  min-width:32px !important;
  height:32px !important;
  font-size:13px !important;
}
.bqm-cart{
  z-index:9999 !important;
  width:min(460px,100vw) !important;
}
.bqm-cart-overlay{
  z-index:9997 !important;
}
.bqm-cart__header{
  padding:16px 16px 14px !important;
}
.bqm-cart__body{
  padding:12px 16px 20px !important;
}
.bqm-cart__footer{
  padding:14px 16px calc(16px + env(safe-area-inset-bottom)) !important;
}
.bqm-cart__summary span,
.bqm-cart__totals span{
  min-height:68px !important;
}
.bqm-cart__actions{
  gap:12px !important;
}
.bqm-cart__ghost,
.bqm-cart__send{
  min-height:50px !important;
}
.bqm-waiter-fab{
  z-index:9996 !important;
}
@media (max-width:980px){
  .bqm-product{
    grid-template-columns:164px minmax(0,1fr) !important;
  }
}
@media (max-width:640px){
  .bqm-hero{
    background-position:center 50% !important;
  }
  .bqm-hero__stage{
    min-height:196px !important;
    border-radius:20px !important;
  }
  .bqm-featured-card{
    grid-template-columns:76px minmax(0,1fr) !important;
    min-height:76px !important;
  }
  .bqm-featured-card__media{
    min-height:76px !important;
  }
  .bqm-product{
    grid-template-columns:1fr !important;
  }
  .bqm-product__media{
    aspect-ratio:4/3 !important;
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.06);
  }
  .bqm-product__body{
    padding:14px !important;
  }
  .bqm-cart-fab{
    left:10px !important;
    right:10px !important;
    bottom:max(10px,calc(10px + env(safe-area-inset-bottom))) !important;
    width:auto !important;
  }
  .bqm-waiter-fab{
    bottom:max(86px,calc(86px + env(safe-area-inset-bottom))) !important;
    left:10px !important;
    right:10px !important;
  }
}


/* v3.8.3 continue polish */
.bqm-hero__stage{
  background-image:linear-gradient(180deg,rgba(11,12,14,.08),rgba(11,12,14,.22)),url('../images/hero-v290.jpg') !important;
  background-position:center 58% !important;
  background-size:cover !important;
  background-repeat:no-repeat !important;
  min-height:clamp(240px,30vw,340px) !important;
  transform:none !important;
  animation:none !important;
}
.bqm-hero__stage,
.bqm-hero__stage::before,
.bqm-hero__stage::after{transition:none !important;}
.bqm-section-head--split,.bqm-category-top p,.bqm-showcase{display:none !important;}
.bqm-featured-grid{max-width:520px !important;margin:0 auto 4px !important;grid-template-columns:1fr !important;gap:8px !important;}
.bqm-featured-card{grid-template-columns:72px minmax(0,1fr) !important;min-height:72px !important;border-radius:18px !important;}
.bqm-featured-card__media{min-height:72px !important;aspect-ratio:1 / 1 !important;}
.bqm-featured-card__body{padding:10px 12px !important;gap:4px !important;}
.bqm-featured-card__top strong{font-size:15px !important;line-height:1.15 !important;}
.bqm-featured-card__meta{font-size:12px !important;}
.bqm-product{grid-template-columns:176px minmax(0,1fr) !important;align-items:stretch !important;}
.bqm-product__media{aspect-ratio:5 / 4 !important;background:#0f1114 !important;}
.bqm-product__media img{width:100% !important;height:100% !important;object-fit:cover !important;object-position:center center !important;image-rendering:auto !important;filter:none !important;transform:none !important;}
.bqm-product__topline h3{font-size:clamp(18px,1.65vw,22px) !important;}
.bqm-cart-fab{display:flex !important;visibility:visible !important;opacity:1 !important;z-index:10020 !important;}
.bqm-cart-fab__content{min-width:0 !important;}
.bqm-cart-fab__count{display:grid !important;}
.bqm-cart,.bqm-cart-overlay{z-index:10030 !important;}
@media (max-width:980px){.bqm-product{grid-template-columns:150px minmax(0,1fr) !important;}}
@media (max-width:640px){.bqm-hero__stage{min-height:210px !important;background-position:center 60% !important;}.bqm-featured-grid{max-width:none !important;}.bqm-featured-card{grid-template-columns:70px minmax(0,1fr) !important;min-height:70px !important;}.bqm-featured-card__media{min-height:70px !important;}.bqm-product{grid-template-columns:1fr !important;}.bqm-product__media{aspect-ratio:4 / 3 !important;}}


/* v3.9.0 solid stabilization plan */
:root{
  --bqm-shell-max:1200px;
}
.bqm-shell{max-width:var(--bqm-shell-max) !important; margin-inline:auto !important;}
.bqm-hero{padding-top:10px !important;}
.bqm-hero__content{
  grid-template-columns:minmax(0,1fr) minmax(340px,480px) !important;
  gap:20px !important;
  align-items:center !important;
}
.bqm-hero__copy{max-width:620px !important;}
.bqm-hero h1{font-size:clamp(34px,4.9vw,64px) !important; line-height:1.02 !important;}
.bqm-hero p{font-size:15px !important; line-height:1.58 !important; color:#eef1f5 !important; opacity:.94 !important;}
.bqm-hero__stage{
  min-height:clamp(280px,31vw,390px) !important;
  border-radius:26px !important;
  background-image:linear-gradient(180deg,rgba(10,11,13,.12),rgba(10,11,13,.30)),url('../images/hero-v290.jpg') !important;
  background-size:cover !important;
  background-position:center center !important;
  box-shadow:0 26px 56px rgba(0,0,0,.34) !important;
  border:1px solid rgba(255,255,255,.10) !important;
}
.bqm-hero__stage::before{background:linear-gradient(180deg,rgba(255,255,255,.04),transparent 28%,rgba(0,0,0,.08)) !important;}
.bqm-service-banner,.bqm-footer-note{max-width:var(--bqm-shell-max) !important; margin-inline:auto !important;}
.bqm-section-head{margin-bottom:12px !important;}
.bqm-section-head h2,.bqm-category-top h2{font-size:clamp(24px,2.4vw,32px) !important; line-height:1.08 !important;}
.bqm-featured-grid{
  max-width:440px !important;
  margin:0 auto 10px !important;
  grid-template-columns:1fr !important;
  gap:10px !important;
}
.bqm-featured-card{
  grid-template-columns:88px minmax(0,1fr) !important;
  min-height:88px !important;
  border-radius:18px !important;
}
.bqm-featured-card__media{min-height:88px !important; aspect-ratio:1/1 !important;}
.bqm-featured-card__top strong{font-size:16px !important;}
.bqm-featured-card__meta{font-size:12px !important;}
.bqm-category-grid{gap:14px !important;}
.bqm-category-card{min-height:150px !important;}
.bqm-category-card__label{font-size:clamp(21px,2.1vw,28px) !important;}
.bqm-product-list{gap:14px !important;}
.bqm-product{
  grid-template-columns:188px minmax(0,1fr) !important;
  border-radius:22px !important;
  overflow:hidden !important;
}
.bqm-product__media{
  aspect-ratio:4/3 !important;
  background:#0f1114 !important;
  border-right:1px solid rgba(255,255,255,.06) !important;
}
.bqm-product__media::before,
.bqm-product__media::after{display:none !important;}
.bqm-product__media img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center center !important;
  filter:none !important;
  transform:none !important;
  opacity:1 !important;
}
.bqm-product:hover .bqm-product__media img{transform:none !important;filter:none !important;}
.bqm-product__body{padding:15px 16px 15px 0 !important; gap:10px !important;}
.bqm-product__topline h3{font-size:clamp(19px,1.6vw,22px) !important; line-height:1.12 !important;}
.bqm-product__body p{display:none !important;}
.bqm-badge{display:none !important;}
.bqm-prices{margin-top:6px !important;}
.bqm-order-builder{margin-top:8px !important; padding:12px !important; border-radius:18px !important;}
.bqm-product__actions--cart{align-items:center !important;}
.bqm-cart-fab[hidden]{display:flex !important;}
.bqm-cart-fab{
  display:flex !important;
  visibility:visible !important;
  opacity:1 !important;
  position:fixed !important;
  right:16px !important;
  left:auto !important;
  bottom:max(16px,calc(16px + env(safe-area-inset-bottom))) !important;
  z-index:10050 !important;
  min-width:230px !important;
  min-height:72px !important;
  border-radius:22px !important;
  padding:14px 16px !important;
  background:linear-gradient(180deg,#d71920,#8f0f15) !important;
  color:#fff !important;
  box-shadow:0 24px 56px rgba(0,0,0,.36),0 12px 28px rgba(215,25,32,.24) !important;
}
.bqm-cart-fab.is-empty{background:linear-gradient(180deg,#191c22,#101217) !important;}
.bqm-cart-fab__icon{background:rgba(255,255,255,.14) !important;}
.bqm-cart-fab__content small{font-size:10px !important; letter-spacing:.08em !important;}
.bqm-cart-fab__content strong{font-size:16px !important;}
.bqm-cart-fab__count{display:grid !important; min-width:32px !important; height:32px !important;}
.bqm-cart-overlay{z-index:10060 !important; background:rgba(3,4,6,.54) !important;}
.bqm-cart{
  z-index:10070 !important;
  width:min(450px,100vw) !important;
  border-left:1px solid rgba(255,255,255,.08) !important;
  background:#0f1115 !important;
}
.bqm-cart__header{padding:16px 16px 12px !important;}
.bqm-cart__body{padding:12px 16px 18px !important;}
.bqm-cart__footer{padding:14px 16px calc(16px + env(safe-area-inset-bottom)) !important;}
.bqm-cart__summary span,.bqm-cart__totals span{min-height:64px !important;}
.bqm-cart__notice{font-size:13px !important; line-height:1.45 !important;}
.bqm-waiter-fab{z-index:10040 !important;}
@media (max-width:980px){
  .bqm-hero__content{grid-template-columns:1fr !important; gap:14px !important;}
  .bqm-hero__stage{order:-1 !important; width:min(100%,720px) !important; margin:0 auto !important;}
  .bqm-product{grid-template-columns:156px minmax(0,1fr) !important;}
}
@media (max-width:640px){
  .bqm-shell{padding:14px 12px 112px !important;}
  .bqm-hero__content{gap:12px !important;}
  .bqm-hero__stage{min-height:216px !important; border-radius:22px !important;}
  .bqm-hero p{font-size:14px !important; max-width:none !important;}
  .bqm-featured-grid{max-width:none !important;}
  .bqm-featured-card{grid-template-columns:74px minmax(0,1fr) !important; min-height:74px !important;}
  .bqm-featured-card__media{min-height:74px !important;}
  .bqm-product{grid-template-columns:1fr !important;}
  .bqm-product__media{aspect-ratio:4/3 !important; border-right:none !important; border-bottom:1px solid rgba(255,255,255,.06) !important;}
  .bqm-product__body{padding:14px !important;}
  .bqm-cart-fab{left:12px !important; right:12px !important; min-width:0 !important; width:auto !important; justify-content:space-between !important;}
  .bqm-waiter-fab{left:12px !important; right:12px !important; bottom:max(88px,calc(88px + env(safe-area-inset-bottom))) !important;}
}


/* v3.9.1 cart visibility hotfix */
.bqm-cart-fab{position:fixed !important;}
.bqm-cart-overlay{position:fixed !important;inset:0 !important;display:none;opacity:0;visibility:hidden;pointer-events:none;}
.bqm-cart{position:fixed !important;top:0;right:0;max-width:100vw;visibility:visible;opacity:1;pointer-events:none;will-change:transform;}
.bqm-cart.is-open{pointer-events:auto;}
@media (max-width:768px){
  .bqm-cart{top:auto !important;left:0 !important;right:0 !important;bottom:0 !important;width:100vw !important;}
}


/* v3.9.2 scroll unlock hotfix */
html.bqm-cart-open,
body.bqm-cart-open{
  overflow:auto !important;
  touch-action:auto !important;
  position:static !important;
}
body.bqm-cart-open .bqm-wrap,
html.bqm-cart-open .bqm-wrap{
  overflow:visible !important;
}
.bqm-cart-overlay{
  overscroll-behavior:none;
}
.bqm-cart__body{
  touch-action:pan-y;
}


/* v3.9.3 cart consistency patch */
.bqm-cart{display:grid !important;grid-template-rows:auto minmax(0,1fr) auto !important;height:min(100dvh,100vh) !important;max-height:min(100dvh,100vh) !important;overflow:hidden !important;border-left:1px solid rgba(255,255,255,.08) !important;}
.bqm-cart__header,.bqm-cart__footer{flex:none !important;}
.bqm-cart__body{min-height:0 !important;overflow:auto !important;overscroll-behavior:contain !important;}
.bqm-cart__list{min-height:0 !important;}
.bqm-cart__address.is-hidden,.bqm-cart__zone.is-hidden{display:none !important;}
.bqm-cart__actions{align-items:stretch !important;}
.bqm-cart__send,.bqm-cart__ghost{display:flex !important;align-items:center !important;justify-content:center !important;text-align:center !important;}
.bqm-cart-item{align-items:start !important;}
.bqm-cart-item__controls{flex-wrap:wrap !important;}
.bqm-cart__field input,.bqm-cart__field select,.bqm-cart__address textarea,.bqm-cart__note textarea{width:100% !important;box-sizing:border-box !important;}
.bqm-cart__notice[hidden]{display:none !important;}
.bqm-cart-overlay[hidden]{display:none !important;}
body.bqm-cart-open,html.bqm-cart-open{overflow:auto !important;touch-action:auto !important;}
@media (max-width:768px){.bqm-cart{border-left:none !important;border-top:1px solid rgba(255,255,255,.08) !important;border-top-left-radius:22px !important;border-top-right-radius:22px !important;height:min(88dvh,88vh) !important;max-height:min(88dvh,88vh) !important;}.bqm-cart__header{padding:16px 16px 12px !important;}.bqm-cart__footer{padding:14px 16px calc(16px + env(safe-area-inset-bottom)) !important;}.bqm-cart__body{padding:12px 16px 14px !important;}.bqm-cart__actions{grid-template-columns:1fr !important;}}


/* v3.9.4 cart inner scroll + 3d modules return */
.bqm-cart{
  display:grid !important;
  grid-template-rows:auto minmax(0,1fr) auto !important;
  overflow:hidden !important;
}
.bqm-cart__header,
.bqm-cart__footer{
  flex:none !important;
}
.bqm-cart__body{
  min-height:0 !important;
  height:100% !important;
  overflow-y:auto !important;
  overflow-x:hidden !important;
  -webkit-overflow-scrolling:touch !important;
  overscroll-behavior:contain !important;
  touch-action:pan-y pinch-zoom !important;
}
.bqm-cart__list,
.bqm-cart__service,
.bqm-cart__note,
.bqm-cart__customer-grid,
.bqm-cart__summary,
.bqm-cart__totals,
.bqm-cart__actions{
  min-height:0;
}
.bqm-cart__body::after{
  content:'';
  display:block;
  height:max(10px, env(safe-area-inset-bottom));
}
body.bqm-cart-open,
html.bqm-cart-open{
  overflow:auto !important;
  touch-action:auto !important;
}
.bqm-grid-glow,
.bqm-orb,
.bqm-floating-card,
.bqm-floating-chip,
.bqm-stage-tags,
.bqm-stage-filmstrip{
  display:block !important;
}
.bqm-stage-tags{display:flex !important;}
.bqm-hero__stage{
  perspective:1200px !important;
  transform-style:preserve-3d !important;
}
.bqm-hero__stage::after{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 18% 24%, rgba(255,255,255,.16), transparent 28%), radial-gradient(circle at 82% 72%, rgba(215,25,32,.24), transparent 32%);
  pointer-events:none;
}
.bqm-grid-glow{opacity:.78 !important;}
.bqm-floating-card,
.bqm-floating-chip,
.bqm-stage-filmstrip,
.bqm-stage-tags{z-index:2;}
.bqm-floating-card{max-width:240px;}
.bqm-floating-card strong{font-size:18px !important;}
.bqm-stage-tags span{
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}
@media (max-width:980px){
  .bqm-stage-filmstrip{display:none !important;}
}
@media (max-width:640px){
  .bqm-cart{
    height:min(100dvh, 100dvh) !important;
    grid-template-rows:auto minmax(0,1fr) auto !important;
  }
  .bqm-cart__body{
    padding-bottom:max(18px, env(safe-area-inset-bottom)) !important;
  }
  .bqm-grid-glow,
  .bqm-orb,
  .bqm-floating-card,
  .bqm-floating-chip,
  .bqm-stage-tags{display:block !important;}
  .bqm-stage-tags{display:flex !important;gap:8px !important;bottom:16px !important;left:12px !important;right:12px !important;}
  .bqm-stage-tags span{font-size:10px !important;padding:7px 10px !important;}
  .bqm-floating-card{width:min(72%, 188px) !important;}
  .bqm-floating-card strong{font-size:15px !important;}
  .bqm-floating-card--primary{top:14px !important;left:12px !important;}
  .bqm-floating-card--secondary{right:12px !important;bottom:56px !important;}
  .bqm-floating-chip{bottom:58px !important;left:12px !important;}
  .bqm-floating-chip--alt{top:12px !important;right:12px !important;left:auto !important;}
}
@media (prefers-reduced-motion:reduce){
  .bqm-grid-glow,
  .bqm-orb,
  .bqm-floating-card,
  .bqm-floating-chip,
  .bqm-stage-tags,
  .bqm-stage-filmstrip{
    animation:none !important;
    transition:none !important;
  }
}

/* v4.0.0 premium butcher polish */
:root{
  --bqm-bg:#110c09;
  --bqm-panel:#19120f;
  --bqm-panel-2:#241915;
  --bqm-line:rgba(255,255,255,.08);
  --bqm-text:#f8f3ef;
  --bqm-muted:#d4c4b7;
  --bqm-red:#c92a1a;
  --bqm-red-dark:#981e13;
  --bqm-gold:#f4c66f;
}
body{background:#0f0a08;}
.bqm-wrap{
  background:
    radial-gradient(circle at top left, rgba(201,42,26,.18), transparent 28%),
    radial-gradient(circle at top right, rgba(244,198,111,.10), transparent 24%),
    linear-gradient(180deg,#110c09 0%, #0c0908 52%, #0f0a08 100%) !important;
  color:var(--bqm-text);
}
.bqm-shell{
  max-width:1240px !important;
  padding:24px 18px 110px !important;
}
.bqm-hero{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08) !important;
  border-radius:34px !important;
  background:
    linear-gradient(100deg, rgba(12,8,7,.88) 0%, rgba(12,8,7,.62) 42%, rgba(12,8,7,.35) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.18)),
    url('../images/hero-top.jpg') center/cover no-repeat !important;
  box-shadow:0 34px 70px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.05);
}
.bqm-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, rgba(255,208,154,.08), transparent 35%, transparent 65%, rgba(255,255,255,.06));
  pointer-events:none;
}
.bqm-hero::after{
  content:'';
  position:absolute;
  inset:auto -12% -18% -12%;
  height:46%;
  background:radial-gradient(circle at center, rgba(255,140,82,.18), transparent 62%);
  filter:blur(24px);
  pointer-events:none;
}
.bqm-hero__content{
  display:grid !important;
  grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr) !important;
  gap:28px !important;
  align-items:center !important;
  padding:44px 34px !important;
  position:relative;
  z-index:1;
}
.bqm-hero__copy{max-width:640px;}
.bqm-kicker{
  background:rgba(255,255,255,.08) !important;
  border:1px solid rgba(255,255,255,.10);
  color:#ffe8cf !important;
  padding:8px 14px !important;
  font-size:11px !important;
  letter-spacing:.16em !important;
}
.bqm-hero h1{
  font-size:clamp(38px,5vw,68px) !important;
  line-height:.95 !important;
  letter-spacing:-.04em !important;
  max-width:11ch;
  text-shadow:0 10px 24px rgba(0,0,0,.26);
}
.bqm-hero p{
  max-width:580px !important;
  font-size:17px !important;
  line-height:1.7 !important;
  color:#f3ddd1 !important;
}
.bqm-meta{gap:10px !important; margin-top:18px !important;}
.bqm-meta span{
  display:inline-flex;align-items:center;min-height:40px;padding:0 14px;border-radius:999px;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.09);color:#f1e2d8;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}
.bqm-service-dot.is-open{background:rgba(47,158,68,.18) !important;color:#e7f8eb !important;border-color:rgba(47,158,68,.34) !important;}
.bqm-service-dot.is-paused{background:rgba(201,42,26,.18) !important;color:#ffe8e1 !important;border-color:rgba(201,42,26,.34) !important;}
.bqm-hero__button{
  min-height:54px !important;
  padding:0 24px !important;
  border-radius:18px !important;
  background:linear-gradient(180deg,#d94732,#a61f14) !important;
  color:#fff !important;
  font-size:15px !important;
  box-shadow:0 18px 34px rgba(166,31,20,.34);
}
.bqm-hero__stage{
  position:relative !important;
  min-height:360px !important;
  border-radius:30px !important;
  border:1px solid rgba(255,255,255,.10) !important;
  background:
    linear-gradient(180deg, rgba(10,7,6,.38), rgba(10,7,6,.74)),
    url('../images/hero-v290.jpg') center/cover no-repeat !important;
  box-shadow:0 28px 58px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.05);
  display:flex !important;
  align-items:flex-end !important;
  justify-content:flex-start !important;
  padding:24px !important;
  isolation:isolate;
}
.bqm-grid-glow,.bqm-orb,.bqm-floating-card,.bqm-floating-chip,.bqm-stage-tags,.bqm-stage-filmstrip,.bqm-hero__stats,.bqm-hero__ghost{display:none !important;}
.bqm-stage-main-card{
  width:min(100%, 360px);
  display:grid;
  grid-template-columns:110px minmax(0,1fr);
  gap:14px;
  padding:14px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(25,18,15,.92), rgba(17,12,9,.90));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 22px 44px rgba(0,0,0,.38);
  backdrop-filter:none;
}
.bqm-stage-main-card__image{aspect-ratio:1 / 1; border-radius:18px; overflow:hidden; background:#231815;}
.bqm-stage-main-card__image img{width:100%;height:100%;object-fit:cover;display:block;}
.bqm-stage-main-card__body{display:flex;flex-direction:column;justify-content:center;min-width:0;}
.bqm-stage-main-card__body small{font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:#e8b277;margin-bottom:8px;}
.bqm-stage-main-card__body strong{font-size:24px;line-height:1.02;letter-spacing:-.03em;color:#fff7f2;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;}
.bqm-stage-main-card__body span{margin-top:10px;font-size:14px;font-weight:700;color:#ffd9c7;}
.bqm-stage-pills{position:absolute;right:22px;bottom:22px;display:flex;flex-direction:column;gap:10px;}
.bqm-stage-pills span{
  display:inline-flex;align-items:center;justify-content:center;min-height:38px;padding:0 14px;border-radius:999px;
  background:rgba(12,8,7,.72);border:1px solid rgba(255,255,255,.08);color:#f7e7db;font-size:12px;font-weight:700;
}
.bqm-section-head{display:flex;align-items:end;justify-content:space-between;gap:12px;margin:28px 0 16px !important;}
.bqm-section-head h2,.bqm-category-top h2{font-size:clamp(26px,3vw,36px) !important;letter-spacing:-.03em !important;}
.bqm-service-banner{border-radius:20px !important;background:linear-gradient(135deg,#2c1812,#1b110d) !important;color:#fbe7db !important;padding:14px 16px !important;}
.bqm-category-grid{grid-template-columns:repeat(3,minmax(0,1fr)) !important;gap:16px !important;}
.bqm-category-card{
  min-height:174px !important;
  border-radius:26px !important;
  padding:18px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  box-shadow:0 20px 36px rgba(0,0,0,.24) !important;
}
.bqm-category-card__label{font-size:28px !important;line-height:1 !important;max-width:9ch;}
.bqm-featured-grid{max-width:680px !important;grid-template-columns:1fr !important;gap:14px !important;margin-bottom:4px !important;}
.bqm-featured-card{
  grid-template-columns:200px minmax(0,1fr) !important;
  min-height:200px !important;
  border-radius:28px !important;
  background:linear-gradient(180deg,#1a120f,#140e0c) !important;
  border:1px solid rgba(255,255,255,.08) !important;
  box-shadow:0 24px 48px rgba(0,0,0,.28) !important;
}
.bqm-featured-card__media{min-height:200px !important;aspect-ratio:auto !important;}
.bqm-featured-card__body{padding:20px 22px !important;gap:10px !important;justify-content:center;}
.bqm-featured-card__top strong{font-size:28px !important;line-height:.96 !important;}
.bqm-featured-card__meta{color:#ffd4ba !important;font-size:15px !important;}
.bqm-featured-card__index,.bqm-featured-card__body p,.bqm-badge{display:none !important;}
.bqm-chip-row{position:static !important;background:none !important;padding:0 !important;margin:0 0 18px !important;backdrop-filter:none !important;}
.bqm-chip{
  background:#1c1411 !important;
  border-color:rgba(255,255,255,.08) !important;
  min-height:42px;
}
.bqm-chip.is-active{background:linear-gradient(180deg,#d94732,#a61f14) !important;border-color:transparent !important;}
.bqm-toolbar{
  display:grid;gap:12px;
  padding:16px;
  border-radius:22px;
  background:linear-gradient(180deg,#15100e,#110d0b);
  border:1px solid rgba(255,255,255,.06);
  margin-bottom:18px;
}
.bqm-search{background:#1b1411 !important;border-color:rgba(255,255,255,.07) !important;}
.bqm-filter-row{display:flex;gap:8px;flex-wrap:wrap;}
.bqm-filter{
  min-height:40px;padding:0 14px;border-radius:999px;border:1px solid rgba(255,255,255,.08);
  background:#1b1411;color:#f6e8de;font-weight:700;
}
.bqm-filter.is-active{background:linear-gradient(180deg,#d94732,#a61f14);border-color:transparent;}
.bqm-product-list{display:grid !important;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px !important;}
.bqm-product{
  grid-template-columns:1fr !important;
  min-height:100%;
  border-radius:30px !important;
  background:linear-gradient(180deg,#17110f,#100c0a) !important;
  border:1px solid rgba(255,255,255,.08) !important;
  box-shadow:0 22px 42px rgba(0,0,0,.26) !important;
}
.bqm-product:hover{transform:translateY(-4px) !important;}
.bqm-product__media{aspect-ratio:16 / 11 !important;min-height:0 !important;}
.bqm-product__media img{aspect-ratio:16 / 11 !important;object-fit:cover !important;filter:saturate(1.04) contrast(1.03);}
.bqm-product__body{padding:18px !important;display:flex;flex-direction:column;gap:12px;}
.bqm-product__topline h3{font-size:24px !important;line-height:1.02 !important;}
.bqm-product__body p{margin:0 !important;color:#d6c2b4 !important;line-height:1.6 !important;}
.bqm-prices{grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:10px !important;}
.bqm-price{background:#201612 !important;border-color:rgba(255,255,255,.07) !important;min-height:88px !important;}
.bqm-price strong{font-size:24px !important;color:#fff5ef !important;}
.bqm-order-builder{
  padding:16px;border-radius:20px;background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.05);
}
.bqm-add-cart,.bqm-order,.bqm-cart__send,.bqm-cart__ghost,.bqm-cart__service-option{
  min-height:48px;border-radius:16px !important;font-weight:800 !important;
}
.bqm-add-cart,.bqm-order,.bqm-cart__send{
  background:linear-gradient(180deg,#d94732,#a61f14) !important;color:#fff !important;border:none !important;
  box-shadow:0 16px 28px rgba(166,31,20,.22);
}
.bqm-cart-fab{
  position:fixed !important;
  right:18px !important;
  bottom:max(18px, calc(18px + env(safe-area-inset-bottom))) !important;
  left:auto !important;
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
  min-width:232px !important;
  padding:12px 14px !important;
  border-radius:22px !important;
  background:linear-gradient(180deg,#1b1411,#120d0b) !important;
  border:1px solid rgba(255,255,255,.10) !important;
  box-shadow:0 26px 54px rgba(0,0,0,.38) !important;
  z-index:10030 !important;
}
.bqm-cart-fab__icon{display:grid;place-items:center;width:44px;height:44px;border-radius:16px;background:linear-gradient(180deg,#d94732,#a61f14);}
.bqm-cart-fab__count{display:grid !important;min-width:30px !important;height:30px !important;place-items:center;background:var(--bqm-gold) !important;color:#2d160a !important;font-weight:900 !important;}
.bqm-cart-overlay{position:fixed !important;inset:0 !important;background:rgba(4,3,2,.62) !important;backdrop-filter:none;z-index:10020 !important;}
.bqm-cart{
  position:fixed !important;
  top:0 !important;right:0 !important;bottom:0 !important;
  width:min(450px,100vw) !important;height:100dvh !important;max-height:100dvh !important;
  display:flex !important;flex-direction:column !important;
  background:linear-gradient(180deg,#17110f,#100c0a) !important;
  border-left:1px solid rgba(255,255,255,.08) !important;
  z-index:10040 !important;
  transform:translateX(110%) !important;
  opacity:0 !important;visibility:hidden !important;pointer-events:none !important;
  transition:transform .26s ease, opacity .2s ease, visibility .2s ease !important;
}
.bqm-cart.is-open{
  transform:translateX(0) !important;opacity:1 !important;visibility:visible !important;pointer-events:auto !important;
}
.bqm-cart__header,.bqm-cart__footer{flex:none !important;padding:18px 18px 16px !important;}
.bqm-cart__header{border-bottom:1px solid rgba(255,255,255,.06) !important;}
.bqm-cart__header strong{font-size:24px;letter-spacing:-.03em;}
.bqm-cart__header p{color:#d1c0b4;margin:6px 0 0;}
.bqm-cart__body{
  flex:1 1 auto !important;
  min-height:0 !important;
  overflow-y:auto !important;
  overscroll-behavior:contain !important;
  padding:16px 18px 18px !important;
  display:grid !important;gap:14px !important;
  scrollbar-width:thin;
}
.bqm-cart__footer{
  border-top:1px solid rgba(255,255,255,.06) !important;
  background:linear-gradient(180deg,rgba(17,12,10,.84),rgba(17,12,10,.98)) !important;
  backdrop-filter:blur(10px);
  display:grid !important;gap:14px !important;
}
.bqm-cart__service-options{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;}
.bqm-cart__service-option{background:#211713 !important;border:1px solid rgba(255,255,255,.08) !important;color:#f7e9dd !important;}
.bqm-cart__service-option.is-active{background:linear-gradient(180deg,#d94732,#a61f14) !important;border-color:transparent !important;}
.bqm-cart__customer-grid{display:grid !important;grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:10px !important;}
.bqm-cart__field input,.bqm-cart__field select,.bqm-cart__address textarea,.bqm-cart__note textarea{
  width:100%;background:#211713;border:1px solid rgba(255,255,255,.08);color:#fff;border-radius:16px;padding:13px 14px;font:inherit;
}
.bqm-cart__field input:focus,.bqm-cart__field select:focus,.bqm-cart__address textarea:focus,.bqm-cart__note textarea:focus,.bqm-order-note:focus,.bqm-qty__input:focus{
  outline:none;border-color:rgba(217,71,50,.56);box-shadow:0 0 0 4px rgba(217,71,50,.12);
}
.bqm-cart__summary,.bqm-cart__totals{
  display:grid !important;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px !important;
}
.bqm-cart__summary span,.bqm-cart__totals span{
  background:#1d1411;border:1px solid rgba(255,255,255,.06);border-radius:18px;padding:12px 14px;display:grid;gap:4px;
}
.bqm-cart__summary small,.bqm-cart__totals small{color:#cdb9ab;}
.bqm-cart__summary strong,.bqm-cart__totals strong{font-size:18px;}
.bqm-cart__actions{display:grid !important;grid-template-columns:1fr 1.25fr !important;gap:10px !important;}
.bqm-cart-item{
  display:grid !important;grid-template-columns:minmax(0,1fr) auto !important;gap:10px !important;
  padding:14px !important;border-radius:18px !important;background:#1d1411 !important;border:1px solid rgba(255,255,255,.06) !important;
}
.bqm-cart-item__meta strong{font-size:16px;display:block;margin-bottom:6px;}
.bqm-cart-item__meta span,.bqm-cart-item__meta small{color:#d4c2b4;display:block;line-height:1.5;}
.bqm-cart-item__qty{display:flex;align-items:center;gap:8px;}
.bqm-cart-item__qty button,.bqm-cart-item__remove{
  min-height:40px;min-width:40px;border-radius:12px;border:1px solid rgba(255,255,255,.08);background:#251915;color:#fff;font-weight:800;
}
.bqm-cart-item__remove{padding:0 12px;min-width:auto;}
.bqm-footer-note{margin-top:20px !important;border-top:1px solid rgba(255,255,255,.06) !important;padding-top:16px !important;color:#d5c2b5 !important;}
@media (max-width:1100px){
  .bqm-hero__content{grid-template-columns:1fr !important;gap:18px !important;}
  .bqm-hero__stage{min-height:320px !important;}
  .bqm-product-list{grid-template-columns:1fr !important;}
}
@media (max-width:768px){
  .bqm-shell{padding:14px 12px 112px !important;}
  .bqm-hero{border-radius:26px !important;}
  .bqm-hero__content{padding:24px 18px !important;}
  .bqm-hero h1{font-size:clamp(32px,10vw,46px) !important;max-width:none;}
  .bqm-hero__stage{min-height:250px !important;padding:16px !important;border-radius:24px !important;}
  .bqm-stage-main-card{width:min(100%, 100%);grid-template-columns:88px minmax(0,1fr);gap:12px;padding:12px;border-radius:20px;}
  .bqm-stage-main-card__body strong{font-size:18px;}
  .bqm-stage-pills{right:14px;bottom:14px;gap:8px;}
  .bqm-stage-pills span{min-height:34px;font-size:11px;padding:0 10px;}
  .bqm-category-grid{grid-template-columns:1fr !important;}
  .bqm-featured-card{grid-template-columns:96px minmax(0,1fr) !important;min-height:96px !important;}
  .bqm-featured-card__media{min-height:96px !important;}
  .bqm-featured-card__top strong{font-size:18px !important;}
  .bqm-prices{grid-template-columns:1fr !important;}
  .bqm-cart{width:100vw !important;height:min(92dvh,92vh) !important;top:auto !important;border-left:none !important;border-top:1px solid rgba(255,255,255,.08) !important;border-top-left-radius:24px !important;border-top-right-radius:24px !important;transform:translateY(104%) !important;}
  .bqm-cart.is-open{transform:translateY(0) !important;}
  .bqm-cart__customer-grid,.bqm-cart__summary,.bqm-cart__totals,.bqm-cart__actions{grid-template-columns:1fr !important;}
  .bqm-cart-fab{left:12px !important;right:12px !important;bottom:max(12px,calc(12px + env(safe-area-inset-bottom))) !important;min-width:0 !important;width:auto !important;justify-content:space-between !important;}
}


/* v4.0.1 butcher hero background integration */
.bqm-hero{
  background:url('../images/hero-v290.jpg') center center/cover no-repeat !important;
}
.bqm-hero::before{
  background:
    linear-gradient(90deg,rgba(12,8,6,.70) 0%,rgba(12,8,6,.40) 42%,rgba(12,8,6,.34) 100%),
    radial-gradient(circle at 16% 22%,rgba(255,196,120,.16),transparent 24%),
    radial-gradient(circle at 84% 18%,rgba(255,171,92,.12),transparent 22%) !important;
}
.bqm-hero__stage{
  background:linear-gradient(180deg,rgba(18,10,8,.18),rgba(18,10,8,.34));
  border-color:rgba(255,255,255,.12);
  box-shadow:0 34px 60px rgba(0,0,0,.28);
}
.bqm-hero__stage::before{
  border-color:rgba(255,255,255,.10);
}


/* v4.0.2 cart scroll consistency hotfix */
.bqm-cart{
  display:grid;
  grid-template-rows:auto minmax(0,1fr) auto;
  min-height:100dvh;
  height:100dvh;
  max-height:100dvh;
}
.bqm-cart__header,
.bqm-cart__footer{
  flex:0 0 auto;
}
.bqm-cart__body{
  min-height:0;
  height:auto;
  overflow-y:auto;
  overflow-x:hidden;
  display:grid;
  align-content:start;
  grid-auto-rows:max-content;
  gap:12px;
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
}
.bqm-cart__form{
  display:grid;
  gap:12px;
  min-height:max-content;
  padding-bottom:12px;
}
.bqm-cart__footer{
  position:relative;
  bottom:auto;
  margin-top:0;
}
.bqm-cart__summary,
.bqm-cart__totals,
.bqm-cart__actions{
  grid-template-columns:1fr;
}
.bqm-cart__totals{
  display:grid;
  gap:10px;
}
@supports (height: 100dvh){
  .bqm-cart{height:100dvh;max-height:100dvh;min-height:100dvh;}
}
@media (max-width: 640px){
  .bqm-cart{
    top:auto;
    bottom:0;
    border-radius:24px 24px 0 0;
    height:min(100dvh, calc(100dvh - 8px));
    max-height:min(100dvh, calc(100dvh - 8px));
  }
  .bqm-cart__body{
    padding-bottom:16px;
  }
  .bqm-cart__footer{
    padding-bottom:calc(14px + env(safe-area-inset-bottom));
  }
}


.bqm-hero__content,
.bqm-product,
.bqm-category-card,
.bqm-cart{
  position:relative;
}
.bqm-hero__content{
  padding:48px 20px 36px;
}
.bqm-hero__stage,
.bqm-stage-main-card,
.bqm-stage-pills span{
  background:rgba(22,15,10,.54);
  border:1px solid rgba(255,220,176,.10);
  backdrop-filter:none;
}
.bqm-stage-main-card{
  box-shadow:0 24px 44px rgba(0,0,0,.28);
}
.bqm-stage-main-card__body small,
.bqm-price__label,
.bqm-cart__summary small,
.bqm-cart__totals small{
  color:#dcc7b0;
}
.bqm-order,
.bqm-add-cart,
.bqm-cart__send{
  box-shadow:0 14px 28px rgba(0,0,0,.22);
}
.bqm-order,
.bqm-add-cart{
  border:1px solid rgba(255,200,135,.16);
}
.bqm-filter,
.bqm-chip{
  background:rgba(18,13,9,.82);
  border:1px solid rgba(255,220,176,.10);
}
.bqm-cart-item,
.bqm-cart__summary span,
.bqm-cart__totals span,
.bqm-cart__field input,
.bqm-cart__field select,
.bqm-cart__address textarea,
.bqm-cart__note textarea{
  background:rgba(255,255,255,.045);
  border-color:rgba(255,220,176,.10);
}
.bqm-cart__header,
.bqm-cart__footer{
  background:rgba(0,0,0,.12);
}
.bqm-cart__header{
  flex:0 0 auto;
}
@media (max-width:640px){
  .bqm-hero{
    border-radius:22px;
  }
  .bqm-hero__content{
    padding:40px 16px 30px;
  }
  .bqm-cart__body{
    padding-bottom:24px;
  }
}


/* v4.0.3 ambient background + final cart scroll lock */
body{
  background:#0f0a06 !important;
}
.bqm-wrap{
  background:
    linear-gradient(180deg,rgba(8,6,4,.72),rgba(8,6,4,.62) 24%,rgba(7,5,3,.82) 100%),
    radial-gradient(circle at 50% 10%, rgba(255,176,88,.14), transparent 24%),
    url('../images/hero-top.jpg') center top/cover no-repeat fixed !important;
}
.bqm-hero{
  background:
    linear-gradient(100deg,rgba(18,12,7,.70) 0%,rgba(30,18,10,.42) 48%,rgba(11,8,5,.66) 100%),
    linear-gradient(180deg,rgba(255,181,88,.05),rgba(0,0,0,.26)),
    url('../images/hero-top.jpg') center/cover no-repeat !important;
}
.bqm-cart{
  display:grid !important;
  grid-template-rows:auto minmax(0,1fr) auto !important;
  width:min(440px,100vw) !important;
  min-height:100dvh !important;
  height:100dvh !important;
  max-height:100dvh !important;
  overflow:hidden !important;
}
.bqm-cart__body{
  min-height:0 !important;
  height:auto !important;
  overflow-y:auto !important;
  overflow-x:hidden !important;
  -webkit-overflow-scrolling:touch !important;
  overscroll-behavior:contain !important;
  touch-action:pan-y !important;
  padding-bottom:max(18px, env(safe-area-inset-bottom)) !important;
}
html.bqm-cart-open,
body.bqm-cart-open{
  overflow:hidden !important;
}
@media (max-width:768px){
  .bqm-wrap{
    background-attachment:scroll !important;
  }
  .bqm-cart{
    top:auto !important;
    bottom:0 !important;
    left:0 !important;
    right:0 !important;
    width:100vw !important;
    min-height:100dvh !important;
    height:100dvh !important;
    max-height:100dvh !important;
    border-radius:24px 24px 0 0 !important;
    border-left:none !important;
    border-top:1px solid rgba(255,255,255,.08) !important;
    transform:translateY(104%) !important;
  }
  .bqm-cart.is-open{
    transform:translateY(0) !important;
  }
}


/* v4.0.5 unified atmosphere + single-scroll cart stabilization */
:root{
  --bqm-fire-glow:rgba(255,170,90,.16);
  --bqm-ambient-dark:rgba(12,8,5,.82);
}
body{
  background:#0f0a06 !important;
}
.bqm-wrap,
.bqm-wrap::before,
.bqm-hero,
.bqm-hero__stage{
  background-repeat:no-repeat !important;
  background-size:cover !important;
}
.bqm-wrap{
  background:
    linear-gradient(180deg,rgba(8,6,4,.72),rgba(8,6,4,.60) 22%,rgba(7,5,3,.84) 100%),
    radial-gradient(circle at 52% 12%, var(--bqm-fire-glow), transparent 24%),
    url('../images/hero-top.jpg') center top/cover no-repeat fixed !important;
}
.bqm-wrap::before{
  background:
    linear-gradient(180deg,rgba(14,9,5,.58),rgba(6,4,3,.74)),
    radial-gradient(circle at 52% 12%, rgba(255,177,92,.14), transparent 22%),
    url('../images/hero-top.jpg') center top/cover no-repeat !important;
  filter:saturate(1.05) contrast(1.02) !important;
}
.bqm-wrap::after{
  background:linear-gradient(180deg,rgba(5,4,3,.12),rgba(5,4,3,.60) 26%,rgba(7,5,3,.84) 100%) !important;
}
.bqm-hero{
  position:relative !important;
  overflow:hidden !important;
  background:
    linear-gradient(102deg,rgba(18,12,7,.90) 0%,rgba(30,18,10,.58) 48%,rgba(11,8,5,.88) 100%),
    radial-gradient(circle at 78% 18%, rgba(255,188,108,.14), transparent 24%),
    url('../images/hero-top.jpg') center 54%/cover no-repeat !important;
}
.bqm-hero::before{
  background:
    linear-gradient(90deg,rgba(12,8,6,.68) 0%,rgba(12,8,6,.32) 42%,rgba(12,8,6,.26) 100%),
    radial-gradient(circle at 18% 22%,rgba(255,196,120,.12),transparent 24%),
    radial-gradient(circle at 84% 18%,rgba(255,171,92,.08),transparent 22%) !important;
  opacity:1 !important;
}
.bqm-hero::after{
  background:
    radial-gradient(circle at 78% 18%, rgba(255,189,108,.16), transparent 24%),
    radial-gradient(circle at 24% 76%, rgba(255,135,54,.08), transparent 22%) !important;
}
.bqm-hero__content{
  align-items:end !important;
}
.bqm-hero__stage{
  position:relative !important;
  min-height:clamp(260px,31vw,380px) !important;
  background:
    linear-gradient(180deg, rgba(10,7,6,.34), rgba(10,7,6,.70)),
    url('../images/hero-top.jpg') center 58%/cover no-repeat !important;
  border:1px solid rgba(255,220,176,.10) !important;
  box-shadow:0 28px 58px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04) !important;
  display:flex !important;
  align-items:flex-end !important;
  justify-content:flex-start !important;
  padding:22px !important;
}
.bqm-stage-main-card{
  width:min(100%, 360px) !important;
  grid-template-columns:1fr !important;
  background:linear-gradient(180deg, rgba(20,14,10,.90), rgba(12,9,6,.92)) !important;
  border:1px solid rgba(255,220,176,.10) !important;
  box-shadow:0 18px 38px rgba(0,0,0,.30) !important;
}
.bqm-stage-main-card__image,
.bqm-stage-main-card__image img{
  display:none !important;
}
.bqm-stage-main-card__body small{
  color:#f0bf83 !important;
}
.bqm-stage-main-card__body strong{
  font-size:clamp(24px,2vw,28px) !important;
  color:#fff7f1 !important;
}
.bqm-stage-main-card__body span{
  color:#ffe1c9 !important;
}
.bqm-stage-pills{
  right:22px !important;
  bottom:22px !important;
}
.bqm-category-card,
.bqm-product,
.bqm-featured-card,
.bqm-service-banner,
.bqm-cart-item,
.bqm-cart__summary span,
.bqm-cart__totals span,
.bqm-cart__field input,
.bqm-cart__field select,
.bqm-cart__address textarea,
.bqm-cart__note textarea{
  border-color:rgba(255,220,176,.10) !important;
}

/* single scroll region for the whole cart, including customer fields and actions */
html.bqm-cart-open,
body.bqm-cart-open{
  overflow:hidden !important;
}
.bqm-cart{
  display:flex !important;
  flex-direction:column !important;
  width:min(460px,100vw) !important;
  min-height:100dvh !important;
  height:100dvh !important;
  max-height:100dvh !important;
  overflow-y:auto !important;
  overflow-x:hidden !important;
  overscroll-behavior:contain !important;
  -webkit-overflow-scrolling:touch !important;
  background:
    linear-gradient(180deg,rgba(19,13,9,.98),rgba(10,8,6,.98)),
    url('../images/hero-top.jpg') center/cover no-repeat !important;
}
.bqm-cart__header,
.bqm-cart__footer{
  position:relative !important;
  top:auto !important;
  bottom:auto !important;
  flex:0 0 auto !important;
}
.bqm-cart__body{
  flex:0 0 auto !important;
  min-height:auto !important;
  height:auto !important;
  overflow:visible !important;
  display:block !important;
  padding-bottom:0 !important;
}
.bqm-cart__body > * + *{
  margin-top:12px !important;
}
.bqm-cart__list{
  display:grid !important;
  gap:12px !important;
}
.bqm-cart__footer{
  margin-top:0 !important;
  padding-top:12px !important;
  padding-bottom:calc(16px + env(safe-area-inset-bottom)) !important;
  border-top:1px solid rgba(255,255,255,.08) !important;
}
.bqm-cart__actions{
  gap:12px !important;
}
.bqm-cart__ghost,
.bqm-cart__send{
  min-height:52px !important;
}
@media (max-width:768px){
  .bqm-wrap{
    background-attachment:scroll !important;
  }
  .bqm-hero{
    background-position:center 52% !important;
  }
  .bqm-hero__content{
    gap:14px !important;
  }
  .bqm-hero__stage{
    min-height:220px !important;
    padding:16px !important;
    border-radius:22px !important;
    background-position:center 56% !important;
  }
  .bqm-stage-main-card{
    width:min(100%, 100%) !important;
    padding:14px !important;
    border-radius:18px !important;
  }
  .bqm-stage-pills{
    position:static !important;
    margin-top:12px !important;
    flex-direction:row !important;
    flex-wrap:wrap !important;
    gap:8px !important;
  }
  .bqm-cart{
    top:auto !important;
    bottom:0 !important;
    left:0 !important;
    right:0 !important;
    width:100vw !important;
    border-left:none !important;
    border-top:1px solid rgba(255,255,255,.08) !important;
    border-radius:24px 24px 0 0 !important;
    transform:translateY(104%) !important;
  }
  .bqm-cart.is-open{
    transform:translateY(0) !important;
  }
  .bqm-cart__customer-grid,
  .bqm-cart__summary,
  .bqm-cart__totals,
  .bqm-cart__actions,
  .bqm-cart__service-options{
    grid-template-columns:1fr !important;
  }
}


/* v4.1.2 readability fallback */

.bqm-wrap{
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}
.bqm-hero h1,
.bqm-section-head h2,
.bqm-category-top h2,
.bqm-product__topline h3,
.bqm-featured-card__top strong,
.bqm-cart__header strong{
  letter-spacing:-.02em;
}
.bqm-hero p,
.bqm-product__body p,
.bqm-featured-card__meta,
.bqm-footer-note,
.bqm-empty,
.bqm-service-banner,
.bqm-note-inline,
.bqm-cart__hint,
.bqm-cart__micro,
.bqm-cart-item__meta span,
.bqm-cart-item__meta small,
.bqm-price__label{
  line-height:1.6;
}
.bqm-product__media,
.bqm-featured-card__media,
.bqm-showcase-card,
.bqm-stage-main-card__image{background:#1b1b1b}
.bqm-product__media img,
.bqm-featured-card__media img,
.bqm-showcase-card img,
.bqm-stage-main-card__image img,
.bqm-stage-filmstrip img{
  width:100%;height:100%;object-fit:cover;object-position:center;display:block;
}
.bqm-category-card{background-size:cover;background-position:center;overflow:hidden}
.bqm-category-card::before{background:linear-gradient(180deg,rgba(9,8,7,.10),rgba(12,10,9,.70) 72%,rgba(12,10,9,.82))}


/* v4.1.3 category card image fallback */
.bqm-category-card[style*="background-image"]{background-repeat:no-repeat!important;background-size:cover!important;background-position:center!important;}


/* v4.1.4 corporate structural sync */
.bqm-hero__button,
.bqm-order,
.bqm-cart__send,
.bqm-cart__ghost,
.bqm-chip,
.bqm-cart__service-option,
.bqm-cart__close,
.bqm-fab,
.bqm-cart-fab{transition:background .18s ease,border-color .18s ease,box-shadow .18s ease,transform .18s ease;}
.bqm-product__body p,
.bqm-featured-card__meta,
.bqm-cart__micro,
.bqm-note-inline,
.bqm-cart__hint,
.bqm-cart__notice,
.bqm-cart-item__meta span,
.bqm-cart-item__meta small{line-height:1.58;}
.bqm-product__topline h3,
.bqm-featured-card__top strong,
.bqm-cart__header strong{word-break:normal;overflow-wrap:break-word;}


/* v4.1.6 cart CTA cleanup */
.bqm-cart__header p,
.bqm-cart__micro,
.bqm-cart__hint{
  display:none !important;
}
.bqm-cart__footer{
  display:grid;
  gap:12px;
}
.bqm-cart__actions{
  grid-template-columns:1fr !important;
  gap:12px !important;
  margin-top:4px;
}
.bqm-cart__send{
  min-height:56px !important;
  font-size:15px;
}
.bqm-cart__ghost{
  min-height:46px !important;
}
.bqm-cart__notice:empty{
  display:none !important;
}


/* v4.1.8 safe ux refinements */
.bqm-cart__send.is-busy{pointer-events:none;opacity:.88;filter:saturate(.88)}
.bqm-category-card{gap:10px}
.bqm-category-card__meta{margin-top:auto}


/* v4.2.1 cart and mobile hardening */
body.bqm-cart-open{
  position:fixed;
  overflow:hidden;
  inset:0;
}
.bqm-cart__footer{
  position:sticky;
  bottom:0;
  z-index:2;
  padding-bottom:calc(18px + env(safe-area-inset-bottom, 0px));
  box-shadow:0 -16px 28px rgba(0,0,0,.18);
}
.bqm-cart__notice{
  scroll-margin-top:18px;
}
.bqm-cart__send.is-busy{
  opacity:.9;
  pointer-events:none;
}
.bqm-cart__send,
.bqm-cart__ghost{
  min-height:54px;
}
.bqm-cart__actions{
  align-items:stretch;
}
.bqm-cart__field.is-invalid input,
.bqm-cart__field.is-invalid select,
.bqm-cart__address.is-invalid textarea,
.bqm-cart__zone.is-invalid select,
.bqm-cart__service-options.is-invalid{
  border-color:rgba(255,107,107,.72) !important;
  box-shadow:0 0 0 3px rgba(255,107,107,.12);
}
@media (max-width:640px){
  .bqm-cart{
    border-left:none;
    border-radius:22px 22px 0 0;
    top:auto;
    bottom:0;
    transform:translateY(104%);
    box-shadow:0 -20px 54px rgba(0,0,0,.34);
  }
  .bqm-cart.is-open{transform:translateY(0)}
  .bqm-cart__header{
    padding-top:16px;
    position:sticky;
    top:0;
    z-index:2;
    background:linear-gradient(180deg,rgba(14,10,8,.96),rgba(14,10,8,.86));
    backdrop-filter:blur(10px);
  }
  .bqm-cart__body{
    padding:12px 14px 16px;
  }
  .bqm-cart__footer{
    padding:14px 14px calc(14px + env(safe-area-inset-bottom, 0px));
    background:linear-gradient(180deg,rgba(10,8,6,.82),rgba(10,8,6,.96));
  }
  .bqm-cart__summary strong,
  .bqm-cart__totals strong{
    font-size:16px;
  }
}


/* v4.2.2 phase 3 category and product polish */
.bqm-category-card{align-items:flex-start}
.bqm-category-card__desc{
  display:block !important;
  margin-top:8px;
  max-width:28ch;
  font-size:13px;
  line-height:1.5;
  color:rgba(255,255,255,.92);
}
.bqm-category-card__meta{margin-top:auto}
.bqm-category-top__desc{
  margin:10px 0 0;
  max-width:58ch;
  color:var(--bqm-muted);
  line-height:1.65;
}
.bqm-toolbar__intro{
  display:grid;
  gap:4px;
  margin-bottom:12px;
}
.bqm-toolbar__title strong{
  display:block;
  font-size:16px;
  line-height:1.25;
}
.bqm-toolbar__subtitle{
  color:var(--bqm-muted);
  font-size:13px;
  line-height:1.55;
}
.bqm-category-banner__inner small{display:block !important}
@media (max-width:640px){
  .bqm-category-card__desc{max-width:none;font-size:12px}
  .bqm-toolbar__title strong{font-size:15px}
}


.bqm-hero__trust{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.bqm-hero__trust span{display:inline-flex;align-items:center;justify-content:center;padding:10px 14px;border-radius:999px;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.12);color:#f6ece0;font-size:12px;font-weight:700;letter-spacing:.02em}
.bqm-section-head--home{margin-bottom:14px}
.bqm-home-quickline{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin:0 0 18px}
.bqm-home-quickline__item{display:flex;flex-direction:column;gap:6px;padding:16px 18px;border-radius:18px;border:1px solid rgba(255,255,255,.08);background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));box-shadow:0 12px 28px rgba(0,0,0,.14)}
.bqm-home-quickline__item small{font-size:12px;color:var(--bqm-muted);text-transform:uppercase;letter-spacing:.08em}
.bqm-home-quickline__item strong{font-size:16px;color:var(--bqm-text)}
.bqm-category-top__eyebrow{display:inline-flex;align-items:center;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.08);font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--bqm-muted);margin-bottom:10px}
.bqm-category-top__lead{margin:10px 0 0;color:var(--bqm-muted);font-size:14px;line-height:1.6}
@media (max-width: 768px){
  .bqm-home-quickline{grid-template-columns:1fr;gap:10px}
  .bqm-hero__trust{gap:8px}
  .bqm-hero__trust span{width:auto}
}


/* v4.2.5 cleaner corporate flow + instagram/location quick access */
.bqm-hero__stage.is-clean{padding:0 !important;background-position:center 52% !important;min-height:clamp(300px,34vw,400px) !important;}
.bqm-hero__stage.is-clean::before{inset:0 !important;border:none !important;background:linear-gradient(180deg,rgba(255,255,255,.02),transparent 42%,rgba(0,0,0,.06)) !important;}
.bqm-stage-main-card,.bqm-stage-pills,.bqm-home-quickline,.bqm-insight-row,.bqm-toolbar__intro,.bqm-filter-row,.bqm-category-top__eyebrow,.bqm-category-top__lead{display:none !important;}
.bqm-section-head--home p{display:none !important;}
.bqm-hero__ghost--social,.bqm-footer-actions__link{
  display:inline-flex;align-items:center;justify-content:center;min-height:44px;
  padding:0 16px;border-radius:999px;border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
  color:var(--bqm-text,#fff7f2);font-weight:800;letter-spacing:.01em;text-decoration:none;
  backdrop-filter:none;box-shadow:0 12px 30px rgba(0,0,0,.14);
}
.bqm-hero__ghost--social:hover,.bqm-footer-actions__link:hover{transform:translateY(-1px);border-color:rgba(255,255,255,.18);}
.bqm-footer-actions{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin:14px auto 0;max-width:var(--bqm-shell-max);}
.bqm-category-card[style*="background-image"]{background-size:cover !important;background-position:center center !important;}
.bqm-category-card::before{background:linear-gradient(180deg,rgba(10,10,12,.08),rgba(10,10,12,.56)) !important;}
.bqm-category-card__desc{display:none !important;}
.bqm-category-banner{background-position:center center !important;}
@media (max-width:640px){
  .bqm-hero__actions{gap:8px !important;}
  .bqm-hero__button,.bqm-hero__ghost--social{flex:1 1 calc(50% - 4px);min-width:0;}
  .bqm-footer-actions{gap:8px;padding-inline:12px;}
  .bqm-footer-actions__link{flex:1 1 calc(50% - 4px);min-width:0;}
}


.bqm-section-head--home{margin-bottom:20px;}
.bqm-section-head--home h2{letter-spacing:-.02em;}
.bqm-category-card{position:relative;}
.bqm-category-card__meta{display:inline-flex;align-self:flex-start;padding:6px 10px;border-radius:999px;background:rgba(255,255,255,.16);font-weight:700;}
.bqm-product__body{padding:18px 18px 18px 0;}
.bqm-product__desc{max-width:60ch;}


.bqm-category-card{position:relative;}
.bqm-category-card__eyebrow{display:inline-flex;align-self:flex-start;padding:6px 10px;border-radius:999px;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.16);color:#fff8ef;font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;}
.bqm-category-card__desc{margin:2px 0 0;max-width:28ch;color:rgba(255,247,238,.92);}
.bqm-category-card__footer{margin-top:auto;display:flex;align-items:center;justify-content:space-between;gap:10px;}
.bqm-category-card__cta{display:inline-flex;align-items:center;gap:6px;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.14);color:#fff;font-size:12px;font-weight:700;}
.bqm-category-top{display:grid;gap:10px;}
.bqm-category-top__eyebrow{display:inline-flex;align-self:flex-start;padding:6px 10px;border-radius:999px;background:rgba(255,244,228,.10);border:1px solid rgba(255,220,176,.14);color:#ffe6cb;font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;}
.bqm-category-top__lead{max-width:70ch;}
.bqm-category-top__meta{display:inline-flex;align-self:flex-start;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.06);border:1px solid rgba(255,220,176,.10);color:#fff4e8;font-size:13px;font-weight:700;}
.bqm-category-banner__inner small{display:block;margin-top:6px;font-weight:500;}
@media (max-width:768px){.bqm-category-card__desc{max-width:none;font-size:13px;}.bqm-category-card__footer{align-items:flex-end;}}


/* Phase 4 – product card standardization */
.bqm-product{
  align-items:stretch;
}
.bqm-product__body{
  gap:14px;
}
.bqm-product__badges{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:8px;
  flex:0 0 auto;
}
.bqm-product__purchase{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:auto;
}
.bqm-prices{
  gap:12px;
}
.bqm-price{
  justify-content:center;
  padding:14px 16px;
}
.bqm-price__label{
  font-size:12px;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.bqm-price strong{
  font-size:clamp(22px, 3vw, 28px);
  line-height:1.05;
}
.bqm-order-builder{
  gap:14px;
}
.bqm-order-inline{
  align-items:stretch;
}
.bqm-note-field input,
.bqm-qty{
  min-height:48px;
}
.bqm-product__actions--cart{
  align-items:stretch;
}
.bqm-add-cart,
.bqm-order{
  min-height:50px;
}
.bqm-order-preview{
  width:100%;
  justify-content:flex-start;
}
@media (max-width: 860px){
  .bqm-product__topline{
    gap:10px;
  }
  .bqm-product__badges{
    width:100%;
    justify-content:flex-start;
  }
}
@media (max-width: 640px){
  .bqm-product__purchase{
    gap:12px;
  }
  .bqm-price strong{
    font-size:24px;
  }
}


/* v4.3.4 quality phase 5 cart transformation */

.bqm-cart{
  box-shadow: 0 24px 72px rgba(0,0,0,.38) !important;
}
.bqm-cart__body{
  padding-bottom: 12px !important;
}
.bqm-cart__footer{
  position: sticky;
  bottom: 0;
  z-index: 6;
  border-top: 1px solid rgba(255,255,255,.08) !important;
  background: linear-gradient(180deg, rgba(18,14,12,.96), rgba(12,10,9,.995)) !important;
}
.bqm-cart__headline{
  align-items: center !important;
  padding: 12px 14px !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.07) !important;
  margin-bottom: 10px !important;
}
.bqm-cart__summary,
.bqm-cart__totals{
  gap: 10px !important;
}
.bqm-cart__summary > span,
.bqm-cart__totals > span{
  padding: 12px 14px !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.03) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
}
.bqm-cart__field input,
.bqm-cart__field select,
.bqm-cart__address textarea,
.bqm-cart__note textarea{
  min-height: 52px !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
}
.bqm-cart__address textarea,
.bqm-cart__note textarea{
  min-height: 96px !important;
}
.bqm-cart__actions{
  grid-template-columns: minmax(0,.9fr) minmax(0,1.25fr) !important;
  gap: 12px !important;
  align-items: stretch !important;
}
.bqm-cart__send{
  order: 2;
  min-height: 56px !important;
  font-size: 15px !important;
  letter-spacing: .01em;
  box-shadow: 0 14px 30px rgba(217,71,50,.28) !important;
}
.bqm-cart__ghost{
  order: 1;
  min-height: 56px !important;
  background: rgba(255,255,255,.04) !important;
}
.bqm-cart__send.is-disabled{
  box-shadow: none !important;
}
.bqm-cart-item{
  padding: 14px !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.03) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
}
.bqm-cart-item__meta strong{
  font-size: 15px !important;
  line-height: 1.35 !important;
}
.bqm-cart-item__meta span,
.bqm-cart-item__meta small{
  color: #dbcbbf !important;
}
.bqm-cart__notice{
  border-radius: 14px !important;
  padding: 12px 14px !important;
}
@media (max-width: 768px){
  .bqm-cart{
    height: min(90dvh, 90vh) !important;
    max-height: min(90dvh, 90vh) !important;
  }
  .bqm-cart__footer{
    padding-bottom: calc(18px + env(safe-area-inset-bottom)) !important;
  }
  .bqm-cart__actions{
    grid-template-columns: 1fr !important;
  }
  .bqm-cart__ghost,
  .bqm-cart__send{
    order: initial;
  }
}


/* v4.3.6 quality phase 6 mobile excellence */
:root{
  --bqm-mobile-vh:100vh;
  --bqm-mobile-safe-bottom:max(12px, env(safe-area-inset-bottom));
}
@media (max-width: 768px){
  .bqm-cart{
    height:min(calc(var(--bqm-mobile-vh, 100vh) - 8px), 900px);
    max-height:calc(var(--bqm-mobile-vh, 100vh) - 8px);
  }
  .bqm-cart__body{
    scroll-padding-bottom:140px;
  }
  .bqm-cart__footer{
    padding-bottom:calc(18px + var(--bqm-mobile-safe-bottom));
  }
  .bqm-cart-fab{
    bottom:calc(12px + var(--bqm-mobile-safe-bottom));
  }
  .bqm-waiter-fab{
    bottom:calc(82px + var(--bqm-mobile-safe-bottom));
  }
  .bqm-chip-row,
  .bqm-filter-row{
    scroll-snap-type:x proximity;
  }
  .bqm-chip,
  .bqm-filter{
    scroll-snap-align:start;
  }
}
@media (max-width: 520px){
  .bqm-shell{
    padding-left:12px;
    padding-right:12px;
  }
  .bqm-category-grid,
  .bqm-product-list{
    gap:14px;
  }
  .bqm-category-card{
    min-height:154px;
    border-radius:22px;
    background-position:center center !important;
  }
  .bqm-product{
    grid-template-columns:1fr;
  }
  .bqm-product__media{
    aspect-ratio:16/10;
    border-radius:20px 20px 0 0;
  }
  .bqm-product__body{
    padding:14px 14px 16px;
  }
  .bqm-product__topline h3{
    font-size:20px;
  }
  .bqm-prices,
  .bqm-product__actions,
  .bqm-product__actions--cart{
    grid-template-columns:1fr;
  }
  .bqm-cart__header strong{
    font-size:20px;
  }
  .bqm-cart-item__controls{
    align-items:stretch;
  }
  .bqm-cart-item__qty{
    width:100%;
    justify-content:space-between;
  }
  .bqm-cart__summary span,
  .bqm-cart__totals span{
    min-height:auto;
  }
}
@media (max-width: 390px){
  .bqm-hero h1{
    font-size:clamp(24px, 8.8vw, 32px);
  }
  .bqm-category-card__label{
    font-size:18px;
  }
  .bqm-cart__header,
  .bqm-cart__footer,
  .bqm-cart__body{
    padding-left:12px;
    padding-right:12px;
  }
  .bqm-cart__ghost,
  .bqm-cart__send,
  .bqm-cart__service-option,
  .bqm-add-cart,
  .bqm-order{
    min-height:46px;
  }
}


/* v4.3.6 quality phase 7 corporate brand polish */
:root{
  --bqm-brand-soft:#efe1d0;
  --bqm-brand-ink:#3b2818;
  --bqm-brand-line:rgba(88,58,31,.14);
  --bqm-brand-shadow:0 18px 42px rgba(29,18,10,.18);
}
.bqm-hero{
  border:1px solid rgba(255,243,224,.12);
  box-shadow:0 24px 56px rgba(20,12,7,.32);
}
.bqm-hero__eyebrow,
.bqm-category-top__eyebrow{
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#f4cf9f;
}
.bqm-hero h1,
.bqm-category-top h1{
  letter-spacing:-.03em;
}
.bqm-category-card{
  border:1px solid rgba(255,244,228,.10);
  box-shadow:0 18px 44px rgba(22,14,9,.22);
}
.bqm-category-card::before{
  background:linear-gradient(180deg,rgba(8,7,6,.08),rgba(10,9,8,.60) 70%,rgba(10,9,8,.78));
}
.bqm-category-card__meta{
  background:rgba(248,231,208,.16);
  border:1px solid rgba(255,255,255,.10);
  color:#fff6eb;
}
.bqm-product,
.bqm-cart-item,
.bqm-toolbar,
.bqm-cart__header,
.bqm-cart__footer{
  border-color:var(--bqm-brand-line) !important;
  box-shadow:var(--bqm-brand-shadow);
}
.bqm-product__topline h3,
.bqm-featured-card__top strong{
  letter-spacing:-.02em;
}
.bqm-add-cart,
.bqm-order,
.bqm-cart__send{
  box-shadow:0 14px 34px rgba(125,44,20,.26);
}
.bqm-cart__send{
  background:linear-gradient(180deg,#bf4a28,#8f2d17) !important;
  border-color:rgba(143,45,23,.45) !important;
}
.bqm-hero__ghost--social,
.bqm-footer-actions__link{
  background:rgba(245,232,215,.10);
  border:1px solid rgba(255,244,228,.16);
  color:#fff4e6;
}
.bqm-footer-actions{
  margin-top:18px;
}
.bqm-footer-actions__link:hover,
.bqm-hero__ghost--social:hover{
  background:rgba(245,232,215,.16);
}
@media (max-width: 768px){
  .bqm-hero h1,
  .bqm-category-top h1{
    text-wrap:balance;
  }
  .bqm-footer-actions__link,
  .bqm-hero__ghost--social{
    min-height:46px;
  }
}


/* v4.5.0 phase 2 corporate catalog polish */
.bqm-phase2-hero-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:20px;
  max-width:760px;
}
.bqm-phase2-hero-stat,
.bqm-phase2-strip__card,
.bqm-phase2-category-summary{
  border:1px solid rgba(255,244,228,.12);
  background:linear-gradient(180deg,rgba(34,24,18,.72),rgba(20,14,11,.92));
  border-radius:20px;
  box-shadow:0 18px 34px rgba(0,0,0,.18);
}
.bqm-phase2-hero-stat{
  padding:14px 16px;
  display:flex;
  flex-direction:column;
  gap:5px;
}
.bqm-phase2-hero-stat span,
.bqm-phase2-strip__card span,
.bqm-phase2-category-summary span,
.bqm-phase2-featured-card__tag{
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#f3c68d;
  font-weight:700;
}
.bqm-phase2-hero-stat strong,
.bqm-phase2-strip__card strong,
.bqm-phase2-category-summary strong{
  font-size:22px;
  line-height:1.05;
  color:#fff8ef;
}
.bqm-phase2-hero-stat small,
.bqm-phase2-strip__card small,
.bqm-phase2-category-summary small{
  color:#dbc7b4;
  font-size:13px;
}
.bqm-phase2-strip{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin:0 0 18px;
}
.bqm-phase2-strip__card{
  padding:16px 18px;
  min-height:112px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:6px;
}
.bqm-phase2-blockhead{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:12px;
  margin:24px 0 14px;
}
.bqm-phase2-blockhead h3{
  margin:0;
  font-size:24px;
  line-height:1.06;
  color:#fff7ee;
}
.bqm-phase2-blockhead p{
  margin:6px 0 0;
  color:#d2c0b0;
}
.bqm-phase2-blockhead--compact{
  margin-top:14px;
}
.bqm-phase2-category-summary{
  margin-top:12px;
  padding:14px 16px;
  display:flex;
  flex-direction:column;
  gap:4px;
  max-width:320px;
}
.bqm-phase2-featured-grid{
  max-width:none !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:14px !important;
  margin-bottom:20px !important;
}
.bqm-phase2-featured-card{
  grid-template-columns:112px minmax(0,1fr) !important;
  min-height:112px !important;
  border-radius:24px !important;
  background:linear-gradient(180deg,rgba(31,22,16,.96),rgba(18,13,10,.98)) !important;
}
.bqm-phase2-featured-card .bqm-featured-card__media{
  min-height:112px !important;
  aspect-ratio:1 / 1 !important;
}
.bqm-phase2-featured-card .bqm-featured-card__body{
  padding:14px 16px !important;
  gap:6px !important;
}
.bqm-phase2-featured-card .bqm-featured-card__top strong{
  font-size:18px !important;
  line-height:1.1 !important;
}
.bqm-phase2-featured-card .bqm-featured-card__meta{
  font-size:13px !important;
  color:#ffe1c0 !important;
}
.bqm-phase2-featured-card__tag{
  display:inline-flex;
  align-self:flex-start;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.bqm-phase2-filter-row{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:8px !important;
  margin:0 0 16px !important;
}
.bqm-filter{
  appearance:none;
  border:1px solid rgba(255,244,228,.10);
  background:rgba(32,23,17,.92);
  color:#fff3e4;
  border-radius:999px;
  padding:10px 14px;
  font-weight:700;
  cursor:pointer;
}
.bqm-filter.is-active{
  background:linear-gradient(180deg,#b64c27,#8b3017);
  border-color:rgba(182,76,39,.44);
  color:#fff;
}
.bqm-section-head--home p{
  max-width:620px;
}
.bqm-product__desc{
  line-height:1.55;
}
@media (max-width: 860px){
  .bqm-phase2-strip,
  .bqm-phase2-hero-stats,
  .bqm-phase2-featured-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width: 640px){
  .bqm-phase2-hero-stat,
  .bqm-phase2-strip__card,
  .bqm-phase2-category-summary{
    border-radius:18px;
  }
  .bqm-phase2-hero-stat strong,
  .bqm-phase2-strip__card strong,
  .bqm-phase2-category-summary strong{
    font-size:18px;
  }
  .bqm-phase2-strip__card{
    min-height:unset;
  }
  .bqm-phase2-featured-card{
    grid-template-columns:88px minmax(0,1fr) !important;
    min-height:88px !important;
  }
  .bqm-phase2-featured-card .bqm-featured-card__media{
    min-height:88px !important;
  }
  .bqm-phase2-featured-card .bqm-featured-card__body{
    padding:12px 13px !important;
  }
  .bqm-phase2-featured-card .bqm-featured-card__top strong{
    font-size:16px !important;
  }
  .bqm-phase2-blockhead h3{
    font-size:20px;
  }
  .bqm-phase2-filter-row{
    flex-wrap:nowrap !important;
    overflow:auto;
    padding-bottom:4px;
  }
}


/* Phase 3 cart and order flow polish */
.bqm-cart__quickline{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 14px;
}
.bqm-cart__mini{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color:#f7efe5;
  font-size:12px;
  line-height:1.2;
}
.bqm-cart__progress{
  display:grid;
  gap:10px;
  margin:0 0 14px;
  padding:14px;
  border-radius:16px;
  background:linear-gradient(180deg,rgba(255,183,91,.09),rgba(255,255,255,.03));
  border:1px solid rgba(255,183,91,.18);
}
.bqm-cart__progress[hidden]{display:none !important;}
.bqm-cart__progress-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.bqm-cart__progress-head span{
  color:#fff1dc;
  font-size:13px;
  line-height:1.4;
  font-weight:700;
}
.bqm-cart__progress-head strong{
  color:var(--bqm-muted);
  font-size:12px;
  white-space:nowrap;
}
.bqm-cart__progress-bar{
  height:10px;
  border-radius:999px;
  overflow:hidden;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
}
.bqm-cart__progress-bar span{
  display:block;
  height:100%;
  width:0;
  border-radius:999px;
  background:linear-gradient(90deg,var(--bqm-amber),var(--bqm-red));
  transition:width .28s ease;
}
.bqm-cart__progress.is-complete{
  border-color:rgba(34,197,94,.24);
  background:linear-gradient(180deg,rgba(34,197,94,.12),rgba(255,255,255,.03));
}
.bqm-cart__header p[data-bqm-cart-mode-label]{
  display:block !important;
  margin:8px 0 0;
  color:var(--bqm-muted);
  font-size:13px;
  line-height:1.45;
}
.bqm-toast-stack{
  position:fixed;
  right:18px;
  bottom:max(90px,calc(90px + env(safe-area-inset-bottom)));
  z-index:10080;
  display:grid;
  gap:8px;
  pointer-events:none;
}
.bqm-toast{
  min-width:220px;
  max-width:min(320px,calc(100vw - 24px));
  padding:12px 14px;
  border-radius:14px;
  background:rgba(16,18,22,.94);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 16px 34px rgba(0,0,0,.28);
  color:#fff;
  font-size:13px;
  line-height:1.4;
  opacity:0;
  transform:translateY(10px);
  transition:opacity .2s ease, transform .2s ease;
}
.bqm-toast.is-visible{
  opacity:1;
  transform:translateY(0);
}
.bqm-toast.is-leaving{
  opacity:0;
  transform:translateY(6px);
}
@media (max-width:640px){
  .bqm-cart__quickline{
    gap:6px;
  }
  .bqm-cart__mini{
    font-size:11px;
    padding:7px 10px;
  }
  .bqm-toast-stack{
    left:12px;
    right:12px;
    bottom:max(88px,calc(88px + env(safe-area-inset-bottom)));
  }
  .bqm-toast{
    min-width:0;
    max-width:none;
  }
}


/* Phase 4 mobile flow refinements */
.bqm-mobile-dock{display:none}
@media (max-width:640px){
  .bqm-shell{padding-bottom:168px !important;}
  .bqm-cart-fab{display:none !important;}
  .bqm-mobile-dock{
    position:fixed;
    left:12px;
    right:12px;
    bottom:max(12px,calc(12px + env(safe-area-inset-bottom)));
    z-index:10080;
    display:grid;
    grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
    gap:10px;
    padding:10px;
    border-radius:24px;
    background:linear-gradient(180deg,rgba(23,17,13,.96),rgba(15,11,8,.96));
    border:1px solid rgba(255,220,176,.16);
    box-shadow:0 20px 44px rgba(0,0,0,.38);
    backdrop-filter:blur(18px);
  }
  .bqm-mobile-dock__button{
    position:relative;
    appearance:none;
    border:none;
    min-height:58px;
    border-radius:18px;
    padding:12px 14px;
    text-align:left;
    color:#fff;
    background:linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.04));
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:4px;
  }
  .bqm-mobile-dock__button strong{font-size:15px;line-height:1.15;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:calc(100% - 38px)}
  .bqm-mobile-dock__button--ghost{border:1px solid rgba(255,220,176,.12)}
  .bqm-mobile-dock__button--cart{background:linear-gradient(180deg,#d34d2f,#9f2315);box-shadow:inset 0 1px 0 rgba(255,255,255,.16)}
  .bqm-mobile-dock__label{font-size:10px;letter-spacing:.08em;text-transform:uppercase;opacity:.82}
  .bqm-mobile-dock__badge{
    position:absolute;
    top:12px;
    right:12px;
    min-width:28px;
    height:28px;
    padding:0 8px;
    display:grid;
    place-items:center;
    border-radius:999px;
    background:#ffd277;
    color:#2e1809;
    font-size:12px;
    font-weight:900;
    box-shadow:0 10px 20px rgba(0,0,0,.18);
  }
  .bqm-waiter-fab{bottom:max(92px,calc(92px + env(safe-area-inset-bottom))) !important;}
  .bqm-chip-row{top:8px !important;padding-top:8px !important;padding-bottom:12px !important;}
  .bqm-search{min-height:48px !important;font-size:16px !important;}
  .bqm-product{
    grid-template-columns:104px minmax(0,1fr) !important;
    gap:0 !important;
    border-radius:22px !important;
  }
  .bqm-product__media{
    min-height:100%;
    border-right:1px solid rgba(255,220,176,.10);
  }
  .bqm-product__media img{height:100% !important;min-height:100% !important;}
  .bqm-product__body{padding:14px !important;}
  .bqm-product__topline h3{font-size:20px !important;}
  .bqm-product__body p{font-size:14px !important;line-height:1.45 !important;}
  .bqm-prices{margin-top:12px !important;gap:8px !important;}
  .bqm-price{min-width:0 !important;flex:1 1 calc(50% - 8px);padding:10px 12px !important;border-radius:14px !important;}
  .bqm-price strong{font-size:18px !important;}
  .bqm-order-inline{display:grid !important;grid-template-columns:110px minmax(0,1fr);gap:10px !important;align-items:start;}
  .bqm-qty{min-height:46px !important;border-radius:15px !important;}
  .bqm-note-field input{min-height:46px !important;border-radius:15px !important;}
  .bqm-product__actions--cart{display:grid !important;grid-template-columns:1fr 1fr;gap:10px !important;align-items:center;}
  .bqm-add-cart,.bqm-order{min-height:48px !important;border-radius:16px !important;justify-content:center !important;}
  .bqm-order-preview{grid-column:1 / -1;line-height:1.35;padding-top:2px;}
}


/* Phase 6 premium conversion */
.bqm-phase6-hero .bqm-hero__content{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);gap:24px;align-items:stretch}
.bqm-phase6-utilitybar{grid-column:1 / -1;display:flex;gap:10px;flex-wrap:wrap;margin-bottom:6px}
.bqm-phase6-utilitybar__item{display:inline-flex;align-items:center;min-height:38px;padding:8px 14px;border-radius:999px;background:rgba(255,245,232,.09);border:1px solid rgba(255,220,176,.12);backdrop-filter:blur(10px);font-size:13px;color:#fff2de}
.bqm-hero__ghost--cta{border-color:rgba(255,190,112,.26);background:rgba(255,190,112,.10);color:#fff7ef}
.bqm-phase6-hero-stats{margin-top:20px}
.bqm-phase6-stage{display:flex;flex-direction:column;justify-content:flex-end;gap:14px;min-height:100%}
.bqm-phase6-stage__card,.bqm-phase6-stage__mini{position:relative;overflow:hidden;background:linear-gradient(180deg,rgba(28,20,14,.92),rgba(18,12,9,.92));border:1px solid rgba(255,220,176,.12);border-radius:22px;box-shadow:0 16px 34px rgba(0,0,0,.24)}
.bqm-phase6-stage__card{padding:22px 22px 20px}
.bqm-phase6-stage__card::after,.bqm-phase6-stage__mini::after{content:'';position:absolute;inset:auto -30% -55% auto;width:160px;height:160px;border-radius:50%;background:radial-gradient(circle,rgba(255,167,78,.22),transparent 68%);pointer-events:none}
.bqm-phase6-stage__eyebrow{display:inline-flex;padding:6px 10px;border-radius:999px;background:rgba(255,255,255,.08);font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:#ffd7a7;margin-bottom:12px}
.bqm-phase6-stage__card strong{display:block;font-size:26px;line-height:1.05;color:#fff8f0}
.bqm-phase6-stage__card p{margin:10px 0 0;color:#ead4bb;line-height:1.55}
.bqm-phase6-stage__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.bqm-phase6-stage__mini{padding:16px 16px 14px}
.bqm-phase6-stage__mini span,.bqm-phase6-service-card span{display:block;font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:#ffcb8f;margin-bottom:8px}
.bqm-phase6-stage__mini strong,.bqm-phase6-service-card strong{display:block;font-size:18px;line-height:1.2;color:#fff9f3}
.bqm-phase6-stage__mini small{display:block;margin-top:6px;color:#cdb9a6;line-height:1.4}
.bqm-phase6-service-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin:22px 0 8px}
.bqm-phase6-service-card{position:relative;overflow:hidden;padding:20px;border-radius:22px;background:linear-gradient(180deg,rgba(28,20,14,.90),rgba(18,12,9,.92));border:1px solid rgba(255,220,176,.12);box-shadow:0 16px 34px rgba(0,0,0,.18)}
.bqm-phase6-service-card p{margin:10px 0 0;color:#e0cfbf;line-height:1.55}
.bqm-phase6-quick-actions{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0 4px}
.bqm-phase6-quick-actions__link,.bqm-footer-actions__link--primary{display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:12px 16px;border-radius:16px;background:rgba(255,255,255,.08);border:1px solid rgba(255,220,176,.12);color:#fff9f3;text-decoration:none;font-weight:700}
.bqm-phase6-quick-actions__link.is-primary,.bqm-footer-actions__link--primary{background:linear-gradient(180deg,#d95737,#a72516);box-shadow:inset 0 1px 0 rgba(255,255,255,.14)}
@media (max-width:960px){
  .bqm-phase6-hero .bqm-hero__content{grid-template-columns:1fr}
  .bqm-phase6-stage__grid,.bqm-phase6-service-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:640px){
  .bqm-phase6-utilitybar{gap:8px}
  .bqm-phase6-utilitybar__item{min-height:34px;padding:7px 12px;font-size:12px}
  .bqm-phase6-stage__card{padding:18px}
  .bqm-phase6-stage__card strong{font-size:22px}
  .bqm-phase6-stage__grid,.bqm-phase6-service-grid{grid-template-columns:1fr}
  .bqm-phase6-quick-actions{margin-top:16px}
  .bqm-phase6-quick-actions__link{flex:1 1 calc(50% - 10px)}
}


/* v4.9.1 sade kurumsal hotfix */
:root{
  --bqm-bg:#111111;
  --bqm-panel:#1a1a1a;
  --bqm-panel-2:#202020;
  --bqm-text:#f5f1eb;
  --bqm-muted:#d4c8ba;
  --bqm-line:rgba(255,255,255,.12);
  --bqm-red:#b53a1d;
  --bqm-red-dark:#8f2d16;
}
.bqm-wrap{
  background:#111 url('../images/hero-v290.jpg') center top/cover no-repeat fixed !important;
}
.bqm-wrap::before{
  background:linear-gradient(180deg,rgba(8,8,8,.62),rgba(8,8,8,.82)) !important;
  transform:none !important;
  filter:none !important;
}
.bqm-wrap::after{background:linear-gradient(180deg,rgba(8,8,8,.28),rgba(8,8,8,.74)) !important;}
.bqm-hero,
.bqm-hero--clean{
  background:linear-gradient(135deg,rgba(18,18,18,.92),rgba(34,22,16,.86)) !important;
  border:1px solid rgba(255,255,255,.10) !important;
  box-shadow:0 18px 42px rgba(0,0,0,.24) !important;
}
.bqm-hero::before,
.bqm-hero::after,
.bqm-category-card::before,
.bqm-category-card::after,
.bqm-product::before,
.bqm-product::after,
.bqm-product__media::before,
.bqm-stage-filmstrip,
.bqm-grid-glow,
.bqm-orb,
.bqm-floating-card,
.bqm-floating-chip,
.bqm-showcase,
.bqm-phase2-strip,
.bqm-phase2-hero-stats,
.bqm-phase2-blockhead,
.bqm-phase2-category-summary,
.bqm-phase6-service-grid,
.bqm-phase6-quick-actions,
.bqm-phase6-stage,
.bqm-phase6-utilitybar,
.bqm-category-banner,
.bqm-filter-row,
.bqm-featured-grid,
.bqm-featured-card,
.bqm-featured-card__media,
.bqm-featured-card__body{display:none !important;content:none !important;}
.bqm-hero__content--clean{display:block !important;padding:44px 28px 38px !important;}
.bqm-hero__copy--clean{max-width:700px !important;}
.bqm-kicker{
  background:rgba(255,255,255,.08) !important;
  color:#f8efe6 !important;
  border:1px solid rgba(255,255,255,.10) !important;
}
.bqm-hero h1{color:#ffffff !important;letter-spacing:-.03em !important;}
.bqm-hero p{color:#efe4d7 !important;max-width:58ch !important;font-size:17px !important;}
.bqm-hero__statusline{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px;color:#f0e2d2;font-size:14px;}
.bqm-hero__statusline span{
  display:inline-flex;align-items:center;min-height:36px;padding:8px 12px;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);border-radius:999px;
}
.bqm-service-dot{background:#233126 !important;color:#eefcf1 !important;border:1px solid rgba(125,211,144,.28) !important;}
.bqm-service-dot.is-paused{background:#3a1f20 !important;color:#ffeaea !important;border-color:rgba(255,160,160,.18) !important;}
.bqm-hero__actions--clean{margin-top:18px !important;}
.bqm-hero__button{background:#fff8ef !important;color:#161616 !important;box-shadow:none !important;}
.bqm-hero__ghost{background:transparent !important;color:#fff6ed !important;border:1px solid rgba(255,255,255,.18) !important;}
.bqm-section-head h2,.bqm-category-top h2{color:#fff8ef !important;}
.bqm-section-head p,.bqm-category-top p,.bqm-footer-note,.bqm-empty{color:#dfd1c1 !important;}
.bqm-category-grid{gap:14px !important;}
.bqm-category-card{
  min-height:158px !important;
  justify-content:flex-end !important;
  background:linear-gradient(180deg,rgba(12,12,12,.18),rgba(12,12,12,.72)),linear-gradient(180deg,rgba(24,24,24,.72),rgba(24,24,24,.92)) !important;
  border:1px solid rgba(255,255,255,.10) !important;
  box-shadow:0 12px 28px rgba(0,0,0,.18) !important;
  transform:none !important;
}
.bqm-category-card:hover{transform:none !important;box-shadow:0 16px 32px rgba(0,0,0,.22) !important;}
.bqm-category-card__eyebrow,.bqm-category-card__desc{display:none !important;}
.bqm-category-card__label{font-size:25px !important;color:#fffdfa !important;}
.bqm-category-card__footer{display:flex;align-items:center;justify-content:space-between;gap:12px;}
.bqm-category-card__meta{background:rgba(255,255,255,.08) !important;color:#fff5eb !important;border:1px solid rgba(255,255,255,.10) !important;}
.bqm-category-card__cta{display:inline-flex;color:#fff0e2;font-weight:700;font-size:13px;}
.bqm-category-top{margin-bottom:16px !important;}
.bqm-category-top__eyebrow,.bqm-category-top__lead{display:none !important;}
.bqm-category-top__meta{background:transparent !important;border:none !important;color:#ead9c8 !important;padding:0 !important;margin-top:8px !important;}
.bqm-back{color:#fff0e2 !important;}
.bqm-chip-row{
  position:sticky;top:0;z-index:8;margin:0 0 18px !important;padding:10px 0 !important;
  background:linear-gradient(180deg,rgba(17,17,17,.98),rgba(17,17,17,.92)) !important;
  backdrop-filter:none !important;
}
.bqm-chip{background:#1d1d1d !important;color:#f8f1e8 !important;border:1px solid rgba(255,255,255,.10) !important;}
.bqm-chip.is-active{background:#fff4e8 !important;color:#191919 !important;border-color:#fff4e8 !important;}
.bqm-search{background:#1b1b1b !important;color:#fff8ef !important;border:1px solid rgba(255,255,255,.12) !important;box-shadow:none !important;}
.bqm-search::placeholder{color:#c4b4a3 !important;}
.bqm-product{
  grid-template-columns:136px minmax(0,1fr) !important;
  background:#191919 !important;
  border:1px solid rgba(255,255,255,.10) !important;
  box-shadow:0 14px 32px rgba(0,0,0,.18) !important;
  backdrop-filter:none !important;
  transform:none !important;
}
.bqm-product:hover{transform:none !important;border-color:rgba(255,255,255,.16) !important;}
.bqm-product__media{background:#101010 !important;}
.bqm-product__topline h3{color:#fff9f2 !important;font-size:24px !important;}
.bqm-product__body p,.bqm-product__desc{color:#d9cab9 !important;}
.bqm-product__badges{display:none !important;}
.bqm-prices{gap:8px !important;}
.bqm-price{background:#232323 !important;border:1px solid rgba(255,255,255,.10) !important;}
.bqm-price__label{color:#d3c3b1 !important;}
.bqm-price strong{color:#fff8f0 !important;}
.bqm-note-field span,.bqm-order-preview,.bqm-cart__eyebrow,.bqm-cart__mini small,.bqm-cart__summary small,.bqm-cart__totals small{color:#cdbdaa !important;}
.bqm-note-field input,.bqm-cart__field input,.bqm-cart__field select,.bqm-cart__address textarea,.bqm-cart__note textarea{
  background:#1b1b1b !important;color:#fff8ef !important;border:1px solid rgba(255,255,255,.12) !important;
}
.bqm-add-cart,.bqm-order,.bqm-cart__send{background:#fff4e8 !important;color:#161616 !important;box-shadow:none !important;border:none !important;}
.bqm-cart__ghost{background:transparent !important;color:#fff2e4 !important;border:1px solid rgba(255,255,255,.14) !important;}
.bqm-unavailable{background:#2a1d1d !important;color:#ffe7e7 !important;border-color:rgba(255,255,255,.08) !important;}
.bqm-service-banner,.bqm-empty,.bqm-footer-note{
  background:#1b1b1b !important;border:1px solid rgba(255,255,255,.10) !important;border-radius:18px !important;padding:14px 16px !important;
}
.bqm-footer-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px;}
.bqm-footer-actions__link{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:0 16px;border-radius:14px;border:1px solid rgba(255,255,255,.12);background:#1c1c1c;color:#fff3e7;text-decoration:none;font-weight:700;}
.bqm-footer-actions__link--primary{background:#fff4e8 !important;color:#151515 !important;}
@media (max-width:640px){
  .bqm-shell{padding:16px 12px 108px !important;}
  .bqm-hero__content--clean{padding:28px 16px 24px !important;}
  .bqm-hero h1{font-size:clamp(30px,9vw,40px) !important;}
  .bqm-hero p{font-size:15px !important;}
  .bqm-hero__statusline{gap:8px;}
  .bqm-hero__statusline span{min-height:34px;padding:7px 11px;font-size:12px;}
  .bqm-category-card{min-height:142px !important;border-radius:20px !important;}
  .bqm-category-card__label{font-size:22px !important;}
  .bqm-product{grid-template-columns:1fr !important;}
  .bqm-product__media{aspect-ratio:4/3 !important;}
  .bqm-product__body{padding:14px !important;}
}
