:root{
  --bg: #f4f2ee;
  --card: #ffffff;
  --text: #1f1f1f;
  --muted: rgba(0,0,0,.55);
  --muted-2: rgba(0,0,0,.35);
  --shadow: 0 18px 40px rgba(0,0,0,.10);
  --radius: 18px;
  --radius-lg: 22px;
  --stroke: rgba(0,0,0,.08);
  --appbar-h: 86px;
  --nav-h: 86px;
  --shadow-soft: 0 14px 34px rgba(0,0,0,.08);
}

html{
  scroll-behavior: smooth;
}

html.no-smooth-scroll{
  scroll-behavior: auto;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(255,255,255,.5), transparent 30%),
    var(--bg);
  color: var(--text);
}

::selection{
  background: rgba(123, 30, 58, 0.16);
  color: #1f1f1f;
}

a,
button{
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

a:focus-visible,
button:focus-visible{
  outline: 2px solid rgba(123, 30, 58, 0.45);
  outline-offset: 3px;
}

.phone{
  width: 100%;
  min-height: 100vh;
  background: var(--bg);
  border-radius: 0;
  box-shadow: none;
  border: none;
  overflow: hidden;
  position: relative;
}

.appbar{
  height: var(--appbar-h);
  padding: 12px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  transition: padding .22s ease, background-color .22s ease, box-shadow .22s ease, transform .2s ease, opacity .2s ease, height .2s ease;
}

.appbar--compact{
  padding: 6px 14px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.phone.appbar-hidden .appbar{
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}

.header-nav-index{
  margin: 0 10px;
}

.header-nav-index ul{
  display: flex;
  list-style: none;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(20, 14, 8, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(0,0,0,.04);
}

.header-nav-index li{
  display: flex;
  align-items: center;
}

.header-nav-index a{
  text-decoration: none;
  padding: 10px 14px;
  color: rgba(0,0,0,.75);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s ease;
}

.header-nav-index a:hover{
  background-color: rgba(0,0,0,0.06);
}

.header-nav-index a.is-active,
.header-nav-index a[aria-current="page"]{
  background-color: rgba(123, 30, 58, 0.14);
  color: #7b1e3a;
}

.home-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.home-icon__svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
  transform: translateY(-1px);
}

.appbar__meta{
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: rgba(0,0,0,.58);
}

.brand__logo{
  height: auto;
  width: 270px;
  display:block;
  object-fit: contain;
  transition: width .22s ease;
}

.appbar--compact .brand__logo{
  width: 210px;
}

@media (max-width: 768px) {
  .phone.appbar-hidden .appbar{
    transform: none;
    opacity: 1;
    pointer-events: none;
    background: transparent;
    box-shadow: none;
  }

  .phone.appbar-hidden .brand,
  .phone.appbar-hidden .header-nav-index{
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }

  .brand__logo{
    height: auto;
    width: 170px;
  }

  .appbar--compact .brand__logo{
    width: 155px;
  }

  .appbar__meta{
    display: none;
  }

  .appbar{
    height: auto;
    padding: 10px 12px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .brand{
    order: 1;
    width: auto;
    flex: 1;
  }

  .icon-btn{
    order: 2;
    position: fixed;
    top: max(14px, env(safe-area-inset-top));
    right: 14px;
    z-index: 2200;
    pointer-events: auto;
  }

  body.menu-drawer-open .icon-btn,
  .phone.menu-drawer-open .icon-btn{
    opacity: 0;
    transform: scale(.94);
    pointer-events: none;
  }

  .header-nav-index{
    width: 100%;
    order: 3;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .header-nav-index ul{
    width: max-content;
    margin: 0 auto;
    padding: 4px;
    gap: 6px;
    background: rgba(20, 14, 8, 0.12);
  }

  .header-nav-index a{
    padding: 8px 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .home-icon__svg{
    width: 14px;
    height: 14px;
  }
}

.content{  
  height: auto;
  min-height: calc(100dvh - var(--appbar-h));
  padding-bottom: 140px; /* 👈 ΧΩΡΟΣ για bottom-nav + safe area */
  overflow:auto;
  overflow-x: hidden;
  padding: 0 24px calc(var(--nav-h) + env(safe-area-inset-bottom) + 40px);
  max-width: 1280px;
  margin: 0 auto;
}

#menuRoot{
  transform: translateX(0);
}

#menuRoot.menu-slide-in-right{
  animation: menuSlideInRight .52s cubic-bezier(.16,1,.3,1) both;
}

#menuRoot.menu-slide-in-left{
  animation: menuSlideInLeft .52s cubic-bezier(.16,1,.3,1) both;
}

@keyframes menuSlideInRight{
  from{
    opacity: 0;
    transform: translateX(16px);
    filter: blur(3px);
  }
  to{
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes menuSlideInLeft{
  from{
    opacity: 0;
    transform: translateX(-16px);
    filter: blur(3px);
  }
  to{
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce){
  #menuRoot.menu-slide-in-right,
  #menuRoot.menu-slide-in-left{
    animation: none;
  }
}

.hero{
  padding-top: 6px;
}

.hero.is-hidden{
  display: none;
}

.hero-card{
  position:relative;
  height: 250px;
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
  background: #ddd;
}

.hero-media{
  width:100%;
  height:100%;
  position:relative;
}

.hero-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.hero-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding: 18px 18px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.0));
  color: #fff;
}

.hero-title{
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: .2px;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

.hero-price{
  margin-top: 6px;
  font-weight: 700;
  font-size: 20px;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

.hero-nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.25);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index: 2;
  backdrop-filter: blur(6px);
}

.hero-nav:hover{ background: rgba(0,0,0,.35); }
.hero-nav:active{ transform: translateY(-50%) scale(.98); }

.hero-nav--left{ left: 12px; }
.hero-nav--right{ right: 12px; }

.chev{
  font-size: 26px;
  line-height: 1;
  margin-top: -2px;
}

.section{
  padding: 20px 0 24px;
}

.menu-filter-bar{
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  justify-content: center;
  padding: 8px 0 8px;
  margin-top: 6px;
  background: linear-gradient(to bottom, var(--bg), rgba(244,242,238,0.8));
  backdrop-filter: blur(5px);
}

.menu-filter-group{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  padding: 5px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  box-shadow: 0 8px 20px rgba(0,0,0,.035);
}

.menu-filter-label{
  flex: 0 0 auto;
  padding: 0 2px 0 10px;
  color: rgba(123,30,58,.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15px;
}

.menu-filter-chips{
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.filter-chip{
  border: 1px solid transparent;
  background: transparent;
  color: rgba(0,0,0,.68);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s ease;
}

.filter-chip__check{
  display: inline-block;
  width: 0;
  opacity: 0;
  transform: translateX(-3px);
  transition: width .18s ease, opacity .18s ease, transform .18s ease;
}

.filter-chip:hover{
  background: rgba(255,255,255,.72);
}

.filter-chip.is-active{
  border-color: rgba(123,30,58,.35);
  background: rgba(123,30,58,.1);
  color: #7b1e3a;
}

.filter-chip.is-active .filter-chip__check{
  width: 14px;
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 520px){
  .menu-filter-group{
    width: min(100%, 360px);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border-radius: 18px;
    padding: 7px;
  }

  .menu-filter-label{
    padding: 0 4px 2px;
    text-align: center;
    font-size: 11px;
  }

  .menu-filter-chips{
    justify-content: center;
    flex-wrap: wrap;
  }

  .filter-chip{
    padding: 6px 9px;
    font-size: 12px;
  }
}

.section{
  margin-bottom: 12px;
}

.section-title{
  font-size: 25px;
  margin: 12px 4px 14px;
  font-weight: 700;
  letter-spacing: .15px;
}

.section-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.section-head .section-title{
  margin-bottom: 0;
}

.menu-card__intro{
  padding: 16px 16px 14px;
  background: rgba(123,30,58,.03);
}

.menu-card__intro--after{
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 12px 16px;
  text-align: center;
  border: 0;
  border-radius: 0;
  background: rgba(123,30,58,.035);
  box-shadow: none;
}

.section-intro__lead{
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: #7b1e3a;
  line-height: 1.35;
}

.menu-card__intro--after .section-intro__lead{
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.24px;
}

.menu-card__intro--footer{
  padding: 12px 16px 14px;
  background: transparent;
}

.menu-card__intro--footer .section-intro__subtext{
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
  color: rgba(123,30,58,.92);
}

.section-intro__subtext{
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: #7b1e3a;
  line-height: 1.45;
}

.wine-price-legend{
  display: grid;
  grid-template-columns: 64px 64px;
  justify-items: center;
  align-items: center;
  column-gap: 18px;
  margin-right: 2px;
}

.wine-price-legend--bulk{
  grid-template-columns: 54px 64px 54px;
  column-gap: 12px;
}

.wine-price-chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wine-price-chip--stacked{
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.wine-price-chip__subtext{
  font-size: 9px;
  font-weight: 600;
  color: #7b1e3a;
  letter-spacing: 0.1px;
}

.wine-price-chip--text{
  font-size: 13px;
  font-weight: 600;
  color: #7b1e3a;
  letter-spacing: 0.2px;
}

.wine-ic{
  width: 16px;
  height: 16px;
  fill: #7b1e3a;
  display: block;
}

.wine-ic--bottle{
  width: 16px;
  height: 16px;
}

.wine-ic--glass{
  width: 16px;
  height: 16px;
}

.wine-ic--sparkling{
  width: 18px;
  height: 18px;
}

/* ✅ Αυτό είναι το menu-card του MAIN (με τα πιάτα) */
.menu-card{
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  box-shadow: 0 12px 30px rgba(0,0,0,.055);
  overflow:hidden;
}

.menu-item{
  padding: 17px 16px 15px;
}

.menu-item__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}

.menu-item__content{
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.menu-item__text{
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.menu-item__title{
  margin:0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1px;
  display: block;
}

.menu-item__staff-name{
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(0,0,0,.58);
  font-weight: 600;
  font-style: italic;
}

.menu-item__price{
  font-size: 16px;
  font-weight: 600;
  color: rgba(0,0,0,.5);
  white-space: nowrap;
  padding-top: 1px;
}

.wine-price{
  display: grid;
  grid-template-columns: 64px 64px;
  column-gap: 18px;
  min-width: 146px;
  justify-items: end;
  align-self: center;
}

.wine-price--bulk{
  grid-template-columns: 54px 64px 54px;
  column-gap: 12px;
  min-width: 184px;
}

.wine-price__value{
  font-size: 15px;
  font-weight: 600;
  color: rgba(0,0,0,.5);
  min-width: 64px;
  text-align: right;
  letter-spacing: .2px;
}

.menu-item__desc{
  margin: 6px 0 0;
  color: rgba(0,0,0,.62);
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-line;
  display: block;
}

.menu-item__desc-toggle{
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: default;
  border-radius: 6px;
}

.menu-item__desc-toggle::after{
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid rgba(123,30,58,.62);
  border-bottom: 1.5px solid rgba(123,30,58,.62);
  transform: translateY(-58%) rotate(45deg);
  transition: transform .18s ease, opacity .18s ease;
  opacity: 0;
  pointer-events: none;
}

.menu-item__desc-toggle.has-overflow{
  cursor: pointer;
}

.menu-item__desc-toggle.has-overflow::after{
  opacity: .72;
}

.menu-item__desc-toggle.is-expanded::after{
  transform: translateY(-28%) rotate(225deg);
  opacity: .58;
}

.menu-item__desc-toggle .menu-item__desc{
  position: relative;
  margin-left: -3px;
  padding: 2px 3px;
  border-radius: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color .18s ease, color .18s ease;
}

.menu-item__desc-toggle .menu-item__desc::after{
  content: "";
  position: absolute;
  top: 2px;
  right: 12px;
  bottom: 2px;
  width: 38px;
  border-radius: 0 6px 6px 0;
  background: linear-gradient(90deg, rgba(255,255,255,0), #fff 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s ease;
}

.menu-item__desc-toggle.has-overflow .menu-item__desc{
  padding-right: 42px;
}

.menu-item__desc-toggle.has-overflow .menu-item__desc::after{
  opacity: 1;
}

.menu-item__desc-toggle.has-overflow:hover .menu-item__desc{
  background: rgba(123,30,58,.026);
}

.menu-item__desc-toggle.has-overflow:active .menu-item__desc{
  background: rgba(123,30,58,.06);
}

.menu-item__desc-toggle.is-expanded .menu-item__desc{
  background: linear-gradient(90deg, rgba(123,30,58,.055), rgba(123,30,58,0));
  color: rgba(0,0,0,.68);
  padding-right: 3px;
}

.menu-item__desc-toggle.is-expanded .menu-item__desc{
  white-space: pre-line;
  overflow: visible;
  text-overflow: unset;
}

.menu-item__desc-toggle.is-expanded .menu-item__desc::after{
  opacity: 0;
}

.menu-item__desc-toggle:focus-visible{
  outline: 2px solid rgba(123,30,58,.5);
  outline-offset: 3px;
  border-radius: 6px;
}

.divider{
  height: 1px;
  margin: 0 16px;
  border: 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,.08) 12%,
    rgba(0,0,0,.08) 88%,
    transparent
  );
}

.menu-empty{
  white-space: normal;
}

.bottom-nav{
  --active-tab-index: 0;
  --active-tab-center: 10%;
  --bubble-drag-x: 0px;
  --bubble-w: 98px;
  --bubble-h: 76px;
  --nav-scale: 1;
  --nav-radius: 999px;
  position: fixed;
  left: 50%;
  right: auto;
  bottom: calc(env(safe-area-inset-bottom) + 16px);
  width: min(520px, calc(100vw - 28px));
  height: 88px;
  transform: translateX(-50%) scale(var(--nav-scale));
  transform-origin: 50% calc(100% + env(safe-area-inset-bottom));
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,.24) 36%, rgba(255,255,255,.12) 62%, rgba(255,255,255,.44)),
    linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,.14));
  -webkit-backdrop-filter: blur(30px) saturate(190%) brightness(1.08);
  backdrop-filter: blur(30px) saturate(190%) brightness(1.08);
  border: 1px solid rgba(255,255,255,.58);
  border-radius: var(--nav-radius);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 4px;
  padding: 8px;
  touch-action: none;
  transition:
    width .34s cubic-bezier(.16,1,.3,1),
    height .34s cubic-bezier(.16,1,.3,1),
    bottom .34s cubic-bezier(.16,1,.3,1),
    padding .34s cubic-bezier(.16,1,.3,1),
    transform .34s cubic-bezier(.16,1,.3,1),
    box-shadow .25s ease,
    opacity .25s ease;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.78),
    inset 0 -1px 0 rgba(255,255,255,.22),
    inset 0 0 28px rgba(255,255,255,.18),
    0 24px 54px rgba(20, 12, 16, .22),
    0 6px 18px rgba(123, 30, 58, .14);
  z-index: 2000;
}

