/* Közös megjelenés: fejléc, modálok, kosár, karusszel, lábléc — index + aloldalak */
:root {
  --bg: #140c0a;
  --bg-deep: #0a0605;
  --bg-mid: #1e1410;
  --nav-bg: rgba(14, 10, 8, 0.94);
  --gold: #c9a86c;
  --gold-mid: #a88452;
  --gold-hover: #dcc598;
  --gold-soft: rgba(201, 168, 108, 0.88);
  --cream: #f3ebe1;
  --muted: rgba(243, 235, 225, 0.62);
  /* Egy soros, felül rögzített átlátszó menüsáv — közelítő magasság a hero / main-offset igazításhoz */
  --header-h: clamp(52px, 10vh, 72px);
  /* Ugyanaz a megjelenítő betű mint a hero főcímnek (pl. „A természetes ragyogásért”) */
  --font-hero: "Cormorant Garamond", Georgia, serif;
  --hero-fallback-bg: #060403;
  /* Nav sáv: erősebb fedés — ne „látszódjon át” a hero kép a menün */
  --nav-bar-bg: rgba(5, 3, 2, 0.92);
  --hero-image: url("images/hero.png");
  --section-blend-h: clamp(56px, 12vh, 140px);
  /* Setmore / külső foglaló iframe kerete (a belső oldal színe nem szerkeszthető) */
  --booking-embed-bg: rgba(5, 3, 2, 0.62);
  --booking-embed-border: rgba(201, 168, 108, 0.22);
  --booking-embed-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  /* pl. none | sepia(0.12) | brightness(0.95) — az egész beágyazott nézetre hat */
  --booking-embed-iframe-filter: none;
  /* Időpontfoglalás (hero + nav) — közös arany színkészlet */
  --btn-booking-grad: linear-gradient(168deg, #f2e6d4 0%, #d4bc94 38%, #b89562 100%);
  --btn-booking-border: 1px solid rgba(232, 212, 176, 0.35);
  --btn-booking-text: #1f120c;
  --btn-booking-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  --btn-booking-shadow-hover: 0 10px 32px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(232, 212, 176, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  /* Foglalás gomb felirat (főoldali hero CTA + nav Időpontfoglalás) — egy tipográfia */
  --btn-booking-label-font: "Jost", system-ui, sans-serif;
  --btn-booking-label-size: clamp(0.78rem, calc(0.35rem + 2.4vmin), 1.02rem);
  --btn-booking-label-tracking: 0.06em;
  --btn-booking-label-weight: 500;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  /* --header-h: JS által a .site-header tényleges magassága (fallback: clamp) */
  scroll-padding-top: calc(var(--header-h) + 10px);
}

body {
  position: relative;
  font-family: var(--font-hero);
  color: var(--cream);
  font-size: clamp(1rem, 2.8vw, 1.125rem);
  line-height: 1.55;
  overflow-x: clip;
  background-color: var(--hero-fallback-bg);
  background-image:
    radial-gradient(ellipse 130% 90% at 78% 18%, rgba(48, 28, 22, 0.36) 0%, transparent 52%),
    radial-gradient(ellipse 90% 70% at 12% 88%, rgba(28, 16, 12, 0.45) 0%, transparent 48%),
    radial-gradient(ellipse 100% 50% at 50% 0%, rgba(40, 22, 18, 0.26) 0%, transparent 45%),
    linear-gradient(168deg, #15100c 0%, #0c0806 38%, #050302 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Betöltő képernyő — csak index.html; első intro után sessionStorage alapján kihagyva — index.html head script: mona-intro-skip */
html.mona-intro-skip #pageLoader {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Betöltő képernyő — csak index.html; #pageLoader; a site-content.js eltünteti, ha a tartalom kész */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse 85% 65% at 50% 38%, rgba(32, 18, 14, 0.98) 0%, transparent 58%),
    radial-gradient(ellipse 70% 50% at 80% 80%, rgba(48, 28, 22, 0.35) 0%, transparent 50%),
    linear-gradient(168deg, #120c0a 0%, #0a0605 45%, #050302 100%);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.page-loader--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  text-align: center;
  max-width: 22rem;
}

.page-loader__text {
  font-family: var(--font-hero);
  font-size: clamp(1.1rem, 3.2vw, 1.45rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-soft);
  letter-spacing: 0.06em;
  line-height: 1.45;
  margin: 0 0 0.65rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  animation: page-loader-text-pulse 2s ease-in-out infinite;
}

.page-loader__pct {
  font-family: "Jost", system-ui, sans-serif;
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin: 0 0 1.25rem;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
  font-variant-numeric: tabular-nums;
}

.page-loader__bar {
  width: min(13rem, 72vw);
  height: 4px;
  margin: 0 auto;
  border-radius: 2px;
  background: rgba(201, 168, 108, 0.12);
  overflow: hidden;
}

.page-loader__bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  min-width: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(201, 168, 108, 0.45) 0%, var(--gold) 50%, rgba(212, 182, 128, 0.95) 100%);
  box-shadow: 0 0 12px rgba(201, 168, 108, 0.35);
  transition: width 0.08s linear;
}

@keyframes page-loader-text-pulse {
  0%,
  100% {
    opacity: 0.82;
  }
  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader__text {
    animation: none;
    opacity: 1;
  }

  .page-loader__bar-fill {
    transition: none;
  }
}

/* Fejléc: külön fix pozíció (lásd .site-header), ne legyen position: relative itt */
body > main,
body > .site-footer {
  position: relative;
  z-index: 1;
}

.btn-gold,
.site-footer .footer-col h4 {
  font-family: "Jost", system-ui, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button.btn-gold {
  -webkit-appearance: none;
  appearance: none;
  font: inherit;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: linear-gradient(180deg, #e4d2b4 0%, var(--gold) 38%, var(--gold-mid) 72%, #7a5538 100%);
  color: #1a0f0c;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow:
    0 2px 0 rgba(0, 0, 0, 0.22),
    0 6px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-gold:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow:
    0 3px 0 rgba(0, 0, 0, 0.2),
    0 10px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-hero-cta {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  padding: 0.75rem 1.85rem;
  font-family: var(--btn-booking-label-font);
  font-size: var(--btn-booking-label-size);
  text-transform: none;
  letter-spacing: var(--btn-booking-label-tracking);
  font-weight: var(--btn-booking-label-weight);
  line-height: 1.2;
  background: var(--btn-booking-grad);
  color: var(--btn-booking-text);
  border: var(--btn-booking-border);
  box-shadow: var(--btn-booking-shadow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.btn-hero-cta:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow: var(--btn-booking-shadow-hover);
}

.site-header .btn-nav-booking.btn-hero-cta:hover {
  transform: none;
  filter: brightness(1.04);
  color: #0a0a0a !important;
  -webkit-text-fill-color: #0a0a0a !important;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(201, 168, 108, 0.12);
  color: var(--cream);
}

.button {
  margin-top: 32px;
}

.btn-gold--compact {
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.site-header .btn-nav-booking.btn-hero-cta {
  /* Felirat: .btn-hero-cta + :root --btn-booking-label-*; csak a fejléc kompakt paddingje */
  padding: 0.4rem 0.8rem;
  color: #0a0a0a !important;
  -webkit-text-fill-color: #0a0a0a !important;
  text-shadow: none;
}

/* Setmore / külső script felülírhatja a gomb színét */
.site-header .btn-nav-booking.btn-hero-cta *,
.site-header .btn-nav-booking.btn-hero-cta::after,
.site-header .btn-nav-booking.btn-hero-cta::before {
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}

/* Navbar: mindig látható görgetéskor (--header-h = magasság, JS szinkron + fallback) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  isolation: isolate;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--nav-bar-bg);
  border: none;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
  padding-top: env(safe-area-inset-top, 0);
}

/* Egy átlátszó menüréteg a lap tetején */
.header-menu-layer {
  position: relative;
  z-index: 3;
  overflow: visible;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.65rem 1.5rem 0.7rem;
  /* A vízszintes görgetés a .nav-icons-on belül történik */
  min-width: 0;
}

.header-menu-layer__panel {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0.1rem 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-icons {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.5rem, 2vw, 1.1rem);
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 168, 108, 0.35) transparent;
  padding-bottom: 2px;
}

/* Bal: menüpontok + foglalás — a maradék szélességet kitölti, az elemek között egyenletes tér */
.nav-strip__primary {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  min-width: min-content;
  justify-content: space-evenly;
  gap: 0.25rem 0.4rem;
  overflow: visible;
  position: relative;
  z-index: 1;
}

/* Jobb: admin / kijelentkezés / kosár / bejelentkezés (+ mobil hamburger a .nav-strip__end-ben) */
.nav-strip__tools {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 0.45rem;
  flex: 0 0 auto;
  padding-inline-start: 0;
  border-inline-start: none;
}

.nav-strip__tools .nav-login-icon {
  margin-left: 0;
}

.nav-strip__end {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.15rem 0.35rem;
  padding-inline-start: 0.35rem;
  border-inline-start: 1px solid rgba(201, 168, 108, 0.22);
}

/* Hamburger: csak mobil / tablet — desktop alatt rejtve */
.nav-mobile-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(201, 168, 108, 0.35);
  border-radius: 3px;
  background: rgba(8, 5, 4, 0.55);
  color: rgba(220, 200, 170, 0.95);
  cursor: pointer;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.nav-mobile-toggle:hover {
  background: rgba(201, 168, 108, 0.12);
  border-color: rgba(201, 168, 108, 0.55);
  color: #e8d4b0;
}

.nav-mobile-toggle:focus-visible {
  outline: 2px solid rgba(201, 168, 108, 0.65);
  outline-offset: 3px;
}

.nav-mobile-toggle__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 4px;
  width: 20px;
  height: 14px;
}

.nav-mobile-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  background: currentColor;
  transition:
    transform 0.28s ease,
    opacity 0.22s ease;
  transform-origin: center;
}

.site-header.nav-mobile--open .nav-mobile-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-mobile--open .nav-mobile-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.nav-mobile--open .nav-mobile-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .nav-mobile-toggle__bar {
    transition: none;
  }
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 0.35rem;
  padding: 0.15rem 0.75rem 0.15rem 0;
  border-right: 1px solid rgba(201, 168, 108, 0.22);
  text-decoration: none;
  color: inherit;
  line-height: 1.12;
  min-width: 0;
}

.nav-brand:hover .nav-brand__logo {
  color: #dcc598;
}

.nav-brand__logo {
  align-self: flex-start;
  font-family: var(--font-hero);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(220, 200, 170, 0.98);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-brand__tagline {
  font-family: "Jost", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 0.12rem;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-icons::-webkit-scrollbar {
  height: 3px;
}

.nav-icons::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 108, 0.35);
  border-radius: 3px;
}

.nav-icon-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  font-family: "Jost", system-ui, sans-serif;
  font-size: clamp(15px, 1.65vw, 18px);
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 700;
  color: rgba(200, 164, 106, 0.92);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  transition: color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.2rem 0.1rem;
}

.nav-icon-link span {
  font-weight: inherit;
}

.nav-icon-link:hover {
  color: #dcc598;
}

.nav-strip__primary .btn-nav-booking {
  flex-shrink: 0;
  white-space: nowrap;
  align-self: center;
}

/* Szolgáltatások legördülő — félkövér címke; panel külön réteg */
.nav-dropdown {
  position: relative;
  align-self: center;
  flex-shrink: 0;
  z-index: 2;
}

.nav-dropdown:hover,
.nav-dropdown:focus-within,
.nav-dropdown.nav-dropdown--open {
  z-index: 50;
}

.nav-dropdown__trigger {
  border: none;
  background: none;
  cursor: pointer;
  margin: 0;
  padding: 0.2rem 0.1rem;
  font-family: "Jost", system-ui, sans-serif;
  font-size: clamp(15px, 1.65vw, 18px);
  letter-spacing: 0.04em;
  font-weight: 700;
  color: rgba(200, 164, 106, 0.92);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  transition: color 0.2s;
}

.nav-dropdown__trigger:hover,
.nav-dropdown__trigger:focus-visible {
  color: #dcc598;
  outline: none;
}

.nav-dropdown__trigger-label {
  font-weight: 700;
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  z-index: 100;
  min-width: 15rem;
  max-width: min(18rem, 92vw);
  isolation: isolate;
  transform: translate3d(0, -6px, 0);
  backface-visibility: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
  background: #2a1610;
  border: 1px solid rgba(200, 164, 106, 0.35);
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel,
.nav-dropdown.nav-dropdown--open .nav-dropdown__panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.nav-dropdown__menu {
  position: relative;
  z-index: 0;
  margin: 0;
  padding: 0.4rem 0;
  list-style: none;
}

.nav-dropdown__item {
  display: block;
  padding: 0.65rem 1.15rem;
  font-family: "Jost", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #c8a46a;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-dropdown__item:hover,
.nav-dropdown__item:focus-visible {
  background: rgba(200, 164, 106, 0.1);
  color: #e8d4b0;
  outline: none;
}

.nav-dropdown__item[aria-current="page"] {
  background: rgba(200, 164, 106, 0.14);
  color: #e8d4b0;
}

.nav-dropdown__menu li + li {
  border-top: 1px solid rgba(200, 164, 106, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .nav-dropdown__panel {
    transition: none;
  }
}

.nav-login-icon {
  font-family: var(--font-hero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(200, 164, 106, 0.92);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
  margin-left: 0.15rem;
}

.nav-login-icon:hover {
  color: #dcc598;
  background: rgba(201, 168, 108, 0.12);
}

.nav-login-icon:focus-visible {
  outline: 2px solid rgba(201, 168, 108, 0.65);
  outline-offset: 2px;
}

.nav-login-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
}

.nav-auth__btn,
.nav-auth__admin {
  font-family: var(--font-hero);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 108, 0.35);
  background: transparent;
  color: rgba(220, 200, 170, 0.95);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.nav-auth__btn:hover,
.nav-auth__admin:hover {
  background: rgba(201, 168, 108, 0.14);
  color: var(--cream);
  border-color: rgba(201, 168, 108, 0.55);
}

.nav-auth__admin {
  border-color: rgba(201, 168, 108, 0.5);
  color: var(--gold);
  font-weight: 500;
}

/* ——— Mobil / tablet: menü a fejléc alatt, a hero fölött (fejléc z-index marad felül) ——— */
.nav-mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  pointer-events: none;
  visibility: hidden;
}

.nav-mobile-panel[hidden] {
  display: none !important;
}

.nav-mobile-panel.nav-mobile-panel--open {
  pointer-events: auto;
  visibility: visible;
}

.nav-mobile-panel__backdrop {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: var(--header-h);
  background: rgba(4, 2, 1, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.nav-mobile-panel--open .nav-mobile-panel__backdrop {
  opacity: 1;
}

.nav-mobile-panel__sheet {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--header-h);
  max-height: calc(100vh - var(--header-h) - env(safe-area-inset-bottom, 0px));
  overflow: hidden auto;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #1a100c 0%, #120a08 52%, #0c0705 100%);
  border-bottom: 1px solid rgba(201, 168, 108, 0.28);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
  transform: translate3d(0, -100%, 0);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-overflow-scrolling: touch;
}

.nav-mobile-panel--open .nav-mobile-panel__sheet {
  transform: translate3d(0, 0, 0);
}

.nav-mobile-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
  padding: 1rem 1.1rem 0.85rem;
  border-bottom: 1px solid rgba(201, 168, 108, 0.15);
}

.nav-mobile-panel__title {
  margin: 0;
  font-family: var(--font-hero);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 212, 176, 0.95);
}

.nav-mobile-panel__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0 0.5rem;
  border: 1px solid rgba(201, 168, 108, 0.35);
  border-radius: 3px;
  background: transparent;
  color: rgba(220, 200, 170, 0.95);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.nav-mobile-panel__close:hover {
  background: rgba(201, 168, 108, 0.1);
  color: #f3e8d8;
}

.nav-mobile-panel__close:focus-visible {
  outline: 2px solid rgba(201, 168, 108, 0.65);
  outline-offset: 2px;
}

.nav-mobile-panel__body {
  padding: 0.5rem 1rem 1.35rem;
  flex: 1;
  min-height: 0;
}

.nav-mobile-panel__section-label {
  margin: 0.75rem 0 0.5rem;
  font-family: "Jost", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201, 168, 108, 0.75);
}

.nav-mobile-panel__section-label:first-child {
  margin-top: 0.25rem;
}

.nav-mobile-subnav,
.nav-mobile-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-mobile-subnav li + li,
.nav-mobile-list li + li {
  border-top: 1px solid rgba(201, 168, 108, 0.1);
}

.nav-mobile-list {
  margin-top: 0.85rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(201, 168, 108, 0.18);
}

.nav-mobile-link {
  display: block;
  padding: 0.85rem 0.35rem;
  font-family: "Jost", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(232, 220, 200, 0.96);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
  border-radius: 4px;
}

.nav-mobile-link:hover {
  background: rgba(201, 168, 108, 0.08);
  color: #fff8ee;
}

.nav-mobile-link:focus-visible {
  outline: 2px solid rgba(201, 168, 108, 0.55);
  outline-offset: 2px;
}

.nav-mobile-link[aria-current="page"] {
  background: rgba(201, 168, 108, 0.12);
  color: #f0e4cc;
}

.nav-mobile-panel__cta {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 168, 108, 0.18);
}

.nav-mobile-panel__cta .btn-nav-booking {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .nav-mobile-panel__backdrop,
  .nav-mobile-panel__sheet {
    transition: none;
  }
}

body.nav-mobile-open {
  overflow: hidden;
}

@media (min-width: 961px) {
  .nav-mobile-toggle {
    display: none !important;
  }

  #navMobilePanel {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .nav-booking--mobile {
    display: none !important;
  }
}

