:root {
  --bg: #090406;
  --bg2: #13070a;
  --panel: rgba(25, 10, 13, .72);
  --panel2: rgba(42, 15, 20, .82);
  --gold: #d8b568;
  --gold2: #f4d996;
  --wine: #7b1027;
  --wine2: #a31d38;
  --text: #fff8e9;
  --muted: rgba(255, 248, 233, .68);
  --line: rgba(244, 217, 150, .18);
  --shadow: 0 28px 80px rgba(0, 0, 0, .5);
  --radius: 26px;
  --radius-sm: 16px;
  --serif: Cinzel, Georgia, serif;
  --sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 20% 0%, rgba(142, 19, 45, .34), transparent 34rem),
    radial-gradient(circle at 90% 12%, rgba(216, 181, 104, .13), transparent 24rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 48%, #070304 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; }
img { display: block; max-width: 100%; }

.bg-orb {
  pointer-events: none;
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  filter: blur(48px);
  opacity: .62;
}
.orb-a { width: 320px; height: 320px; left: -120px; top: 170px; background: rgba(123, 16, 39, .45); }
.orb-b { width: 260px; height: 260px; right: -80px; top: 72px; background: rgba(216, 181, 104, .18); }
.stars {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: .22;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.4) 1px, transparent 1.2px),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 120px 120px, 42px 42px, 42px 42px;
  mask-image: radial-gradient(circle at 50% 18%, black, transparent 82%);
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 40;
  width: min(1100px, calc(100% - 24px));
  margin: 12px auto 0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 5, 7, .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}
.logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #19090c;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  box-shadow: 0 0 34px rgba(216, 181, 104, .24);
}
.logo strong {
  display: block;
  color: var(--gold2);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.logo small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 3px;
}
.nav a, .admin-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: .18s ease;
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.admin-pill { color: var(--gold2) !important; border: 1px solid rgba(216,181,104,.22); }
.menu-btn { display: none; }

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 46px;
  padding: 72px 0 58px;
}
.kicker {
  margin: 0 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.kicker span {
  width: 34px;
  height: 1px;
  background: var(--gold);
}
h1, h2, h3 { margin: 0; }
h1, h2 { font-family: var(--serif); letter-spacing: -.035em; line-height: 1.02; }
.hero h1 { font-size: clamp(42px, 7vw, 80px); max-width: 780px; }
.lead {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform .18s ease, filter .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #17080b;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  box-shadow: 0 16px 42px rgba(216,181,104,.18);
}
.btn-soft {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
}
.full-btn { width: 100%; }

.mystic-card,
.booking-card,
.contact-card,
.admin-card,
.login-card,
.admin-side {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel2), rgba(13,6,8,.78));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.mystic-card {
  position: relative;
  min-height: 430px;
  padding: 34px;
  border-radius: var(--radius);
  overflow: hidden;
}
.mystic-card:before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(216,181,104,.13);
  border-radius: 22px;
}
.moon {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  margin-left: auto;
  border-radius: 50%;
  font-size: 58px;
  color: var(--gold2);
  background: radial-gradient(circle, rgba(216,181,104,.2), rgba(123,16,39,.08));
  box-shadow: inset 0 0 28px rgba(216,181,104,.12), 0 0 55px rgba(216,181,104,.08);
}
.mystic-card h2 { margin-top: 72px; font-size: 34px; }
.mystic-card p { margin: 12px 0 0; color: var(--muted); line-height: 1.65; }
.mini-points { display: grid; gap: 10px; margin-top: 26px; }
.mini-points span {
  padding: 12px 13px;
  border-radius: 999px;
  border: 1px solid rgba(216,181,104,.16);
  background: rgba(255,255,255,.045);
  color: var(--muted);
  font-size: 14px;
}

.section { padding: 56px 0; }
.compact-section { padding-top: 26px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}
.section-head h2, .booking-intro h2, .contact-card h2 { font-size: clamp(34px, 5vw, 56px); }
.section-head p:not(.kicker), .booking-intro p, .legal { color: var(--muted); line-height: 1.65; max-width: 560px; margin: 10px 0 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.service-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(18, 8, 11, .66);
  box-shadow: 0 18px 52px rgba(0,0,0,.22);
}
.service-card:hover { border-color: rgba(216,181,104,.34); }
.service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 14px;
  color: var(--gold2);
  background: rgba(216,181,104,.1);
}
.service-card h3 { font-size: 16px; line-height: 1.25; }
.service-card p { margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.price-row {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.price-row strong { color: var(--gold2); font-size: 19px; }
.price-row span { color: var(--muted); font-weight: 800; }
.price-photo-wrap {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  overflow: hidden;
}
.price-photo-wrap summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--gold2);
  font-weight: 900;
}
.price-photo-wrap img { width: 100%; max-height: 640px; object-fit: contain; background: rgba(0,0,0,.28); }