.bottom-nav.is-bubble-dragging{
  --bubble-w: 108px;
  --bubble-h: 80px;
  --nav-scale: 1.035;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.82),
    inset 0 -1px 0 rgba(255,255,255,.26),
    inset 0 0 34px rgba(255,255,255,.22),
    0 30px 68px rgba(20, 12, 16, .26),
    0 9px 24px rgba(123, 30, 58, .16);
}

.bottom-nav.is-scroll-compact:not(.is-bubble-dragging){
    --bubble-w: 80px;
    --bubble-h: 54px;
  --nav-scale: .92;
  bottom: calc(env(safe-area-inset-bottom) + 8px);
  opacity: .94;
}

body.menu-drawer-open .bottom-nav,
.phone.menu-drawer-open .bottom-nav,
body.menu-drawer-open .to-top,
.phone.menu-drawer-open .to-top{
  opacity: 0;
  transform: translate(-50%, 18px) scale(.98);
  pointer-events: none;
}

body.menu-drawer-open .to-top,
.phone.menu-drawer-open .to-top{
  transform: translateY(18px) scale(.98);
}

.bottom-nav::before,
.bottom-nav::after{
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.bottom-nav::before{
  inset: 0;
  background:
    radial-gradient(ellipse at 22% 0%, rgba(255,255,255,.92) 0, rgba(255,255,255,.30) 34%, transparent 58%),
    radial-gradient(ellipse at 86% 92%, rgba(123,30,58,.20), transparent 52%),
    linear-gradient(100deg, transparent 0 16%, rgba(255,255,255,.34) 24%, transparent 36% 100%);
  border-radius: inherit;
  mix-blend-mode: screen;
}

.bottom-nav::after{
  inset: 1px;
  border-radius: calc(var(--nav-radius) - 1px);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow:
    inset 0 14px 20px rgba(255,255,255,.20),
    inset 0 -16px 28px rgba(66, 20, 34, .08);
}

.bottom-nav__bubble{
  position: absolute;
  left: var(--active-tab-center);
  top: 50%;
  width: var(--bubble-w);
  height: var(--bubble-h);
  border-radius: var(--nav-radius);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  transform: translate(calc(-50% + var(--bubble-drag-x)), -50%);
  transition:
    width .28s cubic-bezier(.16,1,.3,1),
    height .28s cubic-bezier(.16,1,.3,1),
    transform .34s cubic-bezier(.16,1,.3,1),
    left .34s cubic-bezier(.16,1,.3,1),
    filter .22s ease;
  background:
    linear-gradient(145deg, rgba(216,216,216,.58), rgba(158,158,158,.32) 32%, rgba(82,82,82,.20) 66%, rgba(224,224,224,.26)),
    radial-gradient(circle at 28% 16%, rgba(255,255,255,.42), transparent 34%),
    linear-gradient(112deg, transparent 0 20%, rgba(255,255,255,.34) 28%, rgba(255,255,255,.08) 37%, transparent 48%),
    radial-gradient(circle at 76% 84%, rgba(70,70,70,.16), transparent 46%);
  background-size: 100% 100%, 100% 100%, 230% 100%, 100% 100%;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.72),
    inset 0 -1px 0 rgba(20,20,20,.12),
    inset 0 0 0 1px rgba(120,120,120,.12),
    inset 0 0 24px rgba(255,255,255,.18),
    0 12px 24px rgba(20, 12, 16, .16),
    0 3px 10px rgba(0,0,0,.08);
  animation:
    activeBubbleSettle .42s cubic-bezier(.16,1,.3,1) both,
    activeGlassSweep 2.8s cubic-bezier(.16,1,.3,1) infinite;
}