@media (max-width: 960px) {
  .nav-strip__primary {
    display: none !important;
  }

  .nav-mobile-toggle {
    display: inline-flex;
  }

  .nav-icons {
    overflow-x: visible;
    flex-wrap: nowrap;
  }

  .nav-strip__end {
    margin-left: auto;
    border-inline-start: none;
    padding-inline-start: 0;
    gap: 0.2rem 0.25rem;
  }

  .nav-brand {
    margin-right: auto;
  }

  .nav-booking--desktop {
    display: none !important;
  }
}

.login-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.login-modal[hidden] {
  display: none !important;
}

body.login-modal-open {
  overflow: hidden;
}

.login-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 3, 2, 0.72);
  backdrop-filter: blur(6px);
}

.login-modal__box {
  position: relative;
  width: 100%;
  max-width: 380px;
  padding: 1.5rem 1.35rem;
  border-radius: 12px;
  background: linear-gradient(165deg, #241814 0%, #120a08 100%);
  border: 1px solid rgba(201, 168, 108, 0.25);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.login-modal__box h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 1rem;
}

.login-modal__box label {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.login-modal__box input[type="password"] {
  width: 100%;
  padding: 0.55rem 0.65rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(201, 168, 108, 0.3);
  border-radius: 6px;
  background: var(--hero-fallback-bg);
  color: var(--cream);
  font-size: 1rem;
}

.login-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.login-modal__actions button {
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid rgba(201, 168, 108, 0.4);
  background: rgba(201, 168, 108, 0.15);
  color: var(--cream);
}

.login-modal__actions button.primary {
  background: linear-gradient(180deg, #d4b896, #8f6844);
  color: #1a0f0c;
  border-color: transparent;
  font-weight: 600;
}

/* Cookie consent (shell) */
.cookie-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 25000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.cookie-consent-modal[hidden] {
  display: none !important;
}

body.cookie-consent-open {
  overflow: hidden;
}

.cookie-consent-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 3, 2, 0.72);
  backdrop-filter: blur(6px);
}

.cookie-consent-modal__box {
  position: relative;
  width: 100%;
  max-width: 28rem;
  padding: 1.5rem 1.35rem;
  border-radius: 12px;
  background: linear-gradient(165deg, #241814 0%, #120a08 100%);
  border: 1px solid rgba(201, 168, 108, 0.25);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.cookie-consent-modal__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 0.85rem;
}

.cookie-consent-modal__text {
  font-family: "Jost", sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(245, 236, 224, 0.92);
  margin: 0;
}

.cookie-consent-modal__link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent-modal__link:hover {
  color: #e4d4b8;
}

.cookie-consent-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 1.15rem;
}

.cookie-policy {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  text-align: left;
}

.cookie-policy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin: 1.35rem 0 0.45rem;
}

