* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: clip; max-width: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background: #faf9f7;
  color: #222;
  padding-bottom: 40px;
  font-size: 16px;
}

.menu-header {
  background: var(--color-primary, #1a1a1a);
  color: #fff;
  padding: 32px 20px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 0 0 24px 24px;
}
.menu-header.has-cover {
  background-size: cover;
  background-position: center;
}
.menu-header.has-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}
.menu-header-inner {
  position: relative;
  z-index: 1;
}
.menu-header .logo {
  max-width: 118px;
  max-height: 118px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  background: #fff;
  border: 3px solid rgba(255,255,255,0.85);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.menu-header h1 { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.3px; }

.status-line { font-size: 0.95rem; opacity: 0.95; margin-bottom: 12px; }
.status-line a { color: #fff; }
.dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 6px; }
.dot.open { background: #4caf50; box-shadow: 0 0 0 3px rgba(76,175,80,0.25); }
.dot.closed { background: #e53935; box-shadow: 0 0 0 3px rgba(229,57,53,0.25); }

.lang-switch { display: flex; justify-content: center; gap: 8px; margin-bottom: 12px; }
.lang-switch a {
  color: #fff; text-decoration: none; font-size: 0.85rem; font-weight: 600; padding: 6px 16px;
  border: 1.5px solid rgba(255,255,255,0.5); border-radius: 20px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.lang-switch a:active { transform: scale(0.95); }
.lang-switch a.active { background: var(--color-accent, #c9a15a); border-color: var(--color-accent, #c9a15a); }

.hours-toggle { font-size: 0.9rem; }
.hours-toggle summary {
  cursor: pointer; color: #fff; font-weight: 600;
  display: inline-block; padding: 6px 14px; border-radius: 20px;
  background: rgba(255,255,255,0.15);
}
.hours-list { list-style: none; margin-top: 10px; text-align: left; max-width: 280px; margin-inline: auto; }
.hours-list li { display: flex; justify-content: space-between; padding: 4px 0; opacity: 0.9; font-size: 0.9rem; }
.hours-list li.today { font-weight: 700; opacity: 1; }

.menu-header.has-cover.effect-kenburns {
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { background-size: 100% auto; background-position: center; }
  to   { background-size: 130% auto; background-position: center 30%; }
}

.floating-shapes {
  position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none;
}
.floating-shapes .shape {
  position: absolute;
  bottom: -60px;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.25);
  transform: rotate(45deg);
  animation: floatUp linear infinite;
}
.floating-shapes .s1 { width: 34px; height: 34px; left: 8%;  animation-duration: 13s; animation-delay: 0s; }
.floating-shapes .s2 { width: 20px; height: 20px; left: 25%; animation-duration: 9s;  animation-delay: 2s; }
.floating-shapes .s3 { width: 46px; height: 46px; left: 50%; animation-duration: 16s; animation-delay: 1s; }
.floating-shapes .s4 { width: 24px; height: 24px; left: 72%; animation-duration: 11s; animation-delay: 3.5s; }
.floating-shapes .s5 { width: 30px; height: 30px; left: 88%; animation-duration: 14s; animation-delay: 0.5s; }
@keyframes floatUp {
  0%   { transform: translateY(0) rotate(45deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-260px) rotate(180deg); opacity: 0; }
}

.review-link {
  display: inline-block; margin-top: 14px;
  background: #000; color: #fff; font-weight: 700;
  padding: 10px 22px; border-radius: 24px; text-decoration: none; font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.network-canvas {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; width: 100%; height: 100%;
}

.product img.lightbox-trigger { cursor: zoom-in; }

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.9);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
  padding: 20px;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 100%; max-height: 80vh; border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.lightbox-caption { color: #fff; margin-top: 14px; font-size: 1rem; font-weight: 600; text-align: center; }
.lightbox-close {
  position: absolute; top: 16px; right: 20px; background: none; border: none;
  color: #fff; font-size: 2.2rem; line-height: 1; cursor: pointer; padding: 6px 10px;
}
.cat-nav-wrap {
  position: sticky; top: 6px; z-index: 10; margin: 0 4px;
}
.cat-nav-wrap::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 34px;
  background: linear-gradient(to right, rgba(255,255,255,0), #fff 70%);
  border-radius: 0 14px 14px 0; pointer-events: none;
  opacity: 1; transition: opacity 0.2s ease;
}
.cat-nav-wrap.at-end::after { opacity: 0; }

.cat-nav {
  position: relative; top: 0; z-index: auto;
  display: flex; gap: 8px; overflow-x: auto; white-space: nowrap;
  background: #fff; padding: 12px 14px;
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav a {
  flex-shrink: 0; text-decoration: none; color: #444; font-size: 0.92rem; font-weight: 600;
  padding: 9px 18px; border-radius: 24px; background: #f1f1f1;
  transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
}
.cat-nav a:active { transform: scale(0.96); }
.cat-nav a.active {
  background: var(--color-primary, #1a1a1a); color: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.18);
}

.category { scroll-margin-top: 70px; }

/* Κουμπί επιστροφής στην κορυφή */
.back-to-top {
  position: fixed; bottom: 22px; right: 18px; z-index: 20;
  width: 46px; height: 46px; border-radius: 50%; border: none;
  background: var(--color-primary, #1a1a1a); color: #fff; font-size: 1.3rem;
  cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.back-to-top.visible { opacity: 0.95; pointer-events: auto; transform: translateY(0); }

.menu-body { max-width: 640px; margin: 0 auto; padding: 24px 16px; }
.category { margin-bottom: 32px; }
.category h2 {
  font-size: 1.25rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.4px;
  color: var(--color-primary, #1a1a1a);
  margin: 0;
}
.category-toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; background: none; border: none; cursor: pointer; padding: 0;
  border-bottom: 3px solid var(--color-accent, #c9a15a);
  padding-bottom: 8px; margin-bottom: 6px; text-align: left;
  font-family: inherit;
}
.chevron {
  font-size: 1.3rem; font-weight: 800; line-height: 1; flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-accent, #c9a15a); color: #fff;
}

.category-desc {
  font-size: 0.82rem; color: #777; font-weight: 400; text-transform: none;
  margin-bottom: 14px; max-width: 480px;
}

.category .product-list {
  display: grid; grid-template-rows: 0fr; opacity: 0;
  transition: grid-template-rows 0.25s ease, opacity 0.2s ease;
}
.category.is-open .product-list {
  grid-template-rows: 1fr; opacity: 1;
}
.category .product-list-inner {
  display: flex; flex-direction: column; gap: 16px; overflow: hidden;
}

.product-list { display: flex; flex-direction: column; gap: 16px; }
.product {
  display: flex; gap: 14px; background: #fff; border-radius: 14px;
  padding: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.product:active { transform: scale(0.99); }
.product.sold-out { opacity: 0.5; }
.product img { width: 100px; height: 100px; object-fit: cover; border-radius: 10px; flex-shrink: 0; order: 2; }
.product-info { order: 1; }
.product-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.product-info h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 4px; }
.product-info .desc { font-size: 0.88rem; color: #666; margin-bottom: 8px; line-height: 1.35; }
.price-row { display: flex; align-items: center; gap: 8px; }
.price { font-weight: 800; font-size: 1.08rem; color: var(--color-accent, #c9a15a); }
.badge { font-size: 0.72rem; font-weight: 700; background: #e53935; color: #fff; padding: 3px 8px; border-radius: 6px; }

.menu-footer { text-align: center; font-size: 0.85rem; color: #777; margin-top: 36px; }
.menu-footer a { color: var(--color-accent, #c9a15a); font-weight: 600; }
.social-links { display: flex; justify-content: center; gap: 14px; margin: 10px 0; }
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: #f1f1f1; color: #444; transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.social-icon:active { transform: scale(0.92); }
.social-icon svg { width: 20px; height: 20px; }
.powered-by { margin-top: 12px; opacity: 0.6; display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
.powered-by-logo { height: 18px; width: auto; vertical-align: middle; }