.booking-card {
  border-radius: var(--radius);
  padding: 26px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 28px;
}
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
label { display: grid; gap: 8px; }
label span {
  color: var(--gold2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(244,217,150,.17);
  border-radius: 14px;
  outline: none;
  color: var(--text);
  background: rgba(5, 3, 4, .55);
}
textarea { resize: vertical; min-height: 86px; }
input:focus, select:focus, textarea:focus { border-color: rgba(244,217,150,.48); box-shadow: 0 0 0 4px rgba(216,181,104,.08); }
option { color: #13070a; }
.wide { grid-column: 1 / -1; }
.form-footer {
  margin-top: 4px;
  padding: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(244,217,150,.15);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}
.form-footer small { display: block; color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.form-footer strong { display: block; margin-top: 2px; color: var(--gold2); font-size: 26px; }

.contact-section { padding-bottom: 34px; }
.contact-card {
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.contact-links a {
  min-height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold2);
  background: rgba(255,255,255,.04);
  font-weight: 900;
}
.legal { margin: 14px auto 0; text-align: center; font-size: 13px; }
.footer {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.modal { position: fixed; inset: 0; z-index: 80; display: none; place-items: center; padding: 16px; }
.modal.show { display: grid; }
.modal-bg { position: absolute; inset: 0; background: rgba(0,0,0,.72); backdrop-filter: blur(10px); }
.modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(37,14,18,.96), rgba(12,5,7,.96));
  box-shadow: var(--shadow);
}
.modal-card h2 { font-size: 38px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text);
  background: rgba(255,255,255,.08);
  font-size: 24px;
}
.confirm-box {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.confirm-box div {
  padding: 12px;
  border: 1px solid rgba(244,217,150,.13);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: var(--muted);
}
.confirm-box strong { color: var(--text); }

/* Admin */
.admin-page { min-height: 100vh; }
.admin-shell { position: relative; z-index: 1; width: min(1180px, calc(100% - 24px)); margin: 0 auto; padding: 26px 0; }
.login-card {
  width: min(430px, 100%);
  margin: 7vh auto 0;
  padding: 28px;
  border-radius: var(--radius);
  text-align: center;
}
.logo-center { justify-content: center; margin-bottom: 20px; }
.login-card h1, .admin-top h1 { font-size: 42px; }
.login-card p, .login-card small { color: var(--muted); line-height: 1.6; }
.login-form { display: grid; gap: 13px; margin: 24px 0 12px; text-align: left; }
.hidden { display: none !important; }
.admin-panel { display: grid; grid-template-columns: 270px 1fr; gap: 18px; align-items: start; }
.admin-side {
  position: sticky;
  top: 18px;
  border-radius: 24px;
  padding: 16px;
}
.admin-tabs { display: grid; gap: 8px; margin: 26px 0; }
.admin-tabs button {
  cursor: pointer;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255,255,255,.045);
  text-align: left;
  font-weight: 900;
}
.admin-tabs button.active { color: #17080b; background: linear-gradient(135deg, var(--gold2), var(--gold)); }
.admin-main { min-width: 0; }
.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.admin-card {
  border-radius: 24px;
  padding: 22px;
}
.admin-card h2 { font-size: 28px; }
.admin-card-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 16px; }
.reservation-list { display: grid; gap: 12px; }
.reservation-item {
  padding: 14px;
  border: 1px solid rgba(244,217,150,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}
.reservation-item h3 { margin: 0 0 5px; font-size: 16px; }
.reservation-item p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.reservation-item select { min-width: 150px; }
.empty { color: var(--muted); padding: 18px; border: 1px dashed var(--line); border-radius: 18px; }
.services-editor, .settings-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.service-edit {
  padding: 14px;
  border: 1px solid rgba(244,217,150,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  display: grid;
  grid-template-columns: 1fr 100px 100px;
  gap: 10px;
  align-items: end;
}
.service-edit .service-name { grid-column: 1 / -1; }
.toast {
  position: fixed;
  z-index: 100;
  right: 18px;
  bottom: 18px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(12,5,7,.9);
  box-shadow: 0 16px 46px rgba(0,0,0,.36);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: .2s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 940px) {
  .topbar { border-radius: 24px; align-items: flex-start; }
  .menu-btn {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--text);
    background: rgba(255,255,255,.07);
    cursor: pointer;
  }
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(10, 5, 7, .94);
    box-shadow: 0 18px 48px rgba(0,0,0,.34);
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; justify-content: center; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 54px 0 34px; gap: 26px; }
  .mystic-card { min-height: 260px; }
  .mystic-card h2 { margin-top: 34px; }
  .section-head { display: block; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-card { grid-template-columns: 1fr; }
  .contact-card { display: grid; }
  .contact-links { justify-content: flex-start; }
  .admin-panel { grid-template-columns: 1fr; }
  .admin-side { position: relative; top: auto; }
  .admin-tabs { grid-template-columns: repeat(3, 1fr); }
  .admin-tabs button { text-align: center; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 22px, 1100px); }
  .topbar { width: min(100% - 16px, 1100px); top: 8px; margin-top: 8px; padding: 9px; }
  .logo-mark { width: 38px; height: 38px; }
  .logo strong { font-size: 14px; }
  .logo small { font-size: 10px; }
  .hero { padding-top: 42px; }
  .hero h1 { font-size: clamp(38px, 13vw, 54px); }
  .lead { font-size: 16px; line-height: 1.65; }
  .hero-actions .btn { width: 100%; }
  .mystic-card, .booking-card, .contact-card, .admin-card, .login-card { padding: 18px; border-radius: 22px; }
  .mystic-card { min-height: 230px; }
  .moon { width: 82px; height: 82px; font-size: 46px; }
  .section { padding: 38px 0; }
  .section-head h2, .booking-intro h2, .contact-card h2 { font-size: 38px; }
  .services-grid { grid-template-columns: 1fr; gap: 10px; }
  .service-card { min-height: auto; }
  .booking-form { grid-template-columns: 1fr; }
  .wide { grid-column: auto; }
  .form-footer { display: grid; }
  .form-footer .btn { width: 100%; }
  .contact-links { display: grid; grid-template-columns: 1fr 1fr; }
  .contact-links a { justify-content: center; font-size: 13px; }
  .footer { display: grid; text-align: center; padding-bottom: 26px; }
  .modal-card { padding: 20px; }
  .admin-shell { width: min(100% - 18px, 1180px); padding: 12px 0; }
  .admin-top { display: grid; }
  .admin-top .btn { width: 100%; }
  .admin-tabs { grid-template-columns: 1fr; }
  .reservation-item { grid-template-columns: 1fr; }
  .reservation-item select { width: 100%; }
  .services-editor, .settings-form, .service-edit { grid-template-columns: 1fr; }
  .service-edit .service-name { grid-column: auto; }
}


/* Photo-first cenník section */
.small-head { margin-bottom: 18px; }
.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: stretch;
}
.extra-price-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(244,217,150,.22);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(216,181,104,.18), transparent 42%),
    linear-gradient(180deg, rgba(42,15,20,.74), rgba(12,5,7,.86));
  box-shadow: 0 26px 76px rgba(0,0,0,.32);
}
.extra-price-card:before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(216,181,104,.12);
  border-radius: 20px;
  pointer-events: none;
}
.extra-price-card h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}
.extra-price-row {
  margin-top: 18px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.extra-price-row strong {
  color: var(--gold2);
  font-size: 34px;
  line-height: 1;
}
.extra-price-row em {
  color: var(--muted);
  font-style: normal;
  font-size: 22px;
  font-weight: 900;
}
.extra-price-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.price-photo-card {
  position: relative;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(244,217,150,.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216,181,104,.18), transparent 34%),
    linear-gradient(180deg, rgba(42,15,20,.72), rgba(12,5,7,.82));
  box-shadow: 0 30px 90px rgba(0,0,0,.42), 0 0 0 1px rgba(255,255,255,.025) inset;
}
.price-photo-card:before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(216,181,104,.12);
  border-radius: 22px;
  pointer-events: none;
  z-index: 2;
}
.price-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -100px;
  border-radius: 999px;
  background: rgba(216,181,104,.18);
  filter: blur(42px);
  pointer-events: none;
}
.price-photo-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  border-radius: 20px;
  background: rgba(0,0,0,.22);
}

