/* ════════════════════════════════════════════════════════════
   STAYS — design system

   Τυπογραφία : Manrope (τίτλοι) + Commissioner (κείμενο)
                Και οι δύο έχουν πλήρη ελληνικά — κρίσιμο, γιατί
                οι περισσότερες "μοντέρνες" Google fonts δεν έχουν.
   Χρώμα      : ένα δυνατό χρώμα (jade) και ένα για τιμές (coral).
                Όλα σε tokens — αλλάζεις το :root, αλλάζει το site.
   ════════════════════════════════════════════════════════════ */

:root {
  --ground:    #F5F7F5;
  --surface:   #FFFFFF;
  --surface-2: #EDF0EC;
  --ink:       #0E1512;
  --ink-mid:   #3D4B45;
  --ink-soft:  #6B7A73;
  --line:      #E3E8E3;
  --line-soft: #EFF2EE;

  --jade:      #0F7B67;
  --jade-deep: #0A5A4B;
  --coral:     #E0603C;

  --ok:        #0F7B67;
  --ok-bg:     #DEF0EA;
  --busy:      #B4544A;
  --busy-bg:   #F8E8E5;

  --btn-bg:    #0E1512;
  --btn-fg:    #FFFFFF;

  --shadow-xs: 0 1px 2px rgba(14,21,18,.05);
  --shadow-sm: 0 1px 3px rgba(14,21,18,.05), 0 6px 16px -10px rgba(14,21,18,.18);
  --shadow-md: 0 2px 8px rgba(14,21,18,.06), 0 24px 48px -28px rgba(14,21,18,.32);

  --r-lg: 18px;
  --r-md: 12px;
  --r-sm: 8px;
  --r-pill: 999px;
  --maxw: 1240px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ground:    #0B0F0D;
    --surface:   #121815;
    --surface-2: #18201C;
    --ink:       #E9EFEB;
    --ink-mid:   #B4C1BA;
    --ink-soft:  #8B9A92;
    --line:      #232C27;
    --line-soft: #1B231E;

    --jade:      #4FCFB0;
    --jade-deep: #7FE0C6;
    --coral:     #F08663;

    --ok:        #4FCFB0;
    --ok-bg:     #102A24;
    --busy:      #E4938A;
    --busy-bg:   #2A1B18;

    --btn-bg:    #E9EFEB;
    --btn-fg:    #0B0F0D;

    --shadow-xs: 0 1px 2px rgba(0,0,0,.4);
    --shadow-sm: 0 1px 3px rgba(0,0,0,.4), 0 6px 16px -10px rgba(0,0,0,.7);
    --shadow-md: 0 2px 8px rgba(0,0,0,.5), 0 24px 48px -28px rgba(0,0,0,.9);
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: "Commissioner", system-ui, -apple-system, sans-serif;
  font-size: 15.5px;
  font-weight: 350;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
  margin: 0;
}
p { margin: 0; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }

/* ── μπάρα δοκιμαστικών δεδομένων ────────────────────────── */
.demo-strip { background: var(--coral); color: #fff; font-size: 12.5px; padding: 8px 20px; text-align: center; font-weight: 500; }
.demo-strip[hidden] { display: none; }

/* ══════════ ΚΕΦΑΛΙΔΑ — λεπτή, με tabs ══════════ */
header.site {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--ground) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.head-in { display: flex; align-items: center; gap: 20px; padding: 13px 0; }
a.brand { text-decoration: none; display: flex; align-items: baseline; gap: 9px; flex: none; }
.brand-mark { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -0.04em; }
.brand-sub { font-size: 9.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }

nav.tabs { display: flex; gap: 2px; margin: 0 auto; background: var(--surface-2); border-radius: var(--r-pill); padding: 4px; }
nav.tabs a {
  text-decoration: none; color: var(--ink-soft); font-size: 14px; font-weight: 500;
  padding: 8px 17px; border-radius: var(--r-pill); white-space: nowrap; transition: color .15s;
}
nav.tabs a:hover { color: var(--ink); }
nav.tabs a[aria-current="page"] { background: var(--surface); color: var(--ink); font-weight: 600; box-shadow: var(--shadow-xs); }

.phone {
  flex: none; display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  font-weight: 600; font-size: 14px; padding: 9px 17px; border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
}
.phone:hover { opacity: .88; }
.phone .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--jade); }
:root:not([data-theme="light"]) .phone .dot { background: var(--jade); }