.cookie-policy h2:first-of-type {
  margin-top: 0.5rem;
}

.cookie-policy p,
.cookie-policy li {
  font-family: "Jost", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(245, 236, 224, 0.92);
}

.cookie-policy p {
  margin: 0 0 0.85rem;
}

.cookie-policy ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.cookie-policy a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-policy a:hover {
  color: #e4d4b8;
}

/* Kosárba tétel visszajelzés (carousel / webshop) */
.cart-added-modal {
  position: fixed;
  inset: 0;
  z-index: 19950;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.cart-added-modal[hidden] {
  display: none !important;
}

body.cart-added-modal-open {
  overflow: hidden;
}

.cart-added-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 3, 2, 0.72);
  backdrop-filter: blur(6px);
}

.cart-added-modal__box {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 1.35rem 1.35rem 1.15rem;
  border-radius: 12px;
  background: linear-gradient(165deg, #241814 0%, #120a08 100%);
  border: 1px solid rgba(201, 168, 108, 0.25);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.cart-added-modal__box h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 0.85rem;
}

.cart-added-modal__msg {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--muted);
}

.cart-added-modal__msg strong {
  color: var(--cream);
  font-weight: 600;
}

.cart-added-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.cart-added-modal__actions button {
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  padding: 0.5rem 1.15rem;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  background: linear-gradient(180deg, #d4b896, #8f6844);
  color: #1a0f0c;
  font-weight: 600;
}

.cart-added-modal__actions button:hover {
  filter: brightness(1.05);
}

.cart-btn {
  font-family: var(--font-hero);
  font-weight: 700;
  position: relative;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
}

.cart-btn:hover {
  color: var(--gold);
}

.cart-btn svg {
  width: 22px;
  height: 22px;
  font-family: inherit;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
}

.cart-count {
  font-family: var(--font-hero);
  position: absolute;
  top: -2px;
  right: -4px;
  background: linear-gradient(180deg, #c9a86c, #8f6844);
  color: #1a0f0c;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.cart-modal[hidden] {
  display: none !important;
}

body.cart-modal-open {
  overflow: hidden;
}

.cart-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 3, 2, 0.72);
  backdrop-filter: blur(6px);
}

