/* Autoservis Beran — styl webu. Bez frameworků, kontrast dle WCAG 2.1 AA. */

:root {
  --navy:   #1a3e6e;   /* hlavní barva fondu */
  --navy-d: #122c50;   /* tmavší (hover, patička) */
  --accent: #b7893c;   /* zlatavý doplněk */
  --text:   #1c2430;
  --muted:  #5a6472;   /* na bílé 4,6:1 — AA ok */
  --bg:     #ffffff;
  --bg-alt: #f2f5f9;
  --line:   #d4dbe4;
  --ok:     #1c6b37;
  --err:    #a52333;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font: 16px/1.6 -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.25rem; }

h1 { font-size: 1.9rem; line-height: 1.25; margin: 1.2rem 0 .8rem; }
h2 { font-size: 1.35rem; margin: 1.6rem 0 .6rem; }
h3 { font-size: 1.05rem; margin: .8rem 0 .3rem; }

a { color: var(--navy); }
a:hover { color: var(--navy-d); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.lead  { font-size: 1.1rem; }
.muted { color: var(--muted); }
.more  { font-weight: 600; text-decoration: none; }
.more:hover { text-decoration: underline; }

/* --- přístupnost --- */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--navy); color: #fff; padding: .6rem 1rem; z-index: 10;
}
.skip-link:focus { left: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* --- hlavička --- */
.site-header { border-bottom: 4px solid var(--accent); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem 1.25rem; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; color: var(--text); }
.brand-mark {
  background: var(--navy); color: #fff; font-weight: 800;
  padding: .45rem .7rem; border-radius: 4px; letter-spacing: .05em;
}
.brand-name { font-weight: 600; max-width: 16rem; line-height: 1.25; }
.brand-logo { display: block; width: 40px; height: 40px; border-radius: 8px; }

.search-form { display: flex; gap: .4rem; }
.search-form input {
  padding: .5rem .7rem; border: 1px solid var(--line); border-radius: 4px;
  min-width: 14rem; font-size: 1rem;
}
.search-form button, .admin-form button {
  padding: .5rem 1rem; border: 0; border-radius: 4px; font-size: 1rem;
  background: var(--navy); color: #fff; cursor: pointer;
}
.search-form button:hover, .admin-form button:hover { background: var(--navy-d); }
.search-big { margin: 1rem 0 1.5rem; }
.search-big input { flex: 1; }

.site-nav { background: var(--navy); }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; }
.site-nav a {
  display: block; padding: .7rem 1rem; color: #fff;
  text-decoration: none; font-weight: 500;
}
.site-nav a:hover, .site-nav a:focus-visible { background: var(--navy-d); color: #fff; }
.site-nav a[aria-current="page"] { background: var(--navy-d); box-shadow: inset 0 -3px 0 var(--accent); }

/* --- úvod --- */
.hero { padding: 1.5rem 0 .5rem; }
.hero h1 { margin-bottom: .4rem; }

/* --- hero fotografa: jedna silná fotka přes celou šířku --- */
.hero-photo {
  /* full-bleed i uvnitř .wrap */
  width: 100vw; margin-left: calc(50% - 50vw);
  min-height: 72vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-d) 100%);
  background-size: cover; background-position: center;
  position: relative;
}
.hero-photo::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(20, 16, 10, .45); /* ať je text čitelný na každé fotce */
}
.hero-inner { position: relative; padding: 3rem 1.25rem; max-width: 46rem; }
.hero-inner h1 {
  color: #fff; font-size: clamp(1.8rem, 4.5vw, 3.1rem);
  font-weight: 700; letter-spacing: -.01em; margin: 0 0 .8rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.hero-sub {
  color: #f0e9dd; font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: .12em; text-transform: uppercase; margin: 0 0 1.8rem;
}
.btn-hero {
  display: inline-block; padding: .85rem 2.2rem;
  background: var(--accent); color: #fff; font-weight: 700;
  text-decoration: none; border-radius: 3px; font-size: 1.05rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-hero:hover {
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,0,0,.35);
}

.section-h {
  text-align: center; font-size: 1.6rem; margin: 2.8rem 0 1.4rem;
  letter-spacing: .02em;
}

/* --- portfolio: karty s obálkovou fotkou --- */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.2rem; margin: 1rem 0 2rem;
}
.portfolio-card {
  position: relative; display: block; overflow: hidden; border-radius: 6px;
  aspect-ratio: 3 / 2; text-decoration: none; background: var(--navy-d);
}
.portfolio-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease;
}
.portfolio-card:hover img { transform: scale(1.04); }
.portfolio-noimg {
  display: block; width: 100%; height: 100%;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-d) 70%);
}
.portfolio-label {
  position: absolute; inset: auto 0 0 0; padding: 2.2rem 1rem .9rem;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: #fff;
}
.portfolio-label strong { display: block; font-size: 1.15rem; }
.portfolio-label small { color: #ddd3c4; font-size: .85rem; }

/* --- galerie kategorie --- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .6rem; margin: 1.4rem 0 2rem;
}
.gallery-item {
  display: block; overflow: hidden; border-radius: 4px;
  aspect-ratio: 3 / 2; background: var(--bg-alt);
}
.gallery-item[hidden] { display: none; } /* filtr štítků */
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .3s ease, opacity .3s ease;
}
.gallery-item:hover img { transform: scale(1.05); opacity: .92; }