.bottom-nav__bubble::after{
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 0;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.42),
    inset 0 10px 18px rgba(255,255,255,.14),
    inset 0 -14px 22px rgba(70,70,70,.08);
  animation: activeGlassBreathe 3.4s ease-in-out infinite;
}

.bottom-nav.is-bubble-dragging .bottom-nav__bubble{
  filter: saturate(1.12) brightness(1.05);
  transition:
    width .25s cubic-bezier(.16,1,.3,1),
    height .25s cubic-bezier(.16,1,.3,1);
  animation-play-state: paused;
}

.bottom-nav.is-bubble-dragging .bottom-nav__bubble::after{
  animation-play-state: paused;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))){
  .bottom-nav{
    background: rgba(255,255,255,.86);
  }
}

@media (hover: hover){
  .bottom-nav:hover{
    box-shadow:
      inset 0 1px 1px rgba(255,255,255,.82),
      inset 0 -1px 0 rgba(255,255,255,.24),
      inset 0 0 30px rgba(255,255,255,.20),
      0 28px 60px rgba(20, 12, 16, .24),
      0 8px 22px rgba(123, 30, 58, .16);
  }
}

@media (max-width: 768px) {
  .bottom-nav{
    bottom: calc(env(safe-area-inset-bottom) + 10px);
    --bubble-w: 72px;
    --bubble-h: 58px;
    --nav-radius: 999px;
    width: min(360px, calc(100vw - 34px));
    height: 68px;
    padding: 6px;
    border-radius: var(--nav-radius);
    gap: 2px;
    box-shadow:
      inset 0 1px 1px rgba(255,255,255,.76),
      inset 0 -1px 0 rgba(255,255,255,.20),
      inset 0 0 22px rgba(255,255,255,.16),
      0 18px 38px rgba(20, 12, 16, .20),
      0 4px 14px rgba(123, 30, 58, .12);
  }

  .bottom-nav.is-bubble-dragging{
    --bubble-w: 82px;
    --bubble-h: 62px;
    --nav-scale: 1.045;
  }

  .bottom-nav.is-scroll-compact:not(.is-bubble-dragging){
    --bubble-w: 60px;
    --bubble-h: 46px;
    --nav-scale: .90;
    bottom: calc(env(safe-area-inset-bottom) + 6px);
  }
}