.cart-modal__box {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: min(90vh, 640px);
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background: linear-gradient(165deg, #241814 0%, #120a08 100%);
  border: 1px solid rgba(201, 168, 108, 0.25);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.cart-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem 0.65rem;
  border-bottom: 1px solid rgba(201, 168, 108, 0.15);
  flex-shrink: 0;
}

.cart-modal__head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
}

.cart-modal__close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 108, 0.35);
  background: rgba(12, 7, 6, 0.9);
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.cart-modal__close:hover {
  background: rgba(201, 168, 108, 0.12);
  color: var(--cream);
}

.cart-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 0.65rem 1.1rem 0.5rem;
  min-height: 100px;
}

.cart-modal__empty {
  margin: 0;
  text-align: center;
  color: var(--muted);
  padding: 1.75rem 0.5rem;
  font-size: 0.95rem;
}

.cart-modal__item {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 168, 108, 0.1);
}

.cart-modal__item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.cart-modal__item-name {
  font-weight: 600;
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.35;
}

.cart-modal__item-line-sum {
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.cart-modal__item-bot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
}

.cart-modal__item-unit {
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
}

.cart-modal__qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cart-modal__qty button {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(201, 168, 108, 0.4);
  background: rgba(12, 7, 6, 0.9);
  color: var(--gold);
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  padding: 0;
}