/* --- lightbox --- */
.lightbox {
  position: fixed; inset: 0; z-index: 50; display: none;
  align-items: center; justify-content: center;
  background: rgba(12, 10, 8, .93);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(92vw, 1600px); max-height: 88vh;
  box-shadow: 0 8px 40px rgba(0,0,0,.6); border-radius: 3px;
}
.lightbox button {
  position: absolute; background: none; border: 0; color: #fff;
  font-size: 2.6rem; line-height: 1; cursor: pointer; padding: .6rem 1rem;
  opacity: .8;
}
.lightbox button:hover { opacity: 1; }
.lb-close { top: .5rem; right: .8rem; }
.lb-prev  { left: .4rem; top: 50%; transform: translateY(-50%); }
.lb-next  { right: .4rem; top: 50%; transform: translateY(-50%); }
.lb-count {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  color: #cbc3b6; font-size: .9rem;
}

/* --- reference --- */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem; margin: 1rem 0 2rem;
}
.testimonial {
  margin: 0; padding: 1.4rem 1.5rem; background: var(--bg-alt);
  border-radius: 6px; border: 1px solid var(--line);
}
.testimonial .stars { color: var(--accent); letter-spacing: .2em; }
.testimonial blockquote {
  margin: .6rem 0; font-style: italic; font-size: 1.02rem;
}
.testimonial figcaption { color: var(--muted); font-size: .92rem; }

.news-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.news-grid .news-teaser { border: 0; padding: 0; }

/* --- kontaktní formulář --- */
.contact-form-wrap { max-width: 34rem; }
.contact-form input[type=text], .contact-form input[type=email],
.contact-form textarea {
  width: 100%; padding: .55rem .7rem; font-size: 1rem;
  border: 1px solid var(--line); border-radius: 4px; font-family: inherit;
}
.contact-form label { font-weight: 600; }
.contact-form .hp { position: absolute; left: -999px; } /* honeypot */
.btn-submit {
  padding: .7rem 1.8rem; border: 0; border-radius: 4px; font-size: 1rem;
  background: var(--navy); color: #fff; cursor: pointer; font-weight: 600;
}
.btn-submit:hover { background: var(--navy-d); }

/* --- před/po posuvník --- */
.center { text-align: center; }
/* Sekce před/po — hlavní prodejní argument, proto má vlastní pruh
   a první porovnání jde přes celou šířku. */
.ba-section {
  /* full-bleed i uvnitř .wrap — stejně jako hero */
  width: 100vw; margin-left: calc(50% - 50vw); margin-bottom: 3rem;
  padding: 2.6rem 1.25rem 2.4rem;
  background: var(--bg-alt); border-bottom: 1px solid var(--line);
}
/* 1040px = obsah .wrap (1080 − 2× padding) → přesné zarovnání se zbytkem webu */
.ba-section > * { max-width: 1040px; margin-left: auto; margin-right: auto; }
.ba-section-h { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: .4rem; text-align: center; }
.ba-section-lead { margin: 0 auto 1.6rem; max-width: 46rem; font-size: 1.05rem; }

