/* Amarsys web — 2026 polished booking site */
:root {
  --ac: #7C6FCD;
  --ac2: #B8AEFF;
  --ac-deep: #5B52A8;
  --ink: #0A0A1E;
  --muted: rgba(10, 10, 30, 0.58);
  --line: rgba(10, 10, 30, 0.09);
  --paper: color-mix(in srgb, var(--ac) 6%, #fbfaf8);
  --paper-wash:
    radial-gradient(90% 72% at 94% 8%, color-mix(in srgb, var(--ac2) 46%, transparent), transparent 58%),
    radial-gradient(70% 58% at 4% 92%, color-mix(in srgb, var(--ac) 16%, transparent), transparent 62%),
    radial-gradient(48% 42% at 78% 72%, color-mix(in srgb, var(--ac) 11%, transparent), transparent 70%);
  --white: #fff;
  --danger: #c45c4a;
  --ok: #1a8f6e;
  --font: "Figtree", system-ui, -apple-system, sans-serif;
  --max: 1120px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --dur-hero: 1.15s;
  --parallax: 1;
  --ken: 1;
}

html[data-mood="energy"] {
  --ac: #E4576B;
  --ac2: #FFB3BE;
  --ac-deep: #B83A4C;
  --ok: #2aa37a;
  --dur-hero: 0.85s;
  --parallax: 1.35;
  --ken: 1.25;
}

html[data-mood="soft"] {
  --ac: #C4A484;
  --ac2: #E8C4B0;
  --ac-deep: #8D6E4E;
  --ok: #3d8f72;
  --dur-hero: 1.45s;
  --parallax: 0.7;
  --ken: 0.7;
}

html[data-mood="noir"] {
  --ac: #2C2A28;
  --ac2: #C8C2B8;
  --ac-deep: #141312;
  --ok: #3d8f72;
  --ink: #141312;
  --dur-hero: 1.35s;
  --parallax: 0.6;
  --ken: 0.65;
}

html[data-mood="bloom"] {
  --ac: #C2788A;
  --ac2: #F0C9D2;
  --ac-deep: #8E4A5A;
  --ok: #3d8f72;
  --dur-hero: 1.2s;
  --parallax: 0.85;
  --ken: 0.85;
}

html[data-mood="atelier"] {
  --ac: #5E7A6C;
  --ac2: #C9D6CE;
  --ac-deep: #3E564A;
  --ok: #3d8f72;
  --dur-hero: 1.25s;
  --parallax: 0.75;
  --ken: 0.75;
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .svc-item,
  .hero-panel {
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  font-family: var(--font);
  color: var(--ink);
  background-color: var(--paper);
  background-image: var(--paper-wash);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  --launch-h: 0px;
  --top-h: 72px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: var(--ac-deep);
}

.boot {
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  animation: bootPulse 1.4s ease-in-out infinite;
}

@keyframes bootPulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

.boot[hidden],
.app[hidden],
.sheet[hidden] {
  display: none !important;
}

.boot.is-error {
  color: var(--danger);
  padding: 24px;
  text-align: center;
  animation: none;
}

.app {
  animation: appIn 0.55s var(--ease-out) both;
}

@keyframes appIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ── Top bar ── */
.top {
  position: sticky;
  top: var(--launch-h, 0px);
  z-index: 40;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.top.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(18, 16, 26, 0.05);
}

/* Hub: hlavička cez hero, wash ide aj za horný riadok */
.app.has-hub-hero .top {
  position: fixed;
  top: var(--launch-h, 0px);
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

.app.has-hub-hero .top.is-scrolled,
.app.has-hub-hero .top.nav-open {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(18, 16, 26, 0.05);
}

/* Firma: header cez hero — foto prechádza blur sklom, biely až nad sheetom */
.app.has-dark-hero .top {
  position: fixed;
  top: var(--launch-h, 0px);
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(12, 10, 20, 0.18);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.app.has-dark-hero .top:not(.is-scrolled) .brand-name {
  color: rgba(255, 255, 255, 0.96);
}

.app.has-dark-hero .top:not(.is-scrolled) .top-nav a {
  color: rgba(255, 255, 255, 0.86);
}

.app.has-dark-hero .top:not(.is-scrolled) .top-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.app.has-dark-hero .top:not(.is-scrolled) .brand-mark {
  filter: brightness(0) invert(1);
  opacity: 0.96;
}
.app.is-firma .brand-mark-wrap--firm {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.app.is-firma .brand-mark--firm,
.app.has-dark-hero .top:not(.is-scrolled) .brand-mark--firm,
.app.has-dark-hero .top.is-scrolled .brand-mark--firm,
.app.has-dark-hero .top.nav-open .brand-mark--firm {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none !important;
  opacity: 1;
}
.app.is-firma .brand--firm .brand-name {
  max-width: min(28ch, 42vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app.has-dark-hero .top:not(.is-scrolled) .nav-toggle span {
  background: rgba(255, 255, 255, 0.92);
}

.app.has-dark-hero .top.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(18, 16, 26, 0.05);
}

.app.has-dark-hero .top.is-scrolled .brand-name {
  color: #0a0a1e;
}

.app.has-dark-hero .top.is-scrolled .top-nav a {
  color: var(--muted);
}

.app.has-dark-hero .top.is-scrolled .brand-mark {
  filter: brightness(0) saturate(100%) invert(49%) sepia(62%) saturate(1834%) hue-rotate(209deg) brightness(100%) contrast(101%);
  opacity: 1;
}

.app.has-dark-hero .top.is-scrolled .nav-toggle span {
  background: var(--ink);
}

.app.has-dark-hero .top.nav-open {
  background: rgba(255, 255, 255, 0.92);
}

.app.has-dark-hero .top.nav-open .brand-name {
  color: #0a0a1e;
}

.app.has-dark-hero .top.nav-open .brand-mark {
  filter: brightness(0) saturate(100%) invert(49%) sepia(62%) saturate(1834%) hue-rotate(209deg) brightness(100%) contrast(101%);
  opacity: 1;
}

.app.has-dark-hero .top.nav-open .nav-toggle span {
  background: var(--ink);
}

.app.has-dark-hero .top.nav-open .mobile-nav {
  background: rgba(255, 255, 255, 0.96);
}

.top-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 20px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: inherit;
}

.brand-mark-wrap {
  width: 72px;
  height: 72px;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: none;
  transition: transform 0.35s var(--ease-spring);
}

.brand:hover .brand-mark-wrap {
  transform: scale(1.04);
}

.brand-mark {
  width: 66px;
  height: 66px;
  display: block;
  object-fit: contain;
  /* rovnaký fialový filter ako root/index.html */
  filter: brightness(0) saturate(100%) invert(49%) sepia(62%) saturate(1834%) hue-rotate(209deg) brightness(100%) contrast(101%);
}

.brand-name {
  font-family: "DM Sans", "Figtree", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.35px;
  color: #0a0a1e;
}

.top-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.top-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.top-nav a:hover {
  color: var(--ink);
  background: color-mix(in srgb, var(--ac) 12%, transparent);
  transform: translateY(-1px);
}

.top-nav a.is-active,
.mobile-nav a.is-active {
  color: var(--ink);
  background: color-mix(in srgb, var(--ac) 14%, transparent);
}
.app.has-dark-hero .top:not(.is-scrolled) .top-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}
.app.has-dark-hero .top.is-scrolled .top-nav a.is-active {
  color: var(--ac-deep);
}

html[data-mood="soft"] .top-nav a.is-active,
html[data-mood="bloom"] .top-nav a.is-active,
html[data-mood="soft"] .app.has-dark-hero .top.is-scrolled .top-nav a.is-active,
html[data-mood="bloom"] .app.has-dark-hero .top.is-scrolled .top-nav a.is-active {
  background: color-mix(in srgb, var(--ac) 26%, #fff);
  color: var(--ac-deep);
}

html[data-mood="noir"] .app.has-dark-hero .top.is-scrolled {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html[data-mood="noir"] .app.has-dark-hero .top.is-scrolled .top-inner {
  width: calc(100% - 28px);
  max-width: var(--max);
  margin-top: 10px;
  margin-bottom: 8px;
  padding: 6px 12px 6px 16px;
  min-height: 58px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  box-shadow: 0 12px 40px rgba(20, 18, 16, 0.12);
}

html[data-mood="noir"] .app.has-dark-hero .top.is-scrolled.nav-open {
  background: rgba(255, 255, 255, 0.94);
}

html[data-mood="noir"] .app.has-dark-hero .top.is-scrolled.nav-open .top-inner {
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding: 8px 20px;
  min-height: 72px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html[data-mood="noir"] .top-nav a.is-active,
html[data-mood="noir"] .mobile-nav a.is-active,
html[data-mood="noir"] .app.has-dark-hero .top.is-scrolled .top-nav a.is-active {
  background: #1c1b19;
  color: #fff;
}

html[data-mood="noir"] .btn-primary {
  background: #1c1b19;
}

html[data-mood="noir"] .btn-primary:hover {
  background: #0e0d0c;
}

html[data-mood="noir"] body,
html[data-mood="noir"] .app.is-firma .content-sheet {
  background: #e8e6e2;
}

html[data-mood="soft"] .svc-price,
html[data-mood="bloom"] .svc-price,
html[data-mood="noir"] .svc-price {
  color: var(--ink);
}

html[data-mood="soft"] .svc-item:hover .svc-price,
html[data-mood="bloom"] .svc-item:hover .svc-price,
html[data-mood="noir"] .svc-item:hover .svc-price {
  color: var(--ac-deep);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  appearance: none;
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: none;
  transition: opacity 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:active {
  background: transparent;
  opacity: 0.85;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.28s var(--ease-out), opacity 0.2s ease;
}

.top.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.top.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.top.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 20px 16px;
  border-top: 1px solid rgba(60, 60, 67, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mobile-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 650;
  font-size: 1.02rem;
  padding: 13px 12px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: rgba(124, 111, 205, 0.1);
  color: var(--ac-deep);
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  text-decoration: none !important;
  transition:
    transform 0.25s var(--ease-spring),
    box-shadow 0.25s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, color-mix(in srgb, var(--ac) 82%, white) 0%, var(--ac) 100%);
  border: none;
  box-shadow: none;
}

.btn-primary:hover {
  background: linear-gradient(180deg, color-mix(in srgb, var(--ac) 70%, white) 0%, var(--ac-deep) 100%);
  box-shadow: none;
}

.btn-primary.book-pulse:hover,
.hero .btn-primary.book-pulse:hover {
  animation: bookPulse 1.15s var(--ease-out) 1;
}
@keyframes bookPulse {
  0% { transform: translateY(-2px) scale(1); }
  45% { transform: translateY(-2px) scale(1.035); }
  100% { transform: translateY(-2px) scale(1.02); }
}

.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: rgba(124, 111, 205, 0.35);
  background: rgba(255, 255, 255, 0.55);
}

.hero-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: min(72vh, 620px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: #12101a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #12101a;
  background-image:
    linear-gradient(180deg, rgba(7, 7, 15, 0.28) 0%, rgba(7, 7, 15, 0.42) 40%, rgba(7, 7, 15, 0.92) 100%),
    var(--hero-img, linear-gradient(135deg, #5b52a8, #7c6fcd));
  /* full-bleed — žiadne letterbox pásy */
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  animation: none;
  transform: none;
  will-change: transform;
  transition: none;
}

.hero-bg-stack {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: transform;
  transform: none;
  background: #12101a;
}

.app.is-firma .hero:not(.hero-hub) .hero-panels {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
  background: #12101a;
  overflow: hidden;
}
.app.is-firma .hero:not(.hero-hub) .hero-panels::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.16) 42%, rgba(0, 0, 0, 0.58) 100%);
}
.app.is-firma .hero:not(.hero-hub) .hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: #12101a;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.15s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}
.app.is-firma .hero:not(.hero-hub) .hero-slide.is-on {
  opacity: 1;
  transform: none;
  z-index: 1;
}
.app.is-firma .hero:not(.hero-hub) .hero-slide img,
.app.is-firma .hero:not(.hero-hub) .hero-slide video.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.78) saturate(1.04);
}
@media (prefers-reduced-motion: reduce) {
  .app.is-firma .hero:not(.hero-hub) .hero-slide,
  .app.is-firma .hero:not(.hero-hub) .hero-slide.is-on {
    transition: none;
    transform: none;
  }
}
.hero-panel {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  margin: 0;
  background: #12101a;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(1.06);
  transition:
    opacity 0.7s var(--ease-out),
    transform var(--dur-hero) var(--ease-out),
    filter 0.45s var(--ease-out);
  will-change: transform, filter;
}
.hero.is-in .hero-panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.hero.is-in .hero-panel:nth-child(1) { transition-delay: 0.08s; }
.hero.is-in .hero-panel:nth-child(2) { transition-delay: 0.22s; }
.hero.is-in .hero-panel:nth-child(3) { transition-delay: 0.36s; }
.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  transform: none;
  filter: brightness(0.72) saturate(1.05);
  transition: filter 0.45s var(--ease-out);
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.12) 40%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-color: #12101a;
  background-image:
    linear-gradient(180deg, rgba(7, 7, 15, 0.28) 0%, rgba(7, 7, 15, 0.42) 40%, rgba(7, 7, 15, 0.92) 100%),
    var(--hero-img, linear-gradient(135deg, #5b52a8, #7c6fcd));
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.03);
  will-change: opacity, transform;
}

.hero-slide.is-on {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 1.25s cubic-bezier(0.4, 0, 0.2, 1),
    transform 5.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 320px at 72% 28%, rgba(124, 111, 205, 0.28), transparent 68%),
    radial-gradient(500px 240px at 18% 80%, rgba(184, 174, 255, 0.1), transparent 70%);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
    transform: none;
  }
  .hero-slide.is-on {
    transition: none;
    transform: none;
  }
}