.cart-modal__qty button:hover {
  background: rgba(201, 168, 108, 0.15);
}

.cart-qty-val {
  min-width: 1.75rem;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  color: var(--cream);
}

.cart-modal__foot {
  flex-shrink: 0;
  padding: 0.85rem 1.1rem 1.1rem;
  border-top: 1px solid rgba(201, 168, 108, 0.2);
  background: rgba(0, 0, 0, 0.22);
}

.cart-modal__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201, 168, 108, 0.12);
}

.cart-modal__expiry {
  margin: 0;
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted);
  flex: 1 1 10rem;
  min-width: 0;
}

.cart-modal__clear-all {
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 108, 0.45);
  background: rgba(180, 80, 70, 0.2);
  color: rgba(240, 210, 200, 0.95);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.cart-modal__clear-all:hover {
  background: rgba(200, 90, 80, 0.28);
  border-color: rgba(220, 140, 120, 0.55);
  color: var(--cream);
}

.cart-modal__tot-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-family: "Jost", sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0.35rem 0;
}

.cart-modal__tot-row span:last-child {
  color: var(--cream);
  font-weight: 500;
  text-align: right;
}

.cart-modal__rule {
  height: 1px;
  background: rgba(201, 168, 108, 0.28);
  margin: 0.65rem 0 0.5rem;
}