@media (max-width: 1000px) {
  .head-in { flex-wrap: wrap; justify-content: space-between; }
  nav.tabs { order: 3; width: 100%; margin: 4px 0 0; overflow-x: auto; justify-content: flex-start; }
}

/* ══════════ ΣΥΜΠΑΓΕΣ HERO + ΑΝΑΖΗΤΗΣΗ ══════════
   Στόχος: η μπάρα αναζήτησης να φαίνεται χωρίς scroll. */
.top { padding: 34px 0 0; }
.top-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
.top h1 { font-size: clamp(30px, 4.2vw, 46px); max-width: 17ch; }
.top h1 em { font-style: normal; color: var(--jade); }
.top .lead { margin-top: 12px; max-width: 52ch; font-size: 15.5px; color: var(--ink-soft); }
.trust { display: flex; gap: 7px; flex-wrap: wrap; }
.trust span {
  font-size: 12.5px; color: var(--ink-mid); background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-pill); padding: 6px 13px; white-space: nowrap;
}
@media (max-width: 880px) { .top-grid { grid-template-columns: 1fr; } .trust { order: -1; } }

.search {
  margin-top: 22px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: 1fr 1fr 1fr auto; align-items: center;
  padding: 6px 6px 6px 4px; gap: 2px;
}
.field { padding: 9px 20px; display: grid; gap: 1px; position: relative; }
.field + .field::before { content: ""; position: absolute; left: 0; top: 22%; height: 56%; width: 1px; background: var(--line); }
.field label { font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select {
  background: transparent; border: 0; padding: 1px 0; width: 100%;
  font-size: 15px; font-weight: 500; font-variant-numeric: tabular-nums;
}
.field input:focus-visible, .field select:focus-visible { outline: 2px solid var(--jade); outline-offset: 4px; border-radius: 3px; }
.search .go {
  background: var(--jade); color: #fff; border: 0; cursor: pointer;
  font-family: "Manrope", sans-serif; font-weight: 700; font-size: 14.5px; letter-spacing: -0.01em;
  padding: 15px 30px; border-radius: var(--r-md);
}
.search .go:hover { background: var(--jade-deep); }
@media (max-width: 880px) {
  .search { grid-template-columns: 1fr 1fr; padding: 6px; }
  .field + .field::before { display: none; }
  .field { padding: 9px 14px; }
  .search .go { grid-column: 1 / -1; padding: 14px; }
}

/* ══════════ ΑΠΟΤΕΛΕΣΜΑΤΑ ΣΕ ΠΑΝΕΛ ΜΕ SCROLL ══════════
   Τα καταλύματα δεν τραβάνε τη σελίδα ως το άπειρο — ζουν
   μέσα σε δικό τους πλαίσιο που κυλάει. */
.results { margin-top: 22px; }
.results-bar { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 0 2px 11px; }
.results-bar .count { font-size: 14px; color: var(--ink-soft); }
.results-bar .count b { color: var(--ink); font-weight: 700; font-family: "Manrope", sans-serif; }
.results-bar .range { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }

/* Το πλαίσιο κυλάει μόνο σε μεγάλες οθόνες, και ΠΟΤΕ δεν μπλοκάρει
   τη σελίδα: χωρίς overscroll-behavior, μόλις φτάσει στο τέλος του
   συνεχίζει να κυλάει η σελίδα κανονικά. Σε κινητό δεν μπαίνει καθόλου
   εσωτερικό scroll — με το δάχτυλο είναι απλώς εκνευριστικό. */
.scroller {
  padding: 4px 4px 8px;
  margin: 0 -4px;
}

@media (min-width: 900px) and (min-height: 700px) {
  .scroller {
    max-height: min(64vh, 700px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--line) transparent;
    -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 22px), transparent 100%);
            mask-image: linear-gradient(to bottom, #000 calc(100% - 22px), transparent 100%);
  }
}
.scroller::-webkit-scrollbar { width: 8px; }
.scroller::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 18px; }