/* Firma: sticky hero; desktop = celá obrazovka, mobil = pomer fotky (celá fotka) */
.app.is-firma .hero:not(.hero-hub) {
  position: sticky;
  top: var(--launch-h, 0px);
  z-index: 1;
}

@media (min-width: 721px) {
  .app.is-firma .hero:not(.hero-hub) {
    width: 100%;
    min-width: 100%;
    min-height: 0;
    height: min(100dvh, calc(100vw * 4 / 7));
    max-height: 100dvh;
    aspect-ratio: unset;
    align-items: end;
  }
}

.app.is-firma .content-sheet {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: 8px;
  border-radius: 28px 28px 0 0;
  background: var(--paper);
  box-shadow:
    0 -10px 40px rgba(10, 10, 30, 0.18),
    0 -1px 0 rgba(255, 255, 255, 0.55) inset;
  animation: contentSheetIn 0.62s cubic-bezier(0.32, 0.72, 0, 1) both;
}

.app.is-firma .content-sheet .section:first-child,
.app.is-firma .content-sheet > .vac-banner + .section {
  padding-top: 48px;
}

.app.is-firma .content-sheet > .vac-banner {
  box-sizing: border-box;
  width: min(var(--max), calc(100% - 40px));
  max-width: var(--max);
  margin: 28px auto 0;
}

.vac-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff4e5;
  border: 1px solid rgba(239, 159, 39, 0.46);
  color: #8a5a12;
}

.vac-banner-ic {
  flex: 0 0 auto;
  display: inline-flex;
  margin-top: 1px;
  color: #ba7517;
}

