/* ========================================================
   jsme.fit — hlavní styly
   ======================================================== */

/* ===== PROMĚNNÉ & RESET ===== */
:root {
  --cream: #F7F3EE;
  --warm-white: #FDFBF8;
  --sand: #E8DFD3;
  --clay: #C4A882;
  --terracotta: #B8755D;
  --deep-brown: #3D2B1F;
  --charcoal: #2A2A2A;
  --sage: #8B9E7E;
  --sage-light: #D4DEC9;
  --blush: #E8C4B8;
  --deep-brown-mid: #4A3628;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0.8rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}

nav.scrolled {
  background: rgba(247, 243, 238, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(61, 43, 31, 0.06);
}

.nav-logo {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--deep-brown);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--terracotta); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--deep-brown);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--terracotta); }

.nav-cta {
  background: var(--deep-brown) !important;
  color: var(--cream) !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 50px !important;
  font-size: 0.75rem !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover { background: var(--terracotta) !important; }
.nav-cta::after { display: none !important; }

/* ===== HAMBURGER MENU ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--deep-brown);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(247, 243, 238, 0.97);
  backdrop-filter: blur(24px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--deep-brown);
  padding: 0.8rem 0;
  transition: color 0.3s;
  font-weight: 400;
}

.mobile-menu a:hover { color: var(--terracotta); }

.mobile-menu .mobile-cta {
  margin-top: 1.5rem;
  background: var(--terracotta);
  color: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 5rem 2.5rem 2.5rem;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 120vh;
  background: linear-gradient(135deg, var(--sand) 0%, var(--blush) 50%, var(--sage-light) 100%);
  border-radius: 0 0 0 60%;
  opacity: 0.35;
  z-index: 0;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text { animation: fadeUp 0.8s ease 0.2s both; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(139, 158, 126, 0.15);
  border: 1px solid rgba(139, 158, 126, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.hero-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--deep-brown);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero h1 em { font-style: italic; color: var(--terracotta); }

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: #6B5E52;
  max-width: 440px;
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}

/* ===== TLAČÍTKA ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--terracotta);
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--deep-brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 117, 93, 0.25);
}

.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--deep-brown);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  border: 1.5px solid var(--sand);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

/* Hero trust bar */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sand);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.trust-stars {
  color: var(--clay);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.trust-number {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-brown);
}

.trust-label {
  font-size: 0.68rem;
  color: #8B7E72;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--sand);
}

/* Hero visual — filtr + service strips */
.hero-visual {
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-filter {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.7rem;
  flex-wrap: wrap;
}

.hero-filter-label {
  font-size: 0.63rem;
  font-weight: 500;
  color: #8B7E72;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-filter-btn {
  background: none;
  border: 1.5px solid var(--sand);
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--deep-brown);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.hero-filter-btn:hover,
.hero-filter-btn.active {
  background: var(--deep-brown);
  color: var(--cream);
  border-color: var(--deep-brown);
}

.hero-strip.dimmed {
  opacity: 0.3;
  pointer-events: none;
}

.hero-strip.dimmed:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(196, 168, 130, 0.15);
}

.hero-strips {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--warm-white);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(196, 168, 130, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.hero-strip:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(61, 43, 31, 0.08);
  border-color: var(--terracotta);
}

.strip-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.si-pilates   { background: rgba(184, 117, 93, 0.12); }
.si-barre     { background: rgba(139, 158, 126, 0.15); }
.si-reformer  { background: rgba(196, 168, 130, 0.2); }
.si-soon      { background: rgba(232, 196, 184, 0.25); }

.strip-text h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--deep-brown);
  line-height: 1.2;
}

.strip-text p {
  font-size: 0.75rem;
  color: #8B7E72;
  font-weight: 300;
}