/* ── κάρτα ───────────────────────────────────────────────── */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column; text-decoration: none;
  color: inherit; box-shadow: var(--shadow-xs);
  transition: transform .28s cubic-bezier(.2,.7,.3,1), box-shadow .28s ease, border-color .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:focus-visible { outline: 2px solid var(--jade); outline-offset: 3px; }
.card.is-busy { opacity: .5; }
.card-media { aspect-ratio: 16 / 11; position: relative; background: var(--surface-2); }
.card-media img, .card-media svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.badge {
  position: absolute; top: 11px; left: 11px; font-size: 11px; font-weight: 700;
  padding: 5px 11px; border-radius: var(--r-pill); letter-spacing: -0.01em;
  font-family: "Manrope", sans-serif;
}
.badge.ok { background: var(--ok-bg); color: var(--ok); }
.badge.busy { background: var(--busy-bg); color: var(--busy); }
.badge.idle { background: var(--surface); color: var(--ink-soft); }
.card-body { padding: 15px 17px 17px; display: grid; gap: 5px; }
.card-body .place { font-size: 10.5px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-soft); }
.card-body h3 { font-size: 18.5px; }
.card-specs { font-size: 13px; color: var(--ink-soft); }
.card-foot { margin-top: 9px; padding-top: 12px; border-top: 1px solid var(--line-soft); display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.price { font-family: "Manrope", sans-serif; font-size: 17px; font-weight: 800; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.price small { font-size: 12px; font-weight: 400; color: var(--ink-soft); font-family: "Commissioner", sans-serif; letter-spacing: 0; }
.price .was { font-size: 13px; font-weight: 400; color: var(--ink-soft); text-decoration: line-through; margin-right: 6px; }
.card-foot .more { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); }
.card-foot .more.call { color: var(--coral); }

.empty { border: 1px dashed var(--line); border-radius: var(--r-lg); padding: 44px 24px; text-align: center; color: var(--ink-soft); font-size: 14.5px; background: var(--surface); }
.empty[hidden] { display: none; }

/* ══════════ ΓΕΝΙΚΑ ΤΜΗΜΑΤΑ ══════════ */
section.band { padding: 70px 0; }
section.band.tint { background: var(--surface-2); }
.band-head { max-width: 58ch; display: grid; gap: 12px; margin-bottom: 34px; }
.band-head h2 { font-size: clamp(26px, 3.2vw, 38px); }
.band-head p { color: var(--ink-soft); }

.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.tile { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 22px; display: grid; gap: 9px; align-content: start; }
.tile .n { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 13px; color: var(--jade); letter-spacing: -0.02em; }
.tile h3 { font-size: 18px; }
.tile p { font-size: 14px; color: var(--ink-soft); }
.tile .cost { justify-self: start; margin-top: 3px; font-family: "Manrope", sans-serif; font-weight: 700; font-size: 13px; color: var(--coral); background: var(--surface-2); border-radius: var(--r-pill); padding: 4px 12px; }

.btn {
  display: inline-block; text-decoration: none; text-align: center;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: "Manrope", sans-serif; font-weight: 700; font-size: 14.5px; letter-spacing: -0.01em;
  padding: 14px 28px; border-radius: var(--r-md); border: 0; cursor: pointer; white-space: nowrap;
}
.btn:hover { opacity: .88; }
.btn.jade { background: var(--jade); color: #fff; }
.btn.jade:hover { background: var(--jade-deep); opacity: 1; }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn.ghost:hover { border-color: var(--ink-soft); opacity: 1; }

.cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px;
  background: var(--ink); color: var(--ground); border-radius: var(--r-lg); padding: 34px 36px;
}
:root:not([data-theme="light"]) .cta { background: var(--surface-2); color: var(--ink); }
.cta h2 { font-size: 27px; max-width: 20ch; }
.cta p { font-size: 14.5px; opacity: .75; max-width: 46ch; margin-top: 7px; }
.cta .btn { background: var(--jade); color: #fff; }

/* ══════════ ΥΠΟΣΕΛΙΔΟ ══════════ */
footer.site { padding: 20px 0 60px; }
.foot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 32px; }
.foot-grid h4 { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 11px; font-weight: 600; font-family: "Commissioner", sans-serif; }
.foot-grid a, .foot-grid p { font-size: 14px; text-decoration: none; display: block; color: var(--ink); }
.foot-grid a:hover { color: var(--jade); }
.foot-note { margin-top: 18px; font-size: 12px; color: var(--ink-soft); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 0 6px; }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }

/* ══════════ ΣΕΛΙΔΑ ΚΑΤΑΛΥΜΑΤΟΣ ══════════ */
.crumb { padding: 20px 0 6px; font-size: 13.5px; color: var(--ink-soft); }
.crumb a { text-decoration: none; }
.crumb a:hover { color: var(--jade); }

.lst-head { padding: 8px 0 20px; display: grid; gap: 8px; }
.lst-head h1 { font-size: clamp(28px, 4vw, 44px); }
.lst-head .where { font-size: 10.5px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-soft); }
.facts { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 4px; }
.facts span { font-size: 13px; color: var(--ink-mid); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 5px 13px; }

.gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 10px; margin-bottom: 38px; }
.gallery .main, .gallery figure { border-radius: var(--r-lg); overflow: hidden; background: var(--surface-2); margin: 0; position: relative; }
.gallery .main { aspect-ratio: 3 / 2; }
.gallery .side { display: grid; grid-template-rows: 1fr 1fr; gap: 10px; }
.gallery img, .gallery svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery .more-photos { position: absolute; right: 10px; bottom: 10px; background: var(--surface); font-size: 12px; font-weight: 600; border-radius: var(--r-pill); padding: 5px 12px; box-shadow: var(--shadow-sm); }
@media (max-width: 780px) { .gallery { grid-template-columns: 1fr; } .gallery .side { grid-template-rows: none; grid-template-columns: 1fr 1fr; } }

.lst-body { display: grid; grid-template-columns: 1fr 356px; gap: 52px; align-items: start; padding-bottom: 80px; }
@media (max-width: 940px) { .lst-body { grid-template-columns: 1fr; gap: 32px; } }
.lst-section { padding: 26px 0; border-top: 1px solid var(--line); }
.lst-section:first-child { border-top: 0; padding-top: 0; }
.lst-section h2 { font-size: 22px; margin-bottom: 12px; }
.lst-section p { color: var(--ink-soft); font-size: 15.5px; max-width: 62ch; }
.amen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px 22px; }
.amen-grid div { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--ink-mid); }
.amen-grid i { font-style: normal; width: 5px; height: 5px; border-radius: 50%; background: var(--jade); flex: none; }

/* ── ημερολόγιο ──────────────────────────────────────────── */
.cal-legend { display: flex; gap: 16px; font-size: 12.5px; color: var(--ink-soft); flex-wrap: wrap; margin-bottom: 14px; }
.cal-legend b { display: inline-flex; align-items: center; gap: 6px; font-weight: 400; }
.swatch { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
.months { display: grid; grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)); gap: 24px; }
.month h4 { font-size: 13px; margin: 0 0 10px; letter-spacing: -0.02em; }
.dow, .days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.dow div { font-size: 9.5px; color: var(--ink-soft); text-align: center; padding-bottom: 3px; }
.days div { aspect-ratio: 1; display: grid; place-items: center; font-size: 12px; border-radius: var(--r-sm); font-variant-numeric: tabular-nums; background: var(--ok-bg); color: var(--ok); }
.days div.blank { background: transparent; }
.days div.taken { background: var(--busy-bg); color: var(--busy); text-decoration: line-through; }
.days div.past { background: transparent; color: var(--line); }

