/* ===== BEDR WEB – Global Styles ===== */
:root {
  --primary:   #006085;
  --primary-light: #009bcb;
  --accent:    #009bcb;
  --accent2:   #f5a623;
  --text:      #1f1e1e;
  --muted:     #6b7a8d;
  --bg:        #ffffff;
  --bg-alt:    #f4f8fa;
  --bg-dark:   #006085;
  --border:    #e2e8f0;
  --danger:    #ef4444;
  --success:   #22c55e;
  --radius:    8px;
  --shadow:    0 2px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --font:      'Inter', 'Segoe UI', Arial, sans-serif;
  --nav-h:     68px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { line-height: 1.7; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all .25s ease;
  text-align: center;
}
.btn-primary {
  background: var(--accent2);
  color: #fff;
}
.btn-primary:hover { background: #d4921e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,.4); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--primary);
}
.btn-white:hover { background: var(--accent2); color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: .9rem; }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 5%;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  gap: 20px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.navbar-logo img { height: 36px; }
.navbar-logo .logo-text { letter-spacing: 2px; }
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  list-style: none;
}
.navbar-nav a {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all .2s;
}
.navbar-nav a:hover { color: var(--primary); background: rgba(0,96,133,.07); }
.navbar-nav a.nav-active { color: var(--primary); font-weight: 600; }
.navbar-nav .btn-primary { color: #fff; padding: 9px 20px; font-size: .92rem; }
.navbar-nav .btn-primary:hover { color: #fff; background: #d4921e; }
.navbar-nav .btn-primary.nav-active { color: #fff; }
.navbar-toggle {
  display: none;
  background: none;
  color: var(--primary);
  font-size: 1.6rem;
  margin-left: auto;
  padding: 4px 8px;
}

/* Mobile nav */
@media (max-width: 820px) {
  .navbar-nav {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 4px;
  }
  .navbar-nav.open { display: flex; }
  .navbar-nav a { width: 100%; padding: 10px 14px; font-size: 1rem; color: var(--text); }
  .navbar-nav a:hover { color: var(--primary); background: rgba(0,96,133,.07); }
  .navbar-toggle { display: block; }
}

/* ===== MAIN CONTENT OFFSET ===== */
body > main, .page-content { padding-top: var(--nav-h); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #004a65 0%, #006085 55%, #009bcb 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 5% 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/img/hero-bg.jpg') center/cover no-repeat;
  opacity: .15;
}
.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-text { flex: 1; color: #fff; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero-text h1 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
  margin-bottom: 20px;
}
.hero-text .hero-sub {
  font-size: 1.15rem;
  opacity: .9;
  margin-bottom: 16px;
  line-height: 1.65;
}
.hero-price {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.hero-price .price-new {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent2);
}
.hero-price .price-old {
  font-size: 1.2rem;
  opacity: .6;
  text-decoration: line-through;
}
.hero-price .price-label {
  font-size: .85rem;
  opacity: .8;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img {
  flex: 0 0 400px;
}
.hero-photo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.hero-photo-card img { width: 100%; height: 500px; object-fit: cover; object-position: center 10%; display: block; transform: scale(0.95); transform-origin: center top; }
.hero-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 22px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  text-align: left;
}
.hero-photo-signature {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.hero-photo-title {
  font-size: .78rem;
  color: rgba(255,255,255,.88);
  letter-spacing: .03em;
  margin-top: 5px;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-trust {
  margin-top: 40px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: .88rem;
}
.hero-trust-item span { font-size: 1.3rem; }

@media (max-width: 900px) {
  .hero { min-height: auto; padding: calc(var(--nav-h) + 30px) 5% 50px; }
  .hero-inner { flex-direction: column; gap: 30px; }
  .hero-img { flex: none; width: 100%; }
  .hero-photo-card img { height: 320px; }
  .hero-photo-signature { font-size: 2rem; }
}

/* ===== SECTIONS ===== */
.section { padding: 80px 5%; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-center { text-align: center; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title { margin-bottom: 12px; }
.section-desc { color: var(--muted); font-size: 1.05rem; max-width: 640px; }
.section-center .section-desc { margin: 0 auto; }
.section-header { margin-bottom: 48px; }

/* ===== BENEFITS (PROČ EMS) ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform .25s, box-shadow .25s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.benefit-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.benefit-card h3 { margin-bottom: 6px; }
.benefit-card p { color: var(--muted); font-size: .95rem; }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; }

/* ===== STUDIOS ===== */
.studios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}
.studio-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.studio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.studio-card img { width: 100%; height: 240px; object-fit: cover; }
.studio-body { padding: 28px; }
.studio-body h3 { margin-bottom: 8px; color: var(--primary); }
.studio-address {
  display: flex; align-items: center; gap: 6px;
  color: var(--muted); font-size: .92rem; margin-bottom: 16px;
}
.studio-hours { font-size: .9rem; color: var(--muted); margin-bottom: 20px; }

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: rgba(255,255,255,.75); font-size: .95rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial-stars { color: var(--accent2); font-size: 1.1rem; }
.testimonial-text { color: var(--muted); line-height: 1.7; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 700; font-size: .95rem; }
.testimonial-desc { color: var(--muted); font-size: .8rem; }

/* ===== PRICING CTA ===== */
.pricing-box {
  background: var(--primary);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
}
.pricing-box h2 { color: #fff; margin-bottom: 16px; }
.pricing-box .price-big {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent2);
  line-height: 1;
}
.pricing-box .price-note { opacity: .7; margin-bottom: 32px; }
.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0;
  text-align: left;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-includes li { display: flex; align-items: center; gap: 10px; }
.pricing-includes li::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ===== PRICING CARDS ===== */
.pc-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.pc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .pc-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pc-grid-2, .pc-grid-3 { grid-template-columns: 1fr; }
}
.pc-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.pc-card.pc-featured {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.pc-card.pc-highlight {
  border-color: var(--primary);
  background: #f0f8fc;
}
.pc-akce-badge {
  display: inline-block;
  background: var(--accent2);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 3px 12px;
  border-radius: 50px;
  width: fit-content;
}
.pc-course-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: .8;
}
.pc-featured .pc-course-label { color: rgba(255,255,255,.7); opacity: 1; }
.pc-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.pc-featured .pc-name { color: #fff; }
.pc-prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.pc-old {
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
  text-decoration: line-through;
}
.pc-new {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent2);
  line-height: 1;
}
.pc-new-dark { color: var(--primary); }
.pc-week-price {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.pc-week-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.pc-total {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
}
.pc-save {
  display: inline-block;
  background: #e8f7ee;
  color: #1a7a40;
  font-size: .82rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  width: fit-content;
}
.pc-desc {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--muted);
  flex-grow: 1;
}
.pc-featured .pc-desc { color: rgba(255,255,255,.75); }
.pc-studio-note {
  display: inline-block;
  margin-top: auto;
  font-size: .82rem;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px 14px;
  width: fit-content;
}
.pc-footnote {
  font-size: .78rem;
  opacity: .55;
  margin-top: 4px;
}

/* ===== BLOG PREVIEW ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; background: var(--bg-alt); }
.blog-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card-cat {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 8px;
}
.blog-card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--primary); }
.blog-card-excerpt { color: var(--muted); font-size: .92rem; flex: 1; margin-bottom: 16px; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; font-size: .83rem; color: var(--muted); }
.blog-card-date {}
.blog-read-more { color: var(--primary); font-weight: 600; }
.blog-read-more:hover { color: var(--accent); }

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,.8);
  padding: 60px 5% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
.footer-brand .logo-text { color: #fff; font-size: 1.5rem; font-weight: 800; letter-spacing: 2px; margin-bottom: 12px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer-col h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: .9rem; margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 24px;
  text-align: center;
  font-size: .85rem;
  opacity: .6;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 56px 5%; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== BLOG STRÁNKY ===== */
.page-hero {
  background: var(--primary);
  color: #fff;
  padding: calc(var(--nav-h) + 48px) 5% 48px;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { opacity: .8; }

.blog-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 32px 5% 0;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: #fff;
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  transition: all .2s;
}
.filter-btn.active, .filter-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--bg-alt); }

.blog-load-more {
  text-align: center;
  padding: 40px 5%;
}

/* Blog detail */
.blog-post-hero { padding: calc(var(--nav-h) + 48px) 5% 0; background: var(--bg-alt); }
.blog-post-meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin: 16px 0; color: var(--muted); font-size: .9rem; }
.blog-post-body {
  max-width: 780px;
  margin: 40px auto;
  padding: 0 5%;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}
.blog-post-body h2 { margin: 36px 0 14px; }
.blog-post-body h3 { margin: 28px 0 10px; }
.blog-post-body p  { margin-bottom: 18px; }
.blog-post-body img { border-radius: var(--radius); margin: 24px 0; }
.blog-post-body ul, .blog-post-body ol { padding-left: 24px; margin-bottom: 18px; }
.blog-post-body li { margin-bottom: 6px; }
.blog-post-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 12px 20px;
  background: var(--bg-alt);
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  color: var(--muted);
}

/* ===== REZERVACE ===== */
.rezervace-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 800px) { .rezervace-layout { grid-template-columns: 1fr; } }

