/* ========================================
   אתר הזמנות ג'חנון — עיצוב
   פלטה: חום · בז' · ירוק זית
   בלי אימוג'י — כל האייקונים הם SVG קו דק (#i-*) מתוך index.html
   ======================================== */

:root {
  --crust: #43301C;        /* חום כהה */
  --toast: #6B4B2C;        /* חום בינוני */
  --gold: #7E9455;         /* ירוק זית בהיר (צבע פעולה) */
  --honey: #5E7540;        /* ירוק זית כהה */
  --cream: #FFFDF7;
  --dough: #EFE3CB;        /* בז' */

  --bg: #F5EDDD;
  --card-bg: #FFFDF7;
  --text: #3E2C1A;
  --text-light: #6B5A45;
  --text-muted: #9A8A74;
  --border: #E4D6BB;
  --green: #5E7540;
  --red: #B04A3A;

  --shadow-sm: 0 1px 3px rgba(67, 48, 28, 0.06), 0 6px 18px rgba(67, 48, 28, 0.05);
  --shadow-md: 0 4px 20px rgba(67, 48, 28, 0.12);
  --shadow-lg: 0 10px 40px rgba(67, 48, 28, 0.18);

  --topbar-h: 58px;
  --cart-height: 68px;
  --maxw: 1180px;
}

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

html {
  scroll-padding-top: calc(var(--topbar-h) + 58px);
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
}

body {
  font-family: 'Heebo', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  padding-bottom: var(--cart-height);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: inherit; font-size: inherit; background: none; }
input, textarea, select { font-family: inherit; }
[hidden] { display: none !important; }

/* ========== אייקונים ========== */
.ic {
  width: 1.25em; height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.22em;
}
/* אייקונים ממולאים (וואטסאפ, פייסבוק) — השאר נשארים בקו */
.ic.solid { fill: currentColor; stroke: none; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  color: inherit; position: relative;
  transition: background 0.2s ease;
}
.icon-btn:hover { background: rgba(0, 0, 0, 0.06); }
.icon-btn .ic { width: 22px; height: 22px; }