.tab{
  position: relative;
  z-index: 1;
  border:0;
  margin: 0;
  background: transparent;
  display:flex;
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 5px;
  cursor:pointer;
  padding: 8px 4px;
  border-radius: 24px;
  color: rgba(22, 17, 18, .70);
  opacity: .70;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transform: translateZ(0);
  transition: opacity .2s ease, color .2s ease;
}

.tab::before,
.tab::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.tab__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.18));
  transition: filter .22s ease;
}

.tab__icon svg {
  width: 23px;
  height: 23px;
  display: block;
  fill: currentColor;
  color: currentColor;
  transition: fill .2s ease, color .2s ease;
}

.tab__icon svg *{
  fill: currentColor;
}

.tab__label{
  position: relative;
  z-index: 1;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10px;
  line-height: 1.05;
  font-weight: 750;
  letter-spacing: 0;
}

.tab.is-active{
  flex: 1 1 0;
  min-width: 0;
  color: #7b1e3a;
  opacity: 1;
  touch-action: none;
}

.tab.is-active.is-bubble-away{
  color: rgba(22, 17, 18, .70);
}

.tab.is-bubble-target{
  color: #7b1e3a;
  opacity: 1;
}

.tab.is-active.is-dragging{
  cursor: grabbing;
  touch-action: none;
}