.vac-banner-txt {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.hours-status.is-vac {
  color: #8a5a12;
  background: rgba(239, 159, 39, 0.14);
}

.hours-status.is-vac::before {
  background: #d97706;
}

.firm-card-vac {
  margin: 8px 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: #8a5a12;
  background: rgba(239, 159, 39, 0.14);
  border: 1px solid rgba(200, 130, 30, 0.26);
  border-radius: 999px;
  padding: 4px 9px;
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app.is-firma .content-sheet .footer {
  margin-top: 24px;
  padding-bottom: 36px;
}

@keyframes contentSheetIn {
  from {
    transform: translate3d(0, 56px, 0);
    opacity: 0.72;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app.is-firma .content-sheet {
    animation: none;
  }
}

@media (max-width: 720px) {
  .app.is-firma .content-sheet {
    margin-top: -10px;
    border-radius: 24px 24px 0 0;
  }

  .hub-sheet {
    margin-top: -36px;
    border-radius: 24px 24px 0 0;
  }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 320px at 72% 28%, rgba(124, 111, 205, 0.28), transparent 68%),
    radial-gradient(500px 240px at 18% 80%, rgba(184, 174, 255, 0.1), transparent 70%);
  pointer-events: none;
}

.hero-bg-brand {
  background:
    radial-gradient(ellipse 90% 55% at 50% -8%, rgba(124, 111, 205, 0.45), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 50%, rgba(99, 102, 241, 0.22), transparent 50%),
    linear-gradient(165deg, #15151f 0%, #0e0e16 45%, #07070f 100%);
  animation: none;
}

.hero-bg-brand::after {
  background:
    radial-gradient(circle at 50% 40%, rgba(124, 111, 205, 0.18), transparent 55%);
}

.hero-hub {
  align-items: center;
  min-height: auto;
  color: var(--ink);
  background: transparent;
}

.hero-hub .hero-content {
  padding-top: 72px;
  padding-bottom: 48px;
  text-align: left;
}

.hero-brand-title {
  font-family: "Sora", "Figtree", system-ui, sans-serif;
  font-size: clamp(50px, 8vw, 82px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  display: inline-block;
  background: linear-gradient(90deg, #7568d2 0%, #6b63d8 28%, #5a73e2 52%, #3f8fef 76%, #31b8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: rise 0.85s var(--ease-out) both;
}

.hero-brand-title em {
  font-style: normal;
  color: inherit;
}

.hero-hub .hero-firm {
  font-family: "Sora", "Figtree", system-ui, sans-serif;
  color: #0a0a1e;
  font-size: clamp(27px, 3.6vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-bottom: 18px;
}

.hero-hub .hero-lead {
  color: rgba(10, 10, 30, 0.62);
  font-size: 1.05rem;
  max-width: 36rem;
  line-height: 1.65;
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
}

.hero-hub .hero-lead,
.hero-hub .hero-lead a,
.hero-lead a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(124, 111, 205, 0.12);
  border: 1px solid rgba(124, 111, 205, 0.22);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ac-deep);
  margin-bottom: 18px;
  animation: rise 0.85s var(--ease-out) both;
}

@keyframes heroKen {
  from {
    transform: none;
  }
  to {
    transform: none;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 56px 20px 64px;
}

.hero-firm,
.hero-lead,
.hero-actions {
  animation: rise 0.85s var(--ease-out) both;
}

.app.is-firma .hero:not(.hero-hub) .hero-firm-row,
.app.is-firma .hero:not(.hero-hub) .hero-lead,
.app.is-firma .hero:not(.hero-hub) .hero-actions,
.app.is-firma .hero:not(.hero-hub) .hero-meta {
  opacity: 0;
  transform: translateY(22px);
  animation: none;
}
.app.is-firma .hero.is-in:not(.hero-hub) .hero-firm-row,
.app.is-firma .hero.is-in:not(.hero-hub) .hero-lead,
.app.is-firma .hero.is-in:not(.hero-hub) .hero-actions,
.app.is-firma .hero.is-in:not(.hero-hub) .hero-meta {
  animation: rise 0.9s var(--ease-out) forwards;
}
.app.is-firma .hero.is-in:not(.hero-hub) .hero-firm-row { animation-delay: 0.42s; }
.app.is-firma .hero.is-in:not(.hero-hub) .hero-meta { animation-delay: 0.58s; }
.app.is-firma .hero.is-in:not(.hero-hub) .hero-lead { animation-delay: 0.7s; }
.app.is-firma .hero.is-in:not(.hero-hub) .hero-actions { animation-delay: 0.84s; }

.hero-firm {
  animation-delay: 0.1s;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 16ch;
  margin-bottom: 14px;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  animation-delay: 0.22s;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 30px;
  font-size: 1.06rem;
  line-height: 1.55;
}

.hero-actions {
  animation-delay: 0.34s;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .btn-primary {
  background: #fff;
  color: var(--ac-deep);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.hero .btn-primary:hover {
  background: color-mix(in srgb, var(--ac) 10%, #fff);
}

.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.06);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
}

/* Hub (svetlý) — musí byť PO firmovom hero, inak prebíja biele/biele texty */
.hero.hero-hub .btn-primary {
  background: linear-gradient(180deg, #9085df 0%, #7c6fcd 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero.hero-hub .btn-primary:hover {
  background: linear-gradient(180deg, #9a90e6 0%, #7568c4 100%) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.hero.hero-hub .btn-ghost {
  background: transparent !important;
  border: 1px solid rgba(10, 10, 30, 0.16) !important;
  color: #0a0a1e !important;
  backdrop-filter: none !important;
}

.hero.hero-hub .btn-ghost:hover {
  background: rgba(124, 111, 205, 0.06) !important;
  border-color: rgba(124, 111, 205, 0.35) !important;
  color: #0a0a1e !important;
}

/* Hub A — editorial */
.hero.hero-hub-edit {
  position: sticky;
  top: var(--launch-h, 0px);
  z-index: 1;
  min-height: auto;
  height: auto;
  align-items: center;
  color: var(--ink);
  background: var(--paper);
  overflow: visible;
  isolation: isolate;
}

.app.has-hub-hero .hero.hero-hub-edit {
  padding-top: var(--top-h, 72px);
}

.hub-photo-wash {
  position: absolute;
  inset: 0 0 -72px 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hub-photo-wash-a,
.hub-photo-wash-b {
  position: absolute;
  inset: -25%;
  background-size: cover;
  background-position: center;
  filter: blur(80px) saturate(1.25);
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hub-photo-wash-a.is-on,
.hub-photo-wash-b.is-on {
  opacity: 0.48;
}

.hub-photo-wash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--paper) 52%, transparent);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hub-photo-wash {
    display: none;
  }
}
.hub-edit {
  position: relative;
  z-index: 1;
  max-width: min(1280px, calc(100% - 40px));
  width: 100%;
  margin: 0 auto;
  padding: 16px 20px 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.28fr);
  gap: 20px 28px;
  align-items: center;
}
.hub-edit-copy h1 {
  font-family: "Sora", "Figtree", system-ui, sans-serif;
  font-size: clamp(2.15rem, 4.8vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
  color: #0a0a1e;
  max-width: 11ch;
  margin-bottom: 12px;
}
.hub-edit-sub {
  color: rgba(10, 10, 30, 0.55);
  font-size: 1.04rem;
  margin-bottom: 22px;
}
.hub-edit-copy {
  position: relative;
  z-index: 2;
}
.hub-search {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(18, 16, 26, 0.08);
  border: 1px solid rgba(10, 10, 30, 0.08);
  overflow: hidden;
  margin-bottom: 18px;
  transition: border-radius 0.22s ease, box-shadow 0.22s ease;
}
.hub-search.is-open {
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(18, 16, 26, 0.14);
}
.hub-search-row {
  display: flex;
  align-items: stretch;
  min-height: 0;
}
.hub-search-native {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 0;
  pointer-events: none;
}
.hub-search-cell {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  min-width: 0;
  border: 0;
  border-right: 1px solid rgba(10, 10, 30, 0.08);
  background: transparent;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.hub-search-cell:last-of-type {
  border-right: 0;
}
.hub-search-cell:focus {
  outline: none;
}
.hub-search-cell.is-on {
  background: rgba(124, 111, 205, 0.07);
}
.hub-search-cell svg {
  color: var(--ac);
  flex-shrink: 0;
}
.hub-search-ico {
  display: flex;
  color: var(--ac);
}
.hub-search-txt {
  min-width: 0;
  flex: 1;
  pointer-events: none;
}
.hub-search-txt span {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1px;
}
.hub-search-val {
  display: block;
  min-width: 0;
  font-size: 0.94rem;
  font-weight: 700;
  color: #0a0a1e;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hub-search-chev {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%230a0a1e' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 4.5 6 8l3-3.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}
.hub-search-cell.is-on .hub-search-chev {
  transform: rotate(180deg);
}
.hub-search-menu {
  display: none;
  padding: 6px 8px 10px;
  border-top: 1px solid rgba(10, 10, 30, 0.08);
  max-height: min(320px, 46vh);
  overflow: auto;
}
.hub-search.is-open .hub-search-menu {
  display: block;
}
.hub-search-opt {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #0a0a1e;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}
.hub-search-opt:hover {
  background: rgba(10, 10, 30, 0.04);
}
.hub-search-opt.is-on {
  background: rgba(124, 111, 205, 0.12);
  color: var(--ac-deep, #4d3fa8);
}
.hub-search-opt svg,
.hub-search-opt-gap {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.hub-search-go {
  flex-shrink: 0;
  margin: 6px 6px 6px 8px;
  padding: 12px 22px !important;
  border-radius: 999px !important;
  white-space: nowrap;
}
.hub-edit-go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hub-edit-go svg {
  width: 16px;
  height: 16px;
}

/* Hub C — trhovisko */
.hero.hero-hub-market {
  min-height: auto;
  height: auto;
  align-items: flex-start;
  color: var(--ink);
  background: transparent;
  overflow: visible;
  padding: 12px 0 8px;
}
.hub-market {
  max-width: min(1180px, calc(100% - 40px));
  width: 100%;
  margin: 0 auto;
  padding: 8px 0 12px;
  text-align: center;
}
.hub-market h1 {
  font-family: "Sora", "Figtree", system-ui, sans-serif;
  font-size: clamp(1.85rem, 4.2vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: #0a0a1e;
  margin: 8px 0 22px;
}
.hub-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 200px));
  justify-content: center;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto 22px;
  text-align: left;
}
.hub-cat {
  position: relative;
  display: block;
  aspect-ratio: 5 / 4;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #1a1824;
  box-shadow: 0 10px 24px rgba(18, 16, 26, 0.1);
}
.hub-cat > img,
.hub-cat-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.78);
}
.hub-cat-ph {
  background: linear-gradient(135deg, #6b63d8, #3f8fef);
}
.hub-cat-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
.hub-cat-ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #0a0a1e;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.hub-cat-ico img,
.hub-cat-ico svg {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}
.hub-cat-emoji {
  font-size: 14px;
  line-height: 1;
}
.hub-cat.is-on {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--ac);
}
.hero-hub-market .hub-search {
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}
.hub-rec {
  padding-top: 40px !important;
}
.hub-sheet {
  position: relative;
  z-index: 2;
  margin-top: -48px;
  padding-bottom: 8px;
  border-radius: 32px 32px 0 0;
  background: var(--paper);
  box-shadow:
    0 -16px 48px rgba(10, 10, 30, 0.12),
    0 -1px 0 rgba(255, 255, 255, 0.62) inset;
}
.hub-sheet > .section:first-child {
  padding-top: 44px;
}
.hub-cats-sec {
  text-align: center;
  padding-top: 28px;
  padding-bottom: 0;
}
.hub-cats-sec h2 {
  font-family: "Sora", "Figtree", system-ui, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hub-rec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.hub-rec-head h2 {
  margin: 0;
}
.hub-rec-all {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ac-deep);
  cursor: pointer;
  white-space: nowrap;
}
.hub-rec-all:hover {
  text-decoration: underline;
}
.hub-show-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(520px, 100%);
  margin: 28px auto 0;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(18, 16, 26, 0.08);
  color: #0a0a1e;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.hub-show-more:hover {
  background: #fff;
}
.hub-collage {
  position: relative;
  height: 640px;
}
.hub-collage-stage {
  position: absolute;
  inset: 0;
}
.hub-collage-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 36px;
  height: 56px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(18, 16, 26, 0.12);
  transform: translateY(-50%);
}
.hub-collage-nav.is-prev {
  left: -8px;
  border-radius: 0 999px 999px 0;
}
.hub-collage-nav.is-next {
  right: -8px;
  border-radius: 999px 0 0 999px;
}
.hub-collage-nav::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 auto;
  border-right: 2px solid #0a0a1e;
  border-bottom: 2px solid #0a0a1e;
  transform: rotate(-45deg);
}
.hub-collage-nav.is-next::before {
  transform: rotate(135deg);
}
.hub-collage-nav:hover {
  background: #fff;
}
.hub-collage-dots {
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 6px;
}
.hub-collage-dot {
  width: 7px;
  height: 7px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(10, 10, 30, 0.18);
  cursor: pointer;
}
.hub-collage-dot.is-on {
  background: var(--ac);
}
.hub-shot {
  position: absolute;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  text-decoration: none;
  color: #fff;
  background: #1a1824;
  border: 3px solid #fff;
  box-shadow: 0 22px 48px rgba(18, 16, 26, 0.16);
  transition: transform 0.28s var(--ease-spring), box-shadow 0.28s ease;
}
.hub-shot:hover {
  z-index: 4 !important;
  box-shadow: 0 26px 56px rgba(18, 16, 26, 0.22);
}
.hub-shot:nth-child(1) {
  width: 78%;
  height: 66%;
  top: 0;
  right: 2%;
  z-index: 2;
  transform: rotate(-3deg);
}
.hub-collage-stage .hub-shot:nth-child(1):hover { transform: rotate(-3deg) translateY(-6px); }
.hub-collage-stage .hub-shot:nth-child(2) {
  width: 54%;
  height: 56%;
  left: 0;
  bottom: 0;
  z-index: 3;
  transform: rotate(4deg);
}
.hub-collage-stage .hub-shot:nth-child(2):hover { transform: rotate(4deg) translateY(-6px); }
.hub-collage-stage .hub-shot:nth-child(3) {
  width: 52%;
  height: 54%;
  right: 0;
  bottom: 4%;
  z-index: 1;
  transform: rotate(2.2deg);
}
.hub-collage-stage .hub-shot:nth-child(3):hover { transform: rotate(2.2deg) translateY(-6px); }
.hub-shot-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.84);
}
.hub-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}
.hub-shot-logo {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 68px;
  height: 68px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  transform: none;
}
.hub-shot-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px;
}
.hub-shot-meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
}
.hub-shot-meta strong {
  display: block;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
.hub-shot-meta span {
  display: block;
  margin-top: 2px;
  font-size: 0.8rem;
  font-weight: 650;
  color: #e8c36a;
}

@media (max-width: 900px) {
  .hub-cats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hub-edit {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hub-edit-copy h1 {
    max-width: 14ch;
  }
  .hub-collage {
    height: 480px;
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .hub-cats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hub-market {
    max-width: calc(100% - 32px);
  }
  .hub-market h1 {
    font-size: 1.7rem;
    margin-bottom: 16px;
  }
  .hub-edit {
    padding: 8px 16px 32px;
  }
  .hub-search {
    border-radius: 18px;
  }
  .hub-search.is-open {
    border-radius: 22px;
  }
  .hub-search-row {
    flex-direction: column;
  }
  .hub-search-cell {
    border-right: 0;
    border-bottom: 1px solid rgba(10, 10, 30, 0.08);
  }
  .hub-search-cell:last-of-type {
    border-bottom: 0;
  }
  .hub-search-go {
    margin: 4px 8px 10px;
    width: calc(100% - 16px);
  }
  .hub-shot-logo,
  .hub-shot-logo img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }
  .hub-shot:nth-child(1) {
    width: 68%;
    height: 56%;
  }
  .hub-shot:nth-child(2),
  .hub-shot:nth-child(3) {
    width: 48%;
    height: 48%;
  }
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 5;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: 0.9;
  animation: fadeIn 1s 0.8s both;
  display: block;
  text-decoration: none;
  color: transparent;
  pointer-events: auto;
}

/* Nad zaobleným sheetom — inak ho biely prekryv schová */
.app.is-firma .hero:not(.hero-hub) .hero-scroll {
  bottom: 28px;
}

.app.is-firma .hero:not(.hero-hub) .hero-content {
  padding-bottom: 56px;
}

.hero-scroll::before,
.hero-scroll::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 11px;
  height: 11px;
  margin-left: -5.5px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
  background: none;
  border-radius: 0;
  animation: none;
}

.hero-scroll::before {
  top: 6px;
  opacity: 0.95;
  animation: scrollChevron 1.7s ease-in-out infinite;
}

.hero-scroll::after {
  top: 14px;
  opacity: 0.45;
  animation: scrollChevron 1.7s ease-in-out infinite 0.18s;
}

@keyframes scrollChevron {
  0%,
  100% {
    opacity: 0.25;
    transform: translateY(0) rotate(45deg);
  }
  45% {
    opacity: 1;
    transform: translateY(5px) rotate(45deg);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
}

/* Mobil: hero ako v app — pekný cover crop + sheet so zaoblením cez foto */
@media (max-width: 720px) {
  .hero:not(.hero-hub) {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: 78vh;
    align-items: end;
  }

  .app.is-firma .hero:not(.hero-hub) {
    display: flex;
    flex-direction: column;
    aspect-ratio: unset;
    min-height: 0;
    height: auto;
    max-height: none;
    align-items: stretch;
  }

  .app.is-firma .hero:not(.hero-hub) .hero-panels {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 7 / 4;
    flex-shrink: 0;
  }

  .app.is-firma .hero:not(.hero-hub) .hero-slide {
    position: absolute;
    inset: 0;
  }

  .hero:not(.hero-hub) .hero-bg,
  .hero:not(.hero-hub) .hero-slide {
    background-size: cover, cover;
    background-position: center, center center;
  }

  .app.is-firma .hero:not(.hero-hub) .hero-bg {
    background-size: cover, cover;
    background-position: center center, center 40%;
  }

  .hero:not(.hero-hub) .hero-content {
    padding: 24px 18px 28px;
  }

  .hero:not(.hero-hub) .hero-kicker {
    margin-bottom: 10px;
    padding: 5px 11px;
    font-size: 0.66rem;
  }

  .hero:not(.hero-hub) .hero-firm {
    font-size: clamp(1.7rem, 7.2vw, 2.35rem);
    margin-bottom: 8px;
  }

  .hero:not(.hero-hub) .hero-lead {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero:not(.hero-hub) .hero-actions {
    gap: 8px;
  }

  .hero:not(.hero-hub) .hero-actions .btn {
    padding: 11px 16px;
    font-size: 0.92rem;
  }

  .hero:not(.hero-hub) .hero-scroll {
    bottom: 54px;
    transform: translateX(-50%);
    opacity: 0.92;
  }

  .app.is-firma .hero:not(.hero-hub) .hero-scroll {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    margin: 20px auto 8px;
    flex-shrink: 0;
  }

  .app.is-firma .hero:not(.hero-hub) .hero-content {
    margin-top: -88px;
    padding: 36px 18px 16px;
    background: linear-gradient(180deg, transparent 0%, #12101a 46%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.85;
  }
}

/* ── Reveal on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ── Sections ── */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 20px;
  scroll-margin-top: calc(80px + var(--launch-h, 0px));
}

.section h2 {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.section-lead {
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 36px;
  font-size: 1.02rem;
}

.svc-cats {
  display: grid;
  gap: 44px;
}

.svc-catalog .svc-cats {
  gap: 0;
}

.svc-cat {
  transition: transform 0.35s var(--ease-out);
}

.svc-cat.is-hidden {
  display: none;
}

.svc-page-tabs {
  position: relative;
  z-index: 1;
  margin: 4px 0 18px;
  padding: 0;
  background: transparent;
}

.svc-cat-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ac-deep);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(124, 111, 205, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc-cat-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ac), var(--ac2));
  box-shadow: 0 0 0 4px rgba(124, 111, 205, 0.12);
}

.svc-list {
  list-style: none;
  display: grid;
  gap: 6px;
}

.svc-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 24px;
  align-items: center;
  padding: 16px 14px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    background 0.25s ease,
    transform 0.55s var(--ease-out),
    box-shadow 0.3s ease,
    border-color 0.25s ease,
    opacity 0.55s var(--ease-out);
  border-radius: 16px;
  border: 1px solid transparent;
}
.svc-item.is-in {
  opacity: 1;
  transform: none;
}
.svc-list .svc-item:nth-child(2).is-in { transition-delay: 0.06s; }
.svc-list .svc-item:nth-child(3).is-in { transition-delay: 0.12s; }
.svc-list .svc-item:nth-child(4).is-in { transition-delay: 0.18s; }
.svc-list .svc-item:nth-child(5).is-in { transition-delay: 0.24s; }
.svc-list .svc-item:nth-child(6).is-in { transition-delay: 0.3s; }