@media (max-width: 820px) {
  .price-layout { grid-template-columns: 1fr; }
  .extra-price-card { min-height: 0; padding: 20px; border-radius: 22px; }
}
@media (max-width: 640px) {
  .small-head { margin-bottom: 14px; }
  .price-layout { gap: 12px; }
  .price-photo-card {
    padding: 7px;
    border-radius: 22px;
    margin-left: -2px;
    margin-right: -2px;
  }
  .price-photo-card:before { inset: 7px; border-radius: 16px; }
  .price-photo-card img { border-radius: 15px; max-height: none; }
}


/* Payment-first reservation demo */
.date-input-wrap {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 8px;
}
.date-input-wrap input { min-width: 0; }
.calendar-btn {
  min-height: 48px;
  border: 1px solid rgba(244,217,150,.17);
  border-radius: 14px;
  color: var(--gold2);
  background: rgba(255,255,255,.055);
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}
.calendar-btn:active { transform: translateY(1px); }
.payment-actions {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.payment-actions .btn { width: 100%; }
.payment-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
@media (max-width: 640px) {
  .date-input-wrap { grid-template-columns: 1fr 46px; }
  .payment-actions { grid-template-columns: 1fr; }
  .modal-card h2 { font-size: 32px; }
}

/* Live PHP additions + exact demo polish */
.logo-img,
.logo-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(244,217,150,.35);
  box-shadow: 0 0 34px rgba(216,181,104,.20);
}
.logo-orb {
  width: min(260px, 70vw);
  aspect-ratio: 1;
  margin-left: auto;
  border-radius: 999px;
  padding: 7px;
  background: linear-gradient(135deg, rgba(244,217,150,.55), rgba(123,16,39,.45));
  box-shadow: 0 0 70px rgba(123,16,39,.32), 0 0 36px rgba(216,181,104,.12);
}
.logo-orb img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; border: 1px solid rgba(255,255,255,.10); }
.moon { display:none; }
.mystic-card h2 { margin-top: 24px; }
.btn.primary, .btn-primary { color: #17080b; background: linear-gradient(135deg, var(--gold2), var(--gold)); box-shadow: 0 16px 42px rgba(216,181,104,.18); }
.btn.ghost, .btn-soft { color: var(--text); border: 1px solid var(--line); background: rgba(255,255,255,.055); }
.btn.full { width:100%; }
button.btn { font: inherit; }
.eyebrow { margin: 0 0 13px; display: inline-flex; align-items: center; gap: 10px; color: var(--gold2); font-size: 12px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow:before { content:""; width:34px; height:1px; background:var(--gold); }
.field-title { display:block; color:var(--gold2); font-size:12px; font-weight:900; letter-spacing:.08em; text-transform:uppercase; margin-bottom:8px; }
.hp { position:absolute !important; left:-9999px !important; width:1px !important; height:1px !important; opacity:0 !important; pointer-events:none !important; }
.trust-strip { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.trust-strip span { padding:9px 11px; border:1px solid rgba(244,217,150,.15); border-radius:999px; color:var(--gold2); background:rgba(255,255,255,.04); font-size:12px; font-weight:900; }
.time-status { min-height:48px; display:flex; align-items:center; padding:12px 13px; border:1px solid rgba(244,217,150,.17); border-radius:14px; color:var(--muted); background:rgba(5,3,4,.38); font-size:14px; }
.time-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:8px; margin-top:-3px; }
.time-btn { min-height:42px; padding:0 10px; border-radius:13px; cursor:pointer; color:var(--text); border:1px solid rgba(244,217,150,.15); background:rgba(255,255,255,.05); font-weight:900; }
.time-btn:hover:not(:disabled), .time-btn.selected { color:#17080b; border-color:transparent; background:linear-gradient(135deg,var(--gold2),var(--gold)); }
.time-btn:disabled { cursor:not-allowed; opacity:.45; color:rgba(255,248,233,.38); background:rgba(123,16,39,.20); text-decoration:line-through; }
.consent { grid-template-columns:22px 1fr; align-items:start; gap:10px; color:var(--muted); font-size:13px; line-height:1.5; }
.consent input { min-height:auto; width:18px; height:18px; margin-top:1px; accent-color:#d8b568; }
.consent span { color:var(--muted); font-size:13px; line-height:1.55; letter-spacing:0; text-transform:none; font-weight:600; }
.consent a { color:var(--gold2); text-decoration:underline; text-underline-offset:3px; }
.form-message { min-height:22px; color:var(--gold2); font-weight:800; line-height:1.45; }
.form-message.error { color:#ff8f9e; }
.contact-card p { margin:10px 0 0; color:var(--muted); line-height:1.6; }
.contact-links a svg { width:19px; height:19px; margin-right:8px; fill:currentColor; }
.footer a { color: var(--gold2); }
.modal.open, .modal.show { display:grid; }
.modal { align-items:center; justify-items:center; }
.modal-bg { position:absolute; inset:0; background:rgba(0,0,0,.72); backdrop-filter:blur(10px); }
.payment-summary { color:var(--muted); line-height:1.6; }
.payment-box { margin-top:14px; border:1px solid rgba(244,217,150,.13); border-radius:18px; overflow:hidden; background:rgba(255,255,255,.04); }
.payment-box dl { margin:0; display:grid; }
.payment-box dl div { display:grid; grid-template-columns:132px 1fr; gap:10px; padding:11px 13px; border-bottom:1px solid rgba(244,217,150,.11); }
.payment-box dl div:last-child { border-bottom:0; }
.payment-box dt { color:var(--gold2); font-size:12px; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
.payment-box dd { margin:0; color:var(--text); overflow-wrap:anywhere; font-weight:800; }
.legal-card { position:relative; z-index:1; width:min(900px, calc(100% - 32px)); margin:36px auto; padding:clamp(20px,4vw,36px); border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(180deg,var(--panel2),rgba(13,6,8,.78)); box-shadow:var(--shadow); }
.legal-card h1 { font-size:clamp(36px,7vw,62px); }
.legal-card h2 { margin-top:28px; font-size:clamp(24px,4vw,34px); }
.legal-card p, .legal-card li { color:var(--muted); line-height:1.75; }
@media (max-width: 940px) {
  .logo-orb { margin: 0 auto; }
  .time-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
}
@media (max-width: 640px) {
  body { background: radial-gradient(circle at 20% 0%, rgba(142,19,45,.38), transparent 22rem), linear-gradient(180deg, var(--bg) 0%, var(--bg2) 52%, #070304 100%); }
  .logo-img { width:38px; height:38px; flex-basis:38px; }
  .logo-orb { width:min(230px, 78vw); }
  .mystic-card h2 { margin-top:18px; }
  .time-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:7px; }
  .payment-box dl div { grid-template-columns:1fr; gap:4px; }
  .payment-actions { grid-template-columns:1fr; }
  .contact-links { grid-template-columns:1fr; }
  .contact-links a { width:100%; }
}

/* Floating WhatsApp live chat */
.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .01em;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 18px 48px rgba(0,0,0,.38), 0 0 0 1px rgba(255,255,255,.15) inset;
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 22px 58px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.18) inset;
}
.whatsapp-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.16);
}
.whatsapp-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}
.whatsapp-text { white-space: nowrap; }
@media (max-width: 640px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 8px 13px 8px 8px;
  }
  .whatsapp-icon { width: 35px; height: 35px; }
  .whatsapp-text { font-size: 13px; }
}

/* Reviews / references section */
.reviews-section { padding-top: 34px; }
.reviews-grid {
  display: grid;
  grid-template-columns: 1.25fr .875fr .875fr;
  gap: 14px;
}
.review-card {
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(244,217,150,.17);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(42,15,20,.68), rgba(12,5,7,.76));
  box-shadow: 0 22px 60px rgba(0,0,0,.26);
}
.review-card h3 { font-size: 22px; margin: 8px 0 8px; color: var(--gold2); }
.review-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.review-card strong { display:block; margin-top: 16px; color: var(--text); }
.review-stars { color: var(--gold2); letter-spacing: .12em; font-weight: 900; }
.review-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(244,217,150,.18);
  border-radius: 999px;
  color: var(--gold2);
  background: rgba(255,255,255,.04);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.featured-review { position: relative; overflow: hidden; }
