/* ============================================================
   APIZZA · style.css
   ============================================================ */

:root {
  --bg: #0d0d0d;
  --bg-card: #161616;
  --bg-elevated: #1c1c1c;
  --border: #272727;
  --red: #e63946;
  --red-dark: #c1121f;
  --orange: #f4a261;
  --cream: #f0ebe0;
  --gray: #7a7a7a;
  --gray-dim: #444;
  --font-h: 'Oswald', sans-serif;
  --font-b: 'Inter', sans-serif;
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-b);
  min-height: 100vh;
  line-height: 1.5;
}

/* ── HEADER ─────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0d0d0ddd;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.logo-text {
  font-family: var(--font-h);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--cream);
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1.5px solid var(--border);
  color: var(--cream);
  padding: 0.45rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-b);
  font-size: 0.88rem;
  transition: border-color 0.2s, background 0.2s;
}

.cart-btn:hover {
  border-color: var(--red);
  background: rgba(230,57,70,.07);
}

.cart-count {
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  background: radial-gradient(ellipse at 50% 120%, #2a0a0a 0%, #0d0d0d 65%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg { display: none; }

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2.5rem 2.5rem;
  flex-wrap: nowrap;
}

.hero-text {
  text-align: center;
  flex-shrink: 1;
}

.hero-mascot {
  height: 220px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.65));
  animation: mascot-float 3.5s ease-in-out infinite;
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0px) rotate(-1.5deg); }
  50%       { transform: translateY(-12px) rotate(1.5deg); }
}

@media (max-width: 480px) {
  .hero-mascot { height: 120px; }
}

.hero-title {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(3.5rem, 11vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow: 0 6px 32px rgba(0,0,0,0.7), 0 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 0.6rem;
}

.it-g { color: #009246; }
.it-w { color: #f0ebe0; }
.it-r { color: #CE2B37; }

.hero-flag {
  display: flex;
  justify-content: center;
  margin: 0 auto 0.75rem;
  width: 100px;
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
}
.hero-flag span { flex: 1; }
.hero-flag span:nth-child(1) { background: #009246; }
.hero-flag span:nth-child(2) { background: #f0ebe0; }
.hero-flag span:nth-child(3) { background: #CE2B37; }

.hero-sub {
  color: rgba(240,235,224,0.55);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ── CATEGORIES ──────────────────────────────────────────────── */
.categories {
  position: sticky;
  top: 60px;
  z-index: 90;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.categories::-webkit-scrollbar { display: none; }

.cat-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--gray);
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 1.25rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.cat-btn:hover { color: var(--cream); }
.cat-btn.active { color: var(--red); border-bottom-color: var(--red); }

/* ── MENU ────────────────────────────────────────────────────── */
.menu-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 0.5rem;
}

.section-title {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}

.menu-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.menu-item:hover { border-color: var(--red); transform: translateY(-2px); }
.menu-item.unavailable { opacity: 0.38; cursor: not-allowed; pointer-events: none; }

.item-body { padding: 1.1rem 1.2rem; display: flex; flex-direction: column; flex: 1; }

.item-name {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}

.item-description {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1rem;
}

.item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.item-price {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 600;
}

.item-stock-badge {
  display: block;
  font-size: 0.68rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.1rem;
}
.item-stock-badge.sold-out {
  color: var(--gray-dim);
}

.sold-out-pill {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  background: rgba(122,122,122,.1);
  border: 1px solid rgba(122,122,122,.2);
  border-radius: 6px;
  padding: 0.28rem 0.55rem;
  flex-shrink: 0;
}

.add-btn {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 300;
  transition: background 0.2s;
  flex-shrink: 0;
}
.add-btn:hover { background: var(--red-dark); }

/* ── CART DRAWER ─────────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.active { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(420px, 100vw);
  background: var(--bg-elevated);
  border-left: 1px solid var(--border);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cart-header h2 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.close-btn {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.close-btn:hover { color: var(--cream); background: rgba(255,255,255,.05); }

.cart-items { flex: 1; overflow-y: auto; padding: 0.75rem 1.5rem; }

.cart-empty {
  text-align: center;
  color: var(--gray);
  padding: 3rem 0;
  font-size: 0.88rem;
}

.cart-item {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }

.cart-item-top {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.cart-item-name { font-size: 0.92rem; font-weight: 500; flex: 1; }
.cart-item-price { font-family: var(--font-h); font-size: 0.98rem; white-space: nowrap; }

.cart-item-mods {
  font-size: 0.76rem;
  color: var(--gray);
  margin-top: 0.3rem;
  line-height: 1.5;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.55rem;
}

.qty-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--cream);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.qty-btn:hover { border-color: var(--red); }
.qty-value { font-size: 0.88rem; min-width: 20px; text-align: center; }

.remove-item-btn {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--gray-dim);
  cursor: pointer;
  font-size: 0.74rem;
  text-decoration: underline;
  transition: color 0.2s;
}
.remove-item-btn:hover { color: var(--red); }

.cart-footer {
  padding: 1.1rem 1.5rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}
.cart-total-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
}
.cart-total-amount {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 600;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-secondary {
  background: var(--bg-card);
  color: var(--cream);
  border: 1px solid var(--border);
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  font-family: var(--font-b);
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--gray); }

/* ── MODALS ──────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }

.modal {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.75rem;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
.modal-title {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.modal-desc {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.2rem;
}

/* Ingredient toggles */
.ing-section { margin-bottom: 1.25rem; }
.ing-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 0.6rem;
  display: block;
}

.ing-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.48rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.ing-row:last-child { border-bottom: none; }

.ing-row input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
}
.ing-row label { font-size: 0.88rem; cursor: pointer; flex: 1; }
.ing-price { font-size: 0.78rem; color: var(--orange); }