/* ── κουτί κράτησης ──────────────────────────────────────── */
.book { position: sticky; top: 84px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 24px; display: grid; gap: 16px; }
.book .rate { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.book .rate .now { font-family: "Manrope", sans-serif; font-size: 30px; font-weight: 800; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.book .rate .was { font-size: 15px; color: var(--ink-soft); text-decoration: line-through; }
.book .rate small { font-size: 13.5px; color: var(--ink-soft); }
.book .picker { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.book .picker > div { padding: 10px 13px; display: grid; gap: 1px; }
.book .picker > div + div { border-left: 1px solid var(--line); }
.book .picker > div.full { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line); }
.book .picker label { font-size: 9.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-soft); }
.book .picker input, .book .picker select { border: 0; background: transparent; font-size: 14.5px; font-weight: 500; width: 100%; }
.book .verdict { font-size: 14px; border-radius: var(--r-md); padding: 11px 14px; }
.book .verdict.ok { background: var(--ok-bg); color: var(--ok); }
.book .verdict.busy { background: var(--busy-bg); color: var(--busy); }
.book .lines { display: grid; gap: 8px; font-size: 14px; }
.book .lines div { display: flex; justify-content: space-between; gap: 12px; color: var(--ink-soft); }
.book .lines div.total { border-top: 1px solid var(--line); padding-top: 10px; color: var(--ink); font-weight: 700; font-size: 16px; font-family: "Manrope", sans-serif; }
.book .lines .saved { color: var(--jade); }
.num { font-variant-numeric: tabular-nums; }
.book .actions { display: grid; gap: 8px; }
.book .btn { width: 100%; }
.book .fine { font-size: 12px; color: var(--ink-soft); text-align: center; }

/* ══════════ ΕΣΩΤΕΡΙΚΕΣ ΣΕΛΙΔΕΣ ══════════ */
.page-top { padding: 48px 0 30px; }
.page-top h1 { font-size: clamp(32px, 5vw, 52px); max-width: 18ch; }
.page-top .lead { margin-top: 16px; max-width: 58ch; font-size: 16.5px; color: var(--ink-soft); }
.prose { max-width: 66ch; display: grid; gap: 18px; }
.prose p { font-size: 16px; color: var(--ink-soft); }
.prose h2 { font-size: 24px; margin-top: 14px; }
.numbers { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin: 26px 0 44px; }
.numbers div { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px 22px; }
.numbers b { display: block; font-family: "Manrope", sans-serif; font-size: 32px; font-weight: 800; letter-spacing: -0.04em; line-height: 1.1; }
.numbers span { font-size: 13px; color: var(--ink-soft); }

/* ── φόρμες ──────────────────────────────────────────────── */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: 28px; display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.fld { display: grid; gap: 5px; }
.fld.wide { grid-column: 1 / -1; }
.fld label { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.fld input, .fld select, .fld textarea { font-size: 15px; background: var(--ground); border: 1px solid var(--line); border-radius: var(--r-md); padding: 11px 13px; width: 100%; }
.fld textarea { min-height: 104px; resize: vertical; line-height: 1.6; }
.fld input:focus-visible, .fld select:focus-visible, .fld textarea:focus-visible { outline: 2px solid var(--jade); outline-offset: 1px; }
.form-note { font-size: 12.5px; color: var(--ink-soft); }
.form-ok { background: var(--ok-bg); color: var(--ok); border-radius: var(--r-md); padding: 15px 17px; font-size: 14.5px; }
.form-ok[hidden] { display: none; }

/* ══════════ ΠΑΝΕΛ ΔΙΑΧΕΙΡΙΣΗΣ (admin.html) ══════════ */
.login-wrap { min-height: 92vh; display: grid; place-items: center; padding: 24px; }
.login { width: min(400px, 100%); display: grid; gap: 18px; }
.login h1 { font-size: 28px; }
.login .form-card { gap: 14px; }
.login .err { color: var(--busy); font-size: 13.5px; }

.admin { display: grid; grid-template-columns: 214px 1fr; min-height: 100vh; }
.admin aside { background: var(--ink); color: var(--ground); padding: 20px 0; display: flex; flex-direction: column; gap: 22px; }
:root:not([data-theme="light"]) .admin aside { background: var(--surface-2); color: var(--ink); }
.admin .logo { padding: 0 18px; display: grid; gap: 1px; }
.admin .logo b { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 18px; letter-spacing: -0.04em; }
.admin .logo span { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; opacity: .55; }
.admin .navgrp { display: grid; gap: 2px; padding: 0 10px; }
.navbtn {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: transparent; border: 0; border-radius: var(--r-sm); padding: 9px 12px;
  text-align: left; cursor: pointer; font-size: 14px; width: 100%; color: inherit; opacity: .6;
}
.navbtn:hover { background: rgba(127,127,127,.14); opacity: .9; }
.navbtn[aria-current="true"] { background: rgba(127,127,127,.2); opacity: 1; font-weight: 600; }
.navbtn .tally { font-size: 11px; background: var(--coral); color: #fff; border-radius: 99px; padding: 1px 7px; font-weight: 700; }
.admin .aside-foot { margin-top: auto; padding: 0 18px; font-size: 12px; opacity: .6; display: grid; gap: 8px; }
.admin .aside-foot a, .admin .aside-foot button { color: inherit; background: none; border: 0; padding: 0; text-align: left; cursor: pointer; font-size: 12px; text-decoration: underline; }

.admin main { padding: 30px 34px 70px; max-width: 1080px; }
.view { display: none; } .view.on { display: block; }
.view-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 22px; }
.view-head h1 { font-size: 28px; }
.view-head p { color: var(--ink-soft); font-size: 14px; margin-top: 5px; max-width: 62ch; }

.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.tbl-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th { text-align: left; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; padding: 12px 16px; background: var(--surface-2); }
td { padding: 13px 16px; border-top: 1px solid var(--line-soft); font-size: 14px; vertical-align: middle; }
tbody tr:hover { background: var(--surface-2); }
td.right, th.right { text-align: right; }
.cell-name b { display: block; font-weight: 600; font-size: 14.5px; }
.cell-name span { font-size: 12.5px; color: var(--ink-soft); }

.pill { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 700; padding: 3px 9px; border-radius: var(--r-pill); font-family: "Manrope", sans-serif; }
.pill.ok { background: var(--ok-bg); color: var(--ok); }
.pill.busy { background: var(--busy-bg); color: var(--busy); }
.pill.mut { background: var(--surface-2); color: var(--ink-soft); }
.sync-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.sync-tags span { font-size: 11px; padding: 3px 8px; border-radius: var(--r-pill); border: 1px solid var(--line); color: var(--ink-soft); }
.sync-tags span.live { border-color: var(--ok); color: var(--ok); background: var(--ok-bg); }

.btn.sm { padding: 7px 14px; font-size: 13px; border-radius: var(--r-sm); }
.btn.danger { background: transparent; color: var(--busy); border: 1px solid var(--line); }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-bottom: 24px; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 16px 18px; }
.stat b { display: block; font-family: "Manrope", sans-serif; font-size: 26px; font-weight: 800; letter-spacing: -0.04em; }
.stat span { font-size: 12px; color: var(--ink-soft); }

dialog {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 0; background: var(--surface); color: var(--ink);
  width: min(760px, calc(100% - 24px)); max-height: 90vh; overflow: auto; box-shadow: var(--shadow-md);
}
dialog::backdrop { background: rgba(8,14,11,.55); }
.dlg-head { position: sticky; top: 0; z-index: 2; background: var(--surface); padding: 20px 24px 15px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.dlg-head h2 { font-size: 21px; }
.dlg-body { padding: 22px 24px; display: grid; gap: 22px; }
.dlg-foot { position: sticky; bottom: 0; background: var(--surface); border-top: 1px solid var(--line); padding: 14px 24px; display: flex; justify-content: flex-end; gap: 9px; }
fieldset { border: 0; padding: 0; margin: 0; }
fieldset legend { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); padding: 0 0 12px; }

.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 5px 8px 5px 12px; font-size: 13px; }
.chip button { background: none; border: 0; cursor: pointer; color: var(--ink-soft); font-size: 13px; line-height: 1; }
.chip button:hover { color: var(--busy); }
.chip-add { display: flex; gap: 8px; margin-top: 9px; }
.chip-add input { max-width: 260px; }