.featured-review:after {
  content:"";
  position:absolute;
  right:-55px;
  top:-70px;
  width:190px;
  height:190px;
  border-radius:999px;
  background: rgba(216,181,104,.13);
  filter: blur(30px);
}
@media (max-width: 940px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { min-height: auto; }
}


/* Strong visible reviews block */
.reviews-hero-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  margin-bottom: 18px;
  border: 1px solid rgba(244,217,150,.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 15% 10%, rgba(153,35,55,.28), transparent 34%),
    linear-gradient(135deg, rgba(33,12,16,.88), rgba(10,4,7,.9));
  box-shadow: 0 28px 80px rgba(0,0,0,.32);
}
.reviews-hero-card h2 { margin: 0 0 8px; }
.reviews-hero-card p { margin: 0; max-width: 760px; color: var(--muted); line-height: 1.7; }
.review-whatsapp { flex: 0 0 auto; }
.real-review-grid .review-card {
  border-color: rgba(244,217,150,.22);
  background:
    radial-gradient(circle at 90% 10%, rgba(216,181,104,.13), transparent 32%),
    linear-gradient(180deg, rgba(47,16,23,.78), rgba(13,5,8,.84));
}
@media (max-width: 760px) {
  .reviews-hero-card { align-items: flex-start; flex-direction: column; border-radius: 24px; }
  .review-whatsapp { width: 100%; justify-content: center; }
}