.calendar-wrap { background: #fff; border-radius: 16px; padding: 28px; box-shadow: var(--shadow); }
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cal-header h3 { color: var(--primary); }
.cal-nav-btn {
  background: none;
  border: 2px solid var(--border);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.cal-nav-btn:hover { border-color: var(--primary); color: var(--primary); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day-name {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted);
  padding: 4px;
  text-transform: uppercase;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  cursor: default;
  transition: all .2s;
  position: relative;
  gap: 2px;
}
.cal-day.other-month { color: var(--border); }
.cal-day.has-slots {
  background: rgba(0,155,203,.1);
  color: var(--primary);
  cursor: pointer;
  font-weight: 600;
}
.cal-day.has-slots:hover { background: var(--accent); color: #fff; }
.cal-day.selected { background: var(--primary); color: #fff; }
.cal-day.today { border: 2px solid var(--accent2); }
.cal-day-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.cal-day.has-slots:hover .cal-day-dot,
.cal-day.selected .cal-day-dot { background: rgba(255,255,255,.7); }

.slots-list { margin-top: 24px; }
.slots-list h4 { color: var(--primary); margin-bottom: 12px; }
.slot-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  border-radius: 8px;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  transition: all .2s;
}
.slot-btn:hover { border-color: var(--primary); background: rgba(0,96,133,.05); }
.slot-btn.selected { border-color: var(--primary); background: var(--primary); color: #fff; }

.booking-form { background: #fff; border-radius: 16px; padding: 28px; box-shadow: var(--shadow); }
.booking-form h3 { color: var(--primary); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .92rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color .2s;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-error { border-color: var(--danger) !important; }
.form-msg { font-size: .85rem; margin-top: 4px; }
.form-msg.error { color: var(--danger); }
.form-msg.success { color: var(--success); }

.selected-slot-info {
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: .92rem;
}
.selected-slot-info strong { color: var(--primary); }

/* ===== PLATBA ===== */
.payment-result {
  text-align: center;
  padding: calc(var(--nav-h) + 80px) 5% 80px;
  max-width: 540px;
  margin: 0 auto;
}
.payment-icon { font-size: 5rem; margin-bottom: 24px; }
.payment-result h1 { margin-bottom: 16px; }
.payment-result p { color: var(--muted); margin-bottom: 32px; font-size: 1.05rem; }
.payment-detail {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
  text-align: left;
}
.payment-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.payment-detail-row:last-child { border-bottom: none; }

/* ===== ADMIN ===== */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 240px;
  background: var(--primary);
  color: #fff;
  padding: 0;
  flex-shrink: 0;
  display: flex; flex-direction: column;
}
.admin-logo {
  padding: 20px 20px 16px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.admin-logo span { font-size: .7rem; font-weight: 400; opacity: .6; display: block; margin-top: 2px; }
.admin-nav { padding: 12px 0; flex: 1; }
.admin-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px;
  color: rgba(255,255,255,.75);
  font-size: .92rem;
  cursor: pointer;
  transition: all .2s;
  border: none; background: none; width: 100%; text-align: left;
}
.admin-nav-item:hover, .admin-nav-item.active {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.admin-nav-item .icon { font-size: 1.15rem; }
.admin-main { flex: 1; background: var(--bg-alt); overflow: auto; }
.admin-topbar {
  background: #fff;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.admin-topbar h2 { font-size: 1.2rem; color: var(--primary); }
.admin-content { padding: 28px; }

.admin-panel { display: none; }
.admin-panel.active { display: block; }

/* Stat cards */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px;
}
.stat-card-icon { font-size: 2rem; }
.stat-card-val { font-size: 1.9rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-card-label { font-size: .82rem; color: var(--muted); }

/* Tables */
.admin-table-wrap { background: #fff; border-radius: 12px; box-shadow: var(--shadow); overflow: hidden; }
.admin-table-header {
  padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--border);
}
.admin-table-header h3 { font-size: 1rem; color: var(--primary); }
table { width: 100%; border-collapse: collapse; }
th {
  background: var(--bg-alt);
  padding: 11px 14px;
  text-align: left;
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}
td { padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: .92rem; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--bg-alt); }

.badge {
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
}
.badge-success { background: rgba(34,197,94,.15); color: #16a34a; }
.badge-warning { background: rgba(234,179,8,.15);  color: #a16207; }
.badge-danger  { background: rgba(239,68,68,.15);  color: #dc2626; }
.badge-muted   { background: var(--bg-alt);        color: var(--muted); }

/* Modal */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 2000;
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  width: 90%; max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.modal-close { background: none; font-size: 1.5rem; color: var(--muted); padding: 4px; }
.modal-close:hover { color: var(--danger); }
.modal-footer { display: flex; gap: 12px; justify-content: flex-end; margin-top: 24px; }

/* Slot calendar (admin) */
.slot-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-top: 12px;
}
.slot-cal-day {
  min-height: 80px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px;
  background: #fff;
  font-size: .75rem;
}
.slot-cal-day.other-month { background: var(--bg-alt); opacity: .6; }
.slot-cal-day-num { font-weight: 700; color: var(--muted); margin-bottom: 4px; }
.slot-item {
  background: rgba(0,155,203,.15);
  color: var(--primary);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: .72rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 2px;
  display: flex; justify-content: space-between; align-items: center;
}
.slot-item.booked { background: rgba(239,68,68,.12); color: var(--danger); }
.slot-del { opacity: .5; font-size: 1rem; }
.slot-del:hover { opacity: 1; }

/* Quill editor */
#quill-editor { min-height: 300px; font-size: 1rem; }

/* ===== CHATBOT LILI ===== */
.lili-bubble {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 900;
}
.lili-toggle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: transparent;
  border: none;
  padding: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,96,133,.4);
  cursor: pointer;
  transition: transform .25s;
  overflow: hidden;
}
.lili-toggle:hover { transform: scale(1.08); }
.lili-toggle-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.lili-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 20px; height: 20px;
  background: var(--accent2);
  border-radius: 50%;
  border: 2px solid #fff;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.lili-window {
  display: none;
  position: fixed;
  bottom: 96px; right: 24px;
  width: 360px; max-height: 520px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  flex-direction: column;
  overflow: hidden;
  z-index: 900;
  animation: slideUp .25s ease;
}
.lili-window.open { display: flex; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lili-header {
  background: var(--primary);
  color: #fff;
  padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
}
.lili-header-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  overflow: hidden;
  flex-shrink: 0;
}
.lili-header-avatar img { width: 100%; height: 100%; object-fit: cover; }
.lili-header-avatar-img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.3);
}
.lili-header-info { flex: 1; }
.lili-header-name { font-weight: 700; font-size: 1rem; }
.lili-header-status { font-size: .78rem; opacity: .75; }
.lili-close-btn { background: none; color: rgba(255,255,255,.7); font-size: 1.4rem; padding: 4px; }
.lili-close-btn:hover { color: #fff; }
.lili-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f7f9fa;
}
.lili-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: .9rem;
  line-height: 1.5;
  word-break: break-word;
}
.lili-msg.bot {
  background: #fff;
  color: var(--text);
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
  align-self: flex-start;
}
.lili-msg.user {
  background: var(--primary);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.lili-msg.typing { color: var(--muted); font-style: italic; }
.lili-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.lili-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 9px 16px;
  font-size: .92rem;
  font-family: inherit;
  resize: none;
  outline: none;
  transition: border-color .2s;
  max-height: 100px;
}
.lili-input:focus { border-color: var(--primary); }
.lili-send-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background .2s;
}
.lili-send-btn:hover { background: var(--primary-light); }
.lili-send-btn:disabled { opacity: .5; cursor: not-allowed; }

@media (max-width: 420px) {
  .lili-window { right: 8px; left: 8px; width: auto; }
  .lili-bubble { right: 16px; bottom: 16px; }
}

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  top: 24px; right: 24px;
  z-index: 9999;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  padding: 14px 20px;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: toastIn .3s ease;
  display: flex; align-items: center; gap: 10px;
  color: #fff;
  max-width: 340px;
}
.toast.success { background: var(--success); }
.toast.error   { background: var(--danger); }
.toast.info    { background: var(--primary); }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ===== SPINNER ===== */
.spinner {
  display: inline-block;
  width: 20px; height: 20px;
  border: 3px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== LEAD MODAL ===== */
.lead-modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lead-modal-overlay.open { display: flex; }
.lead-modal {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 32px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 12px 48px rgba(0,0,0,.2);
  animation: slideUp .25s ease;
  position: relative;
}
.lead-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  font-size: 1.6rem;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 6px;
  transition: color .2s;
}
.lead-modal-close:hover { color: var(--text); }
.lead-modal h2 { color: var(--primary); font-size: 1.4rem; margin-bottom: 8px; }
.lead-modal .modal-subtitle { color: var(--muted); font-size: .95rem; margin-bottom: 24px; }