.ba-grid {
  /* dva sloupce, ať jsou porovnání pořádně velká (první je přes oba) */
  display: grid; grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 1.2rem;
  /* auto po stranách — mřížka musí zůstat na střed jako zbytek webu */
  max-width: 1040px; margin: 1rem auto 0;
}
.ba-slider {
  position: relative; aspect-ratio: 3 / 2; overflow: hidden;
  border-radius: 10px; background: var(--bg-alt);
  box-shadow: 0 6px 20px -10px rgba(0,0,0,.45);
}
/* první porovnání přes celou šířku mřížky */
.ba-slider--hero {
  grid-column: 1 / -1; aspect-ratio: 16 / 9; border-radius: 12px;
  box-shadow: 0 14px 40px -18px rgba(0,0,0,.6);
}
@media (max-width: 640px) { .ba-slider--hero { aspect-ratio: 4 / 3; } }
.ba-slider img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px;
  background: #fff; box-shadow: 0 0 10px rgba(0,0,0,.6);
  pointer-events: none; z-index: 2;
}
.ba-handle::after {
  content: "◂ ▸"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff; color: var(--text); font-size: .95rem; font-weight: 700;
  padding: .5rem .8rem; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,.45);
}
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: ew-resize; z-index: 3;
}
.ba-range:focus-visible ~ .ba-handle,
.ba-slider:has(.ba-range:focus-visible) .ba-handle { outline: 3px solid var(--accent); }
.ba-tag {
  position: absolute; bottom: .6rem; z-index: 1;
  background: rgba(0,0,0,.62); color: #fff; font-size: .85rem; font-weight: 600;
  padding: .25rem .75rem; border-radius: 999px; letter-spacing: .02em;
}
.ba-tag-before { left: .6rem; }
.ba-tag-after  { right: .6rem; }

/* --- filtr galerie (štítky) --- */
.filter button {
  padding: .35rem .8rem; border: 1px solid var(--line); border-radius: 999px;
  background: var(--bg); font-size: .92rem; cursor: pointer;
}
.filter button[aria-pressed="true"] {
  background: var(--navy); color: #fff; border-color: var(--navy);
}

/* --- FAQ --- */
.faq-list { max-width: 44rem; margin: 1.2rem 0; }
.faq-item {
  border: 1px solid var(--line); border-radius: 6px;
  margin: .6rem 0; background: var(--bg-alt);
}
.faq-item summary {
  padding: .8rem 1rem; font-weight: 600; cursor: pointer;
}
.faq-item summary:hover { color: var(--navy); }
.faq-item[open] summary { border-bottom: 1px solid var(--line); }
.faq-item p { margin: 0; padding: .8rem 1rem; }

/* --- rezervace --- */
.booking-form { max-width: 34rem; }
.booking-form select {
  padding: .5rem .7rem; border: 1px solid var(--line); border-radius: 4px;
  font-size: 1rem;
}
.day-picker {
  border: 1px solid var(--line); border-radius: 6px;
  padding: .6rem .9rem .9rem; margin: 0 0 1rem;
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.day-picker legend { font-weight: 600; padding: 0 .3rem; }
.day-option {
  border: 1px solid var(--line); border-radius: 999px;
  padding: .35rem .9rem; cursor: pointer;
}
.day-option:has(input:checked) {
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.day-option:has(input:focus-visible) { outline: 3px solid var(--accent); }
.day-option input { position: absolute; opacity: 0; pointer-events: none; }

.day-list { list-style: none; margin: .8rem 0; padding: 0; max-width: 22rem; }
.day-list li {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .4rem .2rem; border-bottom: 1px solid var(--line);
}
.day-remove { display: inline; }
.day-remove button {
  border: 0; background: var(--err); color: #fff; border-radius: 4px;
  cursor: pointer; padding: .1rem .55rem; font-size: 1rem; line-height: 1.4;
}

/* --- admin: štítek soukromé zakázky --- */
.badge-private {
  display: inline-block; margin-left: .4rem; padding: .05rem .5rem;
  background: var(--accent); color: #fff; font-size: .72rem;
  font-weight: 700; border-radius: 999px; vertical-align: middle;
}

.card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem; margin: 1rem 0;
}
.card {
  display: block; padding: 1rem 1.1rem; border: 1px solid var(--line);
  border-radius: 6px; text-decoration: none; color: var(--text);
  background: var(--bg-alt);
}
.card:hover { border-color: var(--navy); }
.card h3, .card-h { margin: 0 0 .35rem; color: var(--navy); font-size: 1.05rem; }
.card p { margin: 0; font-size: .92rem; }

.two-col { display: grid; grid-template-columns: 3fr 2fr; gap: 2.5rem; }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }

/* --- dokumenty --- */
.doc-list { list-style: none; margin: .8rem 0; padding: 0; }
.doc-item { border-bottom: 1px solid var(--line); }
.doc-link {
  display: grid; grid-template-columns: auto 1fr; column-gap: .9rem;
  padding: .7rem .2rem; text-decoration: none; color: var(--text);
}
.doc-link:hover .doc-title { text-decoration: underline; color: var(--navy-d); }
.doc-ext {
  grid-row: span 2; align-self: center;
  background: var(--navy); color: #fff; font-size: .72rem; font-weight: 700;
  padding: .35rem .45rem; border-radius: 4px; min-width: 3.2em; text-align: center;
}
.doc-title { font-weight: 600; color: var(--navy); }
.doc-meta  { font-size: .85rem; color: var(--muted); }

.filter { display: flex; flex-wrap: wrap; gap: .4rem; margin: 1rem 0; }
.filter a {
  padding: .35rem .8rem; border: 1px solid var(--line); border-radius: 999px;
  text-decoration: none; font-size: .92rem;
}
.filter a[aria-current="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }

/* --- aktuality, články --- */
.news-teaser { padding: .6rem 0; border-bottom: 1px solid var(--line); }
.news-teaser p { margin: .2rem 0; }
.article table { border-collapse: collapse; margin: 1rem 0; }
.article th, .article td { border: 1px solid var(--line); padding: .45rem .7rem; text-align: left; }
.article th { background: var(--bg-alt); }

/* --- hledání --- */
.hit-list { list-style: none; margin: 1rem 0; padding: 0; }
.hit { padding: .8rem 0; border-bottom: 1px solid var(--line); }
.hit-kind {
  display: inline-block; font-size: .75rem; font-weight: 700;
  color: var(--navy); background: var(--bg-alt);
  border: 1px solid var(--line); border-radius: 4px;
  padding: .05rem .45rem; margin-right: .5rem;
}
.hit-title { font-weight: 600; }
.hit .doc-meta { display: block; margin-top: .15rem; }
.hit-snippet { margin: .3rem 0 0; font-size: .9rem; color: var(--muted); }

/* --- admin --- */
.admin-form {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: 6px; padding: .3rem 1.1rem .6rem; margin: .8rem 0 1.5rem;
}
.admin-form label { font-weight: 600; }
.admin-form input[type=text], .admin-form input[type=password], .admin-form select {
  padding: .45rem .6rem; border: 1px solid var(--line); border-radius: 4px; font-size: 1rem;
  max-width: 100%;
}
.admin-table { border-collapse: collapse; width: 100%; margin: .8rem 0; }
.admin-table th, .admin-table td {
  border-bottom: 1px solid var(--line); padding: .45rem .6rem; text-align: left;
  font-size: .93rem;
}
.admin-table th { background: var(--bg-alt); }

.msg { padding: .6rem .9rem; border-radius: 4px; font-weight: 600; }
.msg-ok  { background: #e7f3ea; color: var(--ok); }
.msg-err { background: #fbe9ec; color: var(--err); }

/* --- patička --- */
.site-footer {
  margin-top: 2.5rem; background: var(--navy-d); color: #fff;
}
.site-footer a { color: #cfe0f5; }
.footer-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 1.6rem 1.25rem;
}
@media (max-width: 600px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-h { font-size: 1rem; margin: 0 0 .5rem; color: #fff; }
.site-footer address { font-style: normal; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin: .25rem 0; }
.footer-note {
  border-top: 1px solid rgba(255,255,255,.2);
  padding: .8rem 1.25rem; font-size: .85rem; color: #c6d2e2;
}

/* === Editor obsahu v adminu (/admin/obsah) === */
.btn-new { display: inline-block; background: var(--navy); color: #fff; padding: .5rem 1rem; border-radius: 8px; font-weight: 600; }
.btn-new:hover { background: var(--navy-d); }
.ed-meta { display: flex; flex-wrap: wrap; gap: 0 1.25rem; align-items: end; }
.ed-meta .ed-title { flex: 2 1 260px; }
.ed-meta .ed-perex { flex: 1 1 100%; }
.ed-meta input[type=text] { width: 100%; }
.ed-toolbar { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; margin: .75rem 0 .4rem; }
.ed-toolbar button { padding: .3rem .7rem; border: 1px solid #ccc; background: #fff; color: #333; border-radius: 6px; cursor: pointer; font-size: .9rem; }
.ed-toolbar button:hover { background: #f0f0f0; }
.ed-hint { margin-left: auto; font-size: .85rem; }
.ed-panes { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: stretch; }
.ed-panes textarea { width: 100%; min-height: 420px; resize: vertical; font: 14px/1.6 ui-monospace, "SF Mono", Menlo, Consolas, monospace; padding: .9rem; border: 1px solid #ccc; border-radius: 8px; }
.ed-preview { border: 1px dashed #ccc; border-radius: 8px; padding: .9rem 1.1rem; overflow-y: auto; max-height: 620px; background: #fff; }
.ed-save { display: flex; gap: 1rem; align-items: center; margin-top: 1rem; }
@media (max-width: 900px) { .ed-panes { grid-template-columns: 1fr; } }

/* === Správa menu webu v adminu === */
.nav-inline { display: inline; }
.nav-inline button { padding: .2rem .6rem; border: 1px solid #ccc; background: #fff; color: #333; border-radius: 6px; cursor: pointer; }
.nav-inline button:hover { background: #f0f0f0; }
.nav-order form { margin-right: .25rem; }
.nav-add input[type=text] { width: 14rem; max-width: 100%; }
.nav-add label { margin-left: .75rem; }
.nav-add label:first-child { margin-left: 0; }
.nav-reset { background: #fff; color: #333; border: 1px solid #ccc; }
.msg-tip { background: #fff8e6; border: 1px solid #e6cf8a; padding: .6rem 1rem; border-radius: 8px; }
.btn-armed { background: #b91c1c !important; color: #fff !important; border-color: #b91c1c !important; }

/* Dlaždice editoru na hlavní stránce adminu — ať nezapadne */
.admin-tile { background: linear-gradient(135deg, #fdf6ec, #fff); border: 2px solid var(--accent); border-radius: 12px; padding: 1.1rem 1.4rem 1.2rem; margin: 1.2rem 0 2rem; }
.admin-tile h2 { margin-top: 0; }
.admin-tile-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 0; }
.btn-secondary { background: #fff; color: var(--navy); border: 1px solid var(--navy); }
.btn-secondary:hover { background: var(--bg-alt, #f5f5f5); }
.admin-ver { font-size: .55em; font-weight: 400; color: #999; vertical-align: middle; }

/* === Autoservis: stav otevřeno/zavřeno === */
.open-badge {
  display: inline-block; padding: .3rem .8rem; border-radius: 999px;
  font-size: .85rem; font-weight: 700; white-space: nowrap;
}
.open-badge-open   { background: #e7f3ea; color: var(--ok); }
.open-badge-closed { background: #fbe9ec; color: var(--err); }
.hero-state { margin: 1.4rem 0 0; }
.hero-state .open-badge { font-size: .95rem; box-shadow: 0 2px 12px rgba(0,0,0,.35); }

/* === Sezónní pruh na úvodce (přezouvání, klimatizace…) === */
.seasonal-strip {
  display: flex; justify-content: center; align-items: baseline; gap: .6rem;
  margin: 1.2rem 0 0; padding: .8rem 1.2rem; border-radius: 8px;
  background: var(--accent); color: #fff; font-weight: 700;
  text-decoration: none; text-align: center;
}
.seasonal-strip:hover { filter: brightness(1.08); }
.seasonal-arrow { flex: none; }

/* === Ceník úkonů === */
.price-section { max-width: 46rem; }
.price-list { list-style: none; margin: .6rem 0 1.6rem; padding: 0; }
.price-item { padding: .45rem 0; }
.price-line { display: flex; align-items: baseline; gap: .6rem; }
.price-name { font-weight: 600; }
.price-dots { flex: 1; border-bottom: 2px dotted var(--line); min-width: 1.5rem; }
.price-amount { font-weight: 700; white-space: nowrap; }
.price-desc { margin: .1rem 0 0; font-size: .92rem; color: var(--muted); }
.price-note { max-width: 46rem; border-top: 1px solid var(--line); margin-top: 2rem; padding-top: .5rem; }
.btn-pricelist { margin-top: .5rem; }

/* === Otevírací doba === */
.hours-table { border-collapse: collapse; margin: .6rem 0; }
.hours-table th, .hours-table td {
  text-align: left; padding: .15rem 1.2rem .15rem 0; font-size: .95rem;
}
.hours-table th { font-weight: 600; }
.hours-today th, .hours-today td { color: var(--accent); font-weight: 700; }
.site-footer .hours-table th, .site-footer .hours-table td { color: #fff; }
.site-footer .hours-today th, .site-footer .hours-today td { color: var(--accent); }

/* === Objednání do servisu === */
.booking-row { display: flex; flex-wrap: wrap; gap: 0 1.5rem; }
.booking-form input[type=date], .booking-form input[type=tel],
.booking-form select {
  padding: .5rem .7rem; border: 1px solid var(--line); border-radius: 4px;
  font-size: 1rem; font-family: inherit;
}
.booking-hint { font-weight: 600; color: var(--err); }
