/* ============================================================
   menu-scoped.css  —  todos los estilos del menú viven bajo
   el prefijo  #bz-menu  para no chocar con el tema existente
   ============================================================ */

#bz-menu {
  --bz-red:    #c0392b;
  --bz-black:  #1a1a1a;
  --bz-border: #e0e0e0;
  --bz-muted:  #444;
  font-family: 'Open Sans', sans-serif;
  color: #1a1a1a;
  background: #fff;
}

/* ── DoorDash button (outside the scoped div, inside .client section) ── */
.bz-doordash-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 10px;
}
.bz-btn-doordash {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: #444;
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .6px;
  text-decoration: none;
  padding: 9px 20px;
  border: 1.5px solid #ccc;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  transition: border-color .2s, box-shadow .2s, color .2s;
}
.bz-btn-doordash:hover {
  border-color: #ff3008;
  color: #ff3008 !important;
  box-shadow: 0 3px 12px rgba(255,48,8,.15);
  text-decoration: none;
}
.bz-dd-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff3008;
  flex-shrink: 0;
}

/* ── Sticky filter bar ── */
#bz-filters-wrap {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 9999;
  padding: 10px 20px;
  /* Sin borde ni sombra por defecto */
  border-top: none;
  border-bottom: none;
  box-shadow: none;
  transition: box-shadow .2s, border-color .2s;
}

/* Solo cuando está pegado al tope */
#bz-filters-wrap.is-stuck {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}
#bz-filters {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.bz-filter-btn {
  font-family: 'Lato', sans-serif !important;
  font-size: .81rem !important;
  font-weight: 700 !important;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  padding: 7px 13px !important;
  border: 1px solid #1a1a1a !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #1a1a1a !important;
  cursor: pointer;
  line-height: 1.2;
  transition: background .18s, color .18s, border-color .18s !important;
  white-space: nowrap;
  box-shadow: none !important;
}
.bz-filter-btn.active,
.bz-filter-btn:hover {
  background: #c0392b !important;
  border-color: #c0392b !important;
  color: #fff !important;
}

/* ── Menu wrapper ── */
#bz-menu {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* ── Section ── */
.bz-section { margin-top: 44px; }
.bz-section.bz-hidden { display: none !important; }

.bz-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}
.bz-section-subtitle {
  text-align: center;
  font-size: .82rem;
  color: #777;
  margin-bottom: 18px;
  font-style: italic;
}
.bz-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0 0 4px;
}
.bz-note {
  font-size: .74rem;
  color: #777;
  text-align: center;
  margin-top: 14px;
  font-style: italic;
  line-height: 1.65;
}
.bz-note strong { color: #1a1a1a; font-style: normal; }

/* ── Grid ── */
.bz-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 36px;
}
@media (min-width: 640px) {
  .bz-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Item row ── */
.bz-item {
  display: flex !important;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #e0e0e0;
  animation: bzFadeIn .3s ease;
}
.bz-item.bz-no-img { display: block !important; padding: 14px 0; }

@keyframes bzFadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Circular image ── */
.bz-img-wrap {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 5px #e4e4e4, 0 4px 12px rgba(0,0,0,.13);
  cursor: zoom-in;
  transition: transform .2s;
  position: relative;
}
.bz-img-wrap:hover { transform: scale(1.06); }
.bz-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.bz-img-wrap::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity .25s, background .25s;
}
.bz-img-wrap:hover::after {
  background: rgba(0,0,0,.27);
  opacity: 1;
}
@media (hover: none) {
  .bz-img-wrap::before {
    content: '';
    position: absolute;
    bottom: 10px; right: 10px;
    z-index: 2;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(0,0,0,.42) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E") center/11px no-repeat;
    pointer-events: none;
    opacity: .9;
  }
  .bz-img-wrap:active::after {
    background: rgba(0,0,0,.27);
    opacity: 1;
  }
}

/* ── Item text ── */
.bz-info { flex: 1; min-width: 0; }
.bz-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 3px;
}
.bz-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.3;
}
.bz-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #c0392b;
  white-space: nowrap;
  flex-shrink: 0;
}
.bz-desc {
  font-size: .93rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ── Subsection title ── */
.bz-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 32px 0 14px;
  color: #1a1a1a;
  text-align: center;
}

/* ── Drinks ── */
.bz-drinks-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}
.bz-drink {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: #1a1a1a;
}
.bz-drink span { color: #c0392b; margin-left: 3px; }
.bz-drinks-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .79rem;
  font-weight: 800;
  margin: 12px 0 4px;
  color: #1a1a1a;
}

/* ── Empty ── */
.bz-empty {
  text-align: center;
  padding: 50px 0;
  color: #aaa;
  font-size: .95rem;
  display: none;
}

/* ── Modal ── */
#bz-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#bz-modal.open { display: flex; }
.bz-modal-box {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 12px 50px rgba(0,0,0,.45);
  animation: bzPopIn .22s ease;
  position: relative;
}
@keyframes bzPopIn {
  from { transform: scale(.82); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.bz-modal-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.bz-modal-body { padding: 20px 24px 26px; }
.bz-modal-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem; font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.bz-modal-price { color: #c0392b; font-weight: 700; font-size: .98rem; margin-bottom: 10px; }
.bz-modal-desc  { font-size: .84rem; color: #555; line-height: 1.75; }
.bz-modal-close {
  position: absolute; top: 10px; right: 12px;
  background: rgba(0,0,0,.48); color: #fff;
  border: none; border-radius: 50%;
  width: 34px; height: 34px;
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.bz-modal-close:hover { background: #c0392b; }

/* ── Responsive ── */
@media (max-width: 479px) {
  .bz-section-title { font-size: 1.25rem; }
  .bz-filter-btn { font-size: .75rem !important; padding: 6px 9px !important; }
  .bz-img-wrap { width: 100px; height: 100px; }
}