/* Step 1 – intent cards */
.lead-intent-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead-intent-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all .2s;
  background: #fff;
  text-align: left;
  width: 100%;
}
.lead-intent-card:hover {
  border-color: var(--primary);
  background: rgba(0,96,133,.04);
}
.lead-intent-icon { font-size: 2rem; flex-shrink: 0; }
.lead-intent-title { font-weight: 700; color: var(--text); font-size: 1rem; }
.lead-intent-desc { color: var(--muted); font-size: .85rem; margin-top: 2px; }

/* Step 2 – form */
.lead-form-back {
  display: flex; align-items: center; gap: 6px;
  background: none;
  color: var(--muted);
  font-size: .88rem;
  padding: 0;
  margin-bottom: 20px;
  transition: color .2s;
}
.lead-form-back:hover { color: var(--primary); }
.lead-type-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,96,133,.08);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Studio selection (rezervace.html) */
.studio-select-section {
  padding: 32px 0 0;
}
.studio-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) { .studio-select-grid { grid-template-columns: 1fr; } }
.studio-select-card {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  background: #fff;
}
.studio-select-card:hover { border-color: var(--primary); background: rgba(0,96,133,.04); }
.studio-select-card.selected { border-color: var(--primary); background: rgba(0,96,133,.06); }
.studio-select-icon { font-size: 2rem; margin-bottom: 8px; }
.studio-select-name { font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.studio-select-addr { color: var(--muted); font-size: .82rem; }

/* Studio map iframe */
.studio-map {
  width: 100%;
  height: 220px;
  border: none;
  border-radius: 12px 12px 0 0;
  display: block;
}

/* ===== SATISFACTION GUARANTEE ===== */
.section-guarantee {
  background: #fff;
  padding: 40px 0;
}
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, #f0faff 0%, #e6f6fb 100%);
  border: 2px solid rgba(0,155,203,.25);
  border-radius: 20px;
  padding: 36px 48px;
  max-width: 780px;
  margin: 0 auto;
}
.guarantee-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
  line-height: 1;
}
.guarantee-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 8px;
}
.guarantee-text {
  font-size: 1.05rem;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
}