/* Qty */
.modal-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.modal-qty-label { font-size: 0.85rem; color: var(--gray); }
.modal-qty-controls { display: flex; align-items: center; gap: 0.75rem; }
.modal-qty-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--cream);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.modal-qty-btn:hover { border-color: var(--red); }
.modal-qty-value { font-size: 1.05rem; font-weight: 500; min-width: 24px; text-align: center; }

/* Checkout */
.checkout-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 1.1rem;
}

.checkout-form { display: flex; flex-direction: column; gap: 0.75rem; }

.form-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 0.78rem 1rem;
  border-radius: 10px;
  font-family: var(--font-b);
  font-size: 0.88rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--red); }
.form-input::placeholder { color: var(--gray-dim); }
.form-input option { background: var(--bg-elevated); }

/* ── ADMIN PANEL ─────────────────────────────────────────────── */
#admin-overlay {
  overflow-y: auto;
  align-items: flex-start;
}

.admin-overlay-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  min-height: 100%;
}

.admin-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 820px;
  margin: auto;
}

.admin-head {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-head-title {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

.admin-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 0;
}
.admin-tabs::-webkit-scrollbar { display: none; }

.admin-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--gray);
  font-family: var(--font-h);
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.admin-tab:hover { color: var(--cream); }
.admin-tab.active { color: var(--red); border-bottom-color: var(--red); }

.admin-content { padding: 1.4rem 1.5rem; }

.admin-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}
.admin-section-title {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

.btn-add {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 0.45rem 0.9rem;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-add:hover { background: var(--red-dark); }

/* Admin item row */
.admin-item-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.admin-item-row:last-child { border-bottom: none; }

.admin-item-info { flex: 1; min-width: 0; }
.admin-item-name { font-size: 0.92rem; font-weight: 500; }
.admin-item-cat { font-size: 0.73rem; color: var(--gray); margin-top: 0.1rem; }
.admin-item-price { font-family: var(--font-h); font-size: 0.95rem; white-space: nowrap; }

/* Toggle */
.toggle { position: relative; display: inline-block; width: 42px; height: 23px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 23px;
  cursor: pointer;
  transition: background 0.2s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 17px; height: 17px;
  left: 3px; top: 3px;
  background: var(--gray);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}
.toggle input:checked + .toggle-slider { background: rgba(230,57,70,.3); }
.toggle input:checked + .toggle-slider::before { transform: translateX(19px); background: var(--red); }

/* Icon btn */
.btn-icon {
  background: none;
  border: 1px solid var(--border);
  color: var(--gray);
  width: 30px; height: 30px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.btn-icon:hover { border-color: var(--red); color: var(--red); }
.btn-icon.danger:hover { border-color: var(--red); color: var(--red); }

/* Form group */
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.75rem; }
.form-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
}

/* Item edit form */
.item-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem;
  margin-bottom: 1.1rem;
}
.item-form-title {
  font-family: var(--font-h);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.9rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.form-actions { display: flex; gap: 0.65rem; margin-top: 0.75rem; }
.form-actions .btn-primary { width: auto; padding: 0.55rem 1.2rem; font-size: 0.82rem; }

/* Orders */
.order-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.65rem;
}
.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.order-id { font-family: var(--font-h); font-size: 0.82rem; color: var(--gray); }
.order-status {
  font-size: 0.72rem;
  padding: 0.18rem 0.55rem;
  border-radius: 20px;
  font-weight: 500;
}
.order-status.pending { background: rgba(244,162,97,.15); color: var(--orange); }
.order-status.done { background: rgba(50,200,100,.15); color: #4cbb7a; }
.order-details { font-size: 0.82rem; color: var(--gray); line-height: 1.75; }
.order-total { font-family: var(--font-h); font-size: 1rem; margin-top: 0.4rem; }

/* ── DASHBOARD ───────────────────────────────────────────────── */
.dash-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}
.dash-card-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gray);
  font-weight: 500;
}

/* ── THANK YOU MODAL ─────────────────────────────────────────── */
.thankyou-modal {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: ty-pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes ty-pop {
  0%   { transform: scale(0.7) translateY(30px); opacity: 0; }
  100% { transform: scale(1)   translateY(0px);  opacity: 1; }
}

.ty-mascot {
  height: 160px;
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
  animation: mascot-float 3.5s ease-in-out infinite;
  margin-bottom: 0.25rem;
}

.ty-title {
  font-family: 'Alfa Slab One', serif;
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin: 0;
}

.ty-sub {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.ty-btn {
  margin-top: 0.5rem;
  background: #25D366;
}
.ty-btn:hover { background: #1ebc59; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--gray-dim);
  font-size: 0.74rem;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}
#admin-trigger { cursor: pointer; user-select: none; }

/* ── CLOSED BANNER ───────────────────────────────────────────── */
.closed-banner {
  background: rgba(230,57,70,.06);
  border: 1px solid rgba(230,57,70,.18);
  border-radius: 10px;
  padding: 0.9rem 1.25rem;
  text-align: center;
  color: var(--orange);
  font-size: 0.88rem;
  margin: 1.5rem 1.5rem 0;
  letter-spacing: 0.02em;
}

/* ── UTILS ───────────────────────────────────────────────────── */
.hidden { display: none !important; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
  .modal { padding: 1.25rem; }
  .form-grid { grid-template-columns: 1fr; }
  .logo-text { font-size: 1.5rem; }
}

/* ── PRINT ───────────────────────────────────────────────────── */
@media print {
  header, footer, .categories, nav,
  .cart-overlay, .cart-drawer,
  .modal-overlay, .admin-overlay,
  .closed-banner { display: none !important; }
}

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-dim); }