.svc-item--rent {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 14px;
  overflow: hidden;
}

.svc-item--rent.svc-item--has-photo {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 18px;
  row-gap: 10px;
  align-items: center;
  padding: 14px;
}

.svc-item--rent .svc-item-main {
  padding: 2px 0 0;
  min-width: 0;
  align-self: center;
}

.svc-item--rent .svc-item-photo--empty {
  display: none;
}

.svc-item--rent.svc-item--has-photo .svc-item-photo {
  grid-row: 1 / span 2;
  grid-column: 1;
  align-self: stretch;
  min-height: 160px;
}

.svc-item-photo {
  width: 220px;
  height: 160px;
  border-radius: 16px;
  background-color: #1a1824;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(18, 16, 26, 0.1);
}

.svc-item:not(.svc-item--rent) {
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px 14px;
  align-items: center;
}

.svc-item:not(.svc-item--rent) .svc-item-photo {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(18, 16, 26, 0.1);
}

.svc-item:not(.svc-item--rent) .svc-item-photo--empty {
  visibility: hidden;
  background: none;
  box-shadow: none;
}

.svc-item:not(.svc-item--rent) .svc-item-main {
  display: block;
  min-width: 0;
  width: auto;
}

.svc-item:not(.svc-item--rent) .svc-meta {
  justify-self: end;
}

@media (max-width: 640px) {
  .svc-item--rent.svc-item--has-photo {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
    padding: 12px;
  }

  .svc-item--rent.svc-item--has-photo .svc-item-photo {
    grid-row: 1;
    grid-column: 1;
    width: 100%;
    height: 180px;
    min-height: 180px;
    border-radius: 14px;
  }

  .svc-item--rent.svc-item--has-photo .svc-item-main {
    grid-row: 2;
    grid-column: 1;
    padding: 0 2px;
  }

  .svc-item--rent.svc-item--has-photo .rent-cennik {
    grid-row: 3;
    grid-column: 1;
  }

  .svc-item--rent .svc-item-photo {
    width: 100%;
    height: 180px;
  }

  .svc-item:not(.svc-item--rent) {
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 10px 12px;
  }

  .svc-item:not(.svc-item--rent) .svc-item-photo {
    width: 64px;
    height: 64px;
    min-height: 64px;
    border-radius: 12px;
  }
}

.svc-item-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 24px;
  align-items: center;
  width: 100%;
}

.svc-item:hover {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(124, 111, 205, 0.16);
  transform: translateX(4px);
  box-shadow: 0 12px 32px rgba(18, 16, 26, 0.06);
}

.svc-item h3 {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.svc-item p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 4px;
  line-height: 1.4;
}

.svc-meta {
  text-align: right;
  white-space: nowrap;
}

.svc-price {
  font-weight: 700;
  color: var(--ac-deep);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  transition: color 0.2s ease, transform 0.25s var(--ease-spring);
}

.svc-item:hover .svc-price {
  color: var(--ac);
  transform: scale(1.04);
}

.svc-dur {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 3px;
}
.svc-book {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ac);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.svc-item:hover .svc-book,
.svc-item:focus-visible .svc-book {
  opacity: 1;
  transform: none;
}
@media (hover: none) {
  .svc-book {
    opacity: 1;
    transform: none;
  }
}

.about-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
    gap: 40px;
  }
}

.about-main {
  display: grid;
  gap: 22px;
}

.about-text {
  white-space: pre-line;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.about-sub {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ac-deep);
  margin: 0 0 10px;
}