/* TikTok testimonial screenshots */
.testimonials-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  padding: 14px;
  overflow: hidden;
}
.testimonial-card .review-tag { margin-bottom: 0; width: max-content; }
.review-shot {
  width: 100%;
  aspect-ratio: 16 / 5.2;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(244,217,150,.22);
  box-shadow: 0 16px 35px rgba(0,0,0,.28);
  background: rgba(0,0,0,.35);
}
.testimonial-card p {
  color: #f4eadc;
  font-size: 15px;
  line-height: 1.55;
}
.testimonial-card strong {
  margin-top: auto;
  color: var(--gold2);
}
@media (max-width: 1180px) {
  .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { border-radius: 22px; padding: 12px; }
  .review-shot { border-radius: 16px; aspect-ratio: 16 / 5.5; }
  .testimonial-card p { font-size: 14px; }
}


/* Text reviews + working add review form */
.testimonials-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
  padding: 20px;
  overflow: hidden;
}
.review-shot { display: none !important; }
.review-form {
  margin: -2px 0 18px;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid rgba(244,217,150,.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 10%, rgba(216,181,104,.12), transparent 34%),
    linear-gradient(180deg, rgba(37,13,18,.82), rgba(12,5,8,.9));
  box-shadow: 0 24px 70px rgba(0,0,0,.30);
}
.review-form[hidden] { display: none !important; }
.review-form-grid {
  display: grid;
  grid-template-columns: 1fr 170px 150px;
  gap: 14px;
}
.review-form label { display: grid; gap: 8px; }
.review-form label span:first-child {
  color: var(--gold2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}
.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(244,217,150,.18);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}
.review-form textarea { resize: vertical; min-height: 110px; }
.review-form .wide { grid-column: 1 / -1; }
.review-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.review-message {
  margin: 0;
  color: var(--gold2);
  font-weight: 800;
}
.review-message.error { color: #ffb4b4; }
.new-review {
  animation: reviewPop .45s ease both;
  border-color: rgba(216,181,104,.45);
}
@keyframes reviewPop {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 1180px) {
  .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .review-form-grid { grid-template-columns: 1fr; }
  .review-form-actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-height: 0; border-radius: 22px; padding: 18px; }
}