@keyframes activeBubbleSettle{
  0%{
    transform: translate(calc(-50% + var(--bubble-drag-x)), -50%) scale(.88);
    filter: saturate(1.18) brightness(1.08);
  }
  58%{
    transform: translate(calc(-50% + var(--bubble-drag-x)), -50%) scale(1.035);
  }
  100%{
    transform: translate(calc(-50% + var(--bubble-drag-x)), -50%) scale(1);
    filter: saturate(1) brightness(1);
  }
}

@keyframes activeGlassSweep{
  0%{
    background-position: 0 0, 0 0, 140% 0, 0 0;
  }
  42%{
    background-position: 0 0, 0 0, -40% 0, 0 0;
  }
  100%{
    background-position: 0 0, 0 0, -40% 0, 0 0;
  }
}

@keyframes activeGlassBreathe{
  0%, 100%{
    opacity: .62;
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,.14),
      inset 0 10px 18px rgba(255,255,255,.14),
      inset 0 -14px 22px rgba(255,255,255,.06);
  }
  50%{
    opacity: .82;
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,.20),
      inset 0 13px 22px rgba(255,255,255,.22),
      inset 0 -16px 26px rgba(255,255,255,.09),
      0 0 14px rgba(255,255,255,.14);
  }
}

@media (prefers-reduced-motion: reduce){
  .bottom-nav__bubble,
  .bottom-nav__bubble::after{
    animation: none;
  }
}