.strip-arrow {
  margin-left: auto;
  color: var(--clay);
  font-size: 0.85rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.hero-strip:hover .strip-arrow { transform: translateX(3px); }

.strip-soon {
  opacity: 0.55;
  border-style: dashed;
}

.strip-soon .strip-tag {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  font-weight: 600;
}

/* ===== DUAL: QUIZ + ROZVRH ===== */
.dual-section {
  padding: 3rem 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  align-items: stretch;
}

.schedule-section {
  padding: 3rem 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

/* Quiz */
.quiz-box {
  background: linear-gradient(135deg, var(--deep-brown) 0%, var(--deep-brown-mid) 100%);
  border-radius: 24px;
  padding: 2.2rem;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quiz-box::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -25%;
  width: 70%;
  height: 180%;
  background: radial-gradient(circle, rgba(184, 117, 93, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.quiz-box h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  position: relative;
  line-height: 1.2;
}

.quiz-box h2 em { font-style: italic; color: var(--blush); }

.quiz-box .quiz-sub {
  font-size: 0.82rem;
  opacity: 0.6;
  font-weight: 300;
  margin-bottom: 1.4rem;
  position: relative;
}

.quiz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  position: relative;
}

.quiz-opt {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.quiz-opt:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--terracotta);
  transform: translateY(-2px);
}

.quiz-opt-emoji { font-size: 1.2rem; }
.quiz-opt-label { font-size: 0.78rem; font-weight: 400; line-height: 1.3; }

/* Quiz — výsledek */
.quiz-result {
  display: none;
  flex-direction: column;
  gap: 0.85rem;
}

.quiz-result.visible {
  display: flex;
  animation: fadeUp 0.35s ease both;
}

.quiz-result-emoji {
  font-size: 2.4rem;
  line-height: 1;
}

.quiz-result-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush);
  opacity: 0.75;
  margin-bottom: 0.2rem;
}

.quiz-result-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
}

.quiz-result-desc {
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(247, 243, 238, 0.65);
  font-weight: 300;
}

.quiz-result-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--deep-brown);
  padding: 0.75rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  margin-top: 0.1rem;
}

.quiz-result-cta:hover {
  background: white;
  transform: translateY(-2px);
}

.quiz-reset {
  background: none;
  border: none;
  color: rgba(247, 243, 238, 0.38);
  font-size: 0.74rem;
  font-family: var(--font-body);
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition: color 0.3s;
}

.quiz-reset:hover {
  color: rgba(247, 243, 238, 0.75);
}

/* ===== SITE BADGES — sesterské weby ===== */
/*
 * pilateshk.cz → zelená (#495346 = jejich brand barva)
 * barrehk.cz   → terracotta (konzistentní s reprezentací Barre v jsme.fit)
 */
.site-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  white-space: nowrap;
  vertical-align: middle;
}

.site-badge::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.site-badge--pilates {
  background: rgba(73, 83, 70, 0.1);
  color: #495346;
}

.site-badge--barre {
  background: rgba(184, 117, 93, 0.1);
  color: var(--terracotta);
}

/* Badge uvnitř service-card (světlé pozadí) */
.service-card-body .site-badge {
  margin-top: 0.1rem;
  margin-bottom: 0.55rem;
  display: flex;
}

/* Badge uvnitř strip-text */
.strip-text .site-badge {
  margin-top: 0.2rem;
  display: flex;
}

/* ===== FOOTER — naše weby (brand skupiny) ===== */
.footer-brand-group {
  margin-bottom: 0.85rem;
}

.footer-brand-group:last-child {
  margin-bottom: 0;
}

.footer-site-label {
  display: inline-flex !important;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem !important;
  font-size: 0.82rem !important;
}

.footer-site-label::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.footer-site--pilates { color: #a2b59d !important; }  /* světlejší green na tmavém bg */
.footer-site--barre   { color: var(--blush) !important; }

.footer-brand-group a:not(.footer-site-label) {
  padding-left: 0.75rem;
}

/* Rozvrh */
.schedule-box {
  background: var(--warm-white);
  border-radius: 24px;
  padding: 2.2rem;
  border: 1px solid rgba(196, 168, 130, 0.12);
}

.schedule-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.schedule-box-header h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--deep-brown);
}

