/* Sdílený styl podstránek — Chloupky? Pryč! */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:      #F4A7B5;
  --brown:     #3D2020;
  --brown-mid: #6B4040;
  --white:     #ffffff;
  --btn:       #7a5060;
  --line:      rgba(61,32,32,0.28);
  --nav-h:     56px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Work Sans', Arial, sans-serif;
  background: var(--pink);
  color: var(--brown);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
.punct-white { color: var(--white); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  background: var(--pink); display: flex; align-items: center;
  gap: 18px; padding: 0 20px; z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.6);
}
.nav-logo { font-size: 16px; font-weight: 800; text-decoration: none; }
.nav-links { margin-left: auto; display: flex; gap: 18px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none;
}
.nav-links a:hover { color: var(--white); }
@media (max-width: 620px) {
  .nav-links .hide-sm { display: none; }
  nav { padding: 0 14px; gap: 12px; }
}

/* ── LAYOUT ── */
main { max-width: 760px; margin: 0 auto; padding: calc(var(--nav-h) + 40px) 20px 10px; }

.crumbs { font-size: 13px; font-weight: 600; color: var(--brown-mid); margin-bottom: 22px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

h1 {
  font-size: clamp(28px, 6vw, 42px); font-weight: 900; line-height: 1.12;
  letter-spacing: -0.02em; margin-bottom: 18px;
}
.lead { font-size: 18px; font-weight: 500; margin-bottom: 26px; }
.lead strong { font-weight: 800; }

.fakta {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden; margin-bottom: 40px;
}
.fakt { background: rgba(255,255,255,0.35); padding: 14px 16px; }
.fakt span {
  display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brown-mid); margin-bottom: 4px;
}
.fakt b { font-size: 17px; font-weight: 800; }

h2 {
  font-size: clamp(20px, 3.4vw, 26px); font-weight: 900; letter-spacing: -0.01em;
  margin: 40px 0 14px; line-height: 1.2;
}
h3 { font-size: 17px; font-weight: 800; margin: 24px 0 8px; }
p { margin-bottom: 14px; }
ul, ol { margin: 0 0 18px 22px; }
li { margin-bottom: 7px; }

/* ── CENÍK ── */
.tbl { width: 100%; border-collapse: collapse; margin-bottom: 26px; }
.tbl caption {
  text-align: left; font-size: 13px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brown-mid); padding-bottom: 8px;
}
.tbl th, .tbl td { text-align: left; padding: 11px 0; border-bottom: 1px solid var(--line); }
.tbl th { font-size: 11px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: var(--brown-mid); }
.tbl td:last-child, .tbl th:last-child { text-align: right; font-weight: 800; white-space: nowrap; }
.tbl .sub { display: block; font-size: 12px; font-weight: 500; color: var(--brown-mid); }

/* ── FAQ ── */
.faq { border-top: 1px solid var(--line); margin-bottom: 30px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 15px 30px 15px 0; position: relative;
  font-size: 16px; font-weight: 700;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 4px; top: 13px;
  font-size: 22px; font-weight: 500; line-height: 1;
}
.faq details[open] summary::after { content: '–'; }
.faq details > div { padding: 0 0 16px; }
.faq details > div p:last-child { margin-bottom: 0; }

/* ── CTA ── */
.cta {
  background: var(--brown); color: #fff; border-radius: 18px;
  padding: 26px 24px; margin: 38px 0;
}
.cta h2 { margin: 0 0 10px; font-size: 22px; }
.cta p { color: rgba(255,255,255,0.82); }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.cta-btn {
  display: inline-block; background: var(--pink); color: var(--brown);
  font-weight: 800; font-size: 14px; letter-spacing: 0.03em;
  padding: 13px 22px; border-radius: 50px; text-decoration: none;
}
.cta-btn.ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.cta-btn:hover { opacity: 0.85; }

/* ── DALŠÍ ZÓNY ── */
.dalsi { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 40px; }
.dalsi a {
  font-size: 14px; font-weight: 700; text-decoration: none;
  background: rgba(255,255,255,0.4); border: 1px solid var(--line);
  border-radius: 50px; padding: 9px 16px;
}
.dalsi a:hover { background: var(--white); }

/* ── FOOTER ── */
footer {
  background: var(--brown); color: #fff; margin-top: 20px;
  padding: 44px 20px 34px;
}
.f-inner {
  max-width: 760px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 28px;
}
.f-title {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 10px;
}
.f-body { font-size: 14.5px; color: rgba(255,255,255,0.9); }
.f-body a { color: #fff; }

/* ── COOKIE LIŠTA ── */
#cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999;
  display: flex; align-items: center; gap: 18px;
  padding: 16px 24px calc(16px + env(safe-area-inset-bottom));
  background: #ffffff; border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(61,32,32,0.12);
}
#cookie-bar p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--brown); }
#cookie-bar a { text-decoration: underline; text-underline-offset: 2px; }
#cookie-bar .cookie-actions { display: flex; gap: 10px; margin-left: auto; }
#cookie-bar button {
  font: inherit; font-size: 14px; font-weight: 700; cursor: pointer;
  padding: 11px 20px; border-radius: 50px; white-space: nowrap;
}
#cookie-decline { border: 1.5px solid rgba(61,32,32,0.35); background: transparent; color: var(--brown); }
#cookie-decline:hover { background: rgba(61,32,32,0.06); }
#cookie-accept { border: 1.5px solid var(--btn); background: var(--btn); color: #fff; }
#cookie-accept:hover { background: var(--brown); border-color: var(--brown); }
@media (max-width: 700px) {
  #cookie-bar { flex-direction: column; align-items: stretch; gap: 12px; padding: 14px 16px calc(14px + env(safe-area-inset-bottom)); }
  #cookie-bar p { font-size: 13px; }
  #cookie-bar .cookie-actions { margin-left: 0; }
  #cookie-bar button { flex: 1; padding: 13px 16px; }
}