@media (max-width: 768px) {
  .tab{
    padding: 5px 2px;
    gap: 3px;
    border-radius: 20px;
  }

  .tab__icon{
    width: 22px;
    height: 22px;
  }

  .tab__icon svg{
    width: 19px;
    height: 19px;
  }

  .tab__label{
    font-size: 8px;
    line-height: 1;
    letter-spacing: 0;
  }

  .tab.is-active{
    flex-basis: 0;
    min-width: 0;
  }

  .bottom-nav__bubble{
    border-radius: var(--nav-radius);
    box-shadow:
      inset 0 1px 1px rgba(255,255,255,.62),
      inset 0 -1px 0 rgba(255,255,255,.16),
      inset 0 0 18px rgba(170,170,170,.18),
      0 8px 18px rgba(20, 12, 16, .09),
      0 3px 8px rgba(0,0,0,.05);
  }

  .bottom-nav__bubble::after{
    border-radius: 16px;
  }
}

@media (max-width: 370px) {
  .bottom-nav{
    width: min(338px, calc(100vw - 28px));
    height: 64px;
    padding: 5px;
    --nav-radius: 999px;
    border-radius: var(--nav-radius);
  }

  .tab__label{
    font-size: 7.5px;
  }

  .tab.is-active{
    min-width: 0;
  }

  .bottom-nav{
    --bubble-w: 64px;
    --bubble-h: 54px;
  }

  .bottom-nav.is-bubble-dragging{
    --bubble-w: 72px;
    --bubble-h: 58px;
  }

  .bottom-nav.is-scroll-compact:not(.is-bubble-dragging){
    --bubble-w: 54px;
    --bubble-h: 44px;
  }
}

.content::-webkit-scrollbar{ width: 10px; }
.content::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.12);
  border-radius: 99px;
  border: 3px solid transparent;
  background-clip: content-box;
}

.icon-btn{
  border: 0;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.08);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.icon-btn:hover{ background: rgba(255,255,255,.85); }
.icon-btn:active{ transform: scale(.98); }

.icon-btn[aria-expanded="true"]{
  background: rgba(123,30,58,.10);
  border-color: rgba(123,30,58,.22);
  box-shadow:
    inset 0 0 0 1px rgba(123,30,58,.08),
    0 12px 28px rgba(123,30,58,.14);
  color: #7b1e3a;
}

.icon-btn[aria-expanded="true"] .hamburger::before,
.icon-btn[aria-expanded="true"] .hamburger::after,
.icon-btn[aria-expanded="true"] .hamburger span{
  background: currentColor;
}

.icon-btn--small{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  box-shadow: none;
}

/* Hamburger menu – 3 horizontal lines */
.hamburger{
  width: 20px;
  height: 14px;
  position: relative;
  display: inline-block;
}

.hamburger::before,
.hamburger::after,
.hamburger span{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height: 2px;
  background: rgba(0,0,0,.85);
  border-radius: 99px;
}

.hamburger::before{ top: 0; }
.hamburger span{ top: 6px; }
.hamburger::after{ bottom: 0; }

@media (max-width: 768px) {
  .icon-btn{
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background:
      linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.62));
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255,255,255,.72);
    box-shadow:
      inset 0 1px 1px rgba(255,255,255,.85),
      0 14px 34px rgba(20, 12, 16, .18),
      0 4px 12px rgba(123, 30, 58, .10);
  }
}

/* Overlay */
.overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(3px);
  z-index: 40;
}

/* Drawer */
.drawer{
  position:absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 300px;
  max-width: 86%;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-left: 1px solid rgba(0,0,0,.08);
  z-index: 50;
  transform: translateX(100%);
  transition: transform .22s ease;
  display:flex;
  flex-direction:column;
}

.drawer.is-open{ transform: translateX(0); }