.schedule-box-header h2 em { font-style: italic; color: var(--terracotta); }

.schedule-all-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.3s;
}

.schedule-all-link:hover { gap: 0.6rem; }

.schedule-days {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1rem;
  overflow-x: auto;
}

.schedule-day {
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 500;
  border: 1.5px solid var(--sand);
  background: transparent;
  color: var(--deep-brown);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.schedule-day.active,
.schedule-day:hover {
  background: var(--deep-brown);
  color: var(--cream);
  border-color: var(--deep-brown);
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid rgba(196, 168, 130, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.schedule-item:hover {
  border-color: var(--terracotta);
  box-shadow: 0 4px 16px rgba(61, 43, 31, 0.05);
}

.schedule-time {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--deep-brown);
  min-width: 44px;
}

.schedule-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-pilates  { background: var(--terracotta); }
.dot-barre    { background: var(--sage); }
.dot-reformer { background: var(--clay); }

.schedule-info h4 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--deep-brown);
}

.schedule-info span {
  font-size: 0.7rem;
  color: #8B7E72;
  font-weight: 300;
}

.schedule-spots {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  white-space: nowrap;
}

.spots-few { background: rgba(184, 117, 93, 0.1); color: var(--terracotta); }
.spots-ok  { background: rgba(139, 158, 126, 0.12); color: var(--sage); }

/* ===== USP — proč my ===== */
.usp-section {
  padding: 3rem 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.usp-card {
  background: var(--warm-white);
  border-radius: 18px;
  padding: 1.8rem;
  border: 1px solid rgba(196, 168, 130, 0.12);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.usp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(61, 43, 31, 0.06);
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.usp-card:nth-child(1)::before { background: var(--terracotta); }
.usp-card:nth-child(2)::before { background: var(--sage); }
.usp-card:nth-child(3)::before { background: var(--clay); }

.usp-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.usp-card:nth-child(1) .usp-icon { background: rgba(184, 117, 93, 0.1); }
.usp-card:nth-child(2) .usp-icon { background: rgba(139, 158, 126, 0.12); }
.usp-card:nth-child(3) .usp-icon { background: rgba(196, 168, 130, 0.15); }

.usp-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--deep-brown);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.usp-card p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #6B5E52;
  font-weight: 300;
}

.usp-highlight {
  display: inline-block;
  background: rgba(184, 117, 93, 0.08);
  color: var(--terracotta);
  font-weight: 500;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.78rem;
}

.usp-vs {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px dashed rgba(196, 168, 130, 0.25);
  font-size: 0.7rem;
  color: #8B7E72;
  font-weight: 300;
}

.usp-vs strong {
  color: var(--deep-brown);
  font-weight: 500;
}

/* ===== SECTION HELPERS ===== */
.section-header-inline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.section-header-inline h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--deep-brown);
  line-height: 1.2;
}

.section-header-inline h2 em { font-style: italic; color: var(--terracotta); }

.section-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.3rem;
}

