:root {
  --red: #cc0000;
  --red-bright: #ff3726;
  --orange: #fc7c00;
  --dark: #212934;
  --text: #141617;
  --muted: #5b6270;
  --bg: #f2f3f5;
  --white: #fff;
  --line: #dfe2e8;
  --blue: #0066cc;
  --green: #1a8f3a;
  --radius: 10px;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  --head: 'Anton', Impact, 'Arial Narrow Bold', sans-serif;
  --body: 'Roboto', Arial, Helvetica, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--body); color: var(--text); background: var(--bg); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
h1, h2, h3, .btn { font-family: var(--head); font-weight: 400; letter-spacing: 0.02em; }
h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.15; margin: 0 0 0.6em; color: var(--dark); }
h2 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); margin: 1.2em 0 0.5em; color: var(--dark); }
h3 { font-size: 1.25rem; margin: 1em 0 0.4em; color: var(--dark); }
p { margin: 0 0 1em; }
.wrap { width: min(1180px, 100% - 2rem); margin: 0 auto; }
.content-narrow { max-width: 860px; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 8px; top: 8px; background: #fff; padding: 8px; z-index: 100; }
.small { font-size: 0.9rem; }
.muted { color: var(--muted); }
.hp { position: absolute; left: -9999px; }

/* Buttons */
.btn { display: inline-block; padding: 10px 22px; border-radius: 6px; text-decoration: none; text-transform: uppercase; font-size: 1.05rem; border: 0; cursor: pointer; line-height: 1.3; transition: transform 0.1s, filter 0.15s; }
.btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-red { background: var(--red); color: #fff; }
.btn-white { background: #fff; color: var(--red); }
.btn-grey { background: #e3e5ea; color: var(--dark); }
.btn-lg { padding: 14px 32px; font-size: 1.25rem; }
.btn-sm { padding: 5px 12px; font-size: 0.85rem; }

/* Header */
.site-header { background: #fff; box-shadow: var(--shadow); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 1rem; }
.logo img { width: 200px; height: auto; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 0.25rem; align-items: center; }
.main-nav li { position: relative; }
.main-nav a { display: block; padding: 12px 14px; color: var(--dark); text-decoration: none; font-weight: 500; border-radius: 6px; }
.main-nav a:hover { color: var(--orange); }
.main-nav a.active { color: var(--red); }
.main-nav a.active:hover { color: var(--orange); }
.main-nav .sub a:hover { color: var(--orange); background: #fff5eb; }
.linkbtn:hover { color: var(--orange); }
.main-nav .phone a { background: var(--red); color: #fff; margin-left: 8px; }
.main-nav .sub { display: none; position: absolute; top: 100%; left: 0; background: #fff; box-shadow: var(--shadow); min-width: 240px; flex-direction: column; gap: 0; padding: 6px 0; border-radius: 8px; }
.main-nav .has-sub:hover .sub, .main-nav .has-sub:focus-within .sub { display: flex; }
.main-nav .sub { align-items: stretch; }
.main-nav .sub li { width: 100%; }
.main-nav .sub a { padding: 8px 16px; font-weight: 400; text-align: left; white-space: nowrap; }
.nav-toggle { display: none; font-size: 1.6rem; background: none; border: 0; cursor: pointer; color: var(--dark); }
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; box-shadow: var(--shadow); padding: 8px 0 12px; }
  body.nav-open .main-nav { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; }
  .main-nav .sub { display: flex; position: static; box-shadow: none; padding-left: 16px; }
  .main-nav .phone a { margin: 8px 14px 0; text-align: center; }
}

/* Hero */
.hero { background-size: cover; background-position: center; position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero { overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: none; }
@media (min-width: 900px) and (prefers-reduced-motion: no-preference) { .hero-video.ready { display: block; } }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.22)); z-index: 1; }
.hero-inner { z-index: 2; }
.hero-inner { position: relative; color: #fff; padding: 2rem 1rem; }
.hero-logo { margin: 0 auto 1rem; width: 340px; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.7)); }
.hero h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.6rem); margin: 0 0 1rem; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 0 2px rgba(0, 0, 0, 0.9); }

/* Home */
.intro { padding-top: 2rem; }
.usp-row { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.usp-row li { background: #fff; border-radius: var(--radius); padding: 12px 14px; box-shadow: var(--shadow); }
.section-title { text-align: center; margin: 2rem 0 1rem; position: relative; }
.section-title::after { content: ''; display: block; width: 70px; height: 4px; background: var(--red); margin: 8px auto 0; border-radius: 2px; }
.group { margin-bottom: 2rem; }
.group-title { margin-bottom: 0.2em; color: var(--red); }
.group-blurb { color: var(--muted); margin-bottom: 1rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; }
.card-img img { width: 100%; aspect-ratio: 556 / 350; object-fit: cover; }
.card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.card h3 { margin: 0 0 8px; font-size: 1.2rem; }
.card h3 a { color: var(--dark); text-decoration: none; }
.specs { list-style: none; padding: 0; margin: 0 0 12px; color: var(--muted); font-size: 0.95rem; }
.specs li { padding: 2px 0; }
.badge { display: inline-block; background: var(--dark); color: #fff; border-radius: 4px; padding: 1px 8px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price { display: flex; flex-direction: column; line-height: 1.1; }
.price span { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; }
.price strong { font-size: 1.5rem; color: var(--red); font-family: var(--head); }
.cta-band { background: var(--red); color: #fff; text-align: center; padding: 2.5rem 0; margin: 2.5rem 0; }
.cta-band h2 { color: #fff; margin-top: 0; }
.cta-band a { color: #fff; }
.cta-band .btn-white { text-decoration: none; color: var(--red); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.why-grid div { background: #fff; border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); border-top: 4px solid var(--red); }
.why-grid h3 { margin-top: 0; }
.note { margin-top: 1.5rem; background: #fff7e6; border-left: 4px solid #f0a500; padding: 12px 16px; border-radius: 6px; }

/* Articles */
.articles { margin: 2rem auto 3rem; }
.article-strip { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.article-strip .article-card { flex: 0 0 260px; scroll-snap-align: start; }
.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.article-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); text-decoration: none; color: var(--dark); display: flex; flex-direction: column; overflow: hidden; }
.article-card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.article-title { padding: 10px 12px 4px; font-weight: 500; line-height: 1.3; }
.article-desc { padding: 0 12px 10px; color: var(--muted); font-size: 0.9rem; }
.read-more { padding: 0 12px 12px; color: var(--red); font-size: 0.9rem; text-transform: uppercase; }

/* Page title bar + prose */
.page-title { background: var(--dark); color: #fff; padding: 1.5rem 0; margin-bottom: 1.5rem; }
.page-title h1 { color: #fff; margin: 0; }
.prose { background: #fff; padding: 1.5rem 2rem 2rem; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 2rem; }
.prose .page-hero { border-radius: 8px; margin-bottom: 1.5rem; width: 100%; }
.prose h2 { margin-top: 1.5em; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin-bottom: 0.4em; }
.results { color: var(--muted); }
.cta-inline { background: var(--bg); border-radius: var(--radius); padding: 1.2rem 1.5rem; margin-top: 2rem; text-align: center; }
.cta-inline h2 { margin-top: 0; }
@media (max-width: 600px) { .prose { padding: 1rem 1.1rem 1.5rem; } }

/* Product page */
.product { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 2rem; align-items: start; margin-top: 1.5rem; }
@media (max-width: 960px) { .product { grid-template-columns: 1fr; } }
.gallery-main img { width: 100%; border-radius: var(--radius); aspect-ratio: 800 / 503; object-fit: cover; box-shadow: var(--shadow); background: #fff; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.thumb { border: 3px solid transparent; padding: 0; background: none; cursor: pointer; border-radius: 6px; overflow: hidden; width: 110px; }
.thumb.active { border-color: var(--red); }
.thumb img { aspect-ratio: 150 / 94; object-fit: cover; width: 100%; }
.spec-badges { list-style: none; padding: 0; margin: 1.2rem 0; display: flex; flex-wrap: wrap; gap: 8px; }
.spec-badges li { background: #fff; border-radius: 6px; padding: 8px 14px; box-shadow: var(--shadow); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: var(--red); display: inline-block; }
.description { background: #fff; padding: 1.5rem 2rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.description h1 { font-size: 1.6rem; }
.feature-list { list-style: none; padding: 0; }
.feature-list li { padding: 4px 0; }
.cta-line { font-weight: 500; font-size: 1.1rem; }
.booking-panel { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; position: sticky; top: 90px; }
.panel-head { background: var(--red); color: #fff; padding: 14px 18px; text-align: center; }
.panel-head h2 { color: #fff; margin: 0; font-size: 1.4rem; }
.panel-head p { margin: 0; font-size: 0.9rem; opacity: 0.9; }
.panel-body { padding: 16px 18px; }
.panel-price { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--line); padding-bottom: 10px; margin-bottom: 10px; }
.panel-price span { color: var(--muted); font-size: 0.9rem; }
.panel-price strong { font-family: var(--head); font-size: 1.8rem; color: var(--red); }
.hint { margin: 10px 0 0; color: var(--muted); font-size: 0.95rem; }

/* Calendar */
.calendar { user-select: none; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.cal-head button { background: var(--bg); border: 0; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; }
.cal-head button:disabled { opacity: 0.3; cursor: default; }
.cal-title { font-weight: 500; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow { text-align: center; font-size: 0.75rem; color: var(--muted); text-transform: uppercase; padding: 4px 0; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 0.95rem; border: 0; background: none; cursor: default; color: #aab0bb; }
.cal-day.avail { background: #e8f6ec; color: var(--green); cursor: pointer; font-weight: 500; }
.cal-day.avail:hover { background: var(--green); color: #fff; }
.cal-day.booked { background: #fbe9e9; color: #c66; text-decoration: line-through; }
.cal-day.selected { background: var(--red) !important; color: #fff !important; }
.cal-day.empty { visibility: hidden; }
.cal-legend { display: flex; gap: 14px; font-size: 0.8rem; color: var(--muted); margin-top: 8px; }
.cal-legend span::before { content: ''; display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 4px; vertical-align: middle; }
.cal-legend .l-avail::before { background: #e8f6ec; border: 1px solid var(--green); }
.cal-legend .l-booked::before { background: #fbe9e9; border: 1px solid #c66; }
.cal-loading { opacity: 0.5; pointer-events: none; }

/* Booking form */
.book { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 2rem; align-items: start; margin: 1.5rem auto 3rem; }
@media (max-width: 900px) { .book { grid-template-columns: 1fr; } }
.book-form { background: #fff; padding: 1.5rem 2rem 2rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.book-form .calendar { max-width: 420px; }
fieldset { border: 0; padding: 0; margin: 0 0 1.5rem; }
legend { font-family: var(--head); font-size: 1.3rem; color: var(--red); margin-bottom: 0.6rem; }
label { display: block; margin-bottom: 0.9rem; font-weight: 500; }
input:not([type=checkbox]), select, textarea { display: block; width: 100%; margin-top: 4px; padding: 10px 12px; border: 1px solid #c9ced8; border-radius: 6px; font: inherit; font-weight: 400; background: #fff; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--red); border-color: var(--red); }
input.short { max-width: 200px; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .two { grid-template-columns: 1fr; } .book-form { padding: 1rem 1.1rem 1.5rem; } }
.check { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; }
.check input { width: 20px; height: 20px; margin: 2px 0 0; }
.help { font-weight: 400; color: var(--muted); font-size: 0.9rem; display: block; margin-top: 4px; }
.field-error { display: block; color: var(--red); font-size: 0.9rem; margin-top: 4px; font-weight: 400; }
.selected-date { font-weight: 500; margin-top: 8px; }
.alert { padding: 12px 16px; border-radius: 6px; margin-bottom: 1rem; }
.alert-error { background: #fbe9e9; color: #a00; }
.alert-ok { background: #e8f6ec; color: var(--green); }
.book-summary { background: #fff; padding: 1.2rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.book-summary img { border-radius: 8px; margin-bottom: 10px; }
.book-summary h2 { margin: 0 0 6px; font-size: 1.4rem; }
.ticks { list-style: none; padding: 0; }
.ticks li { padding-left: 1.4em; position: relative; margin-bottom: 4px; }
.ticks li::before { content: '✔'; color: var(--green); position: absolute; left: 0; }

/* Confirmation */
.confirm { margin: 2rem auto 3rem; max-width: 960px; }
.lead { font-size: 1.15rem; }
.confirm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
@media (max-width: 760px) { .confirm-grid { grid-template-columns: 1fr; } }
.confirm-card { background: #fff; padding: 1.2rem 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.confirm-card h2 { margin-top: 0; }
.kv { border-collapse: collapse; width: 100%; }
.kv th { text-align: left; color: var(--muted); font-weight: 500; padding: 5px 10px 5px 0; vertical-align: top; white-space: nowrap; }
.kv td { padding: 5px 0; }
.status { display: inline-block; padding: 2px 10px; border-radius: 12px; font-size: 0.8rem; text-transform: uppercase; font-weight: 500; }
.status-pending { background: #fff3d6; color: #8a5a00; }
.status-paid, .status-confirmed { background: #e8f6ec; color: var(--green); }
.status-cancelled { background: #eee; color: #777; }

/* Contact */
.contact { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 2rem; align-items: start; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }
.contact-form { background: #fff; padding: 1.2rem 1.5rem 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form h2 { margin-top: 0; }
.big { font-size: 1.3rem; line-height: 1.8; }

/* Admin */
.admin { margin: 1.5rem auto 3rem; }
.admin-login { max-width: 400px; }
.admin-bar { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.admin-bar h1 { margin: 0; }
.admin-tabs a { margin-right: 14px; text-decoration: none; color: var(--dark); font-weight: 500; padding-bottom: 4px; }
.admin-tabs a.active { border-bottom: 3px solid var(--red); color: var(--red); }
.admin-filters a { margin-right: 12px; }
.admin-filters a.active { font-weight: 700; color: var(--red); }
.booking-row { background: #fff; border-radius: 8px; box-shadow: var(--shadow); margin-bottom: 8px; border-left: 5px solid #f0a500; }
.booking-row.status-paid, .booking-row.status-confirmed { border-left-color: var(--green); }
.booking-row.status-cancelled { border-left-color: #bbb; opacity: 0.7; }
.booking-row summary { display: grid; grid-template-columns: 110px 1.4fr 1.6fr 80px 100px 100px; gap: 10px; align-items: center; padding: 10px 14px; cursor: pointer; list-style: none; }
.booking-row summary::-webkit-details-marker { display: none; }
@media (max-width: 800px) { .booking-row summary { grid-template-columns: 1fr 1fr; } }
.b-date { font-weight: 700; }
.b-ref { font-family: monospace; color: var(--muted); text-align: right; }
.booking-detail { padding: 6px 14px 14px; border-top: 1px solid var(--line); }
.inline-form { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; margin-top: 10px; }
.inline-form label { margin: 0; min-width: 160px; }
.inline-form .check { align-items: center; }
.inline { display: inline; }
.table { width: 100%; border-collapse: collapse; background: #fff; box-shadow: var(--shadow); border-radius: 8px; overflow: hidden; margin: 1rem 0; }
.table th, .table td { padding: 8px 12px; text-align: left; border-bottom: 1px solid var(--line); }
.table th { background: var(--bg); }
.table input.short { max-width: 120px; margin: 0; }
.message-card { background: #fff; padding: 12px 16px; border-radius: 8px; box-shadow: var(--shadow); margin-bottom: 10px; }
.message-head { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 6px; }
.message-card p { white-space: pre-wrap; margin: 0; }
code { background: var(--bg); padding: 1px 5px; border-radius: 4px; }

/* Footer */
.site-footer { background: var(--dark); color: #cfd4dc; padding: 2.5rem 0 1.5rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.site-footer h3 { color: #fff; margin-top: 0; }
.site-footer a { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 6px; }
.copyright { text-align: center; margin-top: 2rem; font-size: 0.85rem; color: #9aa3b0; }

/* Accounts */
.account-box { max-width: 460px; background: #fff; padding: 1.5rem 2rem 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow); margin: 2rem auto 3rem; }
.account { margin: 1.5rem auto 3rem; }
.account-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 1.5rem; align-items: start; }
@media (max-width: 800px) { .account-grid { grid-template-columns: 1fr; } }
.booking-card { background: #fff; border-radius: 8px; box-shadow: var(--shadow); padding: 12px 16px; margin-bottom: 10px; border-left: 5px solid #f0a500; }
.booking-card.status-paid, .booking-card.status-confirmed { border-left-color: var(--green); }
.booking-card.status-cancelled { border-left-color: #bbb; opacity: 0.75; }
.booking-card-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.booking-card p { margin: 4px 0; }
.linkbtn { background: none; border: 0; font: inherit; color: var(--dark); padding: 8px 16px; cursor: pointer; width: 100%; text-align: left; }
.linkbtn:hover { color: var(--red); }
.add-user { margin-bottom: 1rem; }
.add-user summary { cursor: pointer; font-weight: 500; }
.inline-details { display: inline-block; }
.inline-details summary { list-style: none; display: inline-block; }
.inline-details summary::-webkit-details-marker { display: none; }
.nowrap { white-space: nowrap; }

/* Dimensions */
.dimensions { background: #fff; padding: 1.2rem 2rem 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow); margin-top: 1.5rem; }
.dimensions h2 { margin-top: 0; }
.dims-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(220px, 1fr); gap: 1.5rem; align-items: start; }
@media (max-width: 700px) { .dims-grid { grid-template-columns: 1fr; } .dimensions { padding: 1rem 1.1rem 1.2rem; } }
.dims-img img { border-radius: 8px; border: 1px solid var(--line); }
.dims-table .kv td { font-size: 1.1rem; }

/* Home page: full-screen hero with a see-through header over the video (desktop) */
@media (min-width: 900px) {
  body.home .hero { min-height: 100vh; margin-top: -76px; padding-top: 76px; }
  .site-header.overlay { transition: background 0.25s, box-shadow 0.25s; }
  .site-header.overlay:not(.scrolled) { background: linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0)); box-shadow: none; }
  .site-header.overlay:not(.scrolled) .main-nav > ul > li > a { color: #fff; text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6); }
  .site-header.overlay:not(.scrolled) .main-nav > ul > li > a:hover { color: var(--orange); }
  .site-header.overlay:not(.scrolled) .main-nav .phone a { background: var(--red); text-shadow: none; }
  .site-header.overlay:not(.scrolled) .logo img { filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.7)); }
  .site-header.overlay .logo img { transition: filter 0.25s; }
}

/* Coupons */
.coupon-row { display: flex; gap: 10px; align-items: flex-end; flex-wrap: wrap; }
.coupon-row label { margin-bottom: 0; }
.coupon-row .btn { margin-bottom: 2px; }
.help.ok { color: var(--green); font-weight: 500; }
.help.bad { color: var(--red); }
.price-summary { max-width: 420px; margin-top: 12px; background: var(--bg); border-radius: 8px; padding: 10px 14px; }
.price-summary > div { display: flex; justify-content: space-between; padding: 3px 0; }
.price-summary .total { border-top: 1px solid var(--line); margin-top: 4px; padding-top: 6px; font-weight: 700; font-size: 1.1rem; }
.price-summary em { font-style: normal; color: var(--muted); font-size: 0.9rem; }
.coupon-form label { min-width: 120px; }

/* Reminders */
.import-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; margin: 10px 0 1rem; }
.import-grid form { background: #fff; padding: 12px 16px; border-radius: 8px; box-shadow: var(--shadow); }
.import-grid h3 { margin-top: 0; }
.import-grid textarea { margin-bottom: 8px; }
.preview-box { margin-bottom: 1rem; }
.email-preview { white-space: pre-wrap; font-family: inherit; background: var(--bg); padding: 12px 16px; border-radius: 8px; }
.reminders td { vertical-align: top; }

/* Booking extras */
.extra-opt { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; margin-bottom: 8px; }
.extra-opt:has(input:checked) { border-color: var(--red); background: #fff7f7; }
.extra-price { color: var(--red); font-weight: 700; margin-left: 6px; }
.times-fields { margin: 0 0 8px 30px; }

/* Admin calendar */
.cal-admin-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.cal-admin-head h2 { margin: 0; flex: 1; text-align: center; }
.cal-admin { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-admin-dow { text-align: center; font-size: 0.8rem; text-transform: uppercase; color: var(--muted); padding: 4px 0; }
.cal-admin-day { background: #fff; border-radius: 8px; box-shadow: var(--shadow); min-height: 110px; padding: 6px; border: 2px solid transparent; }
.cal-admin-day.empty { background: transparent; box-shadow: none; }
.cal-admin-day.today { border-color: var(--red); }
.cal-admin-day.past { opacity: 0.55; }
.cal-admin-day.closed { background: repeating-linear-gradient(135deg, #f3f3f3 0 8px, #e6e6e6 8px 16px); }
.cal-admin-day.range { background: #fff3d6; }
.cal-admin-num { display: flex; justify-content: space-between; align-items: center; font-weight: 700; margin-bottom: 4px; }
.cal-close-btn { font: inherit; font-size: 0.7rem; padding: 1px 7px; border-radius: 10px; border: 1px solid var(--line); background: #fff; color: var(--muted); cursor: pointer; opacity: 0; transition: opacity 0.15s; }
.cal-admin-day:hover .cal-close-btn, .cal-admin-day.closed .cal-close-btn { opacity: 1; }
.cal-admin-day.closed .cal-close-btn { background: var(--dark); color: #fff; border-color: var(--dark); }
.cal-admin-range { font-size: 0.75rem; color: #8a5a00; margin-bottom: 4px; }
.cal-admin-booking { display: block; font-size: 0.75rem; line-height: 1.25; padding: 3px 6px; border-radius: 5px; margin-bottom: 3px; text-decoration: none; color: var(--dark); background: #e8f6ec; border-left: 3px solid var(--green); }
.cal-admin-booking.st-pending { background: #fff3d6; border-left-color: #f0a500; }
.cal-admin-booking:hover { filter: brightness(0.95); }
@media (max-width: 800px) { .cal-admin { gap: 2px; } .cal-admin-day { min-height: 70px; padding: 3px; } .cal-admin-booking { font-size: 0.65rem; } .cal-admin-booking br { display: none; } }
