/* ═══════════════════════════════════════════
   Hotel Guest Guide — frontend styles v2
   Dark luxury · gold accent · Playfair + Inter
   ═══════════════════════════════════════════ */

:root {
	--hgg-accent: #e3c27e;
	--hgg-bg: #1c1813;
	--hgg-card: rgba(255, 255, 255, 0.08);
	--hgg-card-border: rgba(255, 255, 255, 0.14);
	--hgg-text: #f5f1e8;
	--hgg-muted: rgba(245, 241, 232, 0.74);
	--hgg-display: "Playfair Display", Georgia, serif;
	--hgg-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

.hgg-app {
	background: var(--hgg-bg);
	color: var(--hgg-text);
	font-family: var(--hgg-body);
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;

	/* Full-bleed: σπάει έξω από οποιοδήποτε container του θέματος */
	width: 100vw;
	max-width: 100vw;
	left: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

/* Σκούρο φόντο και γύρω από την εφαρμογή — όχι λευκά περιθώρια */
body:has(.hgg-app),
body.hgg-active {
	background: var(--hgg-bg) !important;
	overflow-x: hidden;
	margin: 0;
}
body.hgg-fullscreen { background: var(--hgg-bg); }

.hgg-app *, .hgg-app *::before, .hgg-app *::after { box-sizing: border-box; }
.hgg-app img { max-width: 100%; height: auto; }
.hgg-app a { color: var(--hgg-accent); text-decoration: none; }

/* ── Hero ── */
.hgg-hero {
	position: relative;
	--hgg-ov: .35;
	min-height: 100vh;
	min-height: 100svh;
	background: #1a1814;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 0 0 30px 30px;
	overflow: hidden;
	-webkit-tap-highlight-color: transparent;
}
.hgg-hero--tall   { min-height: 85vh; min-height: 85svh; }
.hgg-hero--medium { min-height: 70vh; min-height: 70svh; }
.hgg-hero-bg {
	position: absolute; inset: -2%;
	background: #1a1814 center / cover no-repeat;
	animation: hgg-kenburns 22s ease-in-out infinite alternate;
	will-change: transform;
}
.hgg-hero--nozoom .hgg-hero-bg { animation: none; inset: 0; }
@keyframes hgg-kenburns {
	from { transform: scale(1); }
	to   { transform: scale(1.045); }
}
@media (prefers-reduced-motion: reduce) { .hgg-hero-bg { animation: none; } }
.hgg-hero-overlay {
	position: absolute; inset: 0;
	background:
		radial-gradient(ellipse at 50% 42%, rgba(28,24,19,0) 0%, rgba(28,24,19,calc(var(--hgg-ov) + .05)) 82%),
		linear-gradient(180deg,
			rgba(28,24,19,calc(var(--hgg-ov) + .12)) 0%,
			rgba(28,24,19,calc(var(--hgg-ov) * .55)) 30%,
			rgba(28,24,19,calc(var(--hgg-ov) * .8)) 62%,
			var(--hgg-bg) 100%);
}
.hgg-hero-inner {
	position: relative; padding: 48px 24px 64px; width: 100%;
	animation: hgg-fadeup .9s ease both;
}
@keyframes hgg-fadeup {
	from { opacity: 0; transform: translateY(18px); }
	to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) { .hgg-hero-inner { animation: none; } }
.hgg-logo { max-height: 76px; width: auto; margin-bottom: 26px; }
.hgg-eyebrow {
	font-size: 12px; letter-spacing: .42em; text-transform: uppercase;
	color: var(--hgg-accent); font-weight: 600; margin: 0 0 10px;
	text-indent: .42em; /* οπτική εξισορρόπηση του letter-spacing */
}
.hgg-title {
	font-family: var(--hgg-display);
	font-size: clamp(44px, 11vw, 76px);
	font-weight: 700; line-height: 1.05; margin: 0;
	color: #f7f3ea;
	text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.hgg-rule {
	width: 130px; height: 2px; margin: 18px auto;
	background: linear-gradient(90deg, transparent, var(--hgg-accent), transparent);
}
.hgg-location {
	font-size: 13px; letter-spacing: .3em; text-transform: uppercase;
	color: var(--hgg-accent); margin: 0 0 28px; text-indent: .3em;
}
.hgg-weather {
	display: inline-flex; flex-direction: column; gap: 2px;
	background: rgba(20, 18, 15, 0.55);
	backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 18px; padding: 14px 28px;
	font-size: 14px; color: var(--hgg-text);
}
.hgg-weather-temp { font-size: 24px; }
.hgg-weather-temp strong { font-weight: 700; }
.hgg-weather-desc { font-weight: 600; }
.hgg-weather-wind { color: var(--hgg-muted); font-size: 13px; }
.hgg-scroll {
	display: flex; align-items: center; justify-content: center;
	width: 56px; height: 56px; margin: 32px auto 0;
	border: 1px solid var(--hgg-accent); border-radius: 50%;
	color: var(--hgg-accent);
	animation: hgg-bob 2.4s ease-in-out infinite;
}
.hgg-scroll svg { width: 22px; height: 22px; }
@keyframes hgg-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (prefers-reduced-motion: reduce) { .hgg-scroll { animation: none; } }

/* ── Sections ── */
.hgg-section {
	padding: 46px 20px 10px;
	max-width: 1120px;
	margin-left: auto;
	margin-right: auto;
}
.hgg-h2 {
	font-family: var(--hgg-display);
	font-size: clamp(32px, 8vw, 44px);
	font-weight: 500; text-align: center;
	color: #f2ecdf; margin: 0 0 10px;
}
.hgg-h2-rule {
	width: 150px; height: 2px; margin: 0 auto 10px;
	background: linear-gradient(90deg, transparent, var(--hgg-accent), transparent);
}

/* ── Cards grid ── */
.hgg-grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px;
}
@media (min-width: 768px) {
	.hgg-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
	.hgg-grid-essentials { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.hgg-grid { grid-template-columns: repeat(4, 1fr); }
	.hgg-grid-essentials { grid-template-columns: repeat(4, 1fr); }
}
.hgg-card {
	position: relative;
	display: flex; flex-direction: column; align-items: flex-start;
	gap: 5px;
	background: var(--hgg-card);
	border: 1px solid var(--hgg-card-border);
	border-radius: 20px;
	padding: 22px 20px;
	color: var(--hgg-text);
	font-family: var(--hgg-body);
	text-align: left; cursor: pointer;
	transition: transform .18s ease, border-color .18s ease, background .18s ease;
	appearance: none; -webkit-appearance: none;
	font-size: inherit;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}
.hgg-card:hover, .hgg-card:focus-visible {
	transform: translateY(-2px);
	border-color: var(--hgg-accent);
	background: rgba(255,255,255,.08);
	outline: none;
}
.hgg-card:active { transform: scale(.985); }
.hgg-card:focus-visible { box-shadow: 0 0 0 2px var(--hgg-accent); }
.hgg-icon { color: var(--hgg-accent); width: 38px; height: 38px; margin-bottom: 8px; flex: none; }
.hgg-icon svg { width: 100%; height: 100%; display: block; }
.hgg-card-title { font-size: 18px; font-weight: 700; color: #fff; line-height: 1.25; }
.hgg-card-sub { font-size: 13.5px; color: var(--hgg-muted); }
.hgg-chev {
	position: absolute; right: 18px; bottom: 20px;
	color: var(--hgg-accent); font-size: 22px; line-height: 1;
}

/* ── Section subtitle ── */
.hgg-section-sub {
	text-align: center; color: var(--hgg-muted);
	font-size: 15px; margin: 6px 0 0;
}

/* ── Grouped info list (professional, iOS-style) ── */
.hgg-list-wrap {
	display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 26px;
	max-width: 680px; margin-left: auto; margin-right: auto;
}
.hgg-list {
	background: var(--hgg-card);
	border: 1px solid var(--hgg-card-border);
	border-radius: 22px;
	overflow: hidden;
	backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hgg-row {
	display: flex; align-items: center; gap: 15px;
	width: 100%;
	padding: 15px 18px;
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(255,255,255,.07);
	color: var(--hgg-text);
	font-family: var(--hgg-body); font-size: inherit;
	text-align: left; cursor: pointer;
	appearance: none; -webkit-appearance: none;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
	transition: background .15s ease;
}
.hgg-row:last-child { border-bottom: none; }
.hgg-row:hover, .hgg-row:focus-visible { background: rgba(255,255,255,.06); outline: none; }
.hgg-row:active { background: rgba(227,194,126,.12); }
.hgg-row-icon {
	flex: none;
	width: 44px; height: 44px;
	border-radius: 13px;
	background: rgba(227,194,126,.13);
	border: 1px solid rgba(227,194,126,.22);
	color: var(--hgg-accent);
	display: flex; align-items: center; justify-content: center;
	padding: 10px;
}
.hgg-row-icon svg { width: 100%; height: 100%; display: block; }
.hgg-row-title { flex: 1; min-width: 0; font-size: 16.5px; font-weight: 600; color: #fff; line-height: 1.3; }
.hgg-row-chev { flex: none; color: var(--hgg-accent); font-size: 24px; line-height: 1; opacity: .9; }

/* ── Airport transfer banner ── */
.hgg-transfer-banner {
	position: relative;
	display: flex; align-items: center; gap: 16px;
	width: 100%; margin-top: 14px;
	background: linear-gradient(120deg, rgba(227,194,126,.14), rgba(227,194,126,.05) 60%);
	border: 1px solid rgba(227,194,126,.45);
	border-radius: 20px;
	padding: 20px 54px 20px 20px;
	color: var(--hgg-text); text-align: left;
	cursor: pointer; font-family: var(--hgg-body); font-size: inherit;
	appearance: none; -webkit-appearance: none;
	transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.hgg-transfer-banner:hover, .hgg-transfer-banner:focus-visible {
	transform: translateY(-2px);
	border-color: var(--hgg-accent);
	background: linear-gradient(120deg, rgba(227,194,126,.2), rgba(227,194,126,.08) 60%);
	outline: none;
}
.hgg-transfer-banner:focus-visible { box-shadow: 0 0 0 2px var(--hgg-accent); }
.hgg-transfer-icon { margin: 0; width: 44px; height: 44px; }
.hgg-transfer-copy { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.hgg-transfer-price {
	background: var(--hgg-accent); color: #14120e;
	font-weight: 800; font-size: 17px;
	border-radius: 999px; padding: 7px 16px;
	white-space: nowrap; flex: none;
}
.hgg-transfer-banner .hgg-chev { position: absolute; right: 20px; top: 50%; bottom: auto; transform: translateY(-50%); }

/* ── Book direct ── */
.hgg-book {
	position: relative;
	background:
		linear-gradient(150deg, #221c12 0%, #3a2f1c 55%, #241d12 100%);
	border: 1px solid rgba(227,194,126,.4);
	border-radius: 26px;
	padding: 44px 28px;
	margin-top: 16px;
	text-align: center;
	overflow: hidden;
}
.hgg-book::before {
	content: "";
	position: absolute; inset: 0;
	background: radial-gradient(circle at 85% 0%, rgba(227,194,126,.16), transparent 55%);
	pointer-events: none;
}
.hgg-book > * { position: relative; }
.hgg-book-eyebrow {
	color: var(--hgg-accent); font-size: 12px; font-weight: 700;
	letter-spacing: .32em; text-transform: uppercase; text-indent: .32em;
	margin: 0 0 12px;
}
.hgg-book-title {
	font-family: var(--hgg-display);
	font-size: clamp(34px, 9vw, 50px); font-weight: 700;
	color: #fff; margin: 0 0 12px; line-height: 1.12;
}
.hgg-book-text { color: rgba(255,255,255,.78); font-size: 16.5px; margin: 0 auto 22px; max-width: 460px; }
.hgg-book-perks {
	list-style: none; margin: 0 auto 28px; padding: 0;
	display: inline-flex; flex-direction: column; gap: 12px;
	text-align: left;
}
.hgg-book-perks li {
	display: flex; align-items: flex-start; gap: 12px;
	font-size: 16px; color: rgba(255,255,255,.92); font-weight: 500;
}
.hgg-book-check {
	flex: none;
	width: 24px; height: 24px; border-radius: 50%;
	background: var(--hgg-accent); color: #14120e;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 14px; font-weight: 800; margin-top: 1px;
}
.hgg-book-btn {
	display: inline-block;
	background: var(--hgg-accent); color: #14120e !important;
	font-weight: 800; font-size: 17px;
	padding: 16px 38px; border-radius: 999px;
	box-shadow: 0 8px 24px rgba(227,194,126,.25);
	transition: transform .18s ease, box-shadow .18s ease;
}
.hgg-book-btn:hover { transform: scale(1.04); box-shadow: 0 10px 30px rgba(227,194,126,.35); }
.hgg-book-note { color: rgba(255,255,255,.55); font-size: 13.5px; margin: 18px 0 0; }

/* ── Footer ── */
.hgg-footer {
	text-align: center; padding: 40px 24px 110px;
	color: var(--hgg-muted); font-size: 15px; line-height: 1.9;
}
.hgg-footer-name { letter-spacing: .28em; text-transform: uppercase; font-weight: 700; color: #fff; font-size: 17px; margin: 0 0 6px; text-indent: .28em; }
.hgg-footer p { margin: 0; }

/* ── Floating WhatsApp ── */
.hgg-fab {
	position: fixed;
	right: 18px;
	bottom: calc(22px + env(safe-area-inset-bottom, 0px));
	z-index: 999990;
	width: 62px; height: 62px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: radial-gradient(circle at 30% 30%, #f0d9a3, #c89b4f);
	color: #14120e !important;
	box-shadow: 0 8px 26px rgba(0,0,0,.45), 0 0 0 1px rgba(227,194,126,.4);
	transition: transform .18s ease;
	-webkit-tap-highlight-color: transparent;
}
.hgg-fab:hover { transform: scale(1.07); }
.hgg-fab:active { transform: scale(.96); }
.hgg-fab svg { width: 28px; height: 28px; }

/* Κρύψιμο κουμπιών "scroll to top" των θεμάτων ώστε να μην πέφτουν πάνω στο WhatsApp */
body.hgg-active .scroll-top,
body.hgg-active .scrolltop,
body.hgg-active .scroll-to-top,
body.hgg-active .back-to-top,
body.hgg-active #back-to-top,
body.hgg-active #toTop,
body.hgg-active #to-top,
body.hgg-active .go-top,
body.hgg-active #go-top,
body.hgg-active .totop,
body.hgg-active #ast-scroll-top,
body.hgg-active .generate-back-to-top,
body.hgg-active #scroll-top,
body.hgg-active .kadence-scroll-to-top,
body.hgg-active .oceanwp-scroll-top {
	display: none !important;
	visibility: hidden !important;
}

/* ── Modals (κεντραρισμένα) ── */
.hgg-modal {
	position: fixed; inset: 0; z-index: 999999;
	background: rgba(12, 10, 8, 0.74);
	backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
	display: flex; align-items: center; justify-content: center;
	padding: 18px;
	-webkit-tap-highlight-color: transparent;
}
.hgg-modal[hidden] { display: none; }
.hgg-modal { transition: opacity .2s ease; }
.hgg-modal.hgg-closing { opacity: 0; }
.hgg-modal.hgg-closing .hgg-modal-box { transform: scale(.95) translateY(14px); }
.hgg-modal-box {
	position: relative;
	background: #241f18;
	border: 1px solid rgba(227,194,126,.28);
	border-radius: 26px;
	padding: 22px 22px 26px;
	width: 100%; max-width: 560px;
	max-height: 84vh; max-height: 84dvh;
	display: flex; flex-direction: column;
	overflow: hidden;
	color: var(--hgg-text);
	box-shadow: 0 24px 70px rgba(0,0,0,.6), 0 0 0 6px rgba(227,194,126,.05);
	animation: hgg-pop .26s cubic-bezier(.32,.72,.28,1);
	transition: transform .2s ease;
}
@keyframes hgg-pop {
	from { opacity: 0; transform: scale(.93) translateY(20px); }
	to   { opacity: 1; transform: scale(1) translateY(0); }
}
@media (prefers-reduced-motion: reduce) { .hgg-modal-box { animation: none; } }
.hgg-modal-handle { display: none !important; }
.hgg-modal-body {
	flex: 1; min-height: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	padding-bottom: 6px;
}
@keyframes hgg-up { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .hgg-modal-box { animation: none; } }
.hgg-modal-box h3 {
	font-family: var(--hgg-display);
	font-size: 29px; font-weight: 600; color: #fff;
	margin: 0 0 18px; padding-right: 8px;
	display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.hgg-modal-close {
	position: absolute; top: 16px; right: 16px; z-index: 2;
	background: rgba(227,194,126,.1);
	border: 1.5px solid rgba(227,194,126,.5);
	width: 42px; height: 42px; border-radius: 50%;
	color: var(--hgg-accent); font-size: 16px; font-weight: 700; line-height: 1;
	cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	-webkit-tap-highlight-color: transparent;
	transition: background .15s ease, color .15s ease, transform .15s ease;
}
.hgg-modal-close:hover, .hgg-modal-close:focus-visible {
	background: var(--hgg-accent);
	color: #14120e;
	outline: none;
}
.hgg-modal-close:active { transform: scale(.9); }
.hgg-price-chip {
	background: var(--hgg-accent); color: #14120e;
	font-family: var(--hgg-body); font-weight: 800; font-size: 16px;
	border-radius: 999px; padding: 5px 14px;
}
.hgg-kv {
	display: flex; justify-content: space-between; align-items: center; gap: 12px;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 14px; padding: 15px 18px; margin-bottom: 12px;
	font-size: 16px;
}
.hgg-kv span { color: var(--hgg-muted); }
.hgg-kv strong { color: var(--hgg-accent); font-weight: 700; letter-spacing: .02em; text-align: right; word-break: break-all; }
.hgg-copy {
	display: block; width: 100%; text-align: center;
	background: var(--hgg-accent); color: #14120e !important;
	border: none; border-radius: 999px;
	font-weight: 700; font-size: 16px; font-family: var(--hgg-body);
	padding: 14px 20px; margin-top: 12px; cursor: pointer;
	transition: filter .18s ease;
}
.hgg-copy:hover { filter: brightness(1.07); }
.hgg-modal-content { font-size: 15.5px; line-height: 1.65; color: rgba(245,241,232,.92); }
.hgg-modal-content h1, .hgg-modal-content h2, .hgg-modal-content h3, .hgg-modal-content h4 {
	color: #fff; font-family: var(--hgg-display); margin: 18px 0 10px;
}
.hgg-modal-content p { margin: 0 0 12px; }
.hgg-modal-content p:last-child { margin-bottom: 0; }
.hgg-modal-content ul { list-style: none; margin: 0 0 6px; padding: 0; }
.hgg-modal-content ul li {
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 15px;
	padding: 14px 16px;
	margin: 0 0 10px;
}
.hgg-modal-content ul li:last-child { margin-bottom: 0; }
.hgg-modal-content ol { padding-left: 22px; margin: 0 0 14px; }
.hgg-modal-content ol li { margin-bottom: 9px; }
.hgg-modal-content li::marker { color: var(--hgg-accent); }
.hgg-modal-content strong { color: var(--hgg-accent); }
.hgg-modal-content a {
	color: var(--hgg-accent) !important;
	font-weight: 700;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}
.hgg-modal-content li > a:only-of-type::after {
	content: '›';
	float: right;
	font-size: 20px; line-height: 1;
	opacity: .85;
}
.hgg-app .hgg-modal-content img, .hgg-modal-body img { border-radius: 14px; }

/* Λεπτή χρυσή μπάρα κύλισης μέσα στα παράθυρα */
.hgg-modal-body::-webkit-scrollbar { width: 5px; }
.hgg-modal-body::-webkit-scrollbar-track { background: transparent; }
.hgg-modal-body::-webkit-scrollbar-thumb { background: rgba(227,194,126,.35); border-radius: 999px; }
.hgg-modal-body { scrollbar-width: thin; scrollbar-color: rgba(227,194,126,.35) transparent; }

/* ── Transfer form ── */
.hgg-transfer-desc { color: var(--hgg-muted); font-size: 15.5px; line-height: 1.65; margin: 0 0 20px; }
.hgg-form { display: flex; flex-direction: column; gap: 14px; }
.hgg-field { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.hgg-field > span {
	font-size: 12px; font-weight: 700; letter-spacing: .1em;
	text-transform: uppercase; color: var(--hgg-muted);
}
.hgg-field input, .hgg-field select {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 12px;
	padding: 14px;
	color: #fff; font-family: var(--hgg-body); font-size: 16px;
	line-height: 1.4;
	width: 100%;
	min-height: 52px;
	box-sizing: border-box;
	appearance: none; -webkit-appearance: none;
	color-scheme: dark;
}
.hgg-field input:focus, .hgg-field select:focus {
	outline: none; border-color: var(--hgg-accent);
	box-shadow: 0 0 0 2px rgba(227,194,126,.25);
}
.hgg-field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23e3c27e' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 14px center;
	padding-right: 40px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.hgg-field select option { color: #14120e; background: #fff; }
.hgg-field-row { display: flex; gap: 12px; }
.hgg-transfer-send { margin-top: 6px; padding: 16px 20px; font-weight: 800; }
.hgg-form-hint { color: var(--hgg-muted); font-size: 13px; text-align: center; margin: 4px 0 0; }
.hgg-field input.hgg-invalid { border-color: #e07a5f; box-shadow: 0 0 0 2px rgba(224,122,95,.25); }

/* ── Discover Rhodes cards ── */
.hgg-discover-grid {
	display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 26px;
}
@media (min-width: 700px) { .hgg-discover-grid { grid-template-columns: 1fr 1fr; gap: 18px; } }
.hgg-discover-card {
	position: relative;
	display: flex; align-items: center; gap: 16px;
	width: 100%;
	background: var(--hgg-card);
	border: 1px solid var(--hgg-card-border);
	border-radius: 20px;
	padding: 20px 54px 20px 20px;
	color: var(--hgg-text); text-align: left;
	cursor: pointer; font-family: var(--hgg-body); font-size: inherit;
	appearance: none; -webkit-appearance: none;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
	transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.hgg-discover-card:hover, .hgg-discover-card:focus-visible {
	transform: translateY(-2px);
	border-color: var(--hgg-accent);
	background: rgba(255,255,255,.08);
	outline: none;
}
.hgg-discover-card:active { transform: scale(.985); }
.hgg-discover-icon {
	flex: none; width: 52px; height: 52px;
	border-radius: 15px;
	background: rgba(227,194,126,.13);
	border: 1px solid rgba(227,194,126,.22);
	color: var(--hgg-accent);
	display: flex; align-items: center; justify-content: center;
	padding: 12px;
}
.hgg-discover-icon svg { width: 100%; height: 100%; display: block; }
.hgg-discover-copy { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.hgg-discover-card .hgg-chev { position: absolute; right: 20px; top: 50%; bottom: auto; transform: translateY(-50%); }

/* ── Place cards (Explore / Eat & Drink) ── */
.hgg-modal-places { max-width: 680px; }
.hgg-place-list { display: flex; flex-direction: column; gap: 16px; }
.hgg-place {
	background: rgba(255,255,255,.045);
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 18px;
	overflow: hidden;
}
.hgg-place-img {
	height: 170px;
	background: #221e17 center / cover no-repeat;
}
.hgg-place-img-empty {
	display: flex; align-items: center; justify-content: center;
	color: rgba(227,194,126,.5);
	background: linear-gradient(135deg, #241f16, #1a1712);
}
.hgg-place-img-empty svg { width: 46px; height: 46px; }
.hgg-place-body { padding: 16px 18px 18px; }
.hgg-place-body h4 {
	font-family: var(--hgg-display);
	font-size: 21px; font-weight: 600; color: #fff;
	margin: 0 0 7px;
}
.hgg-place-body p {
	margin: 0 0 14px;
	font-size: 14.5px; line-height: 1.6;
	color: rgba(245,241,232,.78);
}
.hgg-place-map {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(227,194,126,.14);
	border: 1px solid rgba(227,194,126,.4);
	color: var(--hgg-accent) !important;
	font-weight: 700; font-size: 14px;
	border-radius: 999px; padding: 9px 18px;
	transition: background .18s ease, transform .18s ease;
	-webkit-tap-highlight-color: transparent;
}
.hgg-place-map:hover { background: rgba(227,194,126,.24); }
.hgg-place-map:active { transform: scale(.97); }
.hgg-place-map svg { width: 16px; height: 16px; }
@media (min-width: 700px) {
	.hgg-place { display: flex; }
	.hgg-place-img { width: 220px; height: auto; min-height: 150px; flex: none; }
	.hgg-place-body { flex: 1; }
}

/* ── Add to Home Screen banner ── */
.hgg-a2hs {
	position: fixed;
	left: 14px; right: 14px;
	bottom: calc(16px + env(safe-area-inset-bottom, 0px));
	z-index: 999995;
	background: #f7f2e6;
	color: #17140f;
	border-radius: 22px;
	padding: 22px 22px 20px;
	box-shadow: 0 12px 40px rgba(0,0,0,.5);
	font-family: var(--hgg-body);
	max-width: 560px;
	margin: 0 auto;
	animation: hgg-up .35s ease;
}
.hgg-a2hs[hidden] { display: none; }
.hgg-a2hs-title {
	font-size: 20px; font-weight: 800; line-height: 1.3;
	margin: 0 0 8px; padding-right: 34px;
}
.hgg-a2hs-text { font-size: 15.5px; line-height: 1.55; margin: 0 0 16px; color: #3c362b; }
.hgg-a2hs-btn {
	background: #241f18; color: #f7f2e6;
	border: none; border-radius: 999px;
	font-family: var(--hgg-body); font-weight: 700; font-size: 15.5px;
	padding: 12px 28px; cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
.hgg-a2hs-btn:active { transform: scale(.97); }
.hgg-a2hs-close {
	position: absolute; top: 14px; right: 14px;
	background: transparent; border: none;
	color: #17140f; font-size: 18px; line-height: 1;
	cursor: pointer; padding: 6px;
	-webkit-tap-highlight-color: transparent;
}

/* ── Modal: professional header ── */
.hgg-modal-handle {
	display: block;
	width: 44px; height: 4px;
	border-radius: 999px;
	background: rgba(255,255,255,.22);
	margin: 0 auto 18px;
}
.hgg-modal-head, .hgg-modal-divider { flex: none; }
.hgg-modal-head {
	display: flex; align-items: center; gap: 15px;
	margin-bottom: 18px; padding-right: 52px;
}
.hgg-modal-icon {
	flex: none;
	width: 52px; height: 52px;
	border-radius: 15px;
	background: rgba(227,194,126,.13);
	border: 1px solid rgba(227,194,126,.25);
	color: var(--hgg-accent);
	display: flex; align-items: center; justify-content: center;
	padding: 12px;
}
.hgg-modal-icon svg { width: 100%; height: 100%; display: block; }
.hgg-modal-head h3 { margin: 0 0 3px; font-size: 25px; }
.hgg-modal-sub { margin: 0; font-size: 13.5px; color: var(--hgg-muted); }
.hgg-modal-divider {
	height: 1px; margin: 0 0 20px;
	background: linear-gradient(90deg, rgba(227,194,126,.45), rgba(227,194,126,.06));
}

/* ── Wi-Fi credentials ── */
.hgg-cred {
	display: flex; align-items: center; gap: 12px;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 16px;
	padding: 15px 16px;
	margin-bottom: 12px;
}
.hgg-cred-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.hgg-cred-label {
	font-size: 11px; font-weight: 700;
	letter-spacing: .14em; text-transform: uppercase;
	color: var(--hgg-muted);
}
.hgg-cred-value {
	font-size: 19px; font-weight: 700;
	color: var(--hgg-accent);
	letter-spacing: .02em; word-break: break-all;
}
.hgg-cred-copy {
	flex: none;
	width: 44px; height: 44px;
	border-radius: 12px;
	background: rgba(227,194,126,.13);
	border: 1px solid rgba(227,194,126,.35);
	color: var(--hgg-accent);
	font-size: 18px; line-height: 1; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	-webkit-tap-highlight-color: transparent;
	transition: background .15s ease, transform .15s ease;
}
.hgg-cred-copy:hover { background: rgba(227,194,126,.24); }
.hgg-cred-copy:active { transform: scale(.93); }
.hgg-cred-copy.hgg-copied { background: var(--hgg-accent); color: #14120e; }

/* ── Check-in/out time cards ── */
.hgg-times { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.hgg-time-card {
	display: flex; flex-direction: column; align-items: center; gap: 2px;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 16px;
	padding: 18px 12px;
	text-align: center;
}
.hgg-time-label {
	font-size: 11px; font-weight: 700;
	letter-spacing: .14em; text-transform: uppercase;
	color: var(--hgg-muted);
}
.hgg-time-value {
	font-family: var(--hgg-display);
	font-size: 32px; font-weight: 700; color: var(--hgg-accent);
	line-height: 1.15;
}
.hgg-time-note { font-size: 12.5px; color: var(--hgg-muted); }

/* ── Contact list (Need Help) ── */
.hgg-contact-list { display: flex; flex-direction: column; gap: 10px; }
.hgg-contact-row {
	display: flex; align-items: center; gap: 14px;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 16px;
	padding: 14px 16px;
	color: var(--hgg-text) !important;
	-webkit-tap-highlight-color: transparent;
	transition: background .15s ease, border-color .15s ease;
}
.hgg-contact-row:hover { background: rgba(255,255,255,.08); border-color: rgba(227,194,126,.4); }
.hgg-contact-row:active { background: rgba(227,194,126,.12); }
.hgg-contact-icon {
	flex: none;
	width: 42px; height: 42px;
	border-radius: 12px;
	background: rgba(227,194,126,.13);
	border: 1px solid rgba(227,194,126,.22);
	color: var(--hgg-accent);
	display: flex; align-items: center; justify-content: center;
	padding: 10px;
}
.hgg-contact-icon svg { width: 100%; height: 100%; display: block; }
.hgg-contact-copy { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.hgg-contact-copy strong { font-size: 16px; color: #fff; }
.hgg-contact-copy span { font-size: 13.5px; color: var(--hgg-muted); word-break: break-all; }


/* ── Guest Assistant chat ── */
.hgg-chat {
	background: var(--hgg-card);
	border: 1px solid var(--hgg-card-border);
	border-radius: 22px;
	padding: 16px;
	margin-top: 24px;
}
.hgg-chat-log {
	display: flex; flex-direction: column; gap: 10px;
	max-height: 340px; min-height: 90px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	margin-bottom: 14px;
	padding: 4px 2px;
}
.hgg-msg {
	max-width: 86%;
	padding: 11px 15px;
	border-radius: 17px;
	font-size: 15px; line-height: 1.55;
	white-space: pre-line;
	animation: hgg-pop .2s ease;
}
.hgg-msg-bot {
	background: rgba(227,194,126,.14);
	border: 1px solid rgba(227,194,126,.24);
	color: var(--hgg-text);
	align-self: flex-start;
	border-bottom-left-radius: 6px;
}
.hgg-msg-user {
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.1);
	color: #fff;
	align-self: flex-end;
	border-bottom-right-radius: 6px;
}
.hgg-msg-wa {
	align-self: flex-start;
	background: var(--hgg-accent);
	color: #14120e !important;
	font-weight: 700; font-size: 14px;
	border-radius: 999px;
	padding: 10px 18px;
	margin-top: 2px;
	-webkit-tap-highlight-color: transparent;
}
.hgg-chat-chips {
	display: flex; flex-wrap: wrap; gap: 8px;
	margin-bottom: 12px;
}
.hgg-chip {
	background: transparent;
	border: 1px solid rgba(227,194,126,.45);
	color: var(--hgg-accent);
	font-family: var(--hgg-body); font-size: 13.5px; font-weight: 700;
	border-radius: 999px;
	padding: 8px 15px; cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: background .15s ease;
}
.hgg-chip:hover, .hgg-chip:active { background: rgba(227,194,126,.15); }
.hgg-chat-inputrow { display: flex; gap: 10px; }
.hgg-chat-inputrow input {
	flex: 1; min-width: 0;
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 999px;
	padding: 13px 18px;
	color: #fff; font-family: var(--hgg-body); font-size: 15.5px;
	appearance: none; -webkit-appearance: none;
}
.hgg-chat-inputrow input:focus {
	outline: none; border-color: var(--hgg-accent);
	box-shadow: 0 0 0 2px rgba(227,194,126,.22);
}
.hgg-chat-inputrow button {
	flex: none;
	background: var(--hgg-accent); color: #14120e;
	border: none; border-radius: 999px;
	font-family: var(--hgg-body); font-weight: 800; font-size: 15px;
	padding: 13px 22px; cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: filter .15s ease, transform .15s ease;
}
.hgg-chat-inputrow button:hover { filter: brightness(1.07); }
.hgg-chat-inputrow button:active { transform: scale(.96); }

/* ── Breakfast order form ── */
.hgg-bf-form {
	margin-top: 20px;
	padding: 18px 16px 16px;
	background: rgba(227,194,126,.07);
	border: 1px solid rgba(227,194,126,.22);
	border-radius: 18px;
	display: flex; flex-direction: column; gap: 13px;
}
.hgg-bf-title {
	margin: 0;
	font-family: var(--hgg-display);
	font-size: 19px; font-weight: 600; color: #fff;
}
.hgg-bf-form .hgg-field-row { margin: 0; gap: 12px; }
.hgg-bf-btn { margin-top: 4px; }
.hgg-bf-form .hgg-form-hint { margin: 0; }

/* ── Κλείδωμα κύλισης όταν είναι ανοιχτό παράθυρο (χωρίς μετακίνηση) ── */
html.hgg-modal-open, body.hgg-modal-open {
	overflow: hidden !important;
	scroll-behavior: auto !important;
}

/* ── Language switcher ── */
.hgg-lang {
	position: absolute; top: 20px; right: 18px; z-index: 5;
}
.hgg-lang-btn {
	display: inline-flex; align-items: center; gap: 7px;
	background: rgba(20,18,15,.5);
	backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 999px;
	color: #fff; font-family: var(--hgg-body);
	font-size: 14px; font-weight: 700; letter-spacing: .04em;
	padding: 9px 16px; cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: border-color .15s ease, background .15s ease;
}
.hgg-lang-btn:hover { border-color: var(--hgg-accent); }
.hgg-lang-menu {
	position: absolute; top: calc(100% + 8px); right: 0;
	background: #241f18;
	border: 1px solid rgba(227,194,126,.3);
	border-radius: 16px;
	padding: 6px;
	min-width: 170px;
	box-shadow: 0 14px 40px rgba(0,0,0,.55);
	display: flex; flex-direction: column; gap: 2px;
	animation: hgg-pop .18s ease;
}
.hgg-lang-menu[hidden] { display: none; }
.hgg-lang-menu button {
	background: transparent; border: none;
	color: var(--hgg-text); font-family: var(--hgg-body);
	font-size: 15px; font-weight: 600; text-align: left;
	padding: 10px 14px; border-radius: 11px; cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: background .12s ease;
}
.hgg-lang-menu button:hover, .hgg-lang-menu button:active { background: rgba(227,194,126,.14); }

/* ── Wider screens ── */
@media (min-width: 700px) {
	.hgg-book { padding: 56px 48px; }
	.hgg-transfer-banner { padding: 24px 64px 24px 26px; }
	.hgg-lang { top: 26px; right: 26px; }
}
