/* ==========================================================================
   SIPO API — dynamic component styles (Souvlaki King)
   Status strip, hours tables, menu grid. Styled to match the site.
   ========================================================================== */

/* ------------------------------ status strip ------------------------------ */
.status-strip{
  position:fixed;top:0;left:0;right:0;
  z-index:200;
  background:#1c1c1c;
  color:#fff;
  padding:7px 16px;
  font-family:"Poppins",Arial,sans-serif;
  font-size:13px;
  font-weight:500;
  letter-spacing:-0.1px;
  text-align:center;
}
.status-strip-inner{display:flex;align-items:center;justify-content:center;gap:9px}
.status-strip-dot{
  width:8px;height:8px;border-radius:50%;
  background:#9c9c9c;flex:none;
}
.status-strip.open{background:#1d7151}
.status-strip.open .status-strip-dot{background:#5ce0a4;box-shadow:0 0 0 0 rgba(92,224,164,.7);animation:sk-pulse 2s infinite}
.status-strip.closed{background:var(--red,#c40000)}
.status-strip.closed .status-strip-dot{background:#ffb714}
.status-strip.error{background:#343434}
.countdown-timer{font-weight:700;font-variant-numeric:tabular-nums}

@keyframes sk-pulse{
  0%{box-shadow:0 0 0 0 rgba(92,224,164,.6)}
  70%{box-shadow:0 0 0 7px rgba(92,224,164,0)}
  100%{box-shadow:0 0 0 0 rgba(92,224,164,0)}
}
@media (prefers-reduced-motion:reduce){
  .status-strip.open .status-strip-dot{animation:none}
}

/* the strip pushes the fixed navbar (and the hero below it) down */
.has-status-strip .topbar{top:var(--strip-height,0px)}
.has-status-strip .sec-hero{margin-top:calc(var(--nav-h) + var(--strip-height,0px))}
.has-status-strip .page-head{padding-top:calc(var(--nav-h) + var(--strip-height,0px) + 54px)}
.has-status-strip .mainnav{top:calc(var(--nav-h) + var(--strip-height,0px))}

body.ordering-disabled .btn-solid,
body.ordering-disabled .btn-outline,
body.ordering-disabled .btn-cream{
  opacity:.5;pointer-events:none;filter:grayscale(.5);
}

/* ------------------------------ hours ------------------------------------- */
/* footer list (index.html) — inherits the footer type scale */
#footer-hours{list-style:none;margin:0;padding:0}
#footer-hours li{
  display:flex;justify-content:space-between;gap:18px;
  font-family:"Arimo",Arial,sans-serif;
  font-size:15.3px;line-height:20.5px;color:#fff;
}
#footer-hours li.today .day,
#footer-hours li.today .time{font-weight:700;color:#ffb714}
#footer-hours .time{text-align:right}
#footer-hours .closed-day{opacity:.65}

/* contact page table */
.hours-table{
  border:1px solid rgba(0,0,0,.1);
  border-radius:10px;
  overflow:hidden;
  background:#fff;
}
.hours-row{
  display:flex;justify-content:space-between;align-items:flex-start;gap:20px;
  padding:13px 18px;
  font-family:"Poppins",Arial,sans-serif;
  font-size:15px;
  border-bottom:1px solid rgba(0,0,0,.07);
}
.hours-row:last-child{border-bottom:0}
.hours-row .day{font-weight:500}
.hours-row .time{text-align:right;font-variant-numeric:tabular-nums}
.hours-row .closed-day{color:var(--red,#c40000);font-weight:600}
.hours-row.today{background:#fff6e5}
.hours-row.today .day,
.hours-row.today .time{font-weight:700;color:var(--red,#c40000)}

/* ------------------------------ menu grid --------------------------------- */
.menu-tabs{
  display:flex;flex-wrap:wrap;gap:10px;
  justify-content:center;
  margin:0 0 34px;
}
.menu-tab{
  font-family:"Poppins",Arial,sans-serif;
  font-size:14px;font-weight:600;
  letter-spacing:.2px;
  text-transform:uppercase;
  padding:10px 18px;
  border:2px solid rgba(0,0,0,.12);
  border-radius:40px;
  background:#fff;color:#1c1c1c;
  cursor:pointer;
  transition:background .2s ease,color .2s ease,border-color .2s ease;
}
.menu-tab:hover{border-color:var(--red,#c40000);color:var(--red,#c40000)}
.menu-tab.active{background:var(--red,#c40000);border-color:var(--red,#c40000);color:#fff}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:26px;
}
.menu-card{
  display:flex;flex-direction:column;
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 6px 22px rgba(0,0,0,.09);
}
.menu-card-img{aspect-ratio:4/3;overflow:hidden;background:#f2ece0}
.menu-card-img img{width:100%;height:100%;object-fit:cover;display:block}
.menu-card-img--empty{
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#f6efe2,#e9dcc4);
}
.menu-card-img--empty span{
  font-family:"Mont",Arial,sans-serif;font-style:italic;font-weight:900;
  text-transform:uppercase;letter-spacing:-1px;
  font-size:22px;color:rgba(123,57,17,.35);
}
.menu-card-body{padding:18px 20px 20px;display:flex;flex-direction:column;flex:1}
.menu-card-body h3{
  font-family:"Mont",Arial,sans-serif;font-style:italic;font-weight:900;
  text-transform:uppercase;letter-spacing:-1px;
  font-size:23px;line-height:1.05;color:#1c1c1c;
  margin:0 0 8px;
}
.menu-card-body p{
  font-family:"Poppins",Arial,sans-serif;
  font-size:14px;line-height:20px;color:#555;
  margin:0 0 16px;
}
.menu-card-footer{
  margin-top:auto;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
}
.menu-card-footer .price{
  font-family:"Poppins",Arial,sans-serif;font-weight:700;font-style:italic;
  font-size:19px;color:var(--red,#c40000);
}
.menu-card-footer .order-link{
  font-family:"Poppins",Arial,sans-serif;font-weight:600;font-size:14px;
  color:var(--green,#1d7151);white-space:nowrap;
}
.menu-card-footer .order-link:hover{text-decoration:underline}

.menu-loading,.menu-empty{
  grid-column:1/-1;
  text-align:center;padding:40px 20px;
  font-family:"Poppins",Arial,sans-serif;font-size:15px;color:#666;
}
.menu-empty a{color:var(--red,#c40000);font-weight:600}

@media (max-width:520px){
  .menu-grid{grid-template-columns:1fr;gap:20px}
  .status-strip{font-size:12px;padding:7px 12px}
  .hours-row{font-size:14px;padding:11px 14px}
}