.drawer__header{
  height: 64px;
  padding: 12px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.drawer__title{
  font-weight: 800;
  font-size: 16px;
}

.drawer__section{ padding: 16px 14px; }

.drawer__label{
  font-weight: 700;
  color: rgba(0,0,0,.7);
  margin-bottom: 10px;
}

.lang-list{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.lang-item{
  width: 100%;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.8);
  border-radius: 14px;
  padding: 12px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  font-weight: 650;
  color: rgba(0,0,0,.82);
}

.lang-item:hover{ background: rgba(255,255,255,1); }

.lang-item .check{
  opacity: 0;
  transform: translateY(1px);
}

.lang-item.is-selected{
  border-color: rgba(0,0,0,.22);
  background: rgba(0,0,0,.04);
}

.lang-item.is-selected .check{ opacity: 1; }

.drawer__hint{
  margin: 12px 2px 0;
  color: rgba(0,0,0,.55);
  font-size: 13px;
  line-height: 1.35;
}

/* ===== LIGHT LANGUAGE MENU (match homepage) ===== */
:root{
  --accent: #b89b4a;                 /* gold / olive */
  --accent-soft: rgba(184,155,74,.18);

  --menu-bg: #f4f1eb;                /* off-white / beige */
  --menu-card-bg: #e9e6e0;           /* light grey card */
  --menu-border: rgba(0,0,0,.08);

  --menu-text: #1f1f1f;
  --menu-muted: rgba(0,0,0,.55);

  --menu-overlay: rgba(0,0,0,.18);
}

/* Overlay */
.menu-overlay{
  position: fixed;
  inset: 0;
  background: var(--menu-overlay);
  backdrop-filter: blur(6px);
  z-index: 1000;
  opacity: 1;
  transition: opacity .18s ease;
}

.menu-overlay[hidden]{
  opacity: 0;
}

/* Modal container */
.menu-modal{
  position: fixed;
  inset: 0;
  z-index: 1010;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.menu-modal.is-open{ pointer-events: none; }

/* ✅ Card (μόνο μέσα στο modal, για να μη χτυπάει το main .menu-card) */
.menu-modal .menu-card{
  width: min(520px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: var(--menu-bg);
  border-radius: 26px;
  border: 1px solid var(--menu-border);
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
  padding: 18px 18px 16px;
  transform: translateY(10px) scale(.98);
  opacity: 0;
  transition: transform .18s ease, opacity .18s ease;
  color: var(--menu-text);
  pointer-events: none;
}

.menu-modal .menu-card::-webkit-scrollbar{
  width: 8px;
}

.menu-modal .menu-card::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.16);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: content-box;
}

.menu-modal.is-open .menu-card{
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* Top row */
.menu-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 14px;
}

.menu-brand__name{
  letter-spacing: .28em;
  font-size: 13px;
  color: var(--menu-muted);
  text-transform: uppercase;
}

/* Close button (light) */
.menu-close{
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.62);
  background:
    linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,255,255,.42)),
    radial-gradient(circle at 30% 15%, rgba(255,255,255,.88), transparent 42%);
  color: #1f1f1f;
  font-size: 26px;
  cursor: pointer;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.82),
    inset 0 -10px 18px rgba(123,30,58,.06),
    0 10px 24px rgba(20, 12, 16, .12);
}
.menu-close:hover{ background: rgba(255,255,255,.86); }
.menu-close:active{ transform: scale(.98); }

/* ✅ Language buttons (μόνο μέσα στο modal, για να μη χαλάει το drawer) */
.menu-modal .lang-list{
  display:flex;
  flex-direction:column;
  gap: 14px;
  padding: 6px 2px;
}

.lang-more{
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.58), rgba(255,255,255,.24) 42%, rgba(255,255,255,.48)),
    radial-gradient(circle at 18% 0%, rgba(255,255,255,.90), transparent 42%);
  -webkit-backdrop-filter: blur(18px) saturate(165%);
  backdrop-filter: blur(18px) saturate(165%);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.78),
    inset 0 -16px 24px rgba(20,12,16,.04),
    0 12px 28px rgba(20,12,16,.10);
  padding: 10px;
  overflow: hidden;
}

.lang-more__summary{
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: rgba(31,31,31,.74);
  font-size: 13px;
  padding: 6px 4px;
}

.lang-more__summary::-webkit-details-marker{
  display: none;
}

.lang-more__summary::after{
  content: "▾";
  float: right;
  color: var(--menu-muted);
}

.lang-more[open] .lang-more__summary::after{
  content: "▴";
}

.lang-more__list{
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.quick-links{
  display: grid;
  grid-template-columns: .62fr 1.28fr 1fr;
  gap: 10px;
}

.quick-link{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  text-decoration: none;
  text-align: center;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 999px;
  padding: 12px 10px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.30) 45%, rgba(255,255,255,.58)),
    radial-gradient(circle at 22% 8%, rgba(255,255,255,.88), transparent 42%);
  color: var(--menu-text);
  font-weight: 750;
  font-size: 13px;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.78),
    inset 0 -12px 20px rgba(20,12,16,.04),
    0 10px 24px rgba(20,12,16,.10);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.quick-link::before,
.menu-modal .lang-item::before{
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 18%, rgba(255,255,255,.42) 28%, rgba(255,255,255,.08) 40%, transparent 52%),
    radial-gradient(circle at 78% 86%, rgba(123,30,58,.10), transparent 46%);
  opacity: .82;
  z-index: -1;
}

.quick-link:hover{
  transform: translateY(-1px);
  border-color: rgba(184,155,74,.42);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.82),
    inset 0 -12px 20px rgba(184,155,74,.07),
    0 14px 30px rgba(20,12,16,.14);
}

.quick-link:active{
  transform: translateY(0) scale(.98);
}

