
:root {
  --primary: #2c5f7c; --primary-d: #1e4a62; --accent: #e07b5a; --sage: #5a8a7c;
  --stone: #f8f6f2; --warm: #faf8f5; --white: #fff; --dark: #1a1a1a;
  --text: #2d2d2d; --text-muted: #777; --border: #e0dcd5;
  --font-display: 'Playfair Display', serif; --font-body: 'Inter', sans-serif;
  --r-sm: 8px; --r-md: 12px; --r-lg: 16px;
  --card-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
[data-theme="dark"] {
  --primary: #4a8ab5; --primary-d: #3a7095; --stone: #1e1e1e; --warm: #252525; --white: #1a1a1a;
  --dark: #e8e8e8; --text: #ddd; --text-muted: #999; --border: #333;
}

* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: var(--font-body); background: var(--stone); color: var(--text); line-height:1.6; }

.store-container { max-width: 900px; margin: 0 auto; padding: 0 20px 60px; }

/* Top Bar */
.top-bar { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; background: var(--white); border-bottom: 1px solid var(--border); }
.top-bar a { color: var(--primary); text-decoration: none; font-size: 0.85rem; font-weight: 600; }
.top-bar a:hover { text-decoration: underline; }
.top-bar-actions { display: flex; align-items: center; gap: 8px; }
.lang-select { padding: 5px 8px; border-radius: 50px; border: 1px solid var(--border); background: var(--white); color: var(--text); font-size: 0.72rem; cursor: pointer; outline: none; font-weight: 500; }
.lang-select:focus { border-color: var(--primary); }
.theme-btn { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border); background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.theme-btn svg { width: 16px; height: 16px; stroke: var(--text); fill: none; stroke-width: 2; }