/* Mobile-first service picker in reservation */
.booking-service-picker {
  display: grid;
  gap: 10px;
}
.booking-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.booking-service-option {
  position: relative;
  overflow: hidden;
  min-height: 86px;
  padding: 15px;
  border: 1px solid rgba(244,217,150,.16);
  border-radius: 18px;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-align: left;
  background:
    radial-gradient(circle at 8% 0%, rgba(216,181,104,.08), transparent 42%),
    rgba(255,255,255,.045);
  box-shadow: 0 14px 36px rgba(0,0,0,.18);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.booking-service-option:hover {
  transform: translateY(-2px);
  border-color: rgba(244,217,150,.34);
  background:
    radial-gradient(circle at 8% 0%, rgba(216,181,104,.14), transparent 42%),
    rgba(255,255,255,.065);
}
.booking-service-option.selected {
  border-color: rgba(244,217,150,.62);
  background:
    radial-gradient(circle at 10% 0%, rgba(244,217,150,.22), transparent 42%),
    linear-gradient(135deg, rgba(73,24,31,.92), rgba(18,7,10,.92));
  box-shadow: 0 18px 48px rgba(216,181,104,.12), 0 0 0 1px rgba(244,217,150,.12) inset;
}
.booking-service-option.selected::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #17080b;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  font-size: 13px;
  font-weight: 900;
}
.service-pick-glow {
  position: absolute;
  width: 110px;
  height: 110px;
  right: -42px;
  bottom: -50px;
  border-radius: 999px;
  background: rgba(123,16,39,.32);
  filter: blur(26px);
  pointer-events: none;
}
.service-pick-main,
.service-pick-price {
  position: relative;
  z-index: 1;
}
.service-pick-main strong {
  display: block;
  padding-right: 18px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.25;
}
.service-pick-main small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.service-pick-price {
  display: grid;
  gap: 3px;
  justify-items: end;
  min-width: 78px;
  padding-right: 6px;
}
.service-pick-price b {
  color: var(--gold2);
  font-size: 17px;
  line-height: 1;
}
.service-pick-price em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}
.booking-details-anchor {
  height: 1px;
  margin-top: -4px;
}
@media (max-width: 640px) {
  .booking-services {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .booking-service-option {
    min-height: 76px;
    padding: 13px 14px;
    border-radius: 17px;
  }
  .booking-service-option:hover {
    transform: none;
  }
  .service-pick-main strong {
    font-size: 14px;
  }
  .service-pick-main small {
    font-size: 11px;
  }
  .service-pick-price b {
    font-size: 16px;
  }
}

.premium-gula-card {
  align-items: flex-start;
}

.premium-gula-card .extra-price-row strong,
.premium-gula-card .extra-price-row em {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(244,217,150,.16);
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.premium-gula-card .extra-price-row strong {
  color: var(--gold2);
}

.premium-gula-card .extra-price-row em {
  color: var(--text);
  opacity: .9;
}

/* Premium mobile service cards - reservation */
.booking-service-picker {
  margin-bottom: 4px;
}

.booking-service-picker .field-title {
  display: block;
  margin-bottom: 12px;
  color: var(--gold2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.booking-services {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.booking-service-option {
  -webkit-appearance: none;
  appearance: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  position: relative !important;
  overflow: hidden !important;
  min-height: 92px !important;
  padding: 16px !important;
  border: 1px solid rgba(244,217,150,.18) !important;
  border-radius: 22px !important;
  cursor: pointer !important;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  gap: 12px !important;
  color: var(--text) !important;
  text-align: left !important;
  background:
    radial-gradient(circle at 10% 0%, rgba(244,217,150,.13), transparent 42%),
    linear-gradient(135deg, rgba(44,15,22,.92), rgba(13,5,8,.96)) !important;
  box-shadow: 0 18px 50px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.035) !important;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease !important;
}

.booking-service-option input.service-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-service-option:hover,
.booking-service-option:focus-within {
  transform: translateY(-2px);
  border-color: rgba(244,217,150,.38) !important;
  background:
    radial-gradient(circle at 10% 0%, rgba(244,217,150,.18), transparent 42%),
    linear-gradient(135deg, rgba(58,19,28,.96), rgba(13,5,8,.98)) !important;
  box-shadow: 0 22px 58px rgba(0,0,0,.34), 0 0 0 1px rgba(244,217,150,.08) inset !important;
}

.booking-service-option.selected,
.booking-service-option:has(input.service-radio:checked) {
  border-color: rgba(244,217,150,.72) !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(244,217,150,.30), transparent 44%),
    radial-gradient(circle at 100% 100%, rgba(123,16,39,.34), transparent 38%),
    linear-gradient(135deg, rgba(82,28,38,.98), rgba(15,5,8,.98)) !important;
  box-shadow: 0 22px 64px rgba(216,181,104,.16), 0 0 0 1px rgba(244,217,150,.16) inset !important;
}

.booking-service-option.selected::after,
.booking-service-option:has(input.service-radio:checked)::after {
  content: "✓";
  position: absolute;
  top: 11px;
  right: 11px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #19070b;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 8px 22px rgba(216,181,104,.24);
}

.service-pick-main strong {
  display: block !important;
  padding-right: 24px !important;
  color: var(--text) !important;
  font-size: 15px !important;
  line-height: 1.22 !important;
  font-weight: 950 !important;
  letter-spacing: -.01em;
}

.service-pick-main small {
  display: none !important;
}

.service-pick-price {
  display: grid !important;
  gap: 5px !important;
  justify-items: end !important;
  min-width: 82px !important;
  padding-right: 4px !important;
}

.service-pick-price b,
.service-pick-price em {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(244,217,150,.13);
  background: rgba(255,255,255,.045);
  white-space: nowrap;
}

.service-pick-price b {
  color: var(--gold2) !important;
  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

.service-pick-price em {
  color: rgba(255,247,229,.78) !important;
  font-size: 13px !important;
  font-style: normal !important;
  font-weight: 900 !important;
}

@media (max-width: 640px) {
  .booking-services {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .booking-service-option {
    min-height: 78px !important;
    padding: 14px 14px !important;
    border-radius: 19px !important;
  }
  .booking-service-option:hover {
    transform: none;
  }
  .service-pick-main strong {
    font-size: 14px !important;
  }
  .service-pick-price {
    min-width: 74px !important;
  }
  .service-pick-price b {
    font-size: 15px !important;
  }
}


/* FINAL POLISHED CARDS - cennik + booking */
#sluzby.compact-section {
  padding-top: 34px;
}

#sluzby .section-head {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.price-layout {
  width: min(980px, 100%) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, .72fr) minmax(240px, .28fr) !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.price-photo-card {
  border-radius: 26px !important;
  padding: 10px !important;
  border: 1px solid rgba(244,217,150,.24) !important;
  background:
    linear-gradient(145deg, rgba(53,18,27,.84), rgba(11,4,7,.96)),
    radial-gradient(circle at 12% 0%, rgba(244,217,150,.12), transparent 40%) !important;
  box-shadow: 0 24px 72px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.04) !important;
}

.price-photo-card img {
  border-radius: 18px !important;
  max-height: 560px !important;
  width: 100% !important;
  object-fit: contain !important;
  background: rgba(0,0,0,.18) !important;
}

.extra-price-card.premium-gula-card {
  min-height: auto !important;
  padding: 22px !important;
  border-radius: 26px !important;
  justify-content: center !important;
  align-items: flex-start !important;
  background:
    linear-gradient(145deg, rgba(50,17,26,.92), rgba(11,4,7,.98)),
    radial-gradient(circle at 20% 0%, rgba(244,217,150,.16), transparent 42%) !important;
  box-shadow: 0 24px 72px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.04) !important;
}

.extra-price-card.premium-gula-card h3 {
  margin: 0 !important;
  font-size: clamp(21px, 2.1vw, 30px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.03em !important;
}

.extra-price-card.premium-gula-card .extra-price-row {
  margin-top: 16px !important;
  gap: 8px !important;
}

.extra-price-card.premium-gula-card .extra-price-row strong,
.extra-price-card.premium-gula-card .extra-price-row em {
  min-height: 40px !important;
  padding: 0 13px !important;
  border-radius: 999px !important;
  font-size: 18px !important;
  border: 1px solid rgba(244,217,150,.18) !important;
  background: rgba(255,255,255,.045) !important;
  color: var(--gold2) !important;
  font-style: normal !important;
  font-weight: 950 !important;
}

.booking-card {
  width: min(980px, 100%) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.booking-service-picker.wide {
  margin-bottom: 4px !important;
}

.booking-services {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.booking-service-option {
  min-height: 66px !important;
  padding: 11px 12px !important;
  border-radius: 17px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 10px !important;
  border: 1px solid rgba(244,217,150,.18) !important;
  background:
    linear-gradient(145deg, rgba(38,13,20,.92), rgba(10,4,7,.98)) !important;
  box-shadow: 0 14px 36px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.035) !important;
}

.booking-service-option::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,217,150,.32), transparent);
  opacity: .75;
}