.extras-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.extras-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(124, 111, 205, 0.1);
  border: 1px solid rgba(124, 111, 205, 0.14);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
}

.policy-block {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.policy-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  display: grid;
  gap: 6px;
}

.hero-firm-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.hero-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.hero-firm-text {
  min-width: 0;
}

.hero-firm-row .hero-firm {
  margin: 0;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-rating-stars {
  color: #ffd56a;
}

.hero-rating-count {
  opacity: 0.85;
  font-weight: 500;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 8px;
}
.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.hero-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}
.hero-live.is-open::before {
  background: #5fbf8a;
  box-shadow: 0 0 0 0 rgba(95, 191, 138, 0.45);
  animation: liveDot 2.4s ease-in-out infinite;
}
.hero-live.is-vac::before {
  background: #d97706;
  animation: none;
}
@keyframes liveDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(95, 191, 138, 0.4); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

.contact-block {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.contact-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(124, 111, 205, 0.12);
  box-shadow: 0 18px 40px rgba(18, 16, 26, 0.05);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 18px;
}

.contact-title,
.hours-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ac-deep);
  margin: 0 0 10px;
}

.contact-row {
  display: grid;
  grid-template-columns: minmax(7.4rem, max-content) minmax(0, 1fr);
  gap: 10px 12px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(10, 10, 30, 0.06);
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row-k {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-row-k--ico {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.contact-row-k--ico svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.contact-row a,
.contact-row span:last-child {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none;
  word-break: break-word;
}

.contact-row a:hover {
  color: var(--ac-deep);
}

.wa-link {
  color: #128c7e !important;
}

.contact-cta {
  width: 100%;
}

.hours-block {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  border-top: 1px solid rgba(124, 111, 205, 0.12);
  padding-top: 16px;
}

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

.hours-head .hours-title {
  margin: 0;
}

.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.hours-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(10, 10, 30, 0.25);
  flex-shrink: 0;
}

.hours-status.is-open {
  color: var(--ok);
}

.hours-status.is-open::before {
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(26, 143, 110, 0.16);
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.hours-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  padding: 7px 10px;
  border-radius: 10px;
  min-width: 0;
}

.hours-row.is-today {
  background: rgba(124, 111, 205, 0.1);
}

.hours-day {
  color: var(--ink);
  font-weight: 600;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hours-time {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-align: right;
}

.hours-row.is-today .hours-time {
  color: var(--ink);
  font-weight: 700;
}

.hours-row.is-closed .hours-time {
  color: rgba(10, 10, 30, 0.38);
}

.map-block {
  border-top: 1px solid rgba(124, 111, 205, 0.12);
  padding-top: 16px;
}

.firm-map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 11;
  background: rgba(124, 111, 205, 0.06);
}

.firm-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-nav-link {
  display: inline-flex;
  margin-top: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ac-deep);
}

.reviews-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.reviews-head h2 {
  margin: 0;
}

.reviews-summary {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.reviews-summary span {
  color: #c9a227;
}

.reviews-grid {
  display: grid;
  gap: 12px;
}

.reviews-grid.is-collapsed .review-card--extra {
  display: none;
}

@media (min-width: 800px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.reviews-more {
  appearance: none;
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(124, 111, 205, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ac-deep);
  font-family: "Sora", "DM Sans", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.reviews-more:hover {
  background: #fff;
  border-color: rgba(124, 111, 205, 0.4);
}

.review-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(124, 111, 205, 0.12);
}

.review-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.review-top strong {
  display: block;
  font-size: 0.95rem;
}

.review-date {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.review-stars {
  color: #c9a227;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  white-space: nowrap;
}

.review-body {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.review-title {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.review-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.review-photos img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  background: rgba(124, 111, 205, 0.08);
}

.review-reply {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(124, 111, 205, 0.07);
  border-left: 3px solid var(--ac);
}

.review-reply span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ac-deep);
  margin-bottom: 4px;
}

.review-reply p {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.45;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 32px 20px 56px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand-line {
  margin-bottom: 8px;
}

.footer-contact {
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
  align-items: center;
  margin: 4px 0 12px;
  font-size: 0.84rem;
}

.footer-legal span {
  opacity: 0.45;
}

.footer-note {
  margin: 0 auto;
  max-width: 420px;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--muted);
  opacity: 0.9;
}

.footer-firm {
  margin: 0 auto 12px;
  max-width: 520px;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}
.footer-firm summary {
  cursor: pointer;
  list-style: none;
  display: inline-block;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(10, 10, 30, 0.42);
}
.footer-firm summary::-webkit-details-marker {
  display: none;
}
.footer-firm summary::after {
  content: " ▾";
  font-size: 0.65em;
  opacity: 0.7;
}
.footer-firm[open] summary::after {
  content: " ▴";
}
.footer-firm p {
  margin: 8px 0 0;
  line-height: 1.5;
  color: rgba(10, 10, 30, 0.48);
  font-size: 0.72rem;
}

.footer a {
  color: var(--ac-deep);
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  color: var(--ac);
  text-decoration: none;
}

.footer strong {
  color: var(--ink);
  letter-spacing: -0.02em;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 6px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
  cursor: pointer;
}

.consent-check input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--ac);
}

.consent-check a {
  color: var(--ac-deep);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: max(10px, env(safe-area-inset-left, 0px));
  right: max(10px, env(safe-area-inset-right, 0px));
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 12000;
  pointer-events: none;
  width: auto;
  max-width: none;
  box-sizing: border-box;
}

.cookie-banner-inner {
  pointer-events: auto;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 12px 40px rgba(20, 16, 40, 0.16);
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}

.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.cookie-banner-inner p {
  margin: 0;
  width: 100%;
  min-width: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted);
}

.cookie-banner-inner a {
  color: var(--ac-deep);
  font-weight: 600;
}

.cookie-banner-inner .btn,
.cookie-banner-actions .btn,
.cookie-banner .cookie-btn {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  flex-shrink: 1;
  box-sizing: border-box;
  padding: 12px 14px;
  font-size: 0.88rem;
  white-space: normal;
  text-align: center;
}

.firm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
.firm-grid:not(.is-expanded) .firm-card.is-extra {
  display: none;
}

.firm-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 0;
  border-radius: 22px;
  overflow: visible;
  background: #fff;
  box-shadow: 0 12px 32px rgba(18, 16, 26, 0.08);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
}
.firm-card[hidden] {
  display: none !important;
}

.firm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(18, 16, 26, 0.14);
}

.firm-card-top {
  position: relative;
}

.firm-card-media {
  aspect-ratio: 11 / 9;
  height: auto;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  background-color: #1a1824;
  background-image:
    linear-gradient(180deg, rgba(7, 7, 15, 0.04), rgba(7, 7, 15, 0.22)),
    var(--firm-img, linear-gradient(135deg, #5b52a8, #7c6fcd));
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}

.firm-card-media.is-empty {
  background: linear-gradient(135deg, rgba(124, 111, 205, 0.35), rgba(91, 82, 168, 0.85));
}

.firm-card-logo {
  position: absolute;
  left: 14px;
  bottom: -24px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(18, 16, 26, 0.14);
  display: grid;
  place-items: center;
  overflow: hidden;
  z-index: 1;
  border: 0;
}
.firm-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 14px;
}

.firm-card-body {
  padding: 36px 16px 16px;
}

.firm-card-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ac-deep);
  margin-bottom: 6px;
}

.firm-card-body h3 {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.firm-card-rate {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0a0a1e;
  margin-bottom: 6px;
}
.firm-card-rate span {
  color: #e0a51a;
}
.firm-card-rate em {
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
}

.firm-card-open {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--muted);
  margin-bottom: 6px;
}
.firm-card-open::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c4c0d4;
  flex-shrink: 0;
}
.firm-card-open.is-open {
  color: #1a7a52;
}
.firm-card-open.is-open::before {
  background: #22a06b;
}

.firm-card-place {
  font-size: 0.84rem;
  color: var(--muted);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  align-items: start;
}

.photo-grid.is-collapsed .photo-cell--extra {
  display: none;
}

.photo-cell {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: transparent;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
}

.photo-cell:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(124, 111, 205, 0.16);
}

.photo-cell img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
  background: transparent;
}

.photo-lb {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(7, 7, 15, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 56px 52px;
  box-sizing: border-box;
}

.photo-lb-img {
  display: block;
  max-width: min(1100px, calc(100vw - 120px));
  max-height: calc(100vh - 128px);
  max-height: calc(100dvh - 128px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  margin: 0;
}

.photo-lb-x {
  position: absolute;
  top: max(12px, env(safe-area-inset-top, 0px));
  right: max(12px, env(safe-area-inset-right, 0px));
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.photo-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.photo-lb-prev {
  left: max(10px, env(safe-area-inset-left, 0px));
}

.photo-lb-next {
  right: max(10px, env(safe-area-inset-right, 0px));
}

.photo-lb-count {
  position: absolute;
  bottom: max(14px, env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .photo-lb {
    padding: 56px 12px 48px;
  }

  .photo-lb-img {
    max-width: calc(100vw - 24px);
    max-height: calc(100dvh - 112px);
  }

  .photo-lb-nav {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }
}

.hub-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hub-step {
  padding: 22px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.hub-step span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(124, 111, 205, 0.14);
  color: var(--ac-deep);
  font-weight: 700;
  margin-bottom: 12px;
}

.hub-step h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.hub-step p {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 800px) {
  .hub-steps {
    grid-template-columns: 1fr;
  }
}

.section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ac);
  margin-bottom: 10px;
}

.biz-offer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0 8px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(124, 111, 205, 0.28);
  background:
    linear-gradient(135deg, rgba(124, 111, 205, 0.12), rgba(184, 174, 255, 0.08)),
    rgba(255, 255, 255, 0.7);
}

.biz-offer-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #9085df 0%, var(--ac) 100%);
}

.biz-offer p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink);
}

.biz-offer strong {
  font-weight: 700;
  color: var(--ac-deep);
}

.partner-offer-note {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--ac-deep);
  background: rgba(124, 111, 205, 0.1);
  border: 1px solid rgba(124, 111, 205, 0.16);
}