.quick-link--icon .home-icon__svg{
  width: 15px;
  height: 15px;
  transform: none;
}

.menu-modal .lang-item{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  background:
    linear-gradient(145deg, rgba(255,255,255,.66), rgba(255,255,255,.26) 45%, rgba(255,255,255,.52)),
    radial-gradient(circle at 20% 8%, rgba(255,255,255,.86), transparent 42%);
  border: 1px solid rgba(255,255,255,.60);
  border-radius: 999px;
  padding: 18px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  font-weight: 760;
  color: var(--menu-text);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.80),
    inset 0 -16px 24px rgba(20,12,16,.045),
    0 12px 28px rgba(20,12,16,.10);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.menu-modal .lang-item:hover{
  transform: translateY(-1px);
  border-color: rgba(184,155,74,.42);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.82),
    inset 0 -16px 24px rgba(184,155,74,.07),
    0 16px 34px rgba(20,12,16,.14);
}

.menu-modal .lang-item:active{
  transform: translateY(0) scale(.99);
}

.menu-modal .lang-item .check{
  opacity: 0;
  color: var(--menu-text);
}

/* Selected language */
.menu-modal .lang-item.is-selected{
  background:
    linear-gradient(145deg, rgba(184,155,74,.30), rgba(255,255,255,.34) 48%, rgba(184,155,74,.18)),
    radial-gradient(circle at 18% 8%, rgba(255,255,255,.88), transparent 44%);
  border-color: rgba(184,155,74,.72);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.82),
    inset 0 -16px 26px rgba(123,30,58,.07),
    0 16px 34px rgba(123,30,58,.14);
}
.menu-modal .lang-item.is-selected .check{
  opacity: 1;
}

/* Divider */
.menu-social{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--menu-border);
  display:flex;
  justify-content:center;
  gap: 16px;
}

/* Social icons */
.social-btn{
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--menu-card-bg);
  border: 1px solid var(--menu-border);
  display:grid;
  place-items:center;
  text-decoration:none;
}

.social-btn:hover{ background: #dedad4; }

.social-btn:active{ transform: scale(.98); }

.social-ic{
  width: 24px;
  height: 24px;
  fill: #1f1f1f;
}

.diet-icons-row{
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: center;
  gap: 7px;
  min-width: 43px;
  flex: 0 0 43px;
  min-height: 20px;
}

.diet-icons-slot{
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
}

.menu-item__title-text{
  display: inline-block;
  min-width: 0;
}

/* Vegan icon */
.diet-icons-slot .vegan-ic{
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: #2e7d32;
  opacity: 0.9;
}

.diet-icons-slot .gf-ic{
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: #000000;
  opacity: 0.9;
}

.gf-ic{
  width: 30px;
  height: 30px;
  flex: 0 0 16px;
  color: #000000;;   /* ή ό,τι χρώμα θες */
  opacity: 0.9;
}

/* και στο legend μικρό */
.menu-legend .gf-ic{
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.menu-legend{
  margin: 24px 8px 8px;
  padding-top: 16px;
  border-top: 1px dashed rgba(0,0,0,.15);
  color: #000000;
  font-size: 14px;
}

.menu-legend__row{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 6px;
}

.menu-legend__note{
  font-size: 16px;
  font-weight: 600;
  color: #7b1e3a;
  line-height: 1.4;
}

/* Το icon ήδη το έχεις, απλά βεβαιωνόμαστε */
.menu-legend .vegan-ic{
  width: 16px;
  height: 16px;
  fill: #2e7d32;
  flex: 0 0 16px;
}

/* ===== To Top button ===== */
.to-top{
  position: fixed;
  right: 18px;
  bottom: calc(var(--nav-h) + env(safe-area-inset-bottom) + 22px);

  width: 46px;
  height: 46px;
  border-radius: 999px;

  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);

  display: grid;
  place-items: center;

  cursor: pointer;
  z-index: 2100;

  opacity: 0;
  transform: translateY(10px) scale(.98);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.to-top.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.to-top:hover{ background: rgba(255,255,255,1); }
.to-top:active{ transform: translateY(0) scale(.98); }

/* ===== Progress Ring ===== */
.progress-ring{
  position: absolute;
  inset: 0;
  transform: rotate(-90deg); /* ξεκινά από πάνω */
}

.progress-ring circle{
  fill: none;
  stroke-width: 3;
}

.progress-ring__bg{
  stroke: rgba(0,0,0,.1);
}

.progress-ring__circle{
  stroke: #7b1e3a;
  stroke-linecap: round;
  transition: stroke-dashoffset .1s linear;
}

/* arrow στο κέντρο */
.to-top-arrow{
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.caret-up{
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #7b1e3a;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
  .content{
    padding-bottom: calc(var(--nav-h) + env(safe-area-inset-bottom) + 200px);
  }