/* Breadcrumb */
.breadcrumb { padding: 10px 0; font-size: 0.78rem; color: var(--text-muted); display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb .sep { margin: 0 4px; }

/* Cover */
.store-cover { width: 100%; aspect-ratio: 3/1; border-radius: var(--r-lg); overflow: hidden; position: relative; margin-top: 8px; background: linear-gradient(135deg, var(--primary), var(--primary-d)); display: flex; align-items: center; justify-content: center; }
.store-cover img { width: 100%; height: 100%; object-fit: cover; }
.store-cover .cover-placeholder { text-align: center; color: #fff; }
.store-cover .cover-emoji { font-size: 3rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.store-cover .cover-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; margin-top: 8px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }

/* Carousel */
.store-carousel { position: relative; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; margin-top: 8px; background: var(--primary-d); }
.carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; object-fit: cover; width: 100%; height: 100%; cursor: pointer; }
.carousel-slide.active { opacity: 1; }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.85); border: none; cursor: pointer; z-index: 2; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.carousel-arrow:hover { background: #fff; }
.carousel-arrow.prev { left: 12px; } .carousel-arrow.next { right: 12px; }
.carousel-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.carousel-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; border: none; padding: 0; }
.carousel-dot.active { background: #fff; width: 24px; border-radius: 5px; }
.status-badge { position: absolute; top: 12px; left: 12px; padding: 4px 12px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; z-index: 2; }
.status-badge.open { background: #27ae60; color: #fff; }
.status-badge.closed { background: #c0392b; color: #fff; }
.store-meta-row { display: flex; align-items: center; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.store-cat-tag { display: inline-block; padding: 3px 10px; border-radius: 50px; background: var(--primary); color: #fff; font-size: 0.72rem; font-weight: 600; }
.store-city-tag { font-size: 0.82rem; color: var(--text-muted); }

/* Contact Bar */
.contact-bar { display: flex; gap: 6px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin: 16px 0; padding-bottom: 4px; }
.contact-bar::-webkit-scrollbar { display: none; }
.contact-chip { display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px; border-radius: 50px; border: 1px solid var(--border); background: var(--white); color: var(--text); font-size: 0.76rem; text-decoration: none; transition: all 0.15s; font-weight: 500; white-space: nowrap; flex-shrink: 0; }
.contact-chip:hover { border-color: var(--primary); color: var(--primary); }
.contact-chip svg { width: 12px; height: 12px; }
.contact-chip.primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.contact-chip.primary:hover { background: #c86a4a; }

/* Phone CTA below contact bar */
.phone-cta { margin: 8px 0 16px; }
.phone-cta-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; border-radius: var(--r-lg); background: var(--accent); color: #fff; font-size: 1rem; font-weight: 700; text-decoration: none; transition: background 0.2s; }
.phone-cta-btn:hover { background: #c86a4a; }

/* Sections */
.section { margin-top: 28px; }
.section-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.section-title::after { content: ''; display: block; width: 40px; height: 3px; background: var(--accent); margin-top: 6px; border-radius: 3px; }

/* Services list */
.services-grid { display: flex; flex-direction: column; gap: 8px; }
.service-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); }
.service-item .svc-name { font-weight: 500; font-size: 0.88rem; }
.service-item .svc-price { color: var(--accent); font-weight: 700; font-size: 0.88rem; }
.service-item .svc-duration { font-size: 0.72rem; color: var(--text-muted); margin-left: 8px; }

/* Bio */
.bio-text { font-size: 0.9rem; line-height: 1.7; color: var(--text); }
.bio-text p { margin-bottom: 10px; }
.areas-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.area-chip { padding: 4px 12px; border-radius: 50px; border: 1px solid var(--primary); color: var(--primary); font-size: 0.75rem; font-weight: 500; }

/* Amenities */
.amenities-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.amenity-chip { display: inline-flex; align-items: center; gap: 4px; padding: 6px 12px; border-radius: 50px; background: var(--warm); border: 1px solid var(--border); font-size: 0.78rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gallery-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-sm); cursor: pointer; transition: transform 0.2s; }
.gallery-grid img:hover { transform: scale(1.05); }
.gallery-placeholder { grid-column: 1/-1; text-align: center; padding: 30px; color: var(--text-muted); background: var(--warm); border-radius: var(--r-md); border: 1px dashed var(--border); font-size: 0.85rem; }

/* Lightbox */
.store-lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 2000; align-items: center; justify-content: center; cursor: pointer; }
.store-lightbox.active { display: flex; }
.store-lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--r-md); object-fit: contain; }

/* CTAs */
.cta-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.cta-btn { display: inline-flex; align-items: center; gap: 6px; padding: 12px 24px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.15s; border: none; }
.cta-btn.primary-cta { background: var(--accent); color: #fff; }
.cta-btn.primary-cta:hover { background: #c86a4a; }
.cta-btn.secondary-cta { background: var(--white); color: var(--primary); border: 2px solid var(--primary); }
.cta-btn.secondary-cta:hover { background: var(--primary); color: #fff; }
.cta-btn.emergency { background: #c0392b; color: #fff; font-size: 1rem; padding: 14px 28px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.4); } 50% { box-shadow: 0 0 0 12px rgba(192,57,43,0); } }

/* Enquiry Dialog */
.enquiry-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; align-items: center; justify-content: center; }
.enquiry-overlay.active { display: flex; }
.enquiry-dialog { background: var(--white); border-radius: var(--r-lg); padding: 24px; max-width: 420px; width: 90%; position: relative; }
.enquiry-dialog h3 { font-family: var(--font-display); margin-bottom: 12px; }
.enquiry-dialog textarea { width: 100%; height: 100px; padding: 10px; border: 1px solid var(--border); border-radius: var(--r-md); font-family: var(--font-body); font-size: 0.85rem; resize: vertical; }
.enquiry-dialog .dialog-actions { display: flex; gap: 8px; margin-top: 12px; justify-content: flex-end; }
.enquiry-dialog .dialog-actions button { padding: 8px 16px; border-radius: 50px; border: 1px solid var(--border); background: var(--white); cursor: pointer; font-size: 0.82rem; }
.enquiry-dialog .dialog-actions .send { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Hours */
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.hours-table td { padding: 6px 10px; border-bottom: 1px solid var(--border); }
.hours-table td:last-child { text-align: right; color: var(--text-muted); }
.hours-table tr.today td { font-weight: 700; color: var(--primary); }

/* Footer */
.store-footer { margin-top: 40px; padding: 24px 0; border-top: 1px solid var(--border); text-align: center; font-size: 0.78rem; color: var(--text-muted); }
.store-footer a { color: var(--primary); text-decoration: none; }
.store-footer .powered { margin-top: 8px; font-size: 0.7rem; }

/* Navigation tabs (Μενού | Πληροφορίες) */
.nav-tabs { display: flex; gap: 0; margin: 20px 0 0; border-bottom: 2px solid var(--border); }
.nav-tab { flex: 1; padding: 12px 20px; border: none; border-bottom: 2px solid transparent; background: transparent; color: var(--text-muted); font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.15s; margin-bottom: -2px; text-align: center; }
.nav-tab:hover { color: var(--text); }
.nav-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; margin-top: 12px; }
.tab-content.active { display: block; }

/* Menu tabs (categories) */
.store-tabs { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 12px; scrollbar-width: none; }
.store-tabs::-webkit-scrollbar { display: none; }
.store-tab { padding: 8px 16px; border-radius: 50px; border: 1px solid var(--border); background: var(--white); color: var(--text); font-size: 0.82rem; cursor: pointer; white-space: nowrap; transition: all 0.15s; flex-shrink: 0; }
.store-tab:hover, .store-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Menu cards */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.menu-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: all 0.15s; }
.menu-card:hover { box-shadow: var(--card-shadow); transform: translateY(-1px); }
.menu-card-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: linear-gradient(135deg, var(--primary), var(--primary-d)); }
.menu-card-body { padding: 12px; }
.menu-card-name { font-weight: 700; font-size: 0.88rem; margin-bottom: 2px; }
.menu-card-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; margin-bottom: 8px; }
.menu-card-price { font-size: 1rem; font-weight: 800; color: var(--accent); }
.menu-card-price small { font-size: 0.7rem; color: var(--text-muted); font-weight: 400; }
.menu-card-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.menu-add-btn { padding: 6px 16px; border-radius: 50px; border: 2px solid var(--accent); background: var(--white); color: var(--accent); font-size: 0.78rem; font-weight: 700; cursor: pointer; transition: all 0.15s; }
.menu-add-btn:hover { background: var(--accent); color: #fff; }
.menu-add-btn.in-cart { background: var(--sage); border-color: var(--sage); color: #fff; }

/* Modifier dialog */
.mod-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; align-items: flex-end; justify-content: center; }
.mod-overlay.active { display: flex; }
.mod-dialog { background: var(--white); border-radius: var(--r-lg) var(--r-lg) 0 0; padding: 20px 20px 30px; max-width: 500px; width: 100%; max-height: 80vh; overflow-y: auto; }
.mod-dialog h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 12px; }
.mod-group { margin-bottom: 14px; }
.mod-group label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; color: var(--text-muted); }
.mod-option { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--border); border-radius: var(--r-md); margin-bottom: 4px; cursor: pointer; transition: all 0.15s; font-size: 0.82rem; }
.mod-option:hover, .mod-option.selected { border-color: var(--primary); }
.mod-dialog button { width: 100%; padding: 12px; border-radius: 50px; border: none; background: var(--accent); color: #fff; font-size: 0.9rem; font-weight: 700; cursor: pointer; margin-top: 12px; }

/* Cart */
.cart-badge { position: fixed; bottom: 20px; right: 20px; width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: #fff; display: none; align-items: center; justify-content: center; font-size: 1.3rem; cursor: pointer; z-index: 100; box-shadow: 0 4px 16px rgba(0,0,0,0.2); transition: transform 0.2s; }
.cart-badge.active { display: flex; }
.cart-badge.bounce { animation: cartBounce 0.4s ease; }
@keyframes cartBounce { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }
.cart-badge .cart-count { position: absolute; top: -2px; right: -2px; background: var(--primary); color: #fff; width: 22px; height: 22px; border-radius: 50%; font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.cart-drawer { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-radius: var(--r-lg) var(--r-lg) 0 0; z-index: 999; max-height: 70vh; overflow-y: auto; box-shadow: 0 -4px 20px rgba(0,0,0,0.1); padding-bottom: 20px; }
.cart-drawer.active { display: block; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.cart-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; border-bottom: 1px solid var(--border); }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.85rem; }
.cart-item-mods { font-size: 0.72rem; color: var(--text-muted); }
.cart-item-price { font-weight: 700; color: var(--accent); margin-left: 12px; }
.cart-qty { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.cart-qty button { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border); background: var(--white); cursor: pointer; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; }
.cart-total { display: flex; justify-content: space-between; padding: 16px 20px; font-weight: 700; font-size: 1rem; }
.cart-checkout { margin: 0 20px; }
.cart-checkout button { width: 100%; padding: 14px; border-radius: 50px; border: none; background: var(--accent); color: #fff; font-size: 0.95rem; font-weight: 700; cursor: pointer; }

/* Offers */
.offers-section { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.offer-card { display: flex; flex-direction: column; background: var(--warm); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 14px; }
.offer-title { font-weight: 700; font-size: 0.85rem; margin-bottom: 4px; }
.offer-desc { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 8px; }
.offer-price { font-weight: 800; color: var(--accent); font-size: 1rem; }
.offer-old-price { text-decoration: line-through; color: var(--text-muted); font-size: 0.78rem; margin-left: 6px; }
.offer-card-bottom { margin-top: auto; padding-top: 8px; }
@media(max-width:600px){ .offers-section { grid-template-columns: 1fr; } }
/* Checkout modal */
.checkout-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; align-items: center; justify-content: center; }
.checkout-overlay.active { display: flex; }
.checkout-dialog { background: var(--white); border-radius: var(--r-lg); padding: 0; max-width: 440px; width: 90%; max-height: 90vh; overflow-y: auto; }
.checkout-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border); font-size: 1rem; }
.checkout-dialog .checkout-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 10px 20px; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.checkout-item-name { font-weight: 600; }
.checkout-item-mods { font-size: 0.72rem; color: var(--text-muted); }
.checkout-item-price { font-weight: 700; color: var(--accent); white-space: nowrap; margin-left: 12px; }
.checkout-total { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; font-size: 1rem; border-bottom: 1px solid var(--border); }
.checkout-total strong { color: var(--accent); font-size: 1.15rem; }
.checkout-iris { padding: 16px 20px; border-bottom: 1px solid var(--border); }
.iris-badge { display: inline-block; padding: 6px 14px; border-radius: 50px; background: var(--sage); color: #fff; font-size: 0.82rem; font-weight: 700; margin-bottom: 10px; }
.iris-usp { font-size: 0.78rem; color: var(--sage); font-weight: 600; margin-bottom: 10px; }
.iris-instruction { font-size: 0.85rem; margin-bottom: 8px; }
.iris-instruction strong { color: var(--accent); }
.iris-phone-box { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--warm); border: 1px solid var(--border); border-radius: var(--r-md); margin-bottom: 10px; }
.iris-phone { font-size: 1rem; font-weight: 700; flex: 1; }
.iris-copy-btn { padding: 6px 14px; border-radius: 50px; border: 1px solid var(--primary); background: var(--white); color: var(--primary); font-size: 0.75rem; font-weight: 600; cursor: pointer; white-space: nowrap; }
.iris-copy-btn:hover { background: var(--primary); color: #fff; }
.iris-how { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; }
.checkout-confirm { display: block; width: calc(100% - 40px); margin: 16px 20px; padding: 14px; border-radius: 50px; border: none; background: var(--accent); color: #fff; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.checkout-confirm:hover { background: #c86a4a; }

/* Offer Wizard */
.offer-wizard-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1100; align-items: flex-end; justify-content: center; }
.offer-wizard-overlay.active { display: flex; }
.offer-wizard { background: var(--white); border-radius: var(--r-lg) var(--r-lg) 0 0; max-width: 500px; width: 100%; max-height: 85vh; overflow-y: auto; padding: 0; }
.ow-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border); font-size: 0.95rem; position: sticky; top: 0; background: var(--white); z-index: 1; }
.ow-progress { display: flex; gap: 4px; padding: 12px 20px; background: var(--warm); }
.ow-step-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); transition: all 0.2s; }
.ow-step-dot.done { background: var(--sage); }
.ow-step-dot.active { background: var(--accent); width: 12px; height: 12px; margin-top: -1px; }
.ow-body { padding: 16px 20px; }
.ow-step-label { font-size: 0.82rem; font-weight: 600; color: var(--primary); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.ow-step-label .step-num { display: inline-flex; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 0.72rem; align-items: center; justify-content: center; }
.ow-product-list { display: flex; flex-direction: column; gap: 6px; }
.ow-product-option { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--r-md); cursor: pointer; transition: all 0.15s; }
.ow-product-option:hover { border-color: var(--primary); }
.ow-product-option.selected { border-color: var(--accent); background: #fdf5f2; }
.ow-product-option .ow-prod-name { font-weight: 600; font-size: 0.85rem; }
.ow-product-option .ow-prod-price { font-size: 0.8rem; color: var(--accent); font-weight: 700; }
.ow-product-option .ow-prod-surcharge { font-size: 0.72rem; color: var(--sage); font-weight: 600; }
.ow-locked { padding: 10px 14px; background: var(--warm); border-radius: var(--r-md); border: 1px solid var(--border); font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.ow-locked .lock-icon { font-size: 1rem; }
.ow-size-selector { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.ow-size-btn { padding: 6px 12px; border-radius: 50px; border: 1px solid var(--border); background: var(--white); font-size: 0.75rem; cursor: pointer; transition: all 0.15s; }
.ow-size-btn:hover { border-color: var(--primary); }
.ow-size-btn.selected { background: var(--primary); color: #fff; border-color: var(--primary); }
.ow-size-btn.locked { opacity: 0.6; cursor: default; background: var(--warm); }
.ow-dough-selector { display: flex; gap: 6px; margin-bottom: 10px; }
.ow-modifiers { margin-top: 8px; padding: 10px; background: var(--warm); border-radius: var(--r-md); }
.ow-mod-title { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.ow-mod-item { display: flex; justify-content: space-between; align-items: center; padding: 5px 8px; font-size: 0.78rem; border-bottom: 1px solid var(--border); }
.ow-mod-item:last-child { border-bottom: none; }
.ow-mod-item label { cursor: pointer; display: flex; align-items: center; gap: 6px; }
.ow-mod-item input[type="checkbox"] { accent-color: var(--accent); }
.ow-mod-price { font-size: 0.72rem; color: var(--accent); font-weight: 600; }
.ow-price { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; border-top: 1px solid var(--border); font-size: 0.82rem; }
.ow-price strong { color: var(--accent); font-size: 1rem; }
.ow-actions { display: flex; gap: 8px; padding: 0 20px 20px; }
.ow-actions button { flex: 1; padding: 12px; border-radius: 50px; border: none; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.15s; }
.ow-btn-back { background: var(--white); color: var(--text); border: 1px solid var(--border); }
.ow-btn-back:hover { background: var(--warm); }
.ow-btn-next { background: var(--accent); color: #fff; }
.ow-btn-next:hover { background: #c86a4a; }
.ow-btn-add { background: var(--sage); color: #fff; }
.ow-btn-add:hover { background: #4a7a6c; }
.ow-btn-next:disabled,.ow-btn-add:disabled { opacity: 0.4; cursor: default; }

/* Menu sidebar + continuous scroll */
.menu-layout { display: flex; gap: 20px; align-items: flex-start; }
.menu-sidebar { flex: 0 0 220px; position: sticky; top: 12px; max-height: calc(100vh - 24px); overflow-y: auto; background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border); padding: 8px 0; }
.menu-sidebar a { display: block; padding: 8px 16px; font-size: 0.8rem; color: var(--text-muted); text-decoration: none; border-left: 3px solid transparent; transition: all 0.15s; cursor: pointer; }
.menu-sidebar a:hover { color: var(--text); background: var(--warm); }
.menu-sidebar a.active { color: var(--primary); font-weight: 600; border-left-color: var(--primary); background: #eef5f8; }
.menu-content { flex: 1; min-width: 0; }
.menu-section-block { margin-bottom: 24px; }
.menu-section-block h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; scroll-margin-top: 80px; }

/* Quantity selector on cards */
.qty-ctrl { display: flex; align-items: center; gap: 4px; }
.qty-ctrl button { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--white); cursor: pointer; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; color: var(--text); transition: all 0.15s; }
.qty-ctrl button:hover { border-color: var(--primary); color: var(--primary); }
.qty-ctrl span { min-width: 18px; text-align: center; font-weight: 600; font-size: 0.82rem; }

/* Mobile sticky tabs */
.menu-mobile-tabs { display: none; position: sticky; top: 0; z-index: 5; background: var(--stone); padding: 8px 0 4px; margin: 0 -20px; padding-left: 20px; padding-right: 20px; }
.menu-mobile-tabs .store-tabs { padding-bottom: 4px; margin-bottom: 0; }

@media(min-width:992px) { .menu-mobile-tabs { display: none; } .menu-sidebar { display: block; } }
@media(max-width:991px) { .menu-layout { display: block; } .menu-sidebar { display: none; } .menu-mobile-tabs { display: block; } }
@media(max-width:600px){
  .store-cover, .store-carousel { aspect-ratio: 2/1; }
  .store-cover .cover-name { font-size: 1.2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }
}