.service-pick-glow {
  display: none !important;
}

.booking-service-option:hover,
.booking-service-option:focus-within {
  transform: translateY(-1px) !important;
  border-color: rgba(244,217,150,.38) !important;
  background:
    linear-gradient(145deg, rgba(51,17,26,.96), rgba(10,4,7,.98)) !important;
  box-shadow: 0 17px 42px rgba(0,0,0,.30), 0 0 0 1px rgba(244,217,150,.06) inset !important;
}

.booking-service-option.selected,
.booking-service-option:has(input.service-radio:checked) {
  border-color: rgba(244,217,150,.66) !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(244,217,150,.16), transparent 42%),
    linear-gradient(145deg, rgba(65,22,32,.98), rgba(11,4,7,.98)) !important;
  box-shadow: 0 18px 46px rgba(216,181,104,.10), 0 0 0 1px rgba(244,217,150,.13) inset !important;
}

.booking-service-option.selected::after,
.booking-service-option:has(input.service-radio:checked)::after {
  content: "✓" !important;
  top: 8px !important;
  right: 8px !important;
  width: 20px !important;
  height: 20px !important;
  font-size: 11px !important;
  box-shadow: 0 6px 16px rgba(216,181,104,.20) !important;
}

.service-pick-main strong {
  font-size: 13px !important;
  line-height: 1.15 !important;
  font-weight: 920 !important;
  padding-right: 18px !important;
}

.service-pick-price {
  min-width: 62px !important;
  gap: 4px !important;
  align-self: center !important;
}

.service-pick-price b,
.service-pick-price em {
  min-height: 24px !important;
  min-width: 54px !important;
  padding: 0 8px !important;
  font-size: 12px !important;
  border-radius: 999px !important;
  background: rgba(244,217,150,.055) !important;
  border: 1px solid rgba(244,217,150,.13) !important;
}

.service-pick-price b {
  color: var(--gold2) !important;
  font-weight: 950 !important;
}

.service-pick-price em {
  color: rgba(255,247,229,.76) !important;
  font-style: normal !important;
  font-weight: 900 !important;
}

@media (max-width: 920px) {
  .price-layout {
    grid-template-columns: 1fr !important;
    width: min(720px, 100%) !important;
  }
  .extra-price-card.premium-gula-card {
    min-height: 112px !important;
  }
  .booking-services {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  #sluzby.compact-section {
    padding-top: 24px !important;
  }
  .price-layout {
    gap: 12px !important;
  }
  .price-photo-card {
    border-radius: 22px !important;
    padding: 8px !important;
  }
  .price-photo-card img {
    border-radius: 15px !important;
    max-height: 520px !important;
  }
  .extra-price-card.premium-gula-card {
    padding: 18px !important;
    border-radius: 22px !important;
  }
  .extra-price-card.premium-gula-card h3 {
    font-size: 23px !important;
  }
  .extra-price-card.premium-gula-card .extra-price-row strong,
  .extra-price-card.premium-gula-card .extra-price-row em {
    min-height: 36px !important;
    font-size: 16px !important;
  }

  .booking-card {
    padding: 18px !important;
  }
  .booking-services {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .booking-service-option {
    min-height: 62px !important;
    padding: 10px 12px !important;
    border-radius: 16px !important;
  }
  .service-pick-main strong {
    font-size: 13px !important;
  }
  .service-pick-price {
    min-width: 58px !important;
  }
  .service-pick-price b,
  .service-pick-price em {
    min-height: 23px !important;
    min-width: 50px !important;
    font-size: 12px !important;
  }
}


/* RenkoStar reservation chat */
.renko-chat {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 95;
  font-family: var(--font, Inter, system-ui, sans-serif);
}

.renko-chat-toggle {
  min-height: 62px;
  padding: 8px 16px 8px 8px;
  border: 1px solid rgba(244,217,150,.32);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(244,217,150,.22), transparent 42%),
    linear-gradient(135deg, rgba(70,22,33,.96), rgba(12,5,7,.98));
  box-shadow: 0 18px 56px rgba(0,0,0,.42), 0 0 0 1px rgba(244,217,150,.08) inset;
}

.renko-chat-toggle img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(244,217,150,.38);
}

.renko-chat-toggle strong,
.renko-chat-toggle small {
  display: block;
  line-height: 1.05;
}

.renko-chat-toggle strong {
  color: var(--gold2);
  font-size: 14px;
  font-weight: 950;
}