.rules { display: grid; gap: 8px; }
.rule { display: grid; grid-template-columns: 1.2fr 1fr 1fr .7fr .7fr auto; gap: 8px; align-items: end; }
.rule input { font-size: 14px; background: var(--ground); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 9px 10px; width: 100%; }
@media (max-width: 760px) { .rule { grid-template-columns: 1fr 1fr; } }

.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(12px); background: var(--ink); color: var(--ground); padding: 11px 20px; border-radius: var(--r-md); font-size: 14px; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; z-index: 99; }
:root:not([data-theme="light"]) .toast { background: var(--surface-2); color: var(--ink); border: 1px solid var(--line); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.hint-box { border: 1px solid var(--line); border-left: 3px solid var(--coral); border-radius: var(--r-md); background: var(--surface); padding: 14px 16px; font-size: 13.5px; color: var(--ink-soft); margin-top: 20px; }
.hint-box b { color: var(--ink); }

@media (max-width: 900px) { .admin { grid-template-columns: 1fr; } .admin main { padding: 22px 18px 60px; } }

/* ── φόρμα αιτήματος κράτησης ────────────────────────────── */
.badge.warn, .verdict.warn { background: #FBEEDC; color: #8A5A12; }
:root:not([data-theme="light"]) .badge.warn,
:root:not([data-theme="light"]) .verdict.warn { background: #2E2413; color: #E3B266; }

.dlg-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 18px 26px; border-top: 1px solid var(--line); background: var(--surface-2); }
.dlg-foot .fine { font-size: 12.5px; color: var(--ink-soft); max-width: 34ch; }

.bk-summary { background: var(--surface-2); border-radius: var(--r-md); padding: 14px 16px; display: grid; gap: 6px; font-size: 14.5px; }
.bk-summary div { display: flex; justify-content: space-between; gap: 12px; }
.bk-summary div:first-child { font-weight: 600; }
.bk-summary .num { font-family: "Manrope", sans-serif; font-weight: 700; }

.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink-soft); }
.consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--jade); flex: none; }
.consent a { color: var(--jade); }

