/* Bonchidai Nyitvatartás — „zárva" sáv + nyitvatartás-táblázat.
   Meleg barna/arany (a menühöz illő), NINCS piros. */

/* ---- Fix „zárva" sáv az oldal tetején ---- */
.bnyt-bar{
  position:fixed; top:0; left:0; right:0; z-index:99999;
  display:flex; align-items:center; justify-content:center; gap:.6rem;
  box-sizing:border-box; padding:.6rem 2.6rem .6rem 1rem;
  background:#5c3a1a; color:#f4ead4;
  font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:.92rem; line-height:1.35; text-align:center;
  box-shadow:0 3px 14px rgba(0,0,0,.28);
  transform:translateY(-100%); transition:transform .32s ease;
}
.bnyt-bar.is-visible{ transform:translateY(0); }
.bnyt-bar__msg{ font-weight:500; letter-spacing:.01em; }
.bnyt-bar__dot{
  flex:0 0 auto; width:9px; height:9px; border-radius:50%;
  background:#e0a94b; box-shadow:0 0 0 0 rgba(224,169,75,.6);
  animation:bnyt-pulse 2s infinite;
}
@keyframes bnyt-pulse{
  0%{ box-shadow:0 0 0 0 rgba(224,169,75,.55); }
  70%{ box-shadow:0 0 0 7px rgba(224,169,75,0); }
  100%{ box-shadow:0 0 0 0 rgba(224,169,75,0); }
}
.bnyt-bar__close{
  position:absolute; right:.5rem; top:50%; transform:translateY(-50%);
  background:transparent; border:none; color:#d4a574; font-size:1.4rem; line-height:1;
  width:2rem; height:2rem; cursor:pointer; border-radius:50%; transition:color .2s, background .2s;
}
.bnyt-bar__close:hover{ color:#f4ead4; background:rgba(255,255,255,.08); }
@media (prefers-reduced-motion: reduce){
  .bnyt-bar{ transition:none; } .bnyt-bar__dot{ animation:none; }
}
@media(max-width:560px){
  .bnyt-bar{ font-size:.84rem; padding:.55rem 2.4rem .55rem .8rem; }
}

/* ---- [bonchidai_nyitvatartas] táblázat ---- */
.bnyt-table{
  max-width:360px; margin:1rem auto;
  font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:#3d2a14;
}
.bnyt-t__title{
  font-family:"Playfair Display",Georgia,serif; font-variant:small-caps;
  font-size:1.4rem; color:#5c3a1a; text-align:center; margin:0 0 .7rem; letter-spacing:.02em;
}
.bnyt-t{ width:100%; border-collapse:collapse; }
.bnyt-t td{ padding:.5rem .2rem; border-bottom:1px dotted rgba(92,58,26,.25); font-size:.98rem; }
.bnyt-t tr:last-child td{ border-bottom:none; }
.bnyt-t__day{ text-align:left; color:#5c3a1a; }
.bnyt-t__val{ text-align:right; font-weight:600; color:#8d4530; white-space:nowrap; }