/* ========== סרגל מבצעים מתחלף ========== */
.ticker {
  background: var(--crust);
  color: #F6EFE1;
  height: 38px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.ticker-track { position: relative; width: 100%; height: 100%; }
.ticker-item {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.2px;
  padding: 0 16px;
  text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.ticker-item.on { opacity: 1; transform: none; pointer-events: auto; }
.ticker-item .ic { width: 16px; height: 16px; opacity: 0.7; }

/* ========== סרגל עליון ========== */
.topbar {
  position: sticky; top: 0; z-index: 300;
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  max-width: var(--maxw); margin: 0 auto;
  height: var(--topbar-h);
  display: flex; align-items: center; gap: 10px;
  padding: 0 14px;
}
.brand { display: flex; align-items: center; gap: 9px; color: var(--crust); }
.brand-ic { width: 26px; height: 26px; }
.brand-name {
  font-family: 'Secular One', 'Heebo', sans-serif;
  font-size: 1.12rem; line-height: 1.2; white-space: nowrap;
}
.mainnav { display: none; flex: 1; justify-content: center; gap: 4px; }
.mainnav a {
  padding: 8px 16px; border-radius: 10px;
  font-size: 0.95rem; font-weight: 600; color: var(--text-light);
  transition: background 0.2s ease, color 0.2s ease;
}
.mainnav a:hover { background: var(--dough); color: var(--crust); }
.mainnav a.active { background: var(--crust); color: #fff; }

.cart-toggle { margin-inline-start: auto; color: var(--crust); }
.cart-dot {
  position: absolute; top: 2px; inset-inline-start: 2px;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 9px; background: var(--gold); color: #fff;
  font-size: 0.7rem; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ========== מגירת תפריט (מובייל) ========== */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(40, 24, 10, 0.45);
  opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s;
}
.drawer-overlay.show { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; bottom: 0; inset-inline-start: 0; z-index: 401;
  width: min(300px, 84vw);
  background: var(--cream);
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
html[dir="rtl"] .drawer { transform: translateX(100%); }
.drawer.show { transform: none !important; }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  color: var(--crust);
}
.drawer-title { font-family: 'Secular One', 'Heebo', sans-serif; font-size: 1.1rem; }
.drawer-nav { padding: 10px 10px; flex: 1; overflow-y: auto; }
.drawer-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 14px; border-radius: 12px;
  font-weight: 600; color: var(--text);
}
.drawer-nav a:hover, .drawer-nav a.active { background: var(--dough); color: var(--crust); }
.drawer-nav .ic { width: 20px; height: 20px; color: var(--honey); }
.drawer-foot {
  padding: 14px 18px; border-top: 1px solid var(--border);
  font-size: 0.88rem; color: var(--text-light);
}
.drawer-foot a { display: flex; align-items: center; gap: 9px; padding: 6px 0; }
.drawer-foot .ic { width: 17px; height: 17px; color: var(--honey); }

/* ========== פס "סגור" ========== */
.closed-bar {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--red); color: #fff;
  padding: 10px 16px; font-weight: 700; font-size: 0.92rem; text-align: center;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: clamp(340px, 42vh, 560px);
  background: linear-gradient(135deg, var(--crust) 0%, var(--toast) 45%, #7A6034 72%, var(--honey) 100%);
  background-size: cover; background-position: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(67,48,28,0.74) 0%, rgba(67,48,28,0.56) 45%, rgba(67,48,28,0.82) 100%),
    radial-gradient(circle at 20% 80%, rgba(94, 117, 64, 0.32) 0%, transparent 55%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  padding: 46px 20px 40px;
  max-width: 760px;
}
.hero-title {
  font-family: 'Secular One', 'Heebo', sans-serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 400; letter-spacing: 0.5px; line-height: 1.2;
}
.hero-subtitle {
  font-size: 1rem; font-weight: 300; letter-spacing: 3px;
  color: rgba(255,255,255,0.72); margin-top: 8px;
  text-transform: uppercase;
}
.hero-tagline {
  font-size: 1.02rem; font-weight: 300; max-width: 460px;
  margin: 16px auto 0; color: rgba(255,255,255,0.9); line-height: 1.75;
}
.hero-cards {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: 24px;
}
.hero-card {
  display: flex; align-items: flex-start; gap: 9px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 14px; padding: 12px 16px;
  text-align: start; max-width: 300px;
}
.hero-card .ic { width: 19px; height: 19px; margin-top: 3px; opacity: 0.85; }
.hero-card b { display: block; font-size: 0.9rem; font-weight: 700; }
.hero-card span { font-size: 0.84rem; color: rgba(255,255,255,0.8); white-space: pre-line; line-height: 1.55; }

/* ========== ניווט קטגוריות ========== */
.catbar {
  position: sticky; top: var(--topbar-h); z-index: 250;
  display: flex; gap: 8px; padding: 10px 14px;
  background: rgba(245, 237, 221, 0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  overflow-x: auto; scrollbar-width: none; white-space: nowrap;
  justify-content: flex-start;
}
.catbar::-webkit-scrollbar { display: none; }
.cat-nav-item {
  flex-shrink: 0; padding: 8px 17px; border-radius: 22px;
  font-size: 0.88rem; font-weight: 600; color: var(--text-light);
  background: var(--card-bg); border: 1px solid var(--border);
  transition: all 0.22s ease;
}
.cat-nav-item.active { background: var(--crust); color: #fff; border-color: var(--crust); }

/* ========== תפריט ========== */
.menu-section {
  max-width: var(--maxw); margin: 0 auto;
  padding: 26px 16px 40px;
}
.menu-loading { text-align: center; padding: 60px 0; color: var(--text-light); font-weight: 600; }

.category { margin-bottom: 46px; }
.category-header {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 6px 4px 22px; text-align: center;
}
.category-header .ic { width: 26px; height: 26px; color: var(--honey); }
.category-header h2 {
  font-family: 'Secular One', 'Heebo', sans-serif;
  font-size: 1.5rem; font-weight: 400; color: var(--crust);
}
.category-header::after {
  content: ''; width: 46px; height: 2px; border-radius: 2px;
  background: var(--gold); opacity: 0.55; margin-top: 4px;
}

/* ========== כרטיסי מוצר ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px;
  justify-content: center;
  align-items: stretch;
}
.product-card {
  background: var(--card-bg); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer; position: relative;
  border: 1px solid var(--border);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  -webkit-tap-highlight-color: transparent;
  display: flex; flex-direction: column;
  text-align: center;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product-card:active { transform: scale(0.985); }
.product-card.out-of-stock { opacity: 0.5; cursor: not-allowed; }
.product-card.out-of-stock:hover { transform: none; box-shadow: var(--shadow-sm); }
.product-card.out-of-stock::after {
  content: 'אזל'; position: absolute; top: 10px; inset-inline-start: 10px;
  background: var(--red); color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 3px 11px; border-radius: 20px;
}

/* התמונה יושבת בפריים אחיד — יחס קבוע, ממורכזת, בלי חיתוך אקראי */
.product-image {
  position: relative;
  width: 100%; aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--dough), #E9D5AE);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.product-image .ic { width: 34px; height: 34px; color: rgba(67,48,28,0.28); }

.product-info {
  padding: 14px 14px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  flex: 1;
}
.product-info h3 {
  font-size: 0.97rem; font-weight: 700; line-height: 1.35; color: var(--crust);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-note {
  font-size: 0.79rem; color: var(--text-muted); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  margin-top: auto; padding-top: 10px;
  font-weight: 800; color: var(--honey); font-size: 1.08rem;
}

/* ========== מודאלים ========== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(40, 24, 10, 0.55);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  display: none; align-items: center; justify-content: center; padding: 16px;
  overflow-y: auto;
}
.modal-overlay.show { display: flex; }
.modal {
  position: relative; width: 100%; max-width: 430px;
  background: var(--card-bg); border-radius: 22px; padding: 26px 22px 22px;
  box-shadow: var(--shadow-lg); text-align: center;
  animation: pop 0.22s ease;
  max-height: 92vh; overflow-y: auto;
}
@keyframes pop { from { transform: translateY(14px) scale(0.97); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-close {
  position: absolute; top: 10px; inset-inline-start: 12px;
  color: var(--text-muted); width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
}
.modal-close .ic { width: 20px; height: 20px; }

.modal-media {
  width: 100%; aspect-ratio: 4 / 3; max-height: 210px;
  border-radius: 16px; overflow: hidden; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--dough), #E9D5AE);
  display: flex; align-items: center; justify-content: center;
}
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-media .ic { width: 40px; height: 40px; color: rgba(67,48,28,0.28); }

.modal-title {
  font-family: 'Secular One', 'Heebo', sans-serif;
  font-size: 1.3rem; font-weight: 400; line-height: 1.35;
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
}
.modal-title .ic { width: 20px; height: 20px; color: var(--honey); }
.modal-note { color: var(--text-muted); font-size: 0.88rem; margin-top: 4px; }
.modal-price { font-size: 1.35rem; font-weight: 800; color: var(--honey); margin-top: 10px; }

.modal-quantity { display: flex; align-items: center; justify-content: center; gap: 22px; margin: 20px 0; }
.qty-btn {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--dough); color: var(--crust);
  display: inline-flex; align-items: center; justify-content: center;
}
.qty-btn .ic { width: 20px; height: 20px; stroke-width: 2; }
.qty-btn:active { transform: scale(0.92); }
.qty-display { font-size: 1.55rem; font-weight: 800; min-width: 44px; }

.btn-primary {
  width: 100%; padding: 14px; border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--honey));
  color: #fff; font-weight: 800; font-size: 1.02rem;
  box-shadow: 0 4px 16px rgba(94, 117, 64, 0.3);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-primary .ic { width: 19px; height: 19px; }
.btn-primary:active { transform: scale(0.985); }
.btn-primary:disabled { opacity: 0.6; cursor: default; }
.btn-big { padding: 16px; font-size: 1.08rem; margin-top: 6px; }
.btn-ghost {
  width: 100%; padding: 13px; border-radius: 14px; margin-top: 10px;
  background: transparent; border: 1.5px solid var(--border);
  color: var(--text-light); font-weight: 700;
}

/* ========== סל ========== */
.cart-modal { text-align: start; }
.cart-items-list { margin: 16px 0; max-height: 44vh; overflow-y: auto; }
.cart-item {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 0; border-bottom: 1px dashed var(--border);
}
.cart-item-thumb {
  width: 46px; height: 46px; border-radius: 10px; flex: none;
  background: var(--dough); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-thumb .ic { width: 20px; height: 20px; color: rgba(67,48,28,0.3); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 { font-size: 0.94rem; font-weight: 700; }
.cart-item-info span { font-size: 0.81rem; color: var(--text-muted); }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.cart-item-qty button {
  width: 30px; height: 30px; border-radius: 50%; background: var(--dough);
  color: var(--crust);
  display: inline-flex; align-items: center; justify-content: center;
}
.cart-item-qty .ic { width: 15px; height: 15px; stroke-width: 2.2; }
.cart-item-qty b { min-width: 22px; text-align: center; }
.cart-empty { text-align: center; color: var(--text-muted); padding: 26px 0; }
.cart-total-line {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1.18rem; font-weight: 800; padding-top: 12px; border-top: 2px solid var(--border);
}
.cart-actions { margin-top: 16px; }

.cart-bar {
  position: fixed; bottom: 0; inset-inline: 0; z-index: 200;
  background: var(--crust); color: #fff;
  transform: translateY(110%); transition: transform 0.3s ease;
  padding-bottom: env(safe-area-inset-bottom);
}
.cart-bar.show { transform: none; }
.cart-bar-content {
  display: flex; align-items: center; gap: 12px;
  height: var(--cart-height); padding: 0 18px;
  max-width: var(--maxw); margin: 0 auto; cursor: pointer;
}
.cart-bar-info { display: flex; align-items: center; gap: 7px; font-size: 0.9rem; }
.cart-bar-info .ic { width: 20px; height: 20px; }
.cart-bar-count {
  background: var(--gold); color: #fff; font-weight: 800;
  min-width: 24px; height: 24px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 7px;
}
.cart-bar-total { flex: 1; text-align: center; font-weight: 800; font-size: 1.12rem; }
.cart-bar-btn {
  background: linear-gradient(135deg, var(--gold), var(--honey));
  color: #fff; font-weight: 800; padding: 10px 22px; border-radius: 12px;
}

/* ========== טופס ========== */
.details-modal { text-align: start; }
.order-summary {
  background: var(--dough); border-radius: 14px; padding: 12px 14px;
  margin: 14px 0 18px; font-size: 0.9rem;
}
.order-summary .os-line { display: flex; justify-content: space-between; padding: 2px 0; }
.order-summary .os-total { font-weight: 800; border-top: 1px solid rgba(59,36,16,0.15); margin-top: 6px; padding-top: 6px; }

.field { display: block; margin-bottom: 14px; }
.field > span { display: block; font-weight: 700; font-size: 0.92rem; margin-bottom: 6px; }
.field b { color: var(--red); }
.field-hint { display: block; margin-top: 5px; font-size: 0.78rem; color: var(--text-muted); }
.field input[type=text], .field input[type=tel], .field input[type=email],
.field input[type=date], .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 12px; font-size: 1rem; background: #fff; color: var(--text);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; }

.method-options { display: grid; gap: 8px; }
.method-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 12px;
  background: #fff; cursor: pointer; font-weight: 600;
}
.method-opt.selected { border-color: var(--gold); background: #F1F4E8; }
.method-opt input { accent-color: var(--honey); width: 18px; height: 18px; }
.method-opt .ic { width: 20px; height: 20px; color: var(--honey); }
.method-label em { font-style: normal; color: var(--text-muted); font-weight: 500; font-size: 0.85rem; }

/* נקודות חלוקה */
.point-list { display: grid; gap: 8px; }
.point-opt {
  display: flex; align-items: flex-start; gap: 10px; text-align: start;
  width: 100%;
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 12px;
  background: #fff; font-weight: 600; color: var(--text);
}
.point-opt.selected { border-color: var(--gold); background: #F1F4E8; }
.point-opt .ic { width: 19px; height: 19px; color: var(--honey); margin-top: 3px; }
.point-opt .pt-body { flex: 1; min-width: 0; }
.point-opt .pt-name { display: block; font-size: 0.95rem; }
.point-opt .pt-addr { display: block; font-weight: 400; font-size: 0.83rem; color: var(--text-light); }
.point-opt .pt-time {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 4px;
  font-size: 0.82rem; font-weight: 700; color: var(--honey);
}
.point-opt .pt-time .ic { width: 15px; height: 15px; margin: 0; }
.point-opt .pt-note { display: block; font-weight: 400; font-size: 0.79rem; color: var(--text-muted); margin-top: 3px; }

.date-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.date-chip {
  padding: 9px 14px; border-radius: 12px; border: 1.5px solid var(--border);
  background: #fff; font-weight: 600; font-size: 0.9rem; text-align: center;
}
.date-chip small { display: block; font-weight: 400; color: var(--text-muted); font-size: 0.75rem; }
.date-chip.selected { border-color: var(--gold); background: #F1F4E8; }

.pickup-note, .pay-note {
  display: flex; align-items: flex-start; gap: 8px;
  background: #F1F4E8; border: 1px solid var(--border); border-radius: 12px;
  padding: 10px 12px; font-size: 0.85rem; color: var(--text-light); margin-bottom: 12px;
}
.pay-note { background: #FFF7E8; border-color: #EBD9AE; }
.pickup-note .ic, .pay-note .ic { width: 17px; height: 17px; margin-top: 2px; color: var(--honey); }
.pickup-note:empty { display: none; }
.form-error { color: var(--red); font-weight: 700; font-size: 0.9rem; margin-bottom: 10px; min-height: 1.2em; }

/* ========== אישור ========== */
.confirm-modal .confirm-icon {
  width: 70px; height: 70px; margin: 0 auto 12px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.confirm-modal .confirm-icon .ic { width: 34px; height: 34px; stroke-width: 2; }
.confirm-modal .confirm-icon.pending { background: #C79A3A; }
.confirm-modal .confirm-icon.failed { background: var(--red); }
.confirm-modal h3 { font-family: 'Secular One', 'Heebo', sans-serif; font-size: 1.45rem; font-weight: 400; }
.confirm-text { color: var(--text-light); margin: 8px 0; }
.confirm-details {
  background: var(--dough); border-radius: 12px; padding: 10px 14px;
  margin: 12px 0; font-size: 0.88rem; text-align: start;
}
.confirm-details div { display: flex; align-items: flex-start; gap: 8px; padding: 3px 0; }
.confirm-details .ic { width: 16px; height: 16px; margin-top: 4px; color: var(--honey); }
.confirm-details:empty { display: none; }
.confirm-order-num { font-size: 1.02rem; margin-bottom: 14px; }
.btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px; border-radius: 14px;
  background: #25D366; color: #fff; font-weight: 800; margin-bottom: 4px;
}
.btn-whatsapp .ic { width: 19px; height: 19px; fill: currentColor; stroke: none; }

/* ========== פוטר ========== */
.site-footer { background: var(--crust); color: rgba(255,255,255,0.82); padding: 40px 20px 20px; }
.footer-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 30px 26px; align-items: start;
}
.footer-col h4 {
  font-size: 0.82rem; font-weight: 800; letter-spacing: 1.4px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Secular One', 'Heebo', sans-serif; font-size: 1.3rem; color: #fff;
  margin-bottom: 10px;
}
.footer-logo .ic { width: 24px; height: 24px; }
.footer-about { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.7); max-width: 320px; }
.footer-social { display: flex; gap: 8px; margin-top: 14px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.1); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: rgba(255,255,255,0.2); }
.footer-social .ic { width: 18px; height: 18px; }

.footer-info a, .footer-info p { display: flex; align-items: flex-start; gap: 9px; padding: 4px 0; font-size: 0.92rem; }
.footer-info .ic { width: 17px; height: 17px; margin-top: 4px; color: var(--gold); }
.footer-hours { font-size: 0.9rem; white-space: pre-line; line-height: 1.85; color: rgba(255,255,255,0.75); }
.footer-points div { padding: 5px 0; font-size: 0.88rem; line-height: 1.55; }
.footer-points b { color: #fff; font-weight: 700; }
.footer-points span { color: rgba(255,255,255,0.62); }

.footer-bottom {
  max-width: var(--maxw); margin: 26px auto 0; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
}
.admin-link { opacity: 0.45; margin-inline-start: 6px; }
.admin-link .ic { width: 14px; height: 14px; vertical-align: -0.2em; }

/* ========== רספונסיבי ========== */
@media (min-width: 860px) {
  .menu-toggle { display: none; }
  .mainnav { display: flex; }
  .catbar { display: none; }
  .cart-bar { display: none; }
  body { padding-bottom: 0; }
  html { scroll-padding-top: calc(var(--topbar-h) + 20px); }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 22px; }
  .menu-section { padding: 40px 24px 60px; }
  .category { margin-bottom: 58px; }
}

@media (max-width: 520px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-info { padding: 11px 10px 13px; }
  .product-info h3 { font-size: 0.92rem; }
  .brand-name { font-size: 1rem; }
  .hero-card { max-width: 100%; width: 100%; }
}