.form-err { background: var(--busy-bg); color: var(--busy); border-radius: var(--r-md); padding: 14px 16px; font-size: 14.5px; }
.form-err[hidden], .form-ok[hidden] { display: none; }

.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn:disabled:hover { opacity: .45; }

/* ── λίστα κρατήσεων στο πάνελ ───────────────────────────── */
.row { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center;
       padding: 16px 18px; border-bottom: 1px solid var(--line-soft); }
.row:last-child { border-bottom: 0; }
.row:hover { background: var(--surface-2); }
.row-main { display: grid; gap: 3px; min-width: 0; }
.row-title { font-size: 15px; }
.row-title b { font-weight: 700; }
.row-meta { font-size: 13px; color: var(--ink-soft); }
.row-meta b { color: var(--ink); font-weight: 600; }
.row-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 640px) { .row { grid-template-columns: 1fr; } .row-actions { justify-content: flex-start; } }

.hint-draft { display: block; margin-top: 4px; font-size: 11.5px; color: var(--coral); }

/* ── χάρτες ──────────────────────────────────────────────── */
.map-box { height: 320px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--surface-2); }
.map-box.tall { height: 460px; }
.leaflet-container { font: inherit; background: var(--surface-2); }
.leaflet-popup-content-wrapper { border-radius: var(--r-md); }
.leaflet-popup-content { margin: 12px 14px; font-family: "Commissioner", sans-serif; }
.map-pop b { font-family: "Manrope", sans-serif; font-size: 15px; display: block; margin-bottom: 2px; }
.map-pop span { font-size: 13px; color: var(--ink-soft); }
.map-pop a { display: inline-block; margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--jade); }
.map-note { font-size: 13px; color: var(--ink-soft); margin-top: 10px; }