.cart-modal__tot-row--grand {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-top: 0.25rem;
}

.cart-modal__tot-row--grand span:last-child {
  color: var(--gold);
  font-weight: 700;
}

.cart-modal__checkout-btn {
  display: block;
  width: 100%;
  margin-top: 1rem;
  text-align: center;
  text-decoration: none;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
}

.main-offset {
  padding-top: 0;
  background-color: var(--hero-fallback-bg);
}

/* Főoldal: mint az aloldal — <main> padding 0; a nav + fekete sáv terét csak a .hero kapja (site-home.css) */
main.main-offset--home {
  padding-top: 0;
}

/* Fix navbar: aloldalakon / webshop első szekció — tér a fejlécnek */
main.main-offset > :first-child:not(.hero) {
  padding-top: var(--header-h);
}

main.main-offset > :first-child.webshop--standalone {
  padding-top: calc(var(--header-h) + clamp(2.25rem, 5vw, 3.5rem));
}

.subpage-main {
  padding-bottom: 4rem;
  min-height: 50vh;
}

.subpage-intro {
  max-width: 46rem;
  margin: -1rem auto 2.25rem;
  text-align: center;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.65;
  white-space: pre-line;
}

.webshop--standalone {
  margin-top: 0;
}

/*
 * Setmore / külső foglaló iframe (booking.setmoreEmbedUrl).
 * Belső tartalom színezése nem lehetséges — keret: --booking-embed-*, opcionális filter: --booking-embed-iframe-filter.
 */
.booking-embed {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--booking-embed-border);
  background: var(--booking-embed-bg);
  box-shadow: var(--booking-embed-shadow);
}

.booking-embed iframe {
  display: block;
  width: 100%;
  height: min(720px, 82vh);
  min-height: 520px;
  border: 0;
  filter: var(--booking-embed-iframe-filter);
}

@media (max-width: 768px) {
  .booking-embed iframe {
    min-height: 480px;
    height: min(680px, 78vh);
  }
}

.subpage-services {
  padding-bottom: 3rem;
  background: linear-gradient(180deg, rgba(28, 18, 14, 0.55) 0%, rgba(12, 7, 6, 0.2) 45%, transparent 72%);
}