.partner-offer-note strong {
  font-weight: 700;
}

.biz-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 28px;
  align-items: start;
  margin-top: 8px;
}

.biz-points {
  display: grid;
  gap: 16px;
}

.biz-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.biz-point-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(124, 111, 205, 0.12);
  color: var(--ac-deep);
}

.biz-point-icon svg {
  width: 20px;
  height: 20px;
}

.biz-point h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.biz-point p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.partner-form-card {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(40, 30, 90, 0.08);
  padding: 22px 20px 20px;
}

.partner-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.partner-form .field textarea {
  min-height: 110px;
  resize: vertical;
}

.partner-form-submit {
  width: 100%;
  margin-top: 4px;
  padding: 13px 16px;
}

.partner-form-err {
  margin-top: 12px;
  color: var(--danger);
  font-size: 0.9rem;
  font-weight: 600;
}

.partner-form-ok {
  text-align: center;
  padding: 28px 12px 18px;
}

.partner-form-ok-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(26, 143, 110, 0.12);
  color: var(--ok);
}

.partner-form-ok-icon svg {
  width: 26px;
  height: 26px;
}

.partner-form-ok h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.partner-form-ok p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 34ch;
  margin: 0 auto;
}

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

@media (max-width: 640px) {
  .partner-form-row {
    grid-template-columns: 1fr;
  }
}

/* ── Booking picker ── */
.pick-wrap {
  display: grid;
  gap: 22px;
}

.pick-stage {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.pick-stage > .cat-tabs {
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 2px 16px;
  overflow: visible;
  margin: 0;
  padding: 4px 0 0;
  border-bottom: 1px solid rgba(60, 60, 67, 0.1);
  background: #fff;
  position: relative;
  z-index: 2;
}

.pick-stage > .cat-tabs::-webkit-scrollbar {
  display: none;
}

.pick-stage > .cat-tabs .cat-tab {
  padding: 10px 0 12px;
  line-height: 1.25;
}

.pick-stage > .pick-wrap {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  margin: 0;
  padding: 14px 0 8px;
  animation: none;
}

.pick-stage > .pick-bar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 12px 2px 8px;
  border-top: 1px solid rgba(60, 60, 67, 0.1);
  background: #fff;
}

.pick-bar-meta {
  min-width: 0;
  flex: 1 1 auto;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pick-bar-hint {
  color: var(--muted);
  font-weight: 500;
}

.pick-bar .btn {
  flex-shrink: 0;
  min-width: 96px;
}

.pick-row.on {
  border-color: rgba(124, 111, 205, 0.55);
  background: rgba(124, 111, 205, 0.08);
  box-shadow: 0 0 0 1px rgba(124, 111, 205, 0.18);
}

.pick-row.on .pick-row-name {
  color: var(--ac-deep);
}

.summary-sub {
  display: inline-block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.pick-cat-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ac-deep);
  margin-bottom: 8px;
}

.pick-cat-list {
  display: grid;
  gap: 8px;
}

.pick-row {
  width: 100%;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  text-align: left;
  border: 1px solid var(--line);
  background: rgba(250, 249, 252, 0.95);
  border-radius: 16px;
  padding: 10px 12px 10px 10px;
  cursor: pointer;
  user-select: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.25s ease,
    transform 0.25s var(--ease-out);
}

.pick-row--photo {
  padding: 10px 12px 10px 10px;
}

.pick-row-thumb {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background-color: #1a1824;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.pick-row-thumb--empty {
  visibility: hidden;
  background: none;
}

.pick-row:hover {
  border-color: rgba(124, 111, 205, 0.4);
  background: #fff;
  box-shadow: 0 10px 26px rgba(91, 82, 168, 0.1);
  transform: translateY(-2px);
}

.pick-row-main {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.pick-row-name {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
}

.pick-row-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.35;
}

.pick-row-meta {
  text-align: right;
  white-space: nowrap;
}

.pick-row-price {
  display: block;
  font-weight: 700;
  color: var(--ac-deep);
}

.pick-row-dur {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.pick-qty {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 6px;
}

.pick-qty-n {
  min-width: 1.25rem;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.pick-qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.pick-qty-btn:hover {
  border-color: rgba(124, 111, 205, 0.5);
  background: rgba(124, 111, 205, 0.08);
}

/* ── Booking popup (centered modal) ── */
.sheet[hidden] {
  display: none !important;
}

.sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 20, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fade 0.28s ease;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.sheet-panel {
  position: relative;
  z-index: 1;
  width: min(460px, calc(100vw - 32px));
  /* Zmestí sa do viewportu (padding sheetu) — inak to vyzerá orezané / mimo stredu */
  height: min(720px, calc(100dvh - 48px));
  max-height: calc(100dvh - 48px);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 28px;
  box-shadow:
    0 30px 80px rgba(10, 8, 20, 0.28),
    0 0 0 1px rgba(124, 111, 205, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: popIn 0.42s var(--ease-out);
  transform-origin: center center;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 900px) {
  .sheet {
    padding: 32px 40px;
  }

  .sheet-panel {
    width: min(740px, calc(100vw - 80px));
    height: min(860px, calc(100dvh - 64px));
    max-height: calc(100dvh - 64px);
    border-radius: 32px;
  }

  .sheet-head {
    padding: 22px 28px 14px;
  }

  .sheet-head h2 {
    font-size: 1.32rem;
  }

  .sheet-body {
    padding: 16px 28px 24px;
  }

  .pick-row {
    grid-template-columns: 72px minmax(0, 1fr) auto;
    padding: 12px 16px 12px 12px;
    gap: 16px 20px;
  }

  .pick-row--photo {
    padding: 12px 16px 12px 12px;
  }

  .pick-row-thumb {
    width: 72px;
    height: 72px;
    border-radius: 14px;
  }

  .pick-row-name {
    font-size: 1.05rem;
  }

  .pick-row-desc {
    font-size: 0.88rem;
  }
}

@media (max-width: 720px) {
  .sheet {
    padding: 0;
    display: grid;
    place-items: stretch;
    align-items: stretch;
  }

  .sheet-panel {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    max-height: none;
    border-radius: 0;
    animation: popIn 0.4s var(--ease-out);
  }

  .sheet-body {
    padding: 12px 16px 12px;
  }

  .sheet-body:has(> .pick-stage) {
    padding-bottom: 8px;
  }

  .pick-stage > .pick-bar {
    padding-bottom: max(10px, env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 600px) {
  .top-nav {
    display: none;
  }

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

  .top.nav-open .mobile-nav {
    display: flex;
  }

  .top-inner {
    padding: 8px 14px;
    min-height: 64px;
  }
  body {
    --top-h: 64px;
  }

  .top-actions .btn-primary {
    padding: 10px 14px;
    font-size: 0.88rem;
  }
}

@media (max-height: 520px) {
  .sheet-panel {
    height: 100%;
    max-height: 100%;
  }
}

.sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 12px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.sheet-head h2 {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.sheet-x {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s ease, transform 0.25s var(--ease-spring);
}

.sheet-x:hover {
  background: rgba(124, 111, 205, 0.12);
  transform: rotate(90deg);
}

.sheet-body {
  padding: 14px 20px 20px;
  overflow: auto;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.sheet-body > .steps {
  flex-shrink: 0;
}

.sheet-body > .pick-stage {
  flex: 1 1 auto;
  min-height: 0;
}

.sheet-body > .bk-done {
  flex: 1 1 auto;
  min-height: 0;
}

.sheet-body:has(> .pick-stage) {
  overflow: hidden;
}

@media (max-width: 600px) {
  .sheet .sheet-body {
    padding: 12px 16px 12px;
  }
  .sheet .sheet-body:has(> .pick-stage) {
    padding-bottom: 8px;
  }
}

.bk-addon-lead {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.45;
}

.bk-addon-sec {
  margin-bottom: 16px;
}

.bk-addon-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}

.bk-addon-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bk-addon {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.bk-addon:hover {
  border-color: rgba(124, 111, 205, 0.35);
}

.bk-addon.on {
  border-color: rgba(124, 111, 205, 0.55);
  background: rgba(124, 111, 205, 0.08);
  box-shadow: 0 4px 16px rgba(91, 82, 168, 0.1);
}

.bk-addon-check {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 1.5px solid rgba(10, 10, 30, 0.18);
  flex-shrink: 0;
  position: relative;
  background: #fff;
}

.bk-addon.on .bk-addon-check {
  border-color: var(--ac);
  background: var(--ac);
}

.bk-addon.on .bk-addon-check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.bk-addon-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bk-addon-name {
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--ink);
}

.bk-addon-sub {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}

.bk-addon-price {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ac-deep);
  white-space: nowrap;
}

.bk-addon-sum {
  margin: 4px 0 12px;
  font-size: 0.9rem;
  color: var(--muted);
}


.sheet-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 14px;
  position: sticky;
  bottom: 0;
  background: transparent;
  z-index: 2;
}

.sheet-actions .btn-primary {
  box-shadow: none;
}

.sheet-actions .btn-ghost {
  background: #fff;
  box-shadow: none;
}


.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 26px;
  overflow: visible;
  padding: 0 0 0;
  margin: 0 0 6px;
  border-bottom: 1px solid rgba(60, 60, 67, 0.1);
  background: transparent;
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .cat-tabs,
  .svc-page-tabs,
  .pick-stage > .cat-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 2px 18px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .cat-tabs::-webkit-scrollbar,
  .svc-page-tabs::-webkit-scrollbar,
  .pick-stage > .cat-tabs::-webkit-scrollbar {
    display: none;
  }
  .pick-stage > .cat-tabs {
    overflow-x: auto;
    overflow-y: hidden;
  }
}

.cat-tabs::-webkit-scrollbar {
  display: none;
}

.cat-tab {
  appearance: none;
  flex: 0 0 auto;
  border: 0;
  background: transparent !important;
  color: rgba(10, 10, 30, 0.45);
  border-radius: 0;
  padding: 8px 0 13px;
  font-family: "Sora", "DM Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: -0.015em;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  box-shadow: none !important;
  transition: color 0.22s ease;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cat-tab-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: inherit;
  opacity: 0.85;
}

.cat-tab-ic .kat-ic-svg,
.cat-tab-ic svg {
  width: 18px;
  height: 18px;
  display: block;
}

.cat-tab-ic .kat-ic-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.cat-tab.on .cat-tab-ic {
  opacity: 1;
  color: var(--ac-deep);
}

.cat-tab-lbl {
  display: inline-block;
}

.cat-tab:hover {
  color: var(--ink);
  background: transparent !important;
}

.cat-tab.on {
  color: var(--ac-deep);
  background: transparent !important;
  box-shadow: none !important;
  border: 0;
}

.cat-tab.on::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  border-radius: 2px;
  background: var(--ac);
}

html:not([data-mood]) .cat-tab.on::after {
  background: linear-gradient(90deg, var(--ac), #31b8ff);
}

.steps {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}

.step-dot {
  height: 4px;
  flex: 1;
  border-radius: 4px;
  background: rgba(124, 111, 205, 0.14);
  overflow: hidden;
}

.step-dot.on {
  background: var(--ac);
  box-shadow: 0 0 12px rgba(124, 111, 205, 0.35);
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: #faf9fc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(124, 111, 205, 0.55);
  box-shadow: 0 0 0 4px rgba(124, 111, 205, 0.12);
  background: #fff;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid var(--line);
  background: #faf9fc;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 600;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s var(--ease-spring),
    color 0.2s ease;
}

.chip:hover {
  transform: translateY(-1px);
}

.chip.on {
  background: rgba(124, 111, 205, 0.12);
  border-color: var(--ac);
  color: var(--ac-deep);
}

.chip:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.summary {
  background: linear-gradient(145deg, rgba(124, 111, 205, 0.08), rgba(14, 165, 160, 0.06));
  border: 1px solid rgba(124, 111, 205, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  margin: 12px 0 18px;
  font-size: 0.95rem;
  animation: rise 0.35s var(--ease-out) both;
}

.summary strong {
  font-weight: 700;
}

.err {
  color: var(--danger);
  font-size: 0.92rem;
  margin: 8px 0 12px;
  min-height: 1.2em;
}

.ok-msg {
  color: var(--ok);
  font-weight: 600;
  margin: 8px 0 16px;
  animation: rise 0.4s var(--ease-out) both;
}

.bk-done {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 4px 0;
  min-height: 0;
  animation: rise 0.45s var(--ease-out) both;
}

.bk-done-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, #9085df 0%, var(--ac) 55%, var(--ac-deep) 100%);
  margin-bottom: 18px;
  animation: bkDonePop 0.55s var(--ease-spring) both;
}

@keyframes bkDonePop {
  from {
    opacity: 0;
    transform: scale(0.72);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.bk-done-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ac-deep);
  margin: 0 0 6px;
}

.bk-done-title {
  font-family: "Sora", "DM Sans", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.25;
}

.bk-done-lead {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 32ch;
  margin: 0 0 22px;
}

.bk-done-card {
  width: 100%;
  text-align: left;
  background: linear-gradient(180deg, rgba(124, 111, 205, 0.07), rgba(124, 111, 205, 0.03));
  border: 1px solid rgba(124, 111, 205, 0.12);
  border-radius: 18px;
  padding: 6px 4px;
  margin-bottom: 8px;
}

.bk-done-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(10, 10, 30, 0.06);
}

.bk-done-row:last-child {
  border-bottom: 0;
}

.bk-done-row span {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 2px;
}

.bk-done-row strong {
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--ink);
  text-align: right;
  line-height: 1.4;
  word-break: break-word;
}

.bk-done-actions {
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
}

.bk-done-actions .btn {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .bk-done,
  .bk-done-mark {
    animation: none !important;
  }
}

.hint {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 8px;
}

.pickup-anytime {
  margin: 4px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 10, 30, 0.08);
}
.pickup-anytime strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.pickup-anytime span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.empty {
  color: var(--muted);
  padding: 12px 0;
}