/* ===== NAVBAR LOGO SVG ===== */
.navbar-logo-img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ===== HERO TRUST GUARANTEE LINK ===== */
a.hero-trust-guarantee {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,.45);
  transition: color .2s, border-color .2s;
}
a.hero-trust-guarantee:hover {
  color: #fff;
  border-color: rgba(255,255,255,.8);
}

/* ===== LEAD MODAL BADGE ===== */
.lead-intent-badge {
  display: inline-block;
  background: #f5a623;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
  white-space: nowrap;
}

/* ===== FAQ SEKCE ===== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item[open] {
  box-shadow: 0 4px 20px rgba(0,96,133,.10);
  border-color: rgba(0,155,203,.3);
}
.faq-question {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform .2s;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.65;
}
.faq-answer p { margin: 0; }
.faq-answer strong { color: var(--text); }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.d-flex { display: flex; }
.gap-2  { gap: 16px; }
.align-center { align-items: center; }
.hidden { display: none !important; }
.w-100  { width: 100%; }

/* ── Cookie banner ─────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 2px solid var(--primary);
  box-shadow: 0 -4px 24px rgba(0,0,0,.13);
  padding: 16px 24px;
  animation: cookieSlideUp .35s ease;
}
#cookie-banner.cookie-hiding {
  animation: cookieSlideDown .35s ease forwards;
}
@keyframes cookieSlideUp   { from { transform: translateY(100%); opacity:0 } to { transform: translateY(0); opacity:1 } }
@keyframes cookieSlideDown { from { transform: translateY(0);    opacity:1 } to { transform: translateY(100%); opacity:0 } }

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  font-size: .9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  line-height: 1.5;
}
.cookie-text strong { color: var(--primary); white-space: nowrap; }
.cookie-link { color: var(--primary); text-decoration: underline; white-space: nowrap; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity .2s;
  white-space: nowrap;
}
.cookie-btn:hover { opacity: .85; }
.cookie-btn-primary  { background: var(--primary); color: #fff; }
.cookie-btn-secondary { background: #f0f0f0; color: var(--text); }

@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-btns { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ===== GALLERY SLIDER ===== */
.gallery-slider-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  user-select: none;
}
.gallery-slider {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.gallery-slide {
  min-width: 33.333%;
  padding: 0 8px;
  box-sizing: border-box;
}
.gallery-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.92);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  z-index: 2;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-btn:hover { background: #fff; }
.gallery-btn-prev { left: 16px; }
.gallery-btn-next { right: 16px; }
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding-bottom: 4px;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background .2s, transform .2s;
  border: none;
  padding: 0;
}
.gallery-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}
@media (max-width: 768px) {
  .gallery-slide { min-width: 80%; }
}
@media (max-width: 480px) {
  .gallery-slide { min-width: 100%; }
  .gallery-slide img { height: 220px; }
}