.webshop {
  position: relative;
  margin-top: -1px;
  padding: clamp(3.5rem, 7vw, 5rem) 0 4rem;
  border-top: none;
  background:
    linear-gradient(
      180deg,
      var(--hero-fallback-bg) 0%,
      rgba(14, 9, 7, 0.65) 38%,
      transparent 100%
    )
      0 0 / 100% var(--section-blend-h) no-repeat,
    linear-gradient(
      0deg,
      #0a0705 0%,
      rgba(14, 9, 7, 0.5) 52%,
      transparent 100%
    )
      0 100% / 100% var(--section-blend-h) no-repeat,
    radial-gradient(ellipse 100% 55% at 50% 0%, rgba(48, 28, 22, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, #100a08 0%, #0a0705 52%, var(--hero-fallback-bg) 100%);
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.subpage-services .section-title {
  margin-bottom: 1.75rem;
}

.carousel-wrap {
  position: relative;
  margin-bottom: 2rem;
}

.carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 0.5rem 0 1.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x pinch-zoom;
  overscroll-behavior-x: contain;
}

.carousel::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.product-card {
  flex: 0 0 min(260px, 86vw);
  min-width: 0;
  scroll-snap-align: start;
  background: linear-gradient(165deg, rgba(24, 14, 11, 0.82) 0%, rgba(10, 6, 5, 0.92) 100%);
  border: 1px solid rgba(201, 168, 108, 0.16);
  border-radius: 4px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
}

@media (min-width: 520px) {
  .product-card {
    flex: 0 0 calc((100% - 1 * 1.25rem) / 2);
  }
}

@media (min-width: 720px) {
  .product-card {
    flex: 0 0 calc((100% - 2 * 1.25rem) / 3);
  }
}

@media (min-width: 960px) {
  .product-card {
    flex: 0 0 calc((100% - 3 * 1.25rem) / 4);
  }
}

@media (min-width: 1200px) {
  .product-card {
    flex: 0 0 calc((100% - 4 * 1.25rem) / 5);
  }
}

@media (min-width: 1440px) {
  .product-card {
    flex: 0 0 calc((100% - 5 * 1.25rem) / 6);
  }
}

.product-card__img-wrap {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(201, 168, 108, 0.1), rgba(24, 14, 11, 0.92));
  flex-shrink: 0;
}

.product-card__img-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 239, 230, 0.35);
  font-size: 0.9rem;
  font-style: italic;
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
}

.product-card__desc {
  font-family: "Jost", system-ui, sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  flex: 1 1 auto;
}

.product-card .price {
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 600;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: -0.5rem;
}

.carousel-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}

.carousel-nav button:hover {
  background: var(--gold);
  color: var(--bg);
}

@media (max-width: 900px) {
  .header-menu-layer {
    padding: 0.55rem 1rem 0.6rem;
  }
}

@media (max-width: 720px) {
  .nav-brand {
    margin-right: 0.2rem;
    padding-right: 0.5rem;
  }

  .nav-brand__tagline {
    display: none;
  }

  .nav-icon-link {
    padding: 0.35rem 0.25rem;
    font-size: clamp(14px, 3.8vw, 16px);
  }

  .site-header .btn-nav-booking.btn-hero-cta {
    padding: 0.35rem 0.55rem;
  }
}