/* ── διακόπτης γλώσσας ───────────────────────────────────── */
.langsw { display: flex; gap: 2px; background: var(--surface-2); border-radius: var(--r-pill); padding: 3px; flex: none; }
.langsw button {
  border: 0; background: transparent; cursor: pointer; color: var(--ink-soft);
  font-size: 12.5px; font-weight: 600; padding: 5px 11px; border-radius: var(--r-pill);
  text-transform: uppercase; letter-spacing: .04em;
}
.langsw button:hover { color: var(--ink); }
.langsw button[aria-current="true"] { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-xs); }

/* ── σταθερότητα κατά τη φόρτωση ──────────────────────────
   Χωρίς αυτά, η κεφαλίδα αλλάζει ύψος μόλις μπουν το όνομα
   και το τηλέφωνο, και η σελίδα αναπηδά σε κάθε πλοήγηση. */
header.site .head-in { min-height: 54px; }
.brand-mark { display: inline-block; min-height: 1em; }
.phone { min-height: 36px; }

/* ── πινέζα χάρτη ─────────────────────────────────────────
   Φτιαγμένη με CSS: καμία εξωτερική εικόνα να λείψει ποτέ. */
.pin {
  display: block; width: 26px; height: 26px;
  background: var(--jade); border: 3px solid #fff; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 3px 8px rgba(14,21,18,.35);
}

/* ── ΑΜΑ ακινήτου — υποχρεωτική αναγραφή ─────────────────── */
.ama-line { order: 99; margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--ink-soft); letter-spacing: .02em; }
.ama-line[hidden] { display: none; }

/* ── προβολή φωτογραφιών ─────────────────────────────────── */
.gallery .main, .gallery .side button {
  padding: 0; border: 0; cursor: zoom-in; background: var(--surface-2);
  border-radius: var(--r-lg); overflow: hidden; display: block; width: 100%;
}
.gallery .side button { height: 100%; position: relative; }
.gallery .main:focus-visible, .gallery .side button:focus-visible { outline: 2px solid var(--jade); outline-offset: 3px; }

#lightbox {
  border: 0; padding: 0; background: transparent;
  width: 100vw; max-width: 100vw; height: 100vh; max-height: 100vh;
  display: grid; place-items: center;
}
#lightbox::backdrop { background: rgba(8,12,10,.92); }
#lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: var(--r-md); }
.lb-close, .lb-nav {
  position: fixed; background: rgba(255,255,255,.12); color: #fff; border: 0;
  cursor: pointer; border-radius: 50%; width: 48px; height: 48px;
  font-size: 26px; line-height: 1; display: grid; place-items: center;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.26); }
.lb-close { top: 20px; right: 20px; font-size: 19px; }
.lb-nav.prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-nav.next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-count {
  position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: #fff; font-size: 13px; font-variant-numeric: tabular-nums;
  background: rgba(255,255,255,.12); padding: 6px 14px; border-radius: var(--r-pill);
}
@media (max-width: 640px) { .lb-nav { width: 40px; height: 40px; } .lb-nav.prev { left: 8px; } .lb-nav.next { right: 8px; } }

/* ── πλοήγηση ημερολογίου ────────────────────────────────── */
.cal-nav { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.cal-nav span { font-size: 13.5px; font-weight: 600; color: var(--ink-mid); font-family: "Manrope", sans-serif; }
.cal-nav button {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--surface); color: var(--ink); cursor: pointer;
  font-size: 18px; line-height: 1; display: grid; place-items: center;
}
.cal-nav button:hover:not(:disabled) { border-color: var(--jade); color: var(--jade); }
.cal-nav button:disabled { opacity: .3; cursor: not-allowed; }

/* ── ποιος είναι συνδεδεμένος στο πάνελ ──────────────────── */
.who-in { font-size: 11.5px; color: var(--ink-soft); margin: 2px 0 8px; word-break: break-all; }
.who-in:empty { display: none; }