.renko-chat-toggle small {
  margin-top: 4px;
  color: rgba(255,247,229,.72);
  font-size: 12px;
  font-weight: 800;
}

.renko-chat-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: min(392px, calc(100vw - 26px));
  max-height: min(680px, calc(100vh - 112px));
  display: none;
  overflow: hidden;
  border: 1px solid rgba(244,217,150,.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(244,217,150,.14), transparent 38%),
    linear-gradient(180deg, rgba(39,13,20,.98), rgba(7,3,5,.98));
  box-shadow: 0 30px 90px rgba(0,0,0,.56), 0 0 0 1px rgba(244,217,150,.07) inset;
}

.renko-chat.open .renko-chat-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.renko-chat.open .renko-chat-toggle {
  display: none;
}

.renko-chat-head {
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(244,217,150,.12);
  background: rgba(255,255,255,.035);
}

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

.renko-chat-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(244,217,150,.34);
}

.renko-chat-brand strong,
.renko-chat-brand span {
  display: block;
}

.renko-chat-brand strong {
  color: var(--gold2);
  font-size: 15px;
  font-weight: 950;
}

.renko-chat-brand span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.renko-chat-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text);
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(244,217,150,.12);
  font-size: 24px;
}

.renko-chat-body {
  min-height: 380px;
  max-height: 540px;
  padding: 14px;
  overflow: auto;
  scroll-behavior: smooth;
}

.chat-row {
  display: flex;
  gap: 8px;
  margin: 10px 0;
}

.chat-row.user {
  justify-content: flex-end;
}

.chat-avatar {
  width: 30px;
  flex: 0 0 30px;
  align-self: flex-end;
}

.chat-avatar img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(244,217,150,.22);
}

.chat-bubble {
  max-width: 82%;
  padding: 11px 12px;
  border-radius: 18px;
  color: rgba(255,247,229,.90);
  line-height: 1.42;
  font-size: 13px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(244,217,150,.10);
}

.chat-bubble strong {
  color: var(--gold2);
}

.chat-row.bot .chat-bubble {
  border-bottom-left-radius: 8px;
}

.chat-row.user .chat-bubble {
  border-bottom-right-radius: 8px;
  color: #17070b;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-color: transparent;
  font-weight: 850;
}

.chat-choices {
  display: grid;
  gap: 8px;
  margin: 10px 0 12px 38px;
}

.chat-choice,
.chat-submit,
.renko-chat-reset {
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(244,217,150,.22);
  cursor: pointer;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(48,16,24,.92), rgba(11,4,7,.98));
  font-size: 13px;
  font-weight: 900;
  text-align: left;
}

.chat-choice:hover,
.chat-submit:hover,
.renko-chat-reset:hover {
  border-color: rgba(244,217,150,.45);
  background:
    radial-gradient(circle at 8% 0%, rgba(244,217,150,.16), transparent 42%),
    linear-gradient(145deg, rgba(64,21,31,.96), rgba(11,4,7,.98));
}

.chat-form-step {
  margin: 10px 0 12px 38px;
  display: grid;
  gap: 9px;
}

.chat-input-label {
  display: grid;
  gap: 6px;
}

.chat-input-label span {
  color: var(--gold2);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 950;
}

.chat-input-label input,
.chat-input-label textarea {
  width: 100%;
  border: 1px solid rgba(244,217,150,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: 11px 12px;
  outline: none;
  font-size: 14px;
}

.chat-input-label input:focus,
.chat-input-label textarea:focus {
  border-color: rgba(244,217,150,.44);
}

.chat-submit {
  text-align: center;
  color: #17070b;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-color: transparent;
}

.renko-chat-foot {
  padding: 10px 14px 14px;
  border-top: 1px solid rgba(244,217,150,.10);
  background: rgba(255,255,255,.025);
}

.renko-chat-reset {
  width: 100%;
  text-align: center;
  min-height: 38px;
  color: rgba(255,247,229,.76);
  background: rgba(255,255,255,.045);
}

@media (max-width: 640px) {
  .renko-chat {
    right: 12px;
    bottom: 12px;
  }

  .renko-chat-panel {
    width: calc(100vw - 24px);
    bottom: 0;
    max-height: calc(100vh - 24px);
    border-radius: 24px;
  }

  .renko-chat-body {
    min-height: 420px;
    max-height: calc(100vh - 176px);
  }

  .chat-bubble {
    max-width: 86%;
    font-size: 13px;
  }

  .chat-choices,
  .chat-form-step {
    margin-left: 0;
  }

  .chat-choice {
    min-height: 40px;
  }
}


/* Chat date picker improvements */
.chat-date-label input[type="date"] {
  min-height: 48px;
  cursor: pointer;
  color-scheme: dark;
}

.chat-mini-submit {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(244,217,150,.20);
  cursor: pointer;
  color: var(--gold2);
  background: rgba(255,255,255,.055);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.chat-mini-submit:hover {
  border-color: rgba(244,217,150,.42);
  background: rgba(244,217,150,.085);
}


/* Final price section: centered photo only */
#sluzby .price-layout {
  width: min(760px, 100%) !important;
  margin: 0 auto !important;
  display: block !important;
}

#sluzby .price-photo-card {
  width: 100% !important;
  margin: 0 auto !important;
}

#sluzby .price-photo-card img {
  width: 100% !important;
  max-height: 760px !important;
  object-fit: contain !important;
}

#sluzby .extra-price-card,
#sluzby .premium-gula-card {
  display: none !important;
}