.rent-cal-wrap {
  margin: 8px 0 4px;
  width: 100%;
}

.book-date-quick {
  margin-top: 10px;
}

.book-date-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.book-date-head label {
  margin: 0;
}

.bk-date-cal-btn {
  appearance: none;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(124, 111, 205, 0.22);
  background: #fff;
  color: var(--ac-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.bk-date-cal-btn:hover {
  background: rgba(124, 111, 205, 0.08);
  border-color: rgba(124, 111, 205, 0.4);
}

.bk-date-cal-btn:active {
  transform: scale(0.96);
}

.bk-date-cal-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.book-cal-modal {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.book-cal-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

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

.book-cal-modal-bg {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(10, 8, 20, 0.45);
  cursor: pointer;
}

.book-cal-modal-sheet {
  position: relative;
  z-index: 1;
  width: min(100%, 340px);
  max-height: min(86%, 460px);
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(10, 8, 20, 0.28);
  padding: 8px 12px 14px;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.book-cal-modal.is-open .book-cal-modal-sheet {
  transform: none;
}

.book-cal-modal-grab {
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: rgba(10, 10, 30, 0.12);
  margin: 2px auto 8px;
}

.book-cal-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}

.book-cal-modal-x {
  appearance: none;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.book-cal-modal .rent-cal {
  box-shadow: none;
  border: 0;
  padding: 2px 0 0;
  background: transparent;
  border-radius: 0;
}

.book-cal-modal .rent-cal-hdr {
  margin-bottom: 10px;
  padding-bottom: 8px;
}

.book-cal-modal .rent-cal-hdr h3 {
  font-size: 0.98rem;
}

.book-cal-modal .rent-cal-nav {
  width: 32px;
  height: 32px;
  font-size: 17px;
}

.book-cal-modal .rent-cal-weekdays,
.book-cal-modal .rent-cal-grid {
  gap: 4px;
}

.book-cal-modal .rent-cal-wd {
  font-size: 0.65rem;
  padding: 4px 0;
}

.book-cal-modal .rent-cal-day {
  min-height: 0;
  font-size: 0.84rem;
}

.rent-cal {
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(180deg, #fff 0%, #faf9fc 100%);
  border: 1px solid rgba(124, 111, 205, 0.1);
  border-radius: 20px;
  padding: 16px 14px 14px;
  box-shadow:
    0 12px 32px rgba(10, 10, 30, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.rent-cal-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 0 2px 12px;
  border-bottom: 1px solid rgba(60, 60, 67, 0.08);
}

.rent-cal-hdr h3 {
  font-family: "Sora", "DM Sans", system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.03em;
}

.rent-cal-nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: rgba(124, 111, 205, 0.1);
  color: var(--ac-deep);
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rent-cal-nav:hover:not(:disabled) {
  background: rgba(124, 111, 205, 0.18);
  transform: scale(1.04);
}

.rent-cal-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.rent-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 8px;
}

.rent-cal-wd {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(10, 10, 30, 0.38);
  text-align: center;
  padding: 6px 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rent-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
}

.rent-cal-day {
  aspect-ratio: 1;
  width: 100%;
  max-width: none;
  min-height: 44px;
  height: auto;
  margin: 0;
  border-radius: 14px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 650;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  font: inherit;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.rent-cal-day:hover:not(.disabled):not(.other):not(.is-start):not(.is-end) {
  background: rgba(124, 111, 205, 0.1);
  color: var(--ac-deep);
}

.rent-cal-day.other {
  visibility: hidden;
  border: none;
  pointer-events: none;
}

.rent-cal-day.disabled {
  opacity: 0.28;
  cursor: not-allowed;
  color: rgba(10, 10, 30, 0.35);
  text-decoration: none;
}

.rent-cal-day.today:not(.is-start):not(.is-end):not(.in-range) {
  box-shadow: inset 0 0 0 1.5px rgba(124, 111, 205, 0.45);
  color: var(--ac-deep);
}

.rent-cal-day.in-range {
  background: rgba(124, 111, 205, 0.14);
  color: var(--ac-deep);
  border-radius: 10px;
}

.rent-cal-day.is-start,
.rent-cal-day.is-end {
  background: linear-gradient(145deg, #8b7fe0, var(--ac));
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(124, 111, 205, 0.32);
  font-weight: 700;
}

.rent-cal-day.is-start.in-range {
  border-radius: 14px 10px 10px 14px;
}

.rent-cal-day.is-end.in-range {
  border-radius: 10px 14px 14px 10px;
}

.rent-cal-hint {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

.rent-cal-buf {
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--ac-deep);
  text-align: center;
  line-height: 1.35;
}

@media (max-width: 420px) {
  .rent-cal {
    padding: 12px 8px 10px;
  }

  .rent-cal-grid,
  .rent-cal-weekdays {
    gap: 4px;
  }

  .rent-cal-day {
    min-height: 40px;
    border-radius: 12px;
    font-size: 0.95rem;
  }
}

.rent-cennik {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(124, 111, 205, 0.05);
  border: 1px solid rgba(124, 111, 205, 0.12);
}

.rent-cennik--compact {
  margin: 0;
  padding: 10px 12px;
  background: rgba(10, 10, 30, 0.03);
}

.rent-cennik--fold {
  padding: 0;
  background: transparent;
  border: 1px solid rgba(124, 111, 205, 0.14);
  overflow: hidden;
}

.rent-cennik--fold.rent-cennik--compact {
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
}

.rent-cennik-sum {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--ac-deep);
  user-select: none;
}

.rent-cennik-sum::-webkit-details-marker {
  display: none;
}

.rent-cennik-sum::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.7;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.rent-cennik--fold[open] .rent-cennik-sum {
  border-bottom: 1px solid rgba(124, 111, 205, 0.1);
}

.rent-cennik--fold[open] .rent-cennik-sum::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.rent-cennik--fold .rent-cennik-list {
  padding: 8px 10px 10px;
}

.rent-cennik-hd {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.35px;
  margin-bottom: 8px;
}

.rent-cennik-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rent-cennik-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  font-size: 0.88rem;
  padding: 4px 6px;
  border-radius: 8px;
  color: var(--ink);
}

.rent-cennik-row.is-active {
  background: rgba(124, 111, 205, 0.14);
  font-weight: 700;
  color: var(--ac-deep);
}

.rent-cennik-range {
  color: var(--muted);
}

.rent-cennik-row.is-active .rent-cennik-range {
  color: var(--ac-deep);
}

.rent-cennik-price {
  font-weight: 700;
  white-space: nowrap;
}

.prod-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prod-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(124, 111, 205, 0.12);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.prod-item.is-off {
  cursor: default;
  opacity: 0.72;
}

.prod-thumb {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-color: rgba(124, 111, 205, 0.08);
}

.prod-thumb--empty {
  background-image: linear-gradient(135deg, rgba(124, 111, 205, 0.12), rgba(14, 165, 160, 0.1));
}

.prod-body h3 {
  font-size: 1.02rem;
  font-weight: 600;
  margin: 0;
}

.prod-body p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 4px 0 8px;
  line-height: 1.4;
}

.prod-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.prod-price {
  font-weight: 700;
  color: var(--ac-deep);
}

.prod-stock {
  font-size: 0.82rem;
  color: var(--muted);
}

.prod-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(10, 10, 30, 0.05);
  border: 1px solid rgba(10, 10, 30, 0.08);
  border-radius: 999px;
  padding: 4px 8px;
}

.prod-book {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ac);
}

.prod-pickup {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.firm-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.firm-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: 1px solid rgba(10, 10, 30, 0.12);
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  flex-shrink: 0;
}

.firm-social:hover {
  border-color: var(--ac);
  color: var(--ac);
}

.hero-socials {
  margin-top: 10px;
}

.hero-socials .firm-social {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
}

.app.has-dark-hero .top:not(.is-scrolled):not(.nav-open) .top-social .firm-social {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav .firm-socials {
  padding: 10px 8px 6px;
}

.mobile-nav .firm-social {
  width: 36px;
  height: 36px;
  padding: 0;
}

@media (max-width: 720px) {
  .top-social {
    display: none;
  }
}

.bk-doklad-section {
  margin: 16px 0 8px;
}

.bk-doklad-hd {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.bk-doklad-hint {
  margin: 0 0 12px;
}

.bk-doklad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bk-doklad-slot {
  background: rgba(124, 111, 205, 0.04);
  border: 1px solid rgba(124, 111, 205, 0.12);
  border-radius: 12px;
  padding: 10px;
  min-height: 108px;
  display: flex;
  flex-direction: column;
}

.bk-doklad-slot-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.35px;
  margin-bottom: 8px;
}

.bk-doklad-slot-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.bk-doklad-add {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 72px;
  border: 1.5px dashed rgba(124, 111, 205, 0.35);
  border-radius: 10px;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  padding: 8px;
}

.bk-doklad-add-plus {
  font-size: 22px;
  line-height: 1;
  color: var(--ac);
  font-weight: 400;
}

.bk-doklad-preview {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 6px;
}

.bk-doklad-preview img {
  display: block;
  width: 100%;
  height: 72px;
  object-fit: cover;
}

.bk-doklad-rm {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.bk-doklad-change {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ac);
  cursor: pointer;
  padding: 4px 0;
}

@media (max-width: 420px) {
  .bk-doklad-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Web chat widget (roh — ako v app) ── */
.web-chat-root[hidden],
.web-chat-panel[hidden],
.web-chat-gate[hidden],
.web-chat-body[hidden],
.web-chat-teaser[hidden] {
  display: none !important;
}

.web-chat-root {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 11000;
  pointer-events: none;
}

.web-chat-launcher {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
}

.web-chat-pulse {
  display: none;
}

@keyframes webChatPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.55;
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--ac) 45%, transparent);
  }
  70% {
    transform: scale(1.18);
    opacity: 0;
    box-shadow: 0 0 0 14px color-mix(in srgb, var(--ac) 0%, transparent);
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.web-chat-teaser {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border: 1px solid color-mix(in srgb, white 42%, var(--ac));
  border-radius: 999px;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--ac) 88%, white) 0%,
    var(--ac-deep) 100%
  );
  box-shadow:
    0 12px 28px color-mix(in srgb, var(--ac-deep) 32%, transparent),
    0 2px 8px rgba(10, 10, 30, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  cursor: pointer;
  opacity: 0;
  transform: translateX(12px) scale(0.96);
  transition:
    opacity 0.38s var(--ease-out),
    transform 0.42s var(--ease-spring),
    background 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
  max-width: min(260px, calc(100vw - 100px));
  -webkit-tap-highlight-color: transparent;
  text-align: left;
}