@media (max-width: 480px) {
  .section-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Lábléc (főoldal; stílus minden oldalon betöltve — üres HTML esetén nincs hatás) */
.site-footer {
  background:
    linear-gradient(
      180deg,
      var(--hero-fallback-bg) 0%,
      rgba(12, 8, 6, 0.52) 48%,
      transparent 100%
    )
      0 0 / 100% var(--section-blend-h) no-repeat,
    linear-gradient(180deg, rgba(8, 5, 4, 0.38) 0%, rgba(10, 7, 5, 0.1) 28%, transparent 52px),
    radial-gradient(ellipse 60% 80% at 80% 100%, rgba(32, 18, 14, 0.28) 0%, transparent 50%),
    linear-gradient(180deg, #0a0705 0%, #050302 100%);
  border-top: none;
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col .footer-logo {
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.footer-col p,
.footer-col a,
.footer-col button.footer-nav-link {
  color: var(--muted);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.4rem;
}

.footer-col button.footer-nav-link {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-col a:hover,
.footer-col button.footer-nav-link:hover {
  color: var(--gold);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.4rem;
}

/* Nyitvatartás: sorok listaként, felsorolási pont nélkül */
.footer-hours {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-col ul.footer-hours li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
  list-style: none;
}

.footer-bottom-bar {
  width: 100%;
  border-top: 1px solid rgba(201, 168, 108, 0.12);
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  text-align: center;
  font-family: "Jost", system-ui, sans-serif;
  font-size: 0.82rem;
  color: rgba(245, 239, 230, 0.4);
}

.footer-bottom-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom-bar__sep {
  opacity: 0.4;
}

.footer-bottom-bar__link {
  color: rgba(201, 168, 108, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom-bar__link:hover {
  color: var(--cream);
}

.footer-bottom-bar__version {
  opacity: 0.5;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

section[id] {
  scroll-margin-top: 1rem;
}

/* Tartalom: webshop.enabled === false — főoldali szekció, nav és lábléc Webshop linkek */
body.mona-webshop-off #webshop {
  display: none !important;
}

body.mona-webshop-off a.nav-icon-link[href="webshop.html"],
body.mona-webshop-off #navMobilePanel a.nav-mobile-link[href="webshop.html"] {
  display: none !important;
}

body.mona-webshop-off li:has(> a[href="webshop.html"]),
body.mona-webshop-off li:has(> a[href="#webshop"]) {
  display: none;
}

/* ── Checkout / Pénztár ─────────────────────────────────────── */

.checkout {
  padding-top: calc(var(--header-h, 72px) + clamp(1.5rem, 4vw, 3rem));
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.checkout__heading {
  font-family: var(--font-hero);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin: 0 0 0.75rem;
}

.checkout__line {
  width: clamp(3rem, 6vw, 4rem);
  height: 1px;
  background: rgba(201, 168, 108, 0.45);
  margin: 0 auto 2.5rem;
}

.checkout__empty {
  text-align: center;
  padding: 3rem 1rem;
}

.checkout__empty p {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.checkout__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.checkout__section-title {
  font-family: var(--font-hero);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
}

.checkout__section-title--ship {
  margin-top: 1.75rem;
}

.checkout-form__group {
  margin-bottom: 1rem;
}

.checkout-form__group label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.checkout-form__req {
  color: var(--gold);
}

.checkout-form__group input,
.checkout-form__group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--cream);
  background: rgba(20, 12, 10, 0.7);
  border: 1px solid rgba(201, 168, 108, 0.25);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.checkout-form__group input:focus,
.checkout-form__group textarea:focus {
  border-color: var(--gold);
}

.checkout-form__group input.is-invalid,
.checkout-form__group textarea.is-invalid {
  border-color: #c05050;
}

.checkout-form__group textarea {
  resize: vertical;
  min-height: 70px;
}

.checkout-form__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
}

.checkout-form__submit {
  margin-top: 1.25rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 1.05rem;
}

.checkout-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  filter: grayscale(0.4);
}

.checkout-form__error {
  margin: 0.75rem 0 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: #e07070;
  text-align: center;
}

/* Summary (jobb oldal) */

.checkout__summary-col {
  position: sticky;
  top: calc(var(--header-h, 72px) + 1.5rem);
  border: 1px solid rgba(201, 168, 108, 0.2);
  border-radius: 8px;
  background: rgba(201, 168, 108, 0.04);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.checkout-summary__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.checkout-summary__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(201, 168, 108, 0.1);
}

.checkout-summary__item-name {
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  color: var(--cream);
  line-height: 1.35;
}

.checkout-summary__item-qty {
  font-size: 0.82rem;
  color: var(--muted);
}

.checkout-summary__item-breakdown {
  display: flex;
  justify-content: flex-end;
  gap: 1.25rem;
  padding: 0.2rem 0 0.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  color: rgba(201, 168, 108, 0.55);
  border-bottom: 1px solid rgba(201, 168, 108, 0.06);
}

.checkout-summary__item-price {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.checkout-summary__totals {
  margin-top: 0.75rem;
}

.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
}

.checkout-summary__row--grand {
  padding-top: 0.65rem;
  margin-top: 0.35rem;
  border-top: 1px solid rgba(201, 168, 108, 0.25);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
}

.checkout-summary__row--grand span:last-child {
  color: var(--gold);
}

/* Sikeres rendelés */

.checkout__success {
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem) 1rem;
}

.checkout__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: var(--gold);
}

.checkout__success-title {
  font-family: var(--font-hero);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.checkout__success-text {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto 1.75rem;
}

.checkout__info-box {
  border: 1px solid rgba(201, 168, 108, 0.25);
  border-radius: 6px;
  background: rgba(201, 168, 108, 0.05);
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1.25rem, 3vw, 2rem);
  text-align: center;
  margin-top: 2.5rem;
}

.checkout__info-box p {
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 860px) {
  .checkout__grid {
    grid-template-columns: 1fr;
  }
  .checkout__summary-col {
    position: static;
    order: -1;
  }
}

@media (max-width: 480px) {
  .checkout-form__row {
    grid-template-columns: 1fr;
  }
}