/* ===== LEKCE / SERVICES ===== */
.services {
  padding: 3rem 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  background: var(--warm-white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(196, 168, 130, 0.12);
  transition: all 0.35s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(61, 43, 31, 0.08);
}

.service-card-top {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}

.service-card-top > span {
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-top > span {
  transform: scale(1.1);
}

.svc-pilates  { background: linear-gradient(135deg, #E8DFD3 0%, #D4C4B0 100%); }
.svc-barre    { background: linear-gradient(135deg, #D4DEC9 0%, #B8CBAA 100%); }
.svc-reformer { background: linear-gradient(135deg, #E8C4B8 0%, #D4A898 100%); }

.service-card-body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
  color: var(--deep-brown);
}

.service-card-body p {
  font-size: 0.8rem;
  line-height: 1.55;
  color: #8B7E72;
  font-weight: 300;
  margin-bottom: 0.8rem;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
  transition: gap 0.3s ease;
}

.service-card:hover .service-link { gap: 0.6rem; }

/* ===== TÝM + RECENZE ===== */
.team-social {
  padding: 3rem 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* Tým */
.team-block {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.team-block-header { margin-bottom: 0.4rem; }

.team-block-header h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--deep-brown);
}

.team-block-header h2 em { font-style: italic; color: var(--terracotta); }

.instructor-row {
  display: flex;
  gap: 1rem;
  background: var(--warm-white);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(196, 168, 130, 0.1);
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.instructor-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
}

.instructor-row:nth-child(1)::before { background: var(--terracotta); }
.instructor-row:nth-child(2)::before { background: var(--sage); }

.instructor-row:hover {
  box-shadow: 0 8px 24px rgba(61, 43, 31, 0.06);
}

.instructor-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  flex-shrink: 0;
}

.instructor-row:nth-child(1) .instructor-initials {
  background: rgba(184, 117, 93, 0.12);
  color: var(--terracotta);
}

.instructor-row:nth-child(2) .instructor-initials {
  background: rgba(139, 158, 126, 0.15);
  color: var(--sage);
}

.instructor-info h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--deep-brown);
}

.instructor-info .specialty {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.2rem;
}

.instructor-info p {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #6B5E52;
  font-weight: 300;
}

/* Recenze */
.reviews-block {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.reviews-block-header { margin-bottom: 0.4rem; }

.reviews-block-header h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--deep-brown);
}

.reviews-block-header h2 em { font-style: italic; color: var(--terracotta); }

.review-card {
  background: var(--warm-white);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(196, 168, 130, 0.1);
}

.review-stars {
  color: var(--clay);
  font-size: 0.7rem;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.review-card blockquote {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #6B5E52;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.review-author {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--deep-brown);
}

.review-author span {
  font-weight: 300;
  color: #8B7E72;
  margin-left: 0.4rem;
}

/* ===== MAGAZÍN / BLOG ===== */
.blog-section {
  padding: 3rem 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.blog-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.blog-card {
  background: var(--warm-white);
  border-radius: 16px;
  padding: 1.3rem;
  border: 1px solid rgba(196, 168, 130, 0.1);
  transition: all 0.35s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(61, 43, 31, 0.06);
}

.blog-card-emoji {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.be-1 { background: linear-gradient(135deg, var(--sand), var(--blush)); }
.be-2 { background: linear-gradient(135deg, var(--sage-light), #C8D9B9); }
.be-3 { background: linear-gradient(135deg, var(--blush), #E0B0A0); }

.blog-card-text .blog-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.2rem;
}

.blog-card-text h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--deep-brown);
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 3rem 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.cta-banner {
  background: linear-gradient(135deg, var(--deep-brown) 0%, var(--deep-brown-mid) 60%, var(--terracotta) 100%);
  border-radius: 24px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: 10%;
  width: 50%;
  height: 220%;
  background: radial-gradient(circle, rgba(232, 196, 184, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
}

.cta-banner h2 em { font-style: italic; color: var(--blush); }

.cta-banner p {
  font-size: 0.85rem;
  opacity: 0.7;
  font-weight: 300;
  position: relative;
  max-width: 340px;
}

.cta-buttons {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
  position: relative;
}

.cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}

.cta-btn-domain {
  font-size: 0.56rem;
  font-weight: 400;
  opacity: 0.55;
  letter-spacing: 0.04em;
}

.cta-btn-pilates {
  background: var(--cream);
  color: var(--deep-brown);
}

.cta-btn-pilates:hover {
  background: white;
  transform: translateY(-2px);
}

.cta-btn-barre {
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-btn-barre:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  padding: 2.5rem 2.5rem 1.5rem;
  background: var(--deep-brown);
  color: rgba(247, 243, 238, 0.6);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-brand .nav-logo {
  color: var(--cream);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.78rem;
  line-height: 1.6;
  font-weight: 300;
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.footer-col a {
  display: block;
  color: rgba(247, 243, 238, 0.5);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 300;
  margin-bottom: 0.4rem;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--blush); }

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(247, 243, 238, 0.08);
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 300;
  opacity: 0.4;
}

/* ===== ANIMACE ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE — TABLET (≤1024px) ===== */
@media (max-width: 1024px) {
  .hero-content     { grid-template-columns: 1fr; }
  .hero-visual      { display: none; }
  .dual-section     { grid-template-columns: 1fr; }
  .services-row     { grid-template-columns: 1fr 1fr; }
  .usp-grid         { grid-template-columns: 1fr 1fr 1fr; }
  .team-social      { grid-template-columns: 1fr; }
  .blog-row         { grid-template-columns: 1fr 1fr; }
  .cta-banner       { flex-direction: column; text-align: center; padding: 2rem; }
  .cta-banner p     { max-width: 100%; }
  .footer-inner     { flex-direction: column; }
}

/* ===== RESPONSIVE — MOBIL (≤768px) ===== */
@media (max-width: 768px) {

  /* Nav */
  nav { padding: 0.7rem 1.2rem; }
  .nav-links    { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu  { display: flex; }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 5.5rem 1.2rem 2rem;
  }

  .hero-bg-shape {
    width: 100vw;
    right: -30%;
    opacity: 0.25;
  }

  .hero h1 { font-size: 2.6rem; margin-bottom: 0.8rem; }
  .hero-subtitle { font-size: 0.92rem; margin-bottom: 1.4rem; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }

  .btn-primary,
  .btn-secondary { justify-content: center; text-align: center; }

  .hero-visual {
    display: block !important;
    animation: fadeUp 0.8s ease 0.4s both;
    margin-top: 2rem;
  }

  .hero-strips { gap: 0.5rem; }

  .hero-strip {
    padding: 0.8rem 1rem;
    border-radius: 12px;
  }

  .strip-icon { width: 36px; height: 36px; border-radius: 9px; font-size: 1rem; }
  .strip-text h3 { font-size: 0.9rem; }
  .strip-text p  { font-size: 0.7rem; }

  /* Trust bar */
  .hero-trust {
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding-top: 1.2rem;
  }

  .trust-divider { display: none; }

  .trust-item {
    flex-direction: row;
    gap: 0.4rem;
    align-items: center;
  }

  .trust-number { font-size: 0.95rem; }
  .trust-label  { font-size: 0.65rem; }
  .trust-stars  { font-size: 0.65rem; }

  /* Dual section */
  .dual-section { padding: 1.5rem 1.2rem; gap: 1rem; }
  .schedule-section { padding: 1.5rem 1.2rem; }

  .quiz-box { padding: 1.5rem; border-radius: 20px; }
  .quiz-box h2 { font-size: 1.35rem; }

  .quiz-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }

  .quiz-opt {
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .quiz-opt-emoji { font-size: 1.1rem; }
  .quiz-opt-label { font-size: 0.72rem; }

  .schedule-box { padding: 1.5rem; border-radius: 20px; }
  .schedule-box-header h2 { font-size: 1.2rem; }

  .schedule-days {
    gap: 0.25rem;
    margin-bottom: 0.8rem;
    -webkit-overflow-scrolling: touch;
  }

  .schedule-day  { padding: 0.35rem 0.7rem; font-size: 0.68rem; }
  .schedule-list { gap: 0.4rem; }

  .schedule-item {
    padding: 0.65rem 0.8rem;
    gap: 0.6rem;
    border-radius: 10px;
  }

  .schedule-time  { font-size: 0.85rem; min-width: 38px; }
  .schedule-dot   { width: 6px; height: 6px; }
  .schedule-info h4 { font-size: 0.8rem; }
  .schedule-info span { font-size: 0.65rem; }

  .schedule-spots {
    font-size: 0.6rem;
    padding: 0.15rem 0.5rem;
    margin-left: auto;
  }

  /* USP */
  .usp-section { padding: 1.5rem 1.2rem; }

  .usp-grid { grid-template-columns: 1fr; gap: 0.7rem; }

  .usp-card {
    padding: 1.2rem;
    border-radius: 14px;
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    gap: 0 0.8rem;
  }

  .usp-icon {
    grid-row: 1 / 3;
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    font-size: 1.1rem;
    align-self: start;
  }

  .usp-card h3 { font-size: 0.95rem; }
  .usp-card p  { font-size: 0.75rem; }
  .usp-vs      { grid-column: 1 / -1; font-size: 0.65rem; }

  /* Lekce */
  .services { padding: 1.5rem 1.2rem; }

  .section-header-inline { margin-bottom: 1rem; }
  .section-header-inline h2 { font-size: 1.3rem; }

  .services-row { grid-template-columns: 1fr; gap: 0.8rem; }

  .service-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    border-radius: 14px;
  }

  .service-card-top {
    height: 100%;
    min-height: 100px;
    border-radius: 14px 0 0 14px;
    font-size: 1.8rem;
  }

  .service-card-body   { padding: 1rem; }
  .service-card-body h3 { font-size: 1rem; }
  .service-card-body p  { font-size: 0.75rem; margin-bottom: 0.5rem; }

  /* Tým + recenze */
  .team-social { padding: 1.5rem 1.2rem; gap: 1.5rem; }

  .team-block-header h2,
  .reviews-block-header h2 { font-size: 1.2rem; }

  .instructor-row {
    padding: 1rem;
    border-radius: 14px;
    gap: 0.8rem;
  }

  .instructor-initials { width: 42px; height: 42px; font-size: 0.95rem; }
  .instructor-info h3  { font-size: 0.9rem; }
  .instructor-info .specialty { font-size: 0.62rem; }
  .instructor-info p   { font-size: 0.72rem; }

  .review-card  { padding: 1rem; border-radius: 14px; }
  .review-stars { font-size: 0.6rem; }
  .review-card blockquote { font-size: 0.78rem; }
  .review-author { font-size: 0.68rem; }

  /* Blog */
  .blog-section { padding: 1.5rem 1.2rem; }

  .blog-row { grid-template-columns: 1fr; gap: 0.6rem; }

  .blog-card {
    padding: 1rem;
    border-radius: 14px;
    gap: 0.8rem;
  }

  .blog-card-emoji {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    font-size: 1.2rem;
  }

  .blog-card-text h3  { font-size: 0.85rem; }
  .blog-card-text .blog-tag { font-size: 0.58rem; }

  /* CTA banner */
  .final-cta { padding: 1.5rem 1.2rem 2rem; }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    gap: 1.2rem;
  }

  .cta-banner h2 { font-size: 1.5rem; }
  .cta-banner p  { font-size: 0.8rem; max-width: 100%; }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .cta-btn {
    text-align: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.82rem;
    width: 100%;
  }

  /* Footer */
  footer { padding: 2rem 1.2rem 1.2rem; }

  .footer-inner { flex-direction: column; gap: 1.5rem; }

  .footer-links { flex-direction: row; gap: 2rem; flex-wrap: wrap; }
  .footer-col h4 { font-size: 0.82rem; margin-bottom: 0.4rem; }
  .footer-col a  { font-size: 0.72rem; margin-bottom: 0.3rem; }

  .footer-bottom {
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
    font-size: 0.65rem;
  }
}

/* ===== RESPONSIVE — MALÉ TELEFONY (≤380px) ===== */
@media (max-width: 380px) {
  .hero h1 { font-size: 2.2rem; }
  .quiz-grid { grid-template-columns: 1fr; }
  .quiz-opt { flex-direction: row; }
  .footer-links { flex-direction: column; gap: 1.2rem; }
  .service-card { grid-template-columns: 70px 1fr; }
  .service-card-top { font-size: 1.4rem; }
}


/* ========================================================
   BAREVNÁ SCHÉMATA (dev preview)
   ======================================================== */

/* ----- 1. LESNÍ ZÁTIŠÍ — svěží zelená, uklidňující ----- */
[data-theme="lesni"] {
  --cream: #ECF1EA;
  --warm-white: #F4F8F3;
  --sand: #CAD8C2;
  --clay: #7A9868;
  --terracotta: #4A7A56;
  --deep-brown: #1E3326;
  --deep-brown-mid: #284A34;
  --charcoal: #222822;
  --sage: #6A9478;
  --sage-light: #B8CEB0;
  --blush: #A0C49A;
}

/* ----- 2. RANNÍ ROSA — jemná, elegantní, ženská --------- */
[data-theme="ruzova"] {
  --cream: #FAF0F2;
  --warm-white: #FEF8F9;
  --sand: #EDD4D8;
  --clay: #C48892;
  --terracotta: #A85468;
  --deep-brown: #3A1F28;
  --deep-brown-mid: #4A2A34;
  --charcoal: #2A2225;
  --sage: #A87888;
  --sage-light: #E0BEC8;
  --blush: #F0D0D8;
}

/* ----- 3. ZLATÁ HODINA — teplá, povznášející, bohatá ---- */
[data-theme="zlata"] {
  --cream: #FBF5E6;
  --warm-white: #FEFBF3;
  --sand: #EEDFBA;
  --clay: #C4A040;
  --terracotta: #A8762A;
  --deep-brown: #3A2808;
  --deep-brown-mid: #4A3810;
  --charcoal: #2A2208;
  --sage: #988648;
  --sage-light: #DDD0A0;
  --blush: #F0DA90;
}

/* ----- 4. HEDVÁBNÁ BŘIDLICE — chladná, sofistikovaná ---- */
[data-theme="bridlice"] {
  --cream: #EFECF5;
  --warm-white: #F7F5FC;
  --sand: #D6D0E8;
  --clay: #9890B8;
  --terracotta: #6B5E9A;
  --deep-brown: #28223E;
  --deep-brown-mid: #332850;
  --charcoal: #222228;
  --sage: #8888AA;
  --sage-light: #C8C4DC;
  --blush: #D8C8E8;
}


/* ========================================================
   PŘEPÍNAČ SCHÉMAT (dočasný dev nástroj)
   ======================================================== */

#theme-switcher {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
  font-family: var(--font-body);
}

#theme-panel {
  background: #fff;
  border-radius: 18px;
  padding: 1rem;
  width: 290px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #E8E0F0;
  display: none;
}

#theme-panel.open {
  display: block;
  animation: fadeUp 0.22s ease both;
}

.tp-header {
  text-align: center;
  padding-bottom: 0.7rem;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid #EDE8F4;
}

.tp-dev-badge {
  display: inline-block;
  background: #FF6B35;
  color: #fff;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  margin-bottom: 0.3rem;
}

.tp-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1A1A2E;
  letter-spacing: 0.04em;
}

.tp-sub {
  display: block;
  font-size: 0.62rem;
  color: #9090A8;
  font-weight: 400;
  margin-top: 0.1rem;
}

.tp-options {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tp-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.7rem;
  border-radius: 11px;
  border: 1.5px solid transparent;
  background: none;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.tp-option:hover {
  background: #F5F2FC;
  border-color: #D6D0E8;
}

.tp-option.active {
  background: #F0EDF9;
  border-color: #7B6BAA;
}

.tp-swatches {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

.tp-swatches span {
  display: block;
  width: 13px;
  height: 34px;
}

.tp-text {
  flex: 1;
  min-width: 0;
}

.tp-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1A1A2E;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tp-desc {
  display: block;
  font-size: 0.63rem;
  color: #9090A8;
  font-weight: 400;
  margin-top: 0.05rem;
}

.tp-check {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: #6B5E9A;
  display: none;
}

.tp-option.active .tp-check {
  display: block;
}

#theme-toggle-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--deep-brown);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, background 0.3s ease;
  position: relative;
}

#theme-toggle-btn:hover {
  transform: scale(1.08) rotate(15deg);
}

#theme-toggle-btn .tp-dev-dot {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  background: #FF6B35;
  border-radius: 50%;
  border: 2px solid #fff;
}

@media (max-width: 480px) {
  #theme-switcher { bottom: 1rem; right: 1rem; }
  #theme-panel { width: calc(100vw - 2rem); }
}
