:root{
  --brand: var(--accent2);
  --bg:#0f1215;
  --panel:#171b1f;
  --panel2:#1f252b;
  --text:#f5f7fa;
  --muted:rgba(245,247,250,.68);
  --accent:#f2b705;
  --accent2:#f8a814;
  --red:var(--accent);
  --line:rgba(255,255,255,.10);
  --shadow:0 10px 35px rgba(0,0,0,.35);
  --shadow2:0 18px 60px rgba(0,0,0,.55);
  --radius:20px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{text-decoration:none;color:inherit}

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  background:#fff;
  border-bottom:1px solid #eee;
  z-index:100;
}
.topbar__inner{
  max-width:1200px;
  margin:auto;
  padding:18px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
}
.brand{display:flex;align-items:center;gap:12px}
.brand__logo{
  background:var(--red);
  color:#fff;
  font-weight:900;
  border-radius:12px;
  width:42px;height:42px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow);
}
.brand__txt{display:flex;flex-direction:column}
.brand__name{font-weight:900;line-height:1}
.brand__sub{font-size:12px;color:rgba(0,0,0,.55);margin-top:4px}
.nav{display:flex;align-items:center;gap:14px}
.nav a{font-weight:700;font-size:14px;color:#111}
@media(max-width:860px){.nav{display:none}}

/* Hero */
.hero{
  padding:44px 20px 18px;
  max-width:1200px;
  margin:auto;
}
.hero h1{
  font-size:42px;
  margin:0;
  font-weight:900;
  letter-spacing:-.4px;
}
.hero p{margin:12px 0 0;color:rgba(0,0,0,.55);font-weight:600}

/* Sticky chips like Sushi Prime */
.chips{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  position:sticky;
  top:86px;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  padding:10px 0;
  z-index:60;
}
.chip{
  border:1px solid #e5e7eb;
  background:#fff;
  padding:10px 16px;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
  transition:.18s ease;
  font-size:13px;
}
.chip:hover{border-color:var(--brand);color:var(--brand)}
.chip--active{background:var(--brand);color:#111;border-color:var(--brand)}

.menuWrap{
  max-width:1200px;
  margin:auto;
  padding:10px 20px 120px;
}




.grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
@media(max-width:1000px){.grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.grid{grid-template-columns:1fr}}

/* Product card */
.pcard{
  background:#fff;
  border-radius:var(--radius);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:var(--shadow);
  transition:.22s ease;
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
.pcard:hover{transform:translateY(-4px);box-shadow:var(--shadow2)}
.pcard__media{height:200px;background:#f6f7f9;position:relative;overflow:hidden}
.pcard__img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}


.pcard__tag{
  position:absolute;left:14px;top:14px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.08);
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
}
.pcard__body{padding:18px}
.pcard__name{font-size:16px;font-weight:900;margin:0}
.pcard__desc {
  font-size: 14px;
  color: rgba(0,0,0,.55);
  margin-top: 8px;
  line-height: 1.35;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pcard__foot{
  padding:0 18px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.price{font-weight:1000;font-size:15px;color:var(--yellow);}
.addBtn{
  background:var(--brand);
  color:#111;
  border:none;
  width:40px;height:40px;
  border-radius:14px;
  cursor:pointer;
  font-size:20px;
  font-weight:900;
  transition:.18s ease;
}
.addBtn:hover{transform:translateY(-1px);filter:brightness(.92)}

/* Skeleton loading */
.skelGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:22px}
@media(max-width:1000px){.skelGrid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.skelGrid{grid-template-columns:1fr}}
.skelCard{
  border-radius:var(--radius);
  border:1px solid rgba(0,0,0,.06);
  background:#fff;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.skelMedia{height:160px;background:linear-gradient(90deg,#f3f4f6 0%,#eceff3 40%,#f3f4f6 80%);background-size:200% 100%;animation:shimmer 1.2s infinite}
.skelBody{padding:18px}
.skelLine{height:12px;border-radius:999px;background:linear-gradient(90deg,#f3f4f6 0%,#eceff3 40%,#f3f4f6 80%);background-size:200% 100%;animation:shimmer 1.2s infinite}
.skelLine + .skelLine{margin-top:10px}
.skelLine.short{width:60%}
@keyframes shimmer{0%{background-position:180% 0}100%{background-position:-20% 0}}

/* Drawer + overlay */
.overlay{
  position:fixed;inset:0;
  background:rgba(0,0,0,.38);
  opacity:0;
  pointer-events:none;
  transition:.18s ease;
  z-index:120;
}
.overlay--open{opacity:1;pointer-events:auto}

.drawer{
  position:fixed;
  right:0;top:0;
  width:min(420px,92vw);
  height:100%;
  background:#fff;
  color:#111;
  transform:translateX(110%);
  transition:transform .22s ease;
  z-index:130;
  box-shadow:-18px 0 60px rgba(0,0,0,.18);
  display:flex;
  flex-direction:column;
}
.drawer--open{transform:translateX(0)}
.drawer__top{
  padding:16px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
  border-bottom:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
}
.drawer__title{font-weight:1000}
.drawer__sub{margin-top:4px;font-size:12px;color:rgba(0,0,0,.55);font-weight:800}
.drawer__body{padding:14px 14px 18px;overflow:auto}

.ghostBtn{
  border:0;
  background:#111;
  color:#fff;
  padding:8px 12px;
  border-radius:999px;
  cursor:pointer;
  font-weight:900;
}

/* Cart items */
.cartList{display:flex;flex-direction:column;gap:10px}
.cartItem{
  border-radius:16px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  padding:12px;
}
.cartItem__top{display:flex;justify-content:space-between;gap:10px}
.cartItem__name{font-weight:1000;font-size:13px}
.cartItem__price{font-weight:1000}
.cartItem__controls{display:flex;align-items:center;gap:8px;margin-top:10px}
.stepper{display:flex;align-items:center;gap:8px;border-radius:999px;padding:6px 8px;background:rgba(0,0,0,.06)}
.stepBtn{
  width:28px;height:28px;border-radius:999px;border:0;
  background:#111;color:#fff;cursor:pointer;font-weight:1000
}
.qty{font-weight:1000;min-width:18px;text-align:center}
.xBtn{width:28px;height:28px;border-radius:999px;border:0;background:var(--red);color:#fff;cursor:pointer;font-weight:1000}
.note{margin-top:10px;width:100%;border-radius:14px;border:1px solid rgba(0,0,0,.10);padding:10px 12px;font:inherit;resize:vertical;min-height:44px}
.smallHint{margin-top:6px;font-size:12px;color:rgba(0,0,0,.55);font-weight:800}

.card{margin-top:12px;border-radius:16px;border:1px solid rgba(0,0,0,.10);background:#fff;padding:12px}
.card__title{font-weight:1000}
.hint{margin-top:6px;font-size:12px;color:rgba(0,0,0,.58);font-weight:800}

.seg{display:flex;gap:10px;margin-top:10px}
.seg__btn{
  flex:1;border:0;padding:10px 12px;border-radius:12px;
  cursor:pointer;font-weight:1000;background:rgba(0,0,0,.08);color:rgba(0,0,0,.75)
}
.seg__btn--active{background:var(--red);color:#fff}

.couponRow{margin-top:10px;display:flex;gap:10px;flex-wrap:wrap}
.coupon{
  border:1px solid rgba(0,0,0,.10);
  background:rgba(0,0,0,.06);
  color:rgba(0,0,0,.85);
  border-radius:999px;
  padding:8px 10px;
  cursor:pointer;
  font-weight:1000;
  font-size:12px;
}
.coupon--active{background:var(--red);color:#fff;border-color:rgba(225,29,46,.35)}

.phoneRow{margin-top:10px;display:flex;gap:10px;align-items:center}
.pill{border-radius:12px;padding:10px 10px;font-weight:1000;background:rgba(0,0,0,.08)}
.input{width:100%;border-radius:12px;border:1px solid rgba(0,0,0,.10);padding:10px 12px;font:inherit}

.totals{margin-top:12px;border-radius:16px;border:1px solid rgba(0,0,0,.10);background:#fff;padding:12px}
.totals__row{display:flex;justify-content:space-between;align-items:center;font-weight:900;padding:6px 0}
.totals__row--big{border-top: 1px dashed rgb(0 0 0 / 86%);margin-top:6px;padding-top:10px;font-size:16px;font-weight:1000}

.cta{
  margin-top:12px;width:100%;
  border:0;border-radius:16px;
  padding:14px 14px;
  cursor:pointer;
  background:var(--red);
  color:#fff;
  font-weight:1000;
  transition:.18s ease;
}
.cta:hover{filter:brightness(.94)}
.cta:disabled{opacity:.55;cursor:not-allowed}

.warn{
  margin-top:10px;padding:10px 12px;border-radius:14px;
  background:rgba(225,29,46,.10);
  border:1px solid rgba(225,29,46,.22);
  color:rgba(0,0,0,.82);
  font-weight:1000;
}

/* Floating cart (mobile-friendly) */
.floatCart{
  position:fixed;
  right:18px;
  bottom:18px;
  width:56px;height:56px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  box-shadow:var(--shadow2);
  cursor:pointer;
  display:grid;
  place-items:center;
  z-index:90;
  transition:.18s ease;
}
.floatCart:hover{transform:translateY(-2px)}
.floatCart__badge{
  position:absolute;
  top:-6px; right:-6px;
  width:22px;height:22px;
  border-radius:999px;
  background:var(--red);
  color:#fff;
  display:grid;place-items:center;
  font-size:12px;
  font-weight:1000;
  border:2px solid #fff;
}

/* Footer */
.footer{
  border-top:1px solid #eee;
  padding:30px 20px;
  text-align:center;
  font-size:14px;
  color:#777;
}

/* Category banner title overlay (responsive, red bg, white text) */


.banner__subtitle{position:absolute;left:18px;bottom:10px;color:rgba(255,255,255,.9);font-weight:800;font-size:12px;}
@media(max-width:640px){}


/* OVERRIDE banner: solid red like SushiPrime */
.banner.banner--text{height:160px;background:var(--red);display:flex;align-items:flex-end;padding:18px;border-radius:var(--radius);box-shadow:var(--shadow);border:1px solid rgba(0,0,0,.06)}
.banner.banner--text 
@media(max-width:640px){.banner.banner--text{height:130px;padding:14px}}

/* === CATEGORY BANNER CLEAN FIX === */


/* Keep anchors visible under sticky header/chips */
.section{scroll-margin-top:140px;}

/* === CATEGORY BANNER (SushiPrime-like) === */


.banner img{ display:none; }



@media(max-width:640px){
  
  
}


/* === HEADER MATCH (red / white) === */
.header{
  background:var(--brand) !important;
  color:#111 !important;
  border-bottom:1px solid rgba(0,0,0,.06) !important;
}
.header a, .header .nav a{ color:#fff !important; }
.header .muted{ color:rgba(255,255,255,.82) !important; }
.header .logo{
  background:#fff !important;
  color:#111 !important;
}
/* Chips area spacing to breathe under header */
.chips{
  margin-top:14px !important;
}

/* === CATEGORY BANNER MATCH (grey container + centered red pill) === */


@media(max-width:640px){
  
  
}


/* === ADD TO CART EXPANDED BUTTON === */
.addWrap{
  display:flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
  user-select:none;
}

.addText{
  font-weight:800;
  font-size:12px;
  letter-spacing:.4px;
  color:var(--brand);
}

.addWrap:hover .addText{
  text-decoration:underline;
}

.addWrap .addBtn{
  background:var(--brand) !important;
  color:#fff !important;
  width:38px;
  height:38px;
  border-radius:12px;
  border:none;
  font-size:20px;
  font-weight:700;
  cursor:pointer;
}


/* === Add to cart scale feedback === */
.addWrap.pulse{
  animation: addPulse 220ms ease-out;
}
@keyframes addPulse{
  0%{ transform:scale(1); }
  45%{ transform:scale(1.06); }
  100%{ transform:scale(1); }
}


/* === REMOVE GREY CONTAINER Ã¢â‚¬â€œ ONLY RED TITLE === */





/* === HEADER STYLE (match screenshot) === */
.topbar{
  position:sticky;
  top:0;
  z-index:120;
  background:var(--brand) !important;
  border-bottom:none !important;
  box-shadow:none !important;
}
.topbar__inner{
  max-width:1180px;
  margin:0 auto;
  padding:14px 18px;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:14px;
}
.brand{ display:flex; align-items:center; gap:12px; color:#fff !important; text-decoration:none; }
.brand__logo{
  width:40px; height:40px;
  border-radius:12px;
  display:grid; place-items:center;
  background:#ffffff !important;
  color:#111 !important;
  font-weight:1000;
  box-shadow:0 10px 25px rgba(0,0,0,.10);
}
.brand__name{ font-weight:1000; color:#fff !important; line-height:1.1; }
.brand__sub{ color:rgba(255,255,255,.85) !important; font-weight:800; font-size:12px; margin-top:2px; }

.nav{
  justify-self:center;
  display:flex; gap:18px;
  align-items:center;
}
.nav a{
  color:#fff !important;
  font-weight:900;
  text-decoration:none;
  opacity:.95;
}
.nav a:hover{ text-decoration:underline; }

/* Mobile: collapse middle nav to 2 cols */
@media(max-width:720px){
  .topbar__inner{ grid-template-columns: 1fr; }
  .nav{ display:none; }
}


/* === CLEAN BANNER SPACING FIX === */






/* === FINAL CLEAN BANNER (NO BACKGROUND BLOCK) === */






/* === TRUE MINIMAL CENTERED BANNER (MATCH IMAGE 2) === */
.banner{
  display:flex;
  justify-content:center;
  align-items:center;
  margin:12px 0 24px 0;
  padding:0;
  background:transparent;
  box-shadow:none;
  border:none;
}

.banner__title{
  background:var(--brand);
  color:#ffffff;
  padding:20px 44px;
  border-radius:18px;
  font-weight:1000;
  font-size:clamp(22px,4vw,42px);
  letter-spacing:-0.4px;
  box-shadow:0 16px 35px rgba(0,0,0,.18);
}



/* === OVERRIDES: kill red full-width banner background + remove extra gap === */
.banner.banner--text{
  height:auto !important;
  background:transparent !important;
  padding:0 !important;
  border:0 !important;
  box-shadow:none !important;
  align-items:center !important;
  justify-content:center !important;
}
/* hide any old subtitle overlay */
.banner__subtitle{ display:none !important; }

/* Tighten spacing: chips -> banner -> first grid */
.banner{
  margin:6px 0 14px 0 !important;
}
.grid{
  margin-top:12px !important;
}


/* === MAP SECTION === */
.mapWrap{
  width:100%;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 10px 28px rgba(0,0,0,.08);
}
.mapWrap iframe{
  display:block;
  width:100%;
  height:min(60vh, 520px);
  border:0;
}

/* === CONTACT SECTION (red banner style) === */
.section__inner--red{
  background:var(--brand);
  border-radius:22px;
  padding:28px 18px;
  box-shadow:0 16px 40px rgba(0,0,0,.10);
}
.pillTitle--white{
  background:rgba(255,255,255,.14);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
}

.contactForm{
  max-width:920px;
  margin:18px auto 0 auto;
}

.formGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
  color: #020202;
  font-weight:900;
  font-size:13px;
}
.field input, .field textarea{
  width:100%;
  background:#fff;
  color:#111;
  border:0;
  border-radius:14px;
  padding:12px 12px;
  outline:none;
  box-shadow:0 10px 25px rgba(0,0,0,.10);
}
.field textarea{ resize:vertical; min-height:120px; }

.field--full{ grid-column: 1 / -1; }

.btnSend{
  margin:14px auto 0 auto;
  display:block;
  background:#fff;
  color:var(--brand);
  font-weight:1000;
  border:0;
  border-radius:16px;
  padding:12px 22px;
  cursor:pointer;
  box-shadow:0 14px 30px rgba(0,0,0,.16);
}
.btnSend:hover{ filter:brightness(.98); }

.contactInfo{
  margin-top:14px;
  text-align:center;
  color:#fff;
  font-weight:900;
  opacity:.95;
  line-height:1.35;
}

/* Toast message */
.toast{
  position:fixed;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  background:#111;
  color:#fff;
  padding:12px 16px;
  border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,.25);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
  z-index:300;
}
.toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(-6px);
}
.toast.bad{ background:#7f1d1d; }

@media(max-width:720px){
  .formGrid{ grid-template-columns: 1fr; }
  .mapWrap iframe{ height:360px; }
}


/* Hide legacy floating cart variants; ClientePlus usa .floatingCart como barra inferior */
.cartFab, .fabCart, .floatCart, .cart-fab, #floatCart, #cartFab{
  display:none !important;
}

/* Map: crop Google top-left UI label by shifting iframe inside wrapper */
.mapWrap{
  position:relative;
  overflow:hidden;
}
.mapWrap iframe{
  width:100%;
  height:620px;
  border:0;
  transform:translateY(-46px) translateX(-6px);
}
@media(max-width:720px){
  .mapWrap iframe{
    height:520px;
    transform:translateY(-50px) translateX(-10px);
  }
}


/* === Ensure banners present above map/contact === */
.banner{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  margin:14px 0 14px 0 !important;
  padding:0 !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}
.banner__title{
  background:var(--brand) !important;
  color:#fff !important;
  padding:16px 40px !important;
  border-radius:18px !important;
  font-weight:1000 !important;
  font-size:clamp(20px,3.4vw,36px) !important;
  box-shadow:0 14px 30px rgba(0,0,0,.18) !important;
}

/* Remove any stray top bar/line inside contact red block */
.section__inner--red::before,
.section__inner--red::after{ content:none !important; display:none !important; }
.section__inner--red{ border:0 !important; }


/* === Combo modal === */
.noScroll{ overflow:hidden; }
.modal{ position:fixed; inset:0; display:none; z-index:500; }
.modal.show{ display:block; }
.modal__backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.45); }
.modal__panel{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  width:min(900px, calc(100vw - 28px));
  max-height:calc(100vh - 28px);
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.28);
  display:flex;
  flex-direction:column;
}
.modal__head{ padding:16px 18px; border-bottom:1px solid rgba(0,0,0,.08); display:flex; justify-content:space-between; gap:14px; align-items:flex-start; }
.modal__title{ font-weight:1000; font-size:18px; }
.modal__sub{ margin-top:4px; opacity:.75; font-weight:700; font-size:13px; }
.modal__close{ border:0; background:transparent; font-size:18px; cursor:pointer; padding:8px 10px; border-radius:12px; }
.modal__close:hover{ background:rgba(0,0,0,.06); }
.modal__body{ padding:16px 18px; overflow:auto; }
.modal__foot{ padding:14px 18px; border-top:1px solid rgba(0,0,0,.08); display:flex; align-items:center; justify-content:space-between; gap:12px; }
.modal__price{ font-weight:1000; font-size:18px; color:#111; }

.cfgBtn{
  background:var(--brand);
  color:#fff;
  border:0;
  border-radius:14px;
  padding:12px 16px;
  font-weight:1000;
  cursor:pointer;
  box-shadow:0 14px 30px rgba(0,0,0,.14);
}
.cfgBtn:hover{ filter:brightness(.98); }

.comboGroup{ margin-bottom:16px; }
.comboGroup__head{ display:flex; align-items:baseline; justify-content:space-between; gap:10px; margin-bottom:10px; }
.comboGroup__title{ font-weight:1000; }
.comboGroup__count{ font-weight:1000; color:var(--brand); }
.comboGrid{ display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:10px; }
.comboPick{
  text-align:left;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  border-radius:16px;
  padding:12px;
  cursor:pointer;
}
.comboPick.active{
  border-color:var(--brand);
  box-shadow:0 10px 24px rgba(242,183,5,.18);
}
.comboPick__name{ font-weight:1000; }
.comboPick__desc{ margin-top:4px; font-weight:700; opacity:.75; font-size:12px; }

.citem__meta{ margin-top:6px; font-size:12px; font-weight:800; opacity:.75; line-height:1.35; }

@media(max-width:640px){
  .comboGrid{ grid-template-columns:1fr; }
}


/* Combos selection chips + badges */
.comboSel{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.selChip{
  border:0;
  background:rgba(0,0,0,.06);
  border-radius:999px;
  padding:8px 10px;
  font-weight:900;
  cursor:pointer;
}
.selChip:hover{ background:rgba(0,0,0,.10); }
.comboPick{ position:relative; }
.pickBadge{
  position:absolute;
  top:10px; right:10px;
  background:var(--brand);
  color:#fff;
  font-weight:1000;
  border-radius:999px;
  padding:4px 8px;
  font-size:12px;
}

/* Modal add combo button style */
#comboAddBtn.btnSend{
  background:var(--brand) !important;
  color:#fff !important;
}
#comboAddBtn.btnSend:disabled{
  opacity:.55;
  cursor:not-allowed;
  box-shadow:none;
}


/* Combos pick actions (UNO / DOS IGUALES) */
.comboPick{
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  border-radius:16px;
  padding:12px;
}
.comboPick__actions{
  display:flex;
  gap:10px;
  margin-top:10px;
}
.pickBtn{
  flex:1;
  border:0;
  border-radius:12px;
  padding:10px 12px;
  font-weight:1000;
  cursor:pointer;
  background:rgba(0,0,0,.06);
}
.pickBtn:hover{ background:rgba(0,0,0,.10); }
.pickBtn--two{
  background:var(--brand);
  color:#fff;
}
.pickBtn--two:hover{ filter:brightness(.98); }

/* Cart icon in combo add button */
.cartIco{ width:18px; height:18px; display:inline-block; vertical-align:-3px; margin-right:8px; fill:currentColor; }
#comboAddBtn{ display:flex; align-items:center; justify-content:center; gap:8px; }


.pickBtn{
  background:#111 !important;
  color:#fff !important;
}
.pickBtn .chk{display:none;margin-left:6px;}
.pickBtn.isOn{background:var(--brand) !important; color:#111 !important;}
.pickBtn.isOn .chk{display:inline;}

.bevPick{
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  border-radius:14px;
  padding:14px;
  display:flex;
  justify-content:space-between;
  cursor:pointer;
  font-weight:900;
}
.bevCheck{display:none;color:var(--brand);}
.bevPick.isOn{border-color:var(--brand);box-shadow:0 10px 24px rgba(242,183,5,.15);}
.bevPick.isOn .bevCheck{display:inline;}

.pickBtn{
  background:#111 !important;
  color:#fff !important;
}
.pickBtn.isOn{
  background:var(--brand) !important;
  color:#fff !important;
}


/* V10: enforce button color states */
.pickBtn{ background:#111 !important; color:#fff !important; }
.pickBtn.isOn{ background:var(--brand) !important; color:#111 !important; }
.pickBtn .chk{ display:none; margin-left:6px; font-weight:1000; }
.pickBtn.isOn .chk{ display:inline; }

/* V10: bebidas sin botones */
.bevPick{ background:#fff; border:1px solid rgba(0,0,0,.12); border-radius:14px; padding:14px; display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-weight:1000; }
.bevCheck{ display:none; color:var(--brand); font-weight:1000; }
.bevPick.isOn{ border-color:var(--brand); box-shadow:0 10px 24px rgba(242,183,5,.15); }
.bevPick.isOn .bevCheck{ display:inline; }


/* ===== LMJ Conversion UX: cart intelligent flow ===== */
.ship-cards{display:grid; grid-template-columns:1fr 1fr; gap:10px; margin:8px 0 12px;}
.ship-card{
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  border-radius:16px;
  padding:12px 12px;
  text-align:left;
  cursor:pointer;
  transition:transform .06s ease, border-color .12s ease, box-shadow .12s ease;
}
.ship-card:hover{transform:translateY(-1px);}
.ship-card.is-active{
  border-color:rgba(242,183,5,.55);
  box-shadow:0 10px 24px rgba(242,183,5,.12);
}
.ship-top{display:flex; align-items:center; gap:8px; font-weight:900; color:var(--text);}
.ship-ico{font-size:1.05rem; line-height:1;}
.ship-sub{margin-top:6px; font-size:.86rem; color:var(--muted);}

.addr-wrap{margin:6px 0 10px;}
.addr-label{display:block; font-weight:900; margin-bottom:6px;}
.addr-input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.12);
  outline:none;
}
.addr-input:focus{border-color:rgba(242,183,5,.55); box-shadow:0 0 0 4px rgba(242,183,5,.12);}
.addr-wrap.invalid .addr-input{border-color:rgba(242,183,5,.80); box-shadow:0 0 0 4px rgba(242,183,5,.16);}
.addr-help{margin-top:6px; font-size:.84rem; color:var(--muted);}
.addr-wrap.invalid .addr-help{color:var(--red); font-weight:800;}

.cta[data-state="hint"]{opacity:.9;}

/* ==========================
   CHILENAZO THEME (dark + yellow)
   ========================== */
body{ background:var(--bg) !important; color:var(--text) !important; }

.topbar{ background:rgba(23,27,31,.92) !important; border-bottom:1px solid var(--line) !important; backdrop-filter: blur(10px); }
.nav a{ color:rgba(245,247,250,.88) !important; }
.nav a:hover{ color:var(--accent2) !important; }

.brand__logo{
  background:transparent !important;
  width:auto !important; height:auto !important;
  border-radius:0 !important;
  box-shadow:none !important;
  display:block !important;
}
.brand__logo img{ height:34px; width:auto; display:block; }
.brand__name{ color:var(--accent2) !important; letter-spacing:-.2px; }
.brand__sub{ color:rgba(245,247,250,.70) !important; }

/* Promo strip like chilenazo */
.promoStrip{ background:var(--accent2); color:#111; font-weight:900; text-align:center; padding:10px 14px; font-size:13px; }
.promoStrip b{ font-weight:1000; }

.hero{
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
  background:
    linear-gradient(90deg, rgba(15,18,21,.92) 0%, rgba(15,18,21,.76) 45%, rgba(15,18,21,.92) 100%),
    url('assets/img/demo_2.png');
  background-size:cover;
  background-position:center;
}
.hero__inner{ max-width:1200px; margin:0 auto; padding:44px 20px 18px; }
.hero h1{ color:var(--accent2); font-size:56px; line-height:1; }
.hero p{ color:rgba(245,247,250,.78) !important; }

.chips{ background:rgba(23,27,31,.72) !important; border-bottom:1px solid rgba(255,255,255,.06); }
.chip{ background:rgba(255,255,255,.04) !important; border:1px solid rgba(255,255,255,.10) !important; color:rgba(245,247,250,.9) !important; }
.chip:hover{ border-color:rgba(242,183,5,.55) !important; color:var(--accent2) !important; }
.chip--active{ background:var(--accent2) !important; color:#111 !important; border-color:var(--accent2) !important; }

.menuWrap{ background:transparent !important; }

.pcard{ background:var(--panel) !important; border:1px solid rgba(255,255,255,.08) !important; }
.pcard__media{ background:#0b0d10 !important; }
.pcard__tag{ background:rgba(15,18,21,.72) !important; border:1px solid rgba(255,255,255,.12) !important; color:rgba(245,247,250,.92) !important; }
.pcard__desc{ color:rgba(245,247,250,.72) !important; }
.price{ color:var(--accent2) !important; }
.addBtn{ background:var(--accent2) !important; color:#111 !important; }

.overlay{ background:rgba(0,0,0,.55) !important; }
.drawer{ background:var(--panel2) !important; color:var(--text) !important; }
.drawer__top{ background:rgba(23,27,31,.88) !important; border-bottom:1px solid rgba(255,255,255,.08) !important; }
.drawer__sub{ color:rgba(245,247,250,.70) !important; }
.ghostBtn{ background:rgba(255,255,255,.06) !important; color:rgba(245,247,250,.92) !important; border:1px solid rgba(255,255,255,.12) !important; }

.cartItem{ background:rgba(255,255,255,.04) !important; border:1px solid rgba(255,255,255,.10) !important; }
.stepper{ background:rgba(255,255,255,.06) !important; }
.stepBtn{ background:rgba(245,247,250,.92) !important; color:#111 !important; }
.xBtn{ background:rgba(239,68,68,.92) !important; }
.note, .input{ background:rgba(255,255,255,.04) !important; color:var(--text) !important; border:1px solid rgba(255,255,255,.12) !important; }
.smallHint, .hint{ color:rgba(245,247,250,.70) !important; }
.card, .totals{ background:rgba(255,255,255,.04) !important; border:1px solid rgba(255,255,255,.10) !important; }
.seg__btn{ background:rgba(255,255,255,.06) !important; color:rgba(245,247,250,.82) !important; }
.seg__btn--active{ background:var(--accent2) !important; color:#111 !important; }

.cta{ background:var(--accent2) !important; color:#111 !important; }
.warn{ background:rgba(242,183,5,.14) !important; border:1px solid rgba(242,183,5,.25) !important; color:rgba(245,247,250,.92) !important; }

.footer{ border-top:1px solid rgba(255,255,255,.08) !important; color:rgba(245,247,250,.68) !important; }
.footer a{ color:rgba(245,247,250,.86) !important; }

/* Contact / map wrappers */
.section__inner{ background:transparent !important; }
.mapWrap{ border:1px solid rgba(255,255,255,.10) !important; border-radius:var(--radius) !important; overflow:hidden; }

/* Kill leftover red header overrides if present */
.header{ background:transparent !important; color:inherit !important; }

/* Sticky offset for promo strip */
.chips{ top:118px !important; }


.btnSend{ background:var(--accent2) !important; color:#111 !important; }
.contactInfo{ color:rgba(245,247,250,.92) !important; }



/* ===== Chilenazo Cart Drawer Theme ===== */
.drawer{
  background:var(--panel);
  color:var(--text);
  box-shadow:-18px 0 70px rgba(0,0,0,.55);
}
.drawer__top{
  background:rgba(15,18,21,.96);
  border-bottom:1px solid var(--line);
  align-items:center;
}
.drawerBrand{
  display:flex;
  align-items:center;
  gap:10px;
  margin-right:10px;
}
.drawerBrand img{
  height:28px;
  width:auto;
  display:block;
  filter:drop-shadow(0 8px 20px rgba(0,0,0,.55));
}
.drawer__title{font-size:16px; letter-spacing:.2px;}
.drawer__sub{color:rgba(245,247,250,.70) !important;}
.drawer__body{background:linear-gradient(180deg, rgba(23,27,31,.0) 0%, rgba(23,27,31,.35) 100%);}

.drawer .card{
  background:var(--panel2);
  border:1px solid var(--line);
}
.drawer .card__title{color:var(--text);}
.drawer .hint{color:rgba(245,247,250,.72);}

.drawer .cartItem{
  background:rgba(31,37,43,.9);
  border:1px solid var(--line);
  color:var(--text);
}
.drawer .cartItem__name{color:var(--text);}
.drawer .cartItem__meta{color:rgba(245,247,250,.68);}

.drawer .ship-card{
  background:rgba(31,37,43,.9);
  border:1px solid var(--line);
}
.drawer .ship-top{color:var(--text);}
.drawer .ship-sub{color:rgba(245,247,250,.70);}
.drawer .ship-card.is-active{
  border-color:rgba(242,183,5,.70);
  box-shadow:0 12px 26px rgba(242,183,5,.14);
}

.drawer .addr-label{color: rgb(0 0 0);}
.drawer .addr-input{
  background:rgba(15,18,21,.65);
  color:var(--text);
  border:1px solid var(--line);
}
.drawer .addr-input::placeholder{color:rgba(245,247,250,.48);}
.drawer .addr-input:focus{border-color:rgba(242,183,5,.70); box-shadow:0 0 0 4px rgba(242,183,5,.12);}

.drawer .ghostBtn{
  background:transparent;
  color:var(--text);
  border:1px solid var(--line);
}
.drawer .ghostBtn:hover{border-color:rgba(242,183,5,.55);}

.drawer .primaryBtn{
  background:var(--accent);
  color:#111;
}
.drawer .primaryBtn:hover{filter:brightness(1.05);}


/* === Drawer sticky footer totals === */
.drawer__body{ display:flex; flex-direction:column; height:100%; }
.cartList{ flex:1 1 auto; }
.drawerFooter{
  position:sticky;
  bottom:0;
  margin-top:14px;
  padding:14px 14px 12px;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(23,27,31,.92);
  backdrop-filter: blur(10px);
  border-radius:18px;
}
.dfRow{ display:flex; align-items:center; justify-content:space-between; gap:10px; font-weight:900; color:rgba(245,247,250,.78); margin-bottom:8px; }
.dfRow b{ color:rgba(245,247,250,.92); }
.dfRow--big{ margin-top:10px; padding-top:10px; border-top:1px dashed rgba(255,255,255,.12); color:rgba(245,247,250,.86); }
.dfRow--big b{ color:var(--accent2); font-size:18px; }
.drawerFooter .cta{ width:100%; margin-top:10px; }

/* Local selector */
#localCard .input{ width:100%; }


/* Drawer local selector */
.drawerLocal{ margin-top:8px; }
.input--sm{ padding:10px 12px; font-size:13px; }
.hint--sm{ font-size:12px; opacity:.9; margin-top:6px; }

/* === PagoDirecto2 polish === */
.compactCard{margin-top:10px;}
.drawer__body{gap:10px;}
.cartItem{padding:10px 12px;}
.compactControls{margin-top:8px; gap:6px; flex-wrap:wrap;}
.cartItem__summary{display:flex; flex-wrap:wrap; gap:6px; margin-top:8px;}
.summaryPill{display:inline-flex; align-items:center; border-radius:999px; padding:5px 10px; font-size:12px; font-weight:900; border:1px solid rgba(255,255,255,.12); background:rgba(242,183,5,.12); color:var(--text);}
.miniBtn{border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.04); color:var(--text); border-radius:999px; padding:7px 10px; font-size:12px; font-weight:900; cursor:pointer;}
.miniBtn:hover{border-color:rgba(242,183,5,.55);}
.cartEditor{display:none; margin-top:8px;}
.cartEditor.is-open{display:block;}
.note{min-height:38px; resize:none;}
.note--modal{min-height:86px; resize:vertical;}
.ship-card{padding:12px; min-height:auto;}
.ship-sub{display:none !important;}
.hint b{white-space:nowrap;}
.addr-wrap{margin-top:8px;}
.addr-label{margin-bottom:5px;}
.addr-help{margin-top:5px;}
.cta--inline{margin-top:0; width:auto; min-width:220px;}

.productModal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.62);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:300;
}
.productModal.show{display:flex;}
.productModal__dialog{
  width:min(560px, 100%);
  max-height:min(90vh, 820px);
  overflow:auto;
  background:var(--panel2);
  color:var(--text);
  border:1px solid rgba(255,255,255,.1);
  border-radius:24px;
  box-shadow:0 25px 80px rgba(0,0,0,.45);
}
.productModal__head,
.productModal__foot{padding:18px 18px 0 18px; display:flex; align-items:flex-start; justify-content:space-between; gap:14px;}
.productModal__body{padding:18px;}
.productModal__foot{padding:0 18px 18px 18px; align-items:center;}
.productModal__eyebrow{font-size:12px; font-weight:900; color:rgba(245,247,250,.68); text-transform:uppercase; letter-spacing:.08em;}
.productModal__title{margin:4px 0 6px; font-size:24px; line-height:1.1;}
.productModal__sub{color:rgba(245,247,250,.72); font-size:14px;}
.productModal__price{font-size:22px; font-weight:1000; color:var(--accent2);}
.fieldBlock + .fieldBlock{margin-top:14px;}
.modalLabel{display:block; font-weight:1000; margin-bottom:6px;}
.modalSub{font-size:12px; color:rgba(245,247,250,.72); font-weight:800;}
.modalReq{font-size:12px; color:var(--accent2); font-weight:1000; margin-top:4px;}
.modalSelect{
  width:100%;
  margin-top:10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:12px 14px;
  font:inherit;
}
.toggleInline{
  border:1px dashed rgba(255,255,255,.18);
  background:transparent;
  color:var(--text);
  border-radius:14px;
  padding:10px 12px;
  cursor:pointer;
  font-weight:900;
}
.togglePanel{margin-top:10px;}
.noScroll{overflow:hidden;}

@media (max-width:640px){
  .drawer__body{padding:12px 12px 16px;}
  .ship-cards{gap:8px;}
  .ship-card{padding:10px;}
  .productModal{padding:12px;}
  .productModal__dialog{border-radius:20px;}
  .productModal__head,
  .productModal__foot,
  .productModal__body{padding-left:14px; padding-right:14px;}
  .productModal__foot{flex-direction:column; align-items:stretch;}
  .cta--inline{width:100%; min-width:0;}
}

/* === PagoDirecto2 modal UX polish === */
.productModal__footLeft{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.modalQty{
  display:flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  padding:6px 8px;
  background:rgba(255,255,255,.06);
}
.notesRow{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.notesHint{
  font-size:12px;
  color:rgba(245,247,250,.72);
  font-weight:800;
}
.productModal__foot{
  justify-content:space-between;
  align-items:center;
}
@media (max-width:640px){
  .notesRow{
    align-items:flex-start;
    gap:8px;
  }
  .productModal__footLeft{
    width:100%;
    justify-content:space-between;
  }
  .modalQty{
    margin-left:auto;
  }
}


/* ===== 2026-03-15 UX compact category layout fix ===== */
:root{ --brand:#f8a81400; }
body{ background:#0f1215 !important; color:#f5f7fa !important; }
.topbar--dark{ background:#0d1014 !important; border-bottom:1px solid rgba(255,255,255,.06) !important; position:sticky; top:0; z-index:90; }
.topbar__inner--compact{ min-height:68px; padding:10px 14px !important; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.brand--image{ display:flex; align-items:center; gap:12px; text-decoration:none; min-width:0; }
.brand__logoImg{ width:80px; height:auto; display:block; flex:0 0 auto; }
.brand__name--directo{font-size:14px;}
.brand__sub--light{ color:rgba(245,247,250,.78) !important; font-size:12px !important; font-weight:700 !important; }
.hero--compact{ background:#0f1215 !important; min-height:auto !important; }
.hero__inner--compact{max-width:980px !important;padding:12px 12px 4px !important;}
.menuIntro--left{ text-align:center; margin-bottom:10px; }
.menuIntro h1{ margin:0 0 6px !important; color:#fff !important; font-size:22px !important; line-height:1.05; }
.menuIntro p{ margin:0 !important; color:rgba(245,247,250,.72) !important; font-size:13px !important; font-weight:700 !important; }
.chips--menuTabs{ position:static !important; top:auto !important; background:transparent !important; backdrop-filter:none !important; padding:0 !important; gap:10px !important; display:grid !important; grid-template-columns:repeat(2,minmax(0,1fr)) !important; margin-top:12px !important; }
.chip{ min-height:1px !important; border-radius:12px !important; padding:5px 12px !important; font-size:13px !important; font-weight:900 !important; display:flex !important; align-items:center !important; justify-content:center !important; text-align:center !important; background:rgba(255,255,255,.03) !important; border:1px solid rgba(255,255,255,.12) !important; color:#f5f7fa !important; box-shadow:none !important; }
.chip:hover{ border-color:rgba(255,204,0,.55) !important; color:#f5f7fa !important; }
.chip--active{ background:#f8a814 !important; color:#111 !important; border-color:#f8a814 !important; }
.menuWrap{ max-width:980px !important; padding:6px 12px 110px !important; }
.section--activeCategory{ margin:0 !important; }
.sectionHeading{ display:block !important; text-align:center; color:#fff !important; font-size:20px !important; font-weight:1000 !important; margin:10px 0 14px !important; padding:0 !important; background:none !important; border:none !important; box-shadow:none !important; }
.sectionHeading--menu{ margin-top:4px !important; }
.banner, .banner__title{ display:none !important; }
.grid--compact{ margin-top:0 !important; display:grid !important; grid-template-columns:1fr !important; gap:12px !important; }
.pcard--compact{ display:grid !important; grid-template-columns:135px minmax(0,1fr) !important; gap:0 !important; align-items:stretch !important; border-radius:16px !important; overflow:hidden !important; background:#111823 !important; border:1px solid rgba(255,255,255,.08) !important; box-shadow:none !important; }
.pcard--compact .pcard__media{ width:135px !important; height:100% !important; min-height:100% !important; position:relative !important; background:#0b0d10 !important; }
.pcard--compact .pcard__img{ position:absolute !important; inset:0 !important; width:100% !important; height:100% !important; object-fit:cover !important; }
.pcard--compact .pcard__tag{ left:6px !important; top:6px !important; padding:4px 6px !important; font-size:9px !important; max-width:72px !important; border-radius:999px !important; background:rgba(128,0,12,.88) !important; color:#fff !important; border:0 !important; line-height:1.05 !important; }
.pcard--compact .pcard__body{ padding:10px 12px 10px 10px !important; display:flex !important; flex-direction:column !important; min-width:0 !important; }
.pcard--compact .pcard__name{ font-size:14px !important; line-height:1.08 !important; margin:0 0 6px !important; color:#fff !important; }
.pcard--compact .pcard__desc{ font-size:12px !important; line-height:1.2 !important; margin:0 0 10px !important; color:rgba(245,247,250,.8) !important; display:-webkit-box !important; -webkit-line-clamp: 3 !important; -webkit-box-orient:vertical !important; overflow:hidden !important; }
.pcard--compact .pcard__foot{ margin-top:auto !important; display:flex !important; align-items:center !important; justify-content:space-between !important; gap:10px !important; }
.pcard--compact .price{ font-size:17px !important; font-weight:1000 !important; color:#f8a814 !important; }
.pcard--compact .addWrap{ display:flex !important; align-items:center !important; justify-content:flex-end !important; width:auto !important; }
.pcard--compact .addText{ display:none !important; }
.pcard--compact .addBtn{width:40px !important;height:40px !important;border-radius:12px !important;font-size:28px !important;line-height:1 !important;background: #ffffff !important;color:#111 !important;}
.floatingCart{ position:fixed; left:12px; right:12px; bottom:12px; z-index:120; }
.floatingCart__btn{ width:100%; border:0; border-radius:16px; background:#f8a814; color:#111; min-height:54px; padding:0 18px; display:flex; align-items:center; justify-content:space-between; font-weight:1000; font-size:18px; box-shadow:0 18px 40px rgba(0,0,0,.32); }
.floatingCart__left{ display:flex; align-items:center; gap:10px; font-size:18px; }
.floatingCart__right{ font-size:20px; }
@media (min-width: 768px){ .chips--menuTabs{ grid-template-columns:repeat(3,minmax(0,1fr)) !important; } .grid--compact{ grid-template-columns:repeat(2,minmax(0,1fr)) !important; } .floatingCart{ left:auto; right:20px; width:320px; } }
@media (min-width: 1100px){ .grid--compact{ grid-template-columns:repeat(3,minmax(0,1fr)) !important; } }


.menuIntro__wa{
  width:18px;
  height:18px;
  display:inline-block;
  vertical-align:-3px;
  margin-left:6px;
}

@media (min-width: 992px){
  .topbar__inner--compact{
    min-height:84px;
    padding:14px 20px !important;
  }
  .brand--image{
    display:grid;
    grid-template-columns:100px minmax(0,1fr);
    align-items:center;
    column-gap:16px;
    min-height:56px;
  }
  .brand__txt{
    min-width:0;
  }
}


/* CLIENTE PLUS / navegaciÃƒÂ³n principal */
.topbar__inner--compact{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  grid-template-areas:"main";
  align-items:start;
  gap:14px;
}
.topbar__main{ grid-area:main; min-width:0; }
.headerNav{
  display:flex;
  align-items:center;
  gap:18px;
  overflow-x:auto;
  white-space:nowrap;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  margin-top:12px;
  padding-bottom:2px;
}
.headerNav::-webkit-scrollbar{ display:none; }
.headerNav__link{
  color:#f8a814;
  font-size:15px;
  font-weight:800;
  line-height:1.2;
  text-decoration:none;
  flex:0 0 auto;
}

/* CLIENTE PLUS / category tabs mobile-first */
.categoryTabs{
  position:sticky;
  top:0;
  z-index:95;
  background:rgba(8,10,16,.96);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
}
.categoryTabs__inner{
  position:relative;
  display:flex;
  align-items:center;
  gap:12px;
  overflow-x:auto;
  overflow-y:hidden;
  white-space:nowrap;
  padding:12px 16px;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
  scroll-behavior:smooth;
  scroll-snap-type:x proximity;
}
.categoryTabs__inner::-webkit-scrollbar{ display:none; }
.categoryTabs__link{
  appearance:none;
  -webkit-appearance:none;
  cursor:pointer;
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:0 11px;
  border-radius:999px;
  border:1px solid rgba(248,168,20,.35);
  color:#f3f4f6;
  text-decoration:none;
  font-size:15px;
  font-weight:800;
  line-height:1;
  background:rgba(255,255,255,.02);
  scroll-snap-align:start;
  transition:transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.categoryTabs__link.is-active{
  color:#0f1115;
  background:#f8a814;
  border-color:#f8a814;
  box-shadow:0 10px 24px rgba(248,168,20,.22);
}
.categoryTabs__hint{
  flex:0 0 auto;
  color:rgba(255,255,255,.72);
  font-size:26px;
  line-height:1;
  padding-right:6px;
}
.categoryTabs__fade{
  position:absolute;
  top:0;
  right:0;
  width:42px;
  height:100%;
  pointer-events:none;
  background:linear-gradient(to right, rgba(8,10,16,0), rgba(8,10,16,.96) 70%);
}
.scrollAnchor{
  position:relative;
  top:-128px;
  display:block;
  visibility:hidden;
}
html{
  scroll-behavior:smooth;
}
@media (min-width:768px){
  .topbar__inner--compact{ align-items:center; }
  .topbar__main{
    display:flex;
    align-items:center;
    gap:24px;
    min-width:0;
  }
  .headerNav{
    margin-top:0;
    padding-bottom:0;
    min-width:0;
  }
  .categoryTabs__inner{
    padding-left:20px;
    padding-right:20px;
    gap:14px;
  }
}

/* CLIENTE PLUS / sticky topbar + category tabs offset */
.topbar.topbar--dark{
  position: sticky;
  top: 0;
  z-index: 110;
}
.categoryTabs{
  top: var(--cp-topbar-offset, 0px);
  z-index: 105;
}
.categoryTabs__inner{
  padding-right: 44px;
}
.categoryTabs__link{
  appearance:none;
  -webkit-appearance:none;
  cursor:pointer;
  max-width: 78vw;
}
.categoryTabs__fade{
  width: 56px;
}
@media (min-width:768px){
  .categoryTabs__link{
  appearance:none;
  -webkit-appearance:none;
  cursor:pointer;
    max-width: none;
  }
}


/* === Cart fine meats UX compact === */
.compactControls--fine{align-items:center;}
.compactControls--fine .xBtn{margin-left:auto;}
.summaryPill{max-width:160px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;}
@media(max-width:520px){
  .summaryPill{max-width:135px;}
  .compactControls--fine{gap:8px;}
  .compactControls--fine .stepper{flex:1 1 auto;}
}


/* === FIX stepper spacing in cart fine meats === */
.compactControls--fine{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.compactControls--fine .stepper{
  flex:0 0 auto !important;
  width:auto !important;
  min-width:0 !important;
}
.compactControls--fine .miniBtn{
  flex:0 0 auto;
}
.compactControls--fine .xBtn{
  margin-left:0 !important;
  flex:0 0 auto;
}
@media(max-width:520px){
  .compactControls--fine{
    justify-content:flex-start;
  }
  .compactControls--fine .stepper{
    flex:0 0 auto !important;
  }
}


/* === WhatsApp label carrito === */
.waLabel{
  display:flex;
  align-items:center;
  gap:6px;
  font-weight:900;
}

.waLabel img{
  width:16px;
  height:16px;
  object-fit:contain;
  flex:0 0 auto;
}

#clientPhone:focus{
  border-color:#25D366 !important;
  box-shadow:0 0 0 2px rgba(37,211,102,.20) !important;
}

.drawer .waLabel{
  color: rgb(4 4 4) !important;
}

.drawer .waLabel img{
  filter:none;
}

.drawer #clientPhone:focus{
  border-color:#25D366 !important;
  box-shadow:0 0 0 2px rgba(37,211,102,.20) !important;
}

/* === FINAL FIX DESKTOP ALIGN: header + cart + category slider aligned with catalog === */
@media (min-width: 992px){
  .topbar__inner--compact,
  .hero__inner--compact,
  .menuWrap,
  .categoryTabs__inner{
    max-width: 980px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .topbar__inner--compact{
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .categoryTabs__inner{
    padding-left: 12px !important;
    padding-right: 56px !important;
  }

  .categoryTabs__fade{
    right: calc((100vw - 980px) / 2) !important;
  }
}


/* === FIX ANCLAS INFO: DÃƒÂ³nde estamos / Contacto bajo categoryTabs === */
#donde,
#contacto{
  scroll-margin-top: calc(var(--cp-topbar-offset, 0px) + 72px) !important;
}

#top{
  scroll-margin-top: 0 !important;
}

@media (min-width: 768px){
  #donde,
  #contacto{
    scroll-margin-top: calc(var(--cp-topbar-offset, 0px) + 84px) !important;
  }
}



/* =========================================
   LOTUS FIX FINAL Ã¢â‚¬â€ HEADER + MENU FIJOS
   DRAWER SOBRE TODO
   FLECHAS FIJAS EN LOS EXTREMOS
   ========================================= */

html,
body{
  overflow-x: hidden !important;
}

body{
  position: relative !important;
}

/* Header fijo */
.topbar,
.topbar.topbar--dark{
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 5000 !important;
}

/* Ajuste del header */
.topbar__inner,
.topbar__inner--compact{
  padding-left: 14px !important;
  padding-right: 14px !important;
}

.cartBtn,
/* Wrapper fijo de categorÃƒÂ­as debajo del header */
.categoryTabsWrapper{
  position: fixed !important;
  top: var(--cp-topbar-offset, 85px) !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 4900 !important;
  display: block !important;
  background: rgba(8,10,16,.96) !important;
  border-top: 1px solid rgba(255,255,255,.06) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  backdrop-filter: blur(10px) !important;
}

/* El nav interno no debe ser sticky */
.categoryTabs{
  position: relative !important;
  top: 0 !important;
  z-index: 1 !important;
  width: 100% !important;
  background: transparent !important;
  border: 0 !important;
  overflow: visible !important;
}

/* MenÃƒÂº corre por debajo de las flechas */
.categoryTabs__inner{
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
  width: 100% !important;
  min-width: 0 !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  white-space: nowrap !important;
  padding: 12px 56px 12px 56px !important;
  scrollbar-width: none !important;
  -webkit-overflow-scrolling: touch !important;
  scroll-behavior: smooth !important;
  scroll-snap-type: x proximity !important;
  overscroll-behavior-x: contain !important;
  touch-action: pan-x !important;
}

.categoryTabs__inner::-webkit-scrollbar{
  display: none !important;
}

.categoryTabs__link{
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  max-width: none !important;
  min-height: 32px !important;
  padding: 0 11px !important;
  border-radius: 999px !important;
  scroll-snap-align: start !important;
}

.categoryTabs__hint{
  flex: 0 0 auto !important;
  white-space: nowrap !important;
  opacity: .7 !important;
}

/* Fade de borde pegado a los extremos reales */
.categoryTabs__fade{
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 44px !important;
  height: 100% !important;
  pointer-events: none !important;
  background: linear-gradient(to right, rgba(8,10,16,0), rgba(8,10,16,.96) 70%) !important;
  z-index: 2 !important;
}

/* Empuja el contenido hacia abajo para que pase por debajo */
main{
  padding-top: calc(var(--cp-topbar-offset, 85px) + 64px) !important;
}

.hero.hero--compact{
  margin-top: 0 !important;
}

/* Flechas fijas a ambos extremos del wrapper */
.catArrow{
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 4 !important;
  width: 34px !important;
  height: 34px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(17,24,39,.96) !important;
  color: #f8a814 !important;
  font-size: 24px !important;
  line-height: 1 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.28) !important;
}

.catArrow.left{
  left: 8px !important;
}

.catArrow.right{
  right: 8px !important;
}

/* Desktop y tablet: flechas visibles */
@media (min-width: 768px){
  .catArrow{
    display: inline-flex !important;
  }

  .categoryTabs__inner{
    padding-left: 56px !important;
    padding-right: 56px !important;
    gap: 14px !important;
  }

  main{
    padding-top: calc(var(--cp-topbar-offset, 85px) + 68px) !important;
  }
}

/* Desktop mÃƒÂ¡s ancho: un poco mÃƒÂ¡s de aire */
@media (min-width: 1200px){
  .topbar__inner,
  .topbar__inner--compact,
  .hero__inner.hero__inner--compact,
  .menuWrap{
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Mobile: sin flechas, scroll tÃƒÂ¡ctil normal */
@media (max-width: 767px){
  .catArrow{
    display: none !important;
  }

  .categoryTabs__inner{
    padding-left: 16px !important;
    padding-right: 44px !important;
  }

  main{
    padding-top: calc(var(--cp-topbar-offset, 85px) + 60px) !important;
  }
}

/* Drawer sobre todo, como en la demo */
.overlay{
  position: fixed !important;
  inset: 0 !important;
  z-index: 9000 !important;
}

.drawer{
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  height: 100vh !important;
  max-height: 100vh !important;
  z-index: 9100 !important;
  transform: translateX(110%);
}

.drawer--open{
  transform: translateX(0) !important;
}




/* =========================================
   LOTUS WHITE THEME Ã¢â‚¬â€ CHINESE + SUSHI PREMIUM
   ========================================= */

:root{
  --bg: #ffffff !important;
  --panel: #ffffff !important;
  --panel2: #ffffff !important;
  --text: #111111 !important;
  --muted: rgba(17,17,17,.60) !important;
  --accent: #b91c1c !important;
  --accent2: #b91c1c !important;
  --red: #b91c1c !important;
  --brand: #b91c1c !important;
  --line: rgba(17,17,17,.08) !important;
  --shadow: 0 8px 30px rgba(15,23,42,.08) !important;
  --shadow2: 0 18px 40px rgba(15,23,42,.12) !important;
}

html, body{
  background:#ffffff !important;
  color:#111111 !important;
}

body{
  background:#ffffff !important;
  color:#111111 !important;
}

.topbar,
.topbar.topbar--dark{
  background: #770e0e !important;
  border-bottom:1px solid rgba(17,17,17,.08) !important;
  backdrop-filter: blur(10px) !important;
}

.topbar__inner,
.topbar__inner--compact{
  background: #770e0e !important;
}

.brand,
.brand--image,
.brand__txt{
  color:#111111 !important;
}

.brand__name,
.brand__name--directo{
  color: #fdfdfd !important;
  font-weight:1000 !important;
}

.brand__sub,
.brand__sub--light{
  color: rgb(239 199 53) !important;
}

.headerNav__link,
.nav a{
  color: #ffffff !important;
}

.headerNav__link:hover,
.nav a:hover{
  color:#b91c1c !important;
}

.cartBtn,
/* category wrapper + tabs */
.categoryTabsWrapper{
  background:#ffffff !important;
  border-top: 1px solid rgb(17 17 17 / 0%) !important;
  border-bottom:1px solid rgba(17,17,17,.08) !important;
}

.categoryTabs{
  background: #9b7f14 !important;
}

.categoryTabs__inner{
  background: #9b7f14 !important;
}

.categoryTabs__link{
  background:#ffffff !important;
  color:#b91c1c !important;
  border:1px solid rgba(185,28,28,.28) !important;
  box-shadow:none !important;
}

.categoryTabs__link:hover{
  background:#fff5f5 !important;
  color:#991b1b !important;
  border-color:#b91c1c !important;
}

.categoryTabs__link.is-active{
  background: #770e0e !important;
  color:#ffffff !important;
  border-color: #ffd800 !important;
  box-shadow:0 10px 24px rgba(185,28,28,.18) !important;
}

.categoryTabs__hint{
  color:rgba(17,17,17,.45) !important;
}

.categoryTabs__fade{
  background: linear-gradient(to right, rgb(255 255 255 / 0%), rgb(255 255 255 / 0%) 70%) !important;
}

.catArrow{
  background: #c71b1b !important;
  color: #ffffff !important;
  /* border:1px solid rgba(185,28,28,.22) !important; */
  box-shadow:0 8px 24px rgba(15,23,42,.08) !important;
}

.catArrow:hover{
  background:#fff5f5 !important;
}

/* hero */
.hero,
.hero--compact{
  background:#ffffff !important;
}

.hero__inner,
.hero__inner--compact{
  background:#ffffff !important;
}

.menuIntro h1{
  color:#111111 !important;
}

.menuIntro p{
  color:rgba(17,17,17,.70) !important;
}

/* content wrappers */
main,
.menuWrap,
.section__inner{
  background: #cba61712 !important;
  color:#111111 !important;
}

.sectionHeading{
  color: #000000 !important;
  font-weight:1000 !important;
}

/* cards */
.pcard,
.pcard--compact{
  background: #770e0e !important;
  border:1px solid rgba(17,17,17,.08) !important;
  box-shadow:0 8px 30px rgba(15,23,42,.06) !important;
}

.pcard:hover,
.pcard--compact:hover{
  box-shadow:0 14px 34px rgba(15,23,42,.10) !important;
}

.pcard__media{
  background:#f8fafc !important;
}

.pcard__name{
  color:#111111 !important;
}

.pcard__desc{
  color:rgba(17,17,17,.72) !important;
}

.pcard__tag{
  background:#b91c1c !important;
  color:#ffffff !important;
  border:0 !important;
}

.price{
  color:#b91c1c !important;
  font-size:17px !important;
  font-weight:1000 !important;
}

.addBtn{
  background:#b91c1c !important;
  color:#ffffff !important;
  box-shadow:0 10px 24px rgba(185,28,28,.18) !important;
}

.addBtn:hover{
  filter:brightness(.96) !important;
}

/* modal + drawer */
.overlay{
  background:rgba(17,17,17,.36) !important;
}

.drawer{
  background: #770e0e !important;
  color:#111111 !important;
  box-shadow:-18px 0 60px rgba(15,23,42,.14) !important;
}

.drawer__top{
  background: #ebe5c6 !important;
  border-bottom:1px solid rgba(17,17,17,.08) !important;
}

.drawer__title,
.drawer .card__title{
  color: #040404 !important;
}

.drawer__sub,
.hint,
.smallHint,
.addr-help,
.notesHint,
.modalSub{
  color: rgb(0 0 0) !important;
}

.card,
.totals,
.cartItem,
.ship-card,
.comboPick,
.modal__panel,
.productModal__dialog{
  background: #efde82 !important;
  color: #111111 !important;
  border: 1px solid rgb(219 187 19) !important;
  box-shadow:0 8px 26px rgba(15,23,42,.05) !important;
}

.ship-card.is-active,
.comboPick.active{
  border-color:#b91c1c !important;
  box-shadow:0 10px 24px rgba(185,28,28,.12) !important;
}

.addr-input,
.input,
.note,
.modalSelect,
.field input,
.field textarea{
  background:#ffffff !important;
  color: #000000 !important;
  border: 1px solid rgb(17 17 17) !important;
}

.addr-input::placeholder,
.input::placeholder,
.note::placeholder,
.field input::placeholder,
.field textarea::placeholder{
  color:rgba(17,17,17,.45) !important;
}

.addr-input:focus,
.input:focus,
.note:focus,
.modalSelect:focus,
.field input:focus,
.field textarea:focus{
  border-color:#b91c1c !important;
  box-shadow:0 0 0 4px rgba(185,28,28,.10) !important;
  outline:none !important;
}

.stepBtn,
.ghostBtn{
  background: #cb1212 !important;
  color:#ffffff !important;
}

.seg__btn{
  background:#f8fafc !important;
  color:#111111 !important;
  border:1px solid rgba(17,17,17,.08) !important;
}

.seg__btn--active{
  background:#b91c1c !important;
  color:#ffffff !important;
}

.cta,
.btnSend,
.cfgBtn{
  background: #cb1212 !important;
  color: #ffffff !important;
  /* box-shadow:0 12px 30px rgba(185,28,28,.14) !important; */
}

.warn{
  background:#fff5f5 !important;
  border:1px solid rgba(185,28,28,.16) !important;
  color:#991b1b !important;
}

.summaryPill,
.coupon--active,
.pickBadge{
  background:#b91c1c !important;
  color:#ffffff !important;
  border-color:#b91c1c !important;
}

.selChip,
.coupon,
.miniBtn,
.toggleInline{
  background:#ffffff !important;
  color:#111111 !important;
  border:1px solid rgba(17,17,17,.10) !important;
}

.bevPick.isOn,
.pickBtn.isOn{
  border-color:#b91c1c !important;
  box-shadow:0 10px 24px rgba(185,28,28,.10) !important;
}

.pickBtn,
.pickBtn--two{
  background:#b91c1c !important;
  color:#ffffff !important;
}

/* map + contact */
.mapWrap{
  border:1px solid rgba(17,17,17,.08) !important;
  box-shadow:0 10px 28px rgba(15,23,42,.05) !important;
}

.section__inner--red{
  background: #9c7a14 !important;
  border:1px solid rgba(185,28,28,.08) !important;
  box-shadow:none !important;
}

.contactInfo{
  color:#111111 !important;
}

.footer{
  background:#ffffff !important;
  color:rgba(17,17,17,.65) !important;
  border-top:1px solid rgba(17,17,17,.08) !important;
}

.footer a{
  color:#b91c1c !important;
}

/* subtle chinese-premium accents */
.pillTitle--white,
.pcard__tag,
.categoryTabs__link.is-active,
.cta,
.btnSend{
  letter-spacing:.01em !important;
}

/* optional visual cleanup of dark leftovers */
.banner,
.banner__title{
  background:transparent !important;
  color:#b91c1c !important;
}
.headerRight{
  display:flex;
  align-items:center;
  gap:10px;
}
.headerLogoLeft{
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* CLIENTEPLUS MODAL FIX — above sticky header/menu + product image */
.productModal,
.modal{
  z-index: 12000 !important;
}

.productModal__backdrop,
.modal__backdrop{
  z-index: 12001 !important;
}

.productModal__dialog,
.modal__panel{
  z-index: 12002 !important;
  position: relative !important;
}

.productModal__media{
  display: block !important;
  width: 100% !important;
  height: 190px !important;
  overflow: hidden !important;
  border-radius: 18px 18px 0 0 !important;
  background: #f3e58b !important;
}

.productModal__img{
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

@media (max-width: 640px){
  .productModal__media{
    height: 165px !important;
  }
}


/* CLIENTEPLUS PRODUCT MODAL IMAGE FINAL */
.productModal{
  z-index: 12000 !important;
}
.productModal.show{
  z-index: 12000 !important;
}
.productModal__dialog{
  position: relative !important;
  z-index: 12001 !important;
  overflow: hidden !important;
}
.productModal__media{
  width: 100% !important;
  height: 176px !important;
  display: block !important;
  overflow: hidden !important;
  background: rgba(0,0,0,.08) !important;
  border-radius: 18px 18px 0 0 !important;
  margin: 0 0 12px 0 !important;
}
.productModal__media[hidden]{
  display: none !important;
}
.productModal__img{
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
}
@media (max-width:640px){
  .productModal__media{
    height: 150px !important;
  }
}


/* CLIENTEPLUS MODAL USE FULL IMAGE */
.productModal__media{
  max-height: 220px !important;
}
.productModal__img{
  object-fit: cover !important;
}


/* CLIENTEPLUS PRODUCT MODAL - JUSTO VERTICAL FORMAT */
.productModal{
  position: fixed !important;
  inset: 0 !important;
  z-index: 12000 !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px !important;
}

.productModal.show{
  display: flex !important;
}

.productModal__dialog{
  width: min(430px, calc(100vw - 28px)) !important;
  max-width: 430px !important;
  max-height: calc(100vh - 32px) !important;
  overflow-y: auto !important;
  border-radius: 22px !important;
  background: #f6e681 !important;
  border: 2px solid #e2c600 !important;
  box-shadow: 0 24px 80px rgba(0,0,0,.35) !important;
}

.productModal__media{
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  max-height: none !important;
  display: block !important;
  overflow: hidden !important;
  margin: 0 !important;
  border-radius: 20px 20px 0 0 !important;
  background: #f6e681 !important;
}

.productModal__media[hidden]{
  display: none !important;
}

.productModal__img{
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  background: #f6e681 !important;
}

.productModal__head{
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 22px 18px 10px !important;
}

.productModal__title{
  color: #111 !important;
  font-size: 24px !important;
  line-height: 1.1 !important;
  font-weight: 1000 !important;
  margin: 0 !important;
}

#productModalSub,
.productModal__sub{
  color: #111 !important;
  opacity: .9 !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  margin-top: 8px !important;
}

.productModal__body{
  padding: 10px 18px 0 !important;
}

.notesRow{
  align-items: flex-start !important;
  gap: 10px !important;
}

#productNotesToggle{
  white-space: normal !important;
  text-align: left !important;
  line-height: 1.2 !important;
}

#productNotesHint{
  color: #111 !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
}

#productNotesInput{
  font-style: italic !important;
}

.productModal__foot{
  padding: 16px 18px 18px !important;
}

.productModal__footLeft{
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  margin-bottom: 14px !important;
}

.productModal__price{
  color: #d20a12 !important;
  font-size: 22px !important;
  font-weight: 1000 !important;
}

.productModal .cta,
#productModalAddBtn{
  width: 100% !important;
  border-radius: 14px !important;
}

@media (max-width: 640px){
  .productModal{
    padding: 14px !important;
    align-items: center !important;
  }

  .productModal__dialog{
    width: calc(100vw - 28px) !important;
    max-width: 430px !important;
    max-height: calc(100vh - 28px) !important;
  }

  .productModal__title{
    font-size: 22px !important;
  }
}


/* CLIENTEPLUS MODAL COMPACT JUSTO FIX */
.productModal__dialog{
  padding: 0 !important;
}

.productModal__media{
  margin: 0 !important;
  border-radius: 20px 20px 0 0 !important;
}

.productModal__head{
  padding: 14px 16px 6px !important;
}

.productModal__title{
  font-size: 22px !important;
  line-height: 1.05 !important;
}

#productModalSub,
.productModal__sub{
  margin-top: 6px !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
}

.productModal__body{
  padding: 8px 16px 0 !important;
}

.productModal .fieldBlock{
  margin-top: 8px !important;
  margin-bottom: 0 !important;
}

.productModal .notesRow{
  gap: 8px !important;
  margin-bottom: 8px !important;
}

#productNotesToggle{
  padding: 10px 12px !important;
  border-radius: 12px !important;
  font-size: 13px !important;
}

#productNotesHint{
  font-size: 12px !important;
  line-height: 1.2 !important;
}

#productNotesInput{
  min-height: 74px !important;
  max-height: 94px !important;
  padding: 10px 12px !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
}

.productModal .smallHint{
  margin-top: 6px !important;
  font-size: 11px !important;
}

.productModal__foot{
  padding: 10px 16px 14px !important;
}

.productModal__footLeft{
  margin-bottom: 10px !important;
}

.productModal__price{
  font-size: 22px !important;
  line-height: 1 !important;
}

.productModal .modalQty{
  gap: 8px !important;
}

#productModalAddBtn{
  min-height: 44px !important;
  padding: 12px 14px !important;
}

@media (max-width: 640px){
  .productModal{
    padding: 10px !important;
  }

  .productModal__dialog{
    width: calc(100vw - 20px) !important;
    max-height: calc(100vh - 20px) !important;
  }

  .productModal__media{
    aspect-ratio: 1 / 0.82 !important;
  }

  .productModal__head{
    padding: 12px 14px 4px !important;
  }

  .productModal__body{
    padding: 7px 14px 0 !important;
  }

  .productModal__foot{
    padding: 8px 14px 12px !important;
  }

  .productModal__title{
    font-size: 21px !important;
  }
}


/* =========================================================
   CLIENTEPLUS / JUSTO CART FLOW
   - No auto-open cart.
   - Product card +/− inline quantity selector.
   - Bottom "Ver pedido" bar as primary cart entry.
   ========================================================= */

body.hasFloatingCart {
  padding-bottom: 86px;
}

.pcard,
.pcard--compact {
  cursor: pointer;
}

.pcard .addWrap,
.pcard--compact .addWrap {
  cursor: default;
  flex: 0 0 auto;
}

.pcard--compact .addWrap.addWrap--active {
  min-width: 108px !important;
}

.cardQtyControl {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  height: 40px !important;
  min-width: 104px !important;
  padding: 0 6px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #111111 !important;
  border: 1px solid rgba(17,17,17,.12) !important;
  box-shadow: 0 8px 18px rgba(0,0,0,.16) !important;
}

.cardQtyBtn {
  width: 32px !important;
  height: 32px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #111111 !important;
  font-size: 22px !important;
  line-height: 1 !important;
  font-weight: 1000 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent;
}

.cardQtyBtn:active {
  transform: scale(.92);
}

.cardQtyValue {
  min-width: 28px !important;
  text-align: center !important;
  color: #111111 !important;
  font-size: 15px !important;
  font-weight: 1000 !important;
  line-height: 1 !important;
}

.floatingCart {
  left: 12px !important;
  right: 12px !important;
  bottom: max(12px, env(safe-area-inset-bottom)) !important;
  z-index: 170 !important;
}

.floatingCart[hidden] {
  display: none !important;
}

.floatingCart__btn {
  min-height: 58px !important;
  border-radius: 18px !important;
  padding: 0 16px !important;
  background: #f8a814 !important;
  color: #111111 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  box-shadow: 0 18px 44px rgba(0,0,0,.34) !important;
  transition: transform .16s ease, filter .16s ease, box-shadow .16s ease !important;
}

.floatingCart__btn:active {
  transform: translateY(1px) scale(.99);
}

.floatingCart__left {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  min-width: 0 !important;
  font-size: 15px !important;
  font-weight: 1000 !important;
  white-space: nowrap !important;
}

.floatingCart__icon {
  width: 21px !important;
  height: 21px !important;
  flex: 0 0 auto !important;
}

.floatingCart__right {
  flex: 0 0 auto !important;
  font-size: 18px !important;
  font-weight: 1000 !important;
  letter-spacing: -.01em !important;
}

.drawer .cartItem {
  border-radius: 16px !important;
}

.drawer .cartItem__top {
  align-items: flex-start !important;
}

.drawer .cartItem__name {
  line-height: 1.18 !important;
}

.drawer .cartItem__price {
  white-space: nowrap !important;
}

.drawer .cartItem__controls {
  justify-content: space-between !important;
}

.drawer .cartItem__controls .stepper {
  height: 38px !important;
  padding: 4px 6px !important;
}

.drawer .summaryPill {
  max-width: 100% !important;
}

@media (min-width: 768px) {
  body.hasFloatingCart {
    padding-bottom: 24px;
  }

  .floatingCart {
    left: auto !important;
    right: 22px !important;
    width: 360px !important;
  }
}

@media (max-width: 420px) {
  .pcard--compact .addWrap.addWrap--active {
    min-width: 96px !important;
  }

  .cardQtyControl {
    min-width: 96px !important;
    height: 38px !important;
  }

  .cardQtyBtn {
    width: 30px !important;
    height: 30px !important;
  }

  .floatingCart__left {
    font-size: 14px !important;
  }

  .floatingCart__right {
    font-size: 17px !important;
  }
}

/* =========================================================
   CLIENTEPLUS / LOTUS FLOWER - CARRITO TIPO JUSTO FINAL
   Fuente: coreLFcarritofix1.zip
   Objetivo: UX mobile-first, revisión rápida y cierre por WhatsApp.
   ========================================================= */
.drawer{
  background:#ffffff !important;
  color:#111111 !important;
}
.drawer__top{
  position:sticky !important;
  top:0 !important;
  z-index:4 !important;
  background:#ffffff !important;
  border-bottom:1px solid rgba(0,0,0,.08) !important;
  padding:14px 16px !important;
}
.drawer__title{
  color:#111111 !important;
  font-size:20px !important;
  line-height:1.08 !important;
  font-weight:1000 !important;
  letter-spacing:-.02em !important;
}
.drawer__sub{
  color:rgba(17,17,17,.58) !important;
  font-size:12px !important;
  font-weight:900 !important;
  margin-top:3px !important;
}
.drawer .ghostBtn{
  background:#f4f4f5 !important;
  color:#111111 !important;
  border:1px solid rgba(0,0,0,.08) !important;
  box-shadow:none !important;
}
.drawer__body{
  background:#f7f7f8 !important;
  gap:10px !important;
  padding:12px !important;
}
.cartList{
  gap:8px !important;
}
.cartEmptyState{
  background:#ffffff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:22px 18px;
  text-align:center;
  color:#111111;
}
.cartEmptyState__icon{font-size:28px;margin-bottom:8px;}
.cartEmptyState__title{font-size:16px;font-weight:1000;margin-bottom:4px;}
.cartEmptyState__text{font-size:13px;font-weight:800;color:rgba(17,17,17,.58);line-height:1.35;}
.drawer .cartItem,
.drawer .cartItem--justo{
  background:#ffffff !important;
  border:1px solid rgba(0,0,0,.08) !important;
  border-radius:18px !important;
  padding:12px !important;
  box-shadow:0 10px 26px rgba(0,0,0,.045) !important;
  color:#111111 !important;
}
.cartItem__main{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
}
.cartItem__info{
  min-width:0;
  flex:1 1 auto;
}
.drawer .cartItem__name{
  color:#111111 !important;
  font-size:14px !important;
  font-weight:1000 !important;
  line-height:1.18 !important;
  letter-spacing:-.01em !important;
}
.cartItem__meta{
  color:rgba(17,17,17,.54) !important;
  font-size:12px !important;
  font-weight:850 !important;
  margin-top:4px !important;
}
.cartItem__note{
  margin-top:7px;
  color:rgba(17,17,17,.72);
  font-size:12px;
  line-height:1.35;
  font-weight:800;
  background:#f5f5f5;
  border:1px solid rgba(0,0,0,.06);
  border-radius:12px;
  padding:7px 9px;
}
.cartItem__amount,
.drawer .cartItem__price{
  color:#111111 !important;
  font-size:14px !important;
  font-weight:1000 !important;
  white-space:nowrap !important;
}
.drawer .cartItem__summary{
  margin-top:7px !important;
  gap:5px !important;
}
.drawer .summaryPill{
  background:#fff5dc !important;
  border:1px solid rgba(248,168,20,.26) !important;
  color:#111111 !important;
  font-size:11px !important;
  padding:5px 8px !important;
}
.cartItem__actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin-top:10px;
}
.cartItem__stepper,
.drawer .cartItem__controls .stepper,
.drawer .stepper{
  background:#f3f3f4 !important;
  border:1px solid rgba(0,0,0,.07) !important;
  border-radius:999px !important;
  height:38px !important;
  padding:4px 6px !important;
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
}
.drawer .stepBtn{
  width:30px !important;
  height:30px !important;
  border-radius:999px !important;
  background:#111111 !important;
  color:#ffffff !important;
  border:0 !important;
  font-size:18px !important;
  font-weight:1000 !important;
  line-height:1 !important;
}
.drawer .qty{
  min-width:22px !important;
  color:#111111 !important;
  font-size:14px !important;
  font-weight:1000 !important;
}
.drawer .miniBtn,
.cartItem__edit{
  background:#ffffff !important;
  color:#111111 !important;
  border:1px solid rgba(0,0,0,.12) !important;
  border-radius:999px !important;
  min-height:34px !important;
  padding:7px 12px !important;
  font-size:12px !important;
  font-weight:1000 !important;
}
.drawer .xBtn,
.cartItem__remove{
  background:#fff0f0 !important;
  color:#b91c1c !important;
  border:1px solid rgba(185,28,28,.14) !important;
  width:34px !important;
  height:34px !important;
  font-size:18px !important;
}
.drawer .compactCard,
.drawer .card,
.drawer .totals{
  background:#ffffff !important;
  color:#111111 !important;
  border:1px solid rgba(0,0,0,.08) !important;
  border-radius:18px !important;
  box-shadow:0 10px 26px rgba(0,0,0,.04) !important;
  padding:13px !important;
}
.drawer .card__title{
  color:#111111 !important;
  font-size:14px !important;
  font-weight:1000 !important;
  letter-spacing:-.01em !important;
}
.ship-cards{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:8px !important;
  margin-top:10px !important;
}
.drawer .ship-card{
  background:#f6f6f7 !important;
  color:#111111 !important;
  border:1px solid rgba(0,0,0,.08) !important;
  border-radius:15px !important;
  padding:11px 10px !important;
}
.drawer .ship-card.is-active{
  background:#111111 !important;
  color:#ffffff !important;
  border-color:#111111 !important;
}
.drawer .ship-top{justify-content:center !important;gap:7px !important;}
.drawer .ship-title{font-size:13px !important;font-weight:1000 !important;}
.drawer .hint,
.drawer .addr-help,
.drawer .smallHint{
  color:rgba(17,17,17,.58) !important;
  font-size:12px !important;
  font-weight:800 !important;
  line-height:1.35 !important;
}
.drawer .addr-input,
.drawer .input,
.drawer textarea.note{
  background:#ffffff !important;
  color:#111111 !important;
  border:1px solid rgba(0,0,0,.13) !important;
  border-radius:14px !important;
  min-height:44px !important;
  padding:11px 12px !important;
  font-size:14px !important;
  font-weight:750 !important;
  outline:none !important;
  box-shadow:none !important;
}
.drawer .addr-input:focus,
.drawer .input:focus,
.drawer textarea.note:focus{
  border-color:#f8a814 !important;
  box-shadow:0 0 0 3px rgba(248,168,20,.18) !important;
}
.drawer .addr-label{
  color:#111111 !important;
  font-size:12px !important;
  font-weight:1000 !important;
  margin-bottom:5px !important;
  display:block !important;
}
.drawer .waLabel img{width:15px;height:15px;vertical-align:-2px;margin-left:4px;}
.drawer .totals__row{
  color:rgba(17,17,17,.72) !important;
  font-size:14px !important;
  font-weight:900 !important;
}
.drawer .totals__row b{
  color:#111111 !important;
  font-weight:1000 !important;
}
.drawer .totals__row--big{
  color:#111111 !important;
  font-size:18px !important;
  border-top:1px dashed rgba(0,0,0,.18) !important;
}
.drawer .cta,
#checkoutBtn{
  position:sticky !important;
  bottom:max(10px, env(safe-area-inset-bottom)) !important;
  z-index:5 !important;
  min-height:54px !important;
  border-radius:16px !important;
  margin-top:10px !important;
  background:#25D366 !important;
  color:#ffffff !important;
  box-shadow:0 16px 38px rgba(37,211,102,.28) !important;
  font-size:15px !important;
  font-weight:1000 !important;
  letter-spacing:-.01em !important;
}
.drawer .cta:disabled,
#checkoutBtn:disabled{
  background:#d7a13d !important;
  color:#111111 !important;
  box-shadow:none !important;
  filter:none !important;
}
.drawer .warn{
  background:#fff7ed !important;
  color:#9a3412 !important;
  border:1px solid rgba(154,52,18,.16) !important;
  border-radius:14px !important;
  font-size:13px !important;
  font-weight:850 !important;
}
@media (max-width: 640px){
  .drawer{
    width:100% !important;
    max-width:none !important;
  }
  .drawer__body{
    padding:10px !important;
    padding-bottom:calc(18px + env(safe-area-inset-bottom)) !important;
  }
  .cartItem__actions{gap:6px;}
  .drawer .miniBtn{padding:7px 10px !important;}
}

/* =========================================================
   CLIENTEPLUS CORE CLEANUP — HEADER SIN CARTBTN
   El acceso al pedido queda exclusivamente en .floatingCart.
   ========================================================= */
.topbar__inner--compact{
  grid-template-columns:minmax(0,1fr) !important;
  grid-template-areas:"main" !important;
}

.topbar__main{
  grid-area:main !important;
  width:100% !important;
}

@media (min-width:768px){
  .topbar__main{
    justify-content:space-between !important;
  }
}

/* El botón histórico del header fue eliminado del HTML.
   Si alguna versión antigua lo trae en caché, no debe mostrarse. */
.cartBtn,
.cartBtn--dark,
.cartBtn__icon,
.cartBtn__badge,
.cartbtn,
.cartbtn .badge{
  display:none !important;
}


/* =========================================================
   CLIENTEPLUS / LOTUS FLOWER - CART CHECKOUT V2
   Super Admin ready: estas variables deben mapearse a config futura.
   ========================================================= */
:root{
  --cp-cart-primary: var(--brand, #b91c1c);
  --cp-cart-accent: #25D366;
  --cp-cart-bg: #ffffff;
  --cp-cart-surface: #f7f7f8;
  --cp-cart-card: #ffffff;
  --cp-cart-text: #111111;
  --cp-cart-muted: rgba(17,17,17,.58);
  --cp-cart-line: rgba(17,17,17,.08);
  --cp-cart-radius: 18px;
  --cp-cart-shadow: 0 12px 30px rgba(15,23,42,.08);
}

.drawer--checkout{
  width:min(440px, 100vw) !important;
  background:var(--cp-cart-bg) !important;
  color:var(--cp-cart-text) !important;
}

.drawer__body--checkout{
  height:calc(100vh - 72px) !important;
  overflow-y:auto !important;
  display:flex !important;
  flex-direction:column !important;
  gap:10px !important;
  padding:12px 12px calc(14px + env(safe-area-inset-bottom)) !important;
  background:var(--cp-cart-surface) !important;
}

.cartBlock{
  flex:0 0 auto;
}

.cartBlock--items{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.cartFieldGap{
  height:10px;
}

.drawerCheckoutPanel{
  position:sticky !important;
  bottom:0 !important;
  z-index:8 !important;
  flex:0 0 auto !important;
  margin-top:auto !important;
  padding:10px 0 0 !important;
  background:linear-gradient(180deg, rgba(247,247,248,0) 0%, var(--cp-cart-surface) 18%, var(--cp-cart-surface) 100%) !important;
}

.drawerCheckoutPanel .totals{
  margin-top:0 !important;
  background:var(--cp-cart-card) !important;
  border:1px solid var(--cp-cart-line) !important;
  border-radius:var(--cp-cart-radius) !important;
  box-shadow:var(--cp-cart-shadow) !important;
}

.drawerCheckoutPanel .cta,
#checkoutBtn{
  position:relative !important;
  bottom:auto !important;
  width:100% !important;
  min-height:56px !important;
  margin-top:10px !important;
  border-radius:16px !important;
  background:var(--cp-cart-accent) !important;
  color:#ffffff !important;
  font-size:15px !important;
  font-weight:1000 !important;
  box-shadow:0 16px 38px rgba(37,211,102,.28) !important;
}

#checkoutBtn.cta--blocked,
#checkoutBtn:disabled{
  background:#d7a13d !important;
  color:#111111 !important;
  box-shadow:none !important;
  cursor:not-allowed !important;
}

.checkoutMicrocopy{
  margin:8px 4px 0;
  text-align:center;
  color:var(--cp-cart-muted);
  font-size:12px;
  font-weight:850;
  line-height:1.32;
}

.drawerCheckoutPanel .warn{
  margin-top:8px !important;
}

.floatingCart__left{
  flex-direction:row !important;
}

#floatingCartLabel{
  order:2;
}

.floatingCart__icon{
  order:1;
}

/* CLIENTEPLUS FIX: sin pseudo-elemento en total del carrito flotante. */
.floatingCart__right::after{
  content: none !important;
  display: none !important;
}

@media (max-width:640px){
  .drawer--checkout{
    width:100% !important;
  }

  .drawer__body--checkout{
    height:calc(100vh - 68px) !important;
    padding:10px 10px calc(12px + env(safe-area-inset-bottom)) !important;
  }

  .drawerCheckoutPanel{
    margin-left:-2px !important;
    margin-right:-2px !important;
  }
}

/* =========================================================
   CLIENTEPLUS / LOTUS FLOWER - PRODUCT CARD QTY JUSTO FIX
   Alcance: solo cards de productos. No toca carrito/drawer/checkout.
   Objetivo: botón circular + fijo a la derecha; al activar, control
   compacto que crece hacia la izquierda sin montar el precio.
   ========================================================= */

.pcard--compact .pcard__body{
  padding:10px 12px 10px 12px !important;
  min-width:0 !important;
}

.pcard--compact .pcard__name,
.pcard--compact .pcard__desc{
  padding-right:0 !important;
}

.pcard--compact .pcard__foot{
  position:relative !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  min-height:40px !important;
  width:100% !important;
  padding:0 !important;
  margin-top:auto !important;
  gap:0 !important;
  overflow:visible !important;
}

.pcard--compact .price{
  flex:1 1 auto !important;
  min-width:0 !important;
  max-width:calc(100% - 48px) !important;
  margin:0 !important;
  padding:0 8px 0 0 !important;
  text-align:left !important;
  justify-self:flex-start !important;
  align-self:center !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
  line-height:1.05 !important;
}

.pcard--compact .price:has(+ .addWrap.addWrap--active){
  max-width:calc(100% - 102px) !important;
}

.pcard--compact .addWrap{
  position:absolute !important;
  right:0 !important;
  top:50% !important;
  transform:translateY(-50%) !important;
  z-index:3 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  width:36px !important;
  min-width:36px !important;
  height:36px !important;
  margin:0 !important;
  padding:0 !important;
  overflow:visible !important;
  cursor:default !important;
}

.pcard--compact .addWrap.addWrap--active{
  width:94px !important;
  min-width:94px !important;
  right:0 !important;
}

.pcard--compact .addBtn{
  width:34px !important;
  height:34px !important;
  min-width:34px !important;
  min-height:34px !important;
  border-radius:999px !important;
  border:0 !important;
  background:#ffffff !important;
  color:#111111 !important;
  box-shadow:0 8px 18px rgba(15,23,42,.16) !important;
  font-size:22px !important;
  line-height:1 !important;
  font-weight:1000 !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:0 !important;
  cursor:pointer !important;
  -webkit-tap-highlight-color:transparent !important;
}

.pcard--compact .cardQtyControl{
  position:relative !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:0 !important;
  width:94px !important;
  min-width:94px !important;
  height:36px !important;
  padding:0 4px !important;
  border-radius:999px !important;
  background:#ffffff !important;
  color:#111111 !important;
  border:1px solid rgba(17,17,17,.10) !important;
  box-shadow:0 8px 18px rgba(15,23,42,.16) !important;
  overflow:hidden !important;
}

.pcard--compact .cardQtyBtn{
  width:28px !important;
  height:28px !important;
  min-width:28px !important;
  min-height:28px !important;
  padding:0 !important;
  border:0 !important;
  border-radius:999px !important;
  background:transparent !important;
  color:#111111 !important;
  box-shadow:none !important;
  font-size:18px !important;
  line-height:1 !important;
  font-weight:1000 !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  cursor:pointer !important;
  -webkit-tap-highlight-color:transparent !important;
}

.pcard--compact .cardQtyBtn--minus{
  font-size:16px !important;
}

.pcard--compact .cardQtyControl[data-card-qty="1"] .cardQtyBtn--minus{
  font-size:14px !important;
}

.pcard--compact .cardQtyValue{
  flex:0 0 24px !important;
  min-width:24px !important;
  max-width:24px !important;
  text-align:center !important;
  color:#111111 !important;
  font-size:14px !important;
  font-weight:1000 !important;
  line-height:1 !important;
}

.pcard--compact .addBtn:active,
.pcard--compact .cardQtyBtn:active{
  transform:scale(.92) !important;
}

@media (max-width:420px){
  .pcard--compact .pcard__body{
    padding:9px 10px 9px 11px !important;
  }

  .pcard--compact .pcard__foot{
    min-height:34px !important;
  }

  .pcard--compact .price{
    max-width:calc(100% - 42px) !important;
    font-size:15px !important;
    padding-right:6px !important;
  }

  .pcard--compact .price:has(+ .addWrap.addWrap--active){
    max-width:calc(100% - 88px) !important;
  }

  .pcard--compact .addWrap{
    width:32px !important;
    min-width:32px !important;
    height:32px !important;
  }

  .pcard--compact .addWrap.addWrap--active{
    width:84px !important;
    min-width:84px !important;
  }

  .pcard--compact .addBtn{
    width:31px !important;
    height:31px !important;
    min-width:31px !important;
    min-height:31px !important;
    font-size:20px !important;
  }

  .pcard--compact .cardQtyControl{
    width:84px !important;
    min-width:84px !important;
    height:32px !important;
    padding:0 3px !important;
  }

  .pcard--compact .cardQtyBtn{
    width:25px !important;
    height:25px !important;
    min-width:25px !important;
    min-height:25px !important;
    font-size:16px !important;
  }

  .pcard--compact .cardQtyControl[data-card-qty="1"] .cardQtyBtn--minus{
    font-size:12px !important;
  }

  .pcard--compact .cardQtyValue{
    flex-basis:22px !important;
    min-width:22px !important;
    max-width:22px !important;
    font-size:13px !important;
  }
}


/* ClientePlus Web Mode */
body.webModeCatalog .addWrap,
body.webModeCatalog .cardQtyControl,
body.webModeCatalog .addBtn,
body.webModeCatalog .cfgBtn,
body.webModeCatalog .card__add,
body.webModeCatalog .btn-add,
body.webModeCatalog .productAdd,
body.webModeCatalog #floatingCart,
body.webModeCatalog .floatingCart,
body.webModeCatalog #cartFooter,
body.webModeCatalog .modalQty,
body.webModeCatalog .notesRow,
body.webModeCatalog #productModalAddBtn {
  display: none !important;
}

body.webModeCatalog .pcard {
  cursor: default;
}

body.webModeCatalog .pcard__foot {
  justify-content: flex-start;
}

body.webModeCatalog .pcard__foot::after {
  content: "Solo catálogo";
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
}

body.webModeDeliveryPaused #btnDelivery,
body.webModePickupPaused #btnRetiro {
  opacity: .45;
  filter: grayscale(1);
}

body.webModeDeliveryPaused #btnDelivery::after,
body.webModePickupPaused #btnRetiro::after {

  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 900;
  color: #fecaca;
}

#serviceClosedBanner {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