.web-chat-teaser.is-visible {
  opacity: 1;
  transform: none;
  animation: none;
}

@keyframes webChatTeaserFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.web-chat-teaser-text {
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  color: #fff;
}

.web-chat-teaser-dots {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  flex-shrink: 0;
}

.web-chat-teaser-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  animation: webChatDot 1.2s ease-in-out infinite;
}

.web-chat-teaser-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.web-chat-teaser-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes webChatDot {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.web-chat-fab {
  pointer-events: auto;
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ac);
  background: #fff;
  border: 1.5px solid var(--ac);
  box-shadow: 0 8px 22px rgba(18, 16, 26, 0.12);
  transition:
    transform 0.22s var(--ease-spring),
    box-shadow 0.25s var(--ease-out),
    background 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out),
    color 0.25s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}

.web-chat-ic {
  width: 22px;
  height: 22px;
  display: block;
}

.web-chat-fab:hover {
  transform: translateY(-2px) scale(1.03);
  color: var(--ac-deep);
  border-color: var(--ac-deep);
  background: #fff;
}

.web-chat-fab:active {
  transform: scale(0.96);
}

html:has(.app.has-dark-hero):not(.chat-on-sheet):not(:has(.top.is-scrolled)):not(:has(.top.nav-open)) .web-chat-fab {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

html:has(.app.has-dark-hero):not(.chat-on-sheet):not(:has(.top.is-scrolled)):not(:has(.top.nav-open)) .web-chat-fab:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

html:has(.app.has-dark-hero):not(.chat-on-sheet):not(:has(.top.is-scrolled)) .web-chat-teaser {
  background: rgba(18, 16, 14, 0.52);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid color-mix(in srgb, var(--ac) 28%, rgba(255, 255, 255, 0.32));
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.web-chat-fab.is-open,
.web-chat-root.is-open .web-chat-pulse,
.web-chat-root.is-open .web-chat-teaser {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.88);
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .web-chat-fab,
  .web-chat-teaser.is-visible,
  .web-chat-pulse {
    animation: none !important;
  }
}

.web-chat-panel {
  pointer-events: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(380px, calc(100vw - 24px));
  height: min(520px, calc(100vh - 96px));
  max-height: calc(100dvh - 80px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--ac) 14%, var(--line));
  border-radius: 22px;
  box-shadow:
    0 24px 64px rgba(10, 10, 30, 0.18),
    0 4px 16px rgba(10, 10, 30, 0.08);
  overflow: hidden;
  animation: webChatIn 0.28s var(--ease-out) both;
}

@keyframes webChatIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.web-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, color-mix(in srgb, var(--ac) 10%, transparent), transparent);
}

.web-chat-head-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.web-chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--ac) 16%, transparent);
  color: var(--ac-deep);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.web-chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.web-chat-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}

.web-chat-sub {
  font-size: 11px;
  color: var(--muted);
}

.web-chat-close {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(10, 10, 30, 0.06);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.web-chat-close:hover {
  background: rgba(10, 10, 30, 0.1);
}

.web-chat-gate,
.web-chat-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.web-chat-gate {
  padding: 18px 16px 16px;
  gap: 12px;
}

.web-chat-gate-lead {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.web-chat-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.web-chat-field input {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
}

.web-chat-field input:focus {
  outline: 2px solid color-mix(in srgb, var(--ac) 35%, transparent);
  border-color: var(--ac);
}

.web-chat-gate-btn {
  width: 100%;
  margin-top: 4px;
}

.web-chat-err {
  font-size: 13px;
  color: var(--danger);
}

.web-chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 14px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  -webkit-overflow-scrolling: touch;
}

.web-chat-empty {
  margin: auto 0;
  text-align: center;
  padding: 24px 12px;
}

.web-chat-empty-ic {
  font-size: 22px;
  color: var(--ac);
  margin-bottom: 8px;
}

.web-chat-empty-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.web-chat-empty-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 260px;
  margin: 0 auto;
}

.web-chat-loading,
.web-chat-err-inline {
  text-align: center;
  padding: 24px 12px;
  font-size: 13px;
  color: var(--muted);
}

.web-chat-err-inline {
  color: var(--danger);
}

.web-chat-bub {
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.45;
  word-break: break-word;
}

.web-chat-bub.is-me {
  align-self: flex-end;
  background: linear-gradient(145deg, var(--ac) 0%, var(--ac-deep) 100%);
  color: #fff;
  border-bottom-right-radius: 6px;
}

.web-chat-bub.is-them {
  align-self: flex-start;
  background: rgba(10, 10, 30, 0.06);
  color: var(--ink);
  border-bottom-left-radius: 6px;
}

.web-chat-bub.is-pending {
  opacity: 0.72;
}

.web-chat-time {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  opacity: 0.65;
}

.web-chat-compose {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  background: #fff;
}

.web-chat-compose input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 14px;
  font-size: 15px;
  min-width: 0;
}

.web-chat-compose input:focus {
  outline: 2px solid color-mix(in srgb, var(--ac) 35%, transparent);
  border-color: var(--ac);
}

.web-chat-send {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--ac);
}

.web-chat-send:hover {
  background: var(--ac-deep);
}

body.web-chat-open .cookie-banner {
  display: none;
}

/* Booking popup otvorený — chat FAB nezavadzia (hlavne mobil) */
body.sheet-open .web-chat-root {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

@media (max-width: 480px) {
  .web-chat-panel {
    width: calc(100vw - 16px);
    height: min(72vh, calc(100dvh - 72px));
    border-radius: 18px 18px 0 0;
    right: -8px;
    bottom: -8px;
  }

  .web-chat-root {
    right: max(8px, env(safe-area-inset-right, 0px));
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }
}
