/* ===== Olympia Fitness Store – Theme (Redesign) ===== */
*, *::before, *::after { box-sizing: border-box; }

:root {
    --accent: #ff5a1f;
    --accent-ink: #e0440c;
    --accent-tint: #fff1ea;
    --ink: #0f1115;
    --ink-2: #1a1d23;
    --text: #2b2f36;
    --muted: #6a7079;
    --line: #e9ebef;
    --light: #f6f7f9;
    --white: #ffffff;
    --radius: 18px;
    --radius-lg: 28px;
    --maxw: 1180px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --shadow: 0 18px 50px rgba(15,17,21,.10);
    --shadow-sm: 0 8px 24px rgba(15,17,21,.07);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-ink); text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.05; font-weight: 800; letter-spacing: -.025em; color: var(--ink); margin: 0; }
h1, h2, h3, p { overflow-wrap: break-word; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ===== Eyebrow pill ===== */
.eyebrow {
    display: inline-block; margin: 0 0 18px;
    background: var(--accent-tint); color: var(--accent-ink);
    font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
    font-size: .72rem; padding: 7px 14px; border-radius: 999px;
}
.section--dark .eyebrow { background: rgba(255,90,31,.16); color: #ff8a5c; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 30px; border-radius: 999px;
    font-weight: 700; font-size: 1rem; line-height: 1; cursor: pointer;
    transition: transform .14s ease, box-shadow .14s ease, background .14s ease, color .14s ease;
    border: 2px solid transparent; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(255,90,31,.32); }
.btn-primary:hover { background: var(--accent-ink); box-shadow: 0 14px 30px rgba(255,90,31,.4); }
.btn-whatsapp,
a.btn[href*="wa.me"] { background: #25d366; color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.35); }
.btn-whatsapp:hover,
a.btn[href*="wa.me"]:hover { background: #1da851; box-shadow: 0 14px 30px rgba(37,211,102,.45); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-light { background: #fff; color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border-color: rgba(15,17,21,.18); }
.section--dark .btn-outline { color: #fff; border-color: rgba(255,255,255,.3); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-ink); }
.section--dark .btn-outline:hover { color: #fff; }

/* ===== Header ===== */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.82);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 70px; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 52px; width: auto; display: block; }
.site-nav ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.site-nav a { color: var(--text); padding: 9px 16px; border-radius: 999px; font-weight: 600; font-size: .96rem; transition: background .14s, color .14s; }
.site-nav a:hover { color: var(--ink); background: var(--light); }
.site-nav li.active a { color: #fff; background: var(--ink); }

.nav-toggle, .nav-toggle-label { display: none; }

@media (max-width: 820px) {
    .nav-toggle-label { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
    .nav-toggle-label span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: .2s; }
    .site-nav {
        position: absolute; top: 70px; left: 0; right: 0;
        background: #fff; border-bottom: 1px solid var(--line);
        max-height: 0; overflow: hidden; transition: max-height .28s ease;
    }
    .site-nav ul { flex-direction: column; padding: 10px 16px 16px; gap: 4px; }
    .site-nav a { display: block; padding: 14px 14px; font-size: 1.05rem; }
    .nav-toggle:checked ~ .site-nav { max-height: 460px; }
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ===== Generic sections ===== */
.section { padding: 96px 0; }
.section--light { background: var(--light); }
.section--dark { background: var(--ink); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 26px; flex-wrap: wrap; }
.section-head-row .section-head { margin: 0; }
.section h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.section .lead { color: var(--muted); font-size: 1.15rem; margin: 18px 0 0; }
.section--dark .lead { color: #aeb4be; }

/* ===== Hero ===== */
.hero {
    position: relative; color: #fff; text-align: center;
    display: flex; align-items: center; justify-content: center;
    min-height: clamp(560px, 84vh, 840px); padding: 110px 0 96px; overflow: hidden;
    background:
        radial-gradient(820px 520px at 78% -8%, rgba(255,90,31,.26), transparent 60%),
        radial-gradient(680px 600px at 8% 112%, rgba(255,90,31,.12), transparent 58%),
        var(--ink);
}
.hero__bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: .5; }
/* vignette only when a photo is present */
.hero.has-bg::after { content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(15,17,21,.40) 0%, rgba(15,17,21,.25) 40%, rgba(15,17,21,.85) 100%); }
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: 880px; padding: 0 22px; }
.hero .eyebrow { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.16); }
.hero h1 { color: #fff; font-size: clamp(2.7rem, 8vw, 5.6rem); font-weight: 900; letter-spacing: -.035em; line-height: .98; text-shadow: 0 4px 34px rgba(0,0,0,.4); }
.hero h1 .outline { color: var(--accent); }
.hero p { font-size: clamp(1.08rem, 2.4vw, 1.4rem); margin: 22px auto 0; color: #d7dae0; max-width: 600px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-trust { display: flex; gap: 12px 22px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 30px; color: #cfd3da; font-weight: 600; font-size: .94rem; }
.hero-trust .ht-item { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .ht-stars { color: #ffb020; letter-spacing: 1px; }
.hero-trust .ht-sep { width: 4px; height: 4px; border-radius: 999px; background: rgba(255,255,255,.32); }
@media (max-width: 520px) { .hero-trust .ht-sep { display: none; } .hero-trust { gap: 8px 16px; } }
.hero__scroll { display: none; }

@media (max-width: 600px) {
    .hero { min-height: clamp(520px, 82vh, 720px); padding: 90px 0 80px; }
    .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__cta .btn { width: 100%; }
    .section { padding: 64px 0; }
}

/* ===== Text + Image ===== */
.text-image { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.text-image.reverse .ti-media { order: 2; }
.ti-media { position: relative; }
.ti-media img { border-radius: var(--radius-lg); width: 100%; box-shadow: var(--shadow); }
.ti-media.has-img::before { content: ""; position: absolute; inset: -14px -14px auto auto; width: 120px; height: 120px; border-radius: 24px; background: var(--accent-tint); z-index: -1; }
/* Branded card shown when no photo is uploaded */
.ti-card { position: relative; overflow: hidden; background: linear-gradient(155deg, var(--ink-2), var(--ink)); border-radius: var(--radius-lg); padding: 50px 40px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; box-shadow: var(--shadow); }
.ti-card::before { content: ""; position: absolute; width: 280px; height: 280px; right: -90px; top: -90px; border-radius: 999px; background: radial-gradient(circle, rgba(255,90,31,.38), transparent 70%); }
.ti-card img { position: relative; height: 128px; width: auto; box-shadow: none; border-radius: 0; }
.ti-card .tc-text { position: relative; color: #d7dae0; font-size: 1.06rem; max-width: 300px; margin: 0; }
.ti-card .tc-tags { position: relative; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 4px; }
.ti-card .tc-tags span { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: #fff; font-weight: 700; font-size: .82rem; padding: 7px 14px; border-radius: 999px; }
.ti-body h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.ti-body .lead { margin-top: 16px; }
.ti-body .prose-inline { margin: 18px 0 0; color: var(--text); font-size: 1.08rem; }
.feature-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; color: var(--ink); }
.feature-list .chk { flex: none; width: 26px; height: 26px; border-radius: 999px; background: var(--accent-tint); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 900; margin-top: 1px; }
.ti-body .btn { margin-top: 30px; }
@media (max-width: 820px) { .text-image { grid-template-columns: 1fr; gap: 34px; } .text-image.reverse .ti-media { order: 0; } }

/* ===== Banner / Marken ===== */
.banner-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 56px; align-items: center; }
.banner-grid.reverse .banner-media { order: 2; }
.banner-media { display: flex; justify-content: center; }
.banner-media img { width: 100%; max-width: 420px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.banner-body h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.banner-body .prose-inline { color: var(--text); font-size: 1.1rem; }
.section--dark .banner-body .prose-inline { color: #aeb4be; }
.banner-body .btn { margin-top: 28px; }
@media (max-width: 820px) {
    .banner-grid { grid-template-columns: 1fr; gap: 30px; }
    .banner-grid.reverse .banner-media { order: 0; }
    .banner-media img { max-width: 340px; }
}

/* ===== Produkte / Neuheiten ===== */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; align-items: stretch; }
@media (max-width: 880px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; height: 100%; transition: transform .16s ease, box-shadow .16s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-media { position: relative; aspect-ratio: 4/3; background: var(--light); overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media--empty { display: flex; align-items: center; justify-content: center; background: linear-gradient(155deg, var(--ink-2), var(--ink)); }
.product-media--empty > span:not(.product-price) { color: #fff; font-weight: 900; font-size: 2.6rem; opacity: .9; }
.product-media--empty::after { content: ""; position: absolute; inset: 0; background: radial-gradient(180px 180px at 70% 15%, rgba(255,90,31,.28), transparent 70%); }
.product-price { position: absolute; top: 12px; right: 12px; background: var(--accent); color: #fff; font-weight: 800; font-size: .9rem; padding: 7px 14px; border-radius: 999px; box-shadow: 0 6px 16px rgba(255,90,31,.35); z-index: 1; }
.product-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.product-flavor { align-self: flex-start; background: var(--accent-tint); color: var(--accent-ink); font-weight: 800; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; padding: 5px 12px; border-radius: 999px; }
.product-name { font-size: 1.25rem; font-weight: 800; color: var(--ink); line-height: 1.2; }
.product-text { color: var(--muted); font-size: 1rem; margin: 0; }
.product-text p { margin: 0; }
.product-brand { align-self: flex-start; font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 4px; }
.product-type-tag { background: var(--light); border: 1px solid var(--line); color: var(--text); font-weight: 700; font-size: .72rem; padding: 5px 12px; border-radius: 999px; }

/* Produkte-Seite: Filter + Suche */
.prod-filter { display: flex; flex-wrap: wrap; gap: 12px; margin: 8px 0 28px; }
.prod-search { flex: 2 1 220px; }
.prod-select-wrap { position: relative; flex: 1 1 150px; min-width: 0; }
.prod-select { width: 100%; }
.prod-filter .prod-search, .prod-filter .prod-select { font: inherit; font-size: 1.02rem; height: 52px; padding: 0 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--text); min-width: 0; box-shadow: var(--shadow-sm); transition: border-color .15s ease, box-shadow .15s ease; }
.prod-filter .prod-search::placeholder { color: var(--muted); }
.prod-filter .prod-search:focus, .prod-filter .prod-select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,90,31,.16); }
.prod-select { appearance: none; -webkit-appearance: none; -moz-appearance: none; cursor: pointer; font-weight: 600; color: var(--ink); padding-right: 46px; }
.prod-select::-ms-expand { display: none; }
/* immer sichtbarer Pfeil (rendert unabhängig vom Browser) */
.prod-select-wrap::after { content: ""; position: absolute; right: 18px; top: 50%; width: 9px; height: 9px; border-right: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.prod-empty { text-align: center; color: var(--muted); font-weight: 600; padding: 40px 0; }
@media (max-width: 680px) {
    .prod-filter { flex-direction: column; gap: 10px; }
    .prod-search, .prod-select-wrap { flex: 1 1 auto; width: 100%; }
    .prod-filter .prod-search, .prod-filter .prod-select { height: 54px; font-size: 1.05rem; }
}

/* ===== Öffnungszeiten ===== */
.hours-card {
    max-width: 560px; margin: 40px auto 0; background: var(--white); color: var(--text);
    border-radius: var(--radius-lg); padding: 14px 34px; box-shadow: var(--shadow); text-align: left;
}
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line); align-items: center; }
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { font-weight: 800; color: var(--ink); }
.hours-list li span:last-child { color: var(--muted); font-weight: 600; }
.hours-note { text-align: center; color: var(--muted); font-size: .92rem; margin: 16px 0 4px; }

/* ===== Videos / Social (mosaic) ===== */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.video-card { position: relative; background: var(--ink-2); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.video-card video, .video-card iframe, .video-card img { width: 100%; aspect-ratio: 9/16; display: block; border: 0; background: #000; object-fit: cover; }
.video-card .vc-caption { padding: 12px 16px; color: #fff; font-weight: 600; font-size: .95rem; }
@media (max-width: 860px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .video-grid { grid-template-columns: 1fr; } }

/* Placeholder tiles when no videos are uploaded yet */
.video-placeholder { position: relative; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 24px; color: #fff; border: 1px solid rgba(255,255,255,.1); background: linear-gradient(160deg, var(--ink-2), #11141a); transition: transform .16s ease, border-color .16s ease; }
@media (max-width: 520px) { .video-placeholder { aspect-ratio: 16/10; } }
.video-placeholder:hover { transform: translateY(-4px); border-color: var(--accent); }
.video-placeholder::after { content: ""; position: absolute; inset: 0; background: radial-gradient(220px 220px at 50% 18%, rgba(255,90,31,.22), transparent 70%); }
.video-placeholder .vp-icon { position: relative; width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); font-weight: 900; font-size: 1.5rem; color: #fff; }
.video-placeholder .vp-label { position: relative; font-weight: 800; font-size: 1.05rem; }
.video-placeholder .vp-sub { position: relative; color: #aeb4be; font-size: .9rem; font-weight: 600; }

.social-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.social-cta a { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; padding: 0; background: rgba(255,255,255,.08); color: #fff; border-radius: 999px; border: 1px solid rgba(255,255,255,.12); transition: background .14s, border-color .14s; }
.social-cta a svg { display: block; }
.social-cta a:hover { background: var(--accent); border-color: var(--accent); }
.social-cta a[aria-label="Facebook"]:hover { background: #1877f2; border-color: #1877f2; }

/* ===== Bewertungen ===== */
.reviews-grid { display: flex; gap: 24px; margin-top: 48px; text-align: left; align-items: stretch; width: 100%; max-width: 100%; overflow-x: hidden; }
.review-card { flex: 1 1 0; min-width: 0; max-width: 100%; min-height: 380px; background: #fff; border-radius: 0; padding: 34px 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .16s ease, box-shadow .16s ease; overflow: hidden; }
.review-card.is-hidden { display: none; }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-card .quote-mark { font-family: Georgia, serif; font-size: 3.4rem; line-height: .6; color: var(--accent); height: 28px; }
.review-stars { color: #ffb020; font-size: 1.05rem; letter-spacing: 2px; margin: 14px 0 10px; }
.review-text { margin: 0; font-size: 1.05rem; line-height: 1.6; color: var(--text); height: 8em; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; max-width: 100%; overflow-wrap: anywhere; }
.review-more { align-self: flex-start; margin: 12px 0 22px; padding: 0; background: none; border: none; cursor: pointer; font: inherit; font-weight: 700; font-size: .92rem; color: var(--accent); text-decoration: underline; }
.review-more.is-empty { visibility: hidden; }
.review-more:hover { opacity: .8; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; min-width: 0; }
.review-author > span:last-child { min-width: 0; flex: 1; overflow-wrap: anywhere; }
.review-avatar { width: 44px; height: 44px; border-radius: 999px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.05rem; flex: none; }
.review-name { font-weight: 800; color: var(--ink); }
.review-src { font-size: .82rem; color: var(--muted); }
.reviews-pagination { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; width: 100%; max-width: 100%; }
.reviews-pagination[hidden] { display: none; }
.rev-count { display: none; font-weight: 700; font-size: .95rem; color: var(--muted); min-width: 4.5em; text-align: center; flex: none; }
.rev-count[hidden] { display: none; }
.rev-nav { width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--ink); font-size: 1.4rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .16s ease, color .16s ease; }
.rev-nav:hover:not(:disabled) { background: var(--ink); color: #fff; }
.rev-nav:disabled { opacity: .35; cursor: default; }
.rev-dots { display: flex; gap: 8px; }
.rev-dot { width: 10px; height: 10px; border-radius: 999px; border: none; background: var(--line); cursor: pointer; padding: 0; transition: background .16s ease, transform .16s ease; }
.rev-dot.is-active { background: var(--accent); transform: scale(1.25); }
.review-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; }
.review-modal[hidden] { display: none; }
.review-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.review-modal-box { position: relative; background: #fff; border-radius: 0; max-width: 560px; width: 100%; max-height: 82vh; overflow-y: auto; padding: 40px 40px 44px; box-shadow: var(--shadow); text-align: left; }
.review-modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 1.9rem; line-height: 1; color: var(--muted); cursor: pointer; }
.review-modal-close:hover { color: var(--ink); }
.review-modal-stars { color: #ffb020; font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 16px; }
.review-modal-text { font-size: 1.08rem; line-height: 1.65; color: var(--text); margin: 0 0 24px; }
.review-modal-author { display: flex; align-items: center; gap: 12px; }
@media (max-width: 880px) {
    .reviews-grid { flex-direction: column; gap: 0; align-items: stretch; }
    .reviews-grid:not([data-init]) .review-card:not(:first-child) { display: none; }
    .review-card { flex: 0 0 auto; width: 100%; max-width: 100%; min-height: 0; padding: 28px 20px; box-shadow: none; }
    .review-card:hover { transform: none; }
    .review-card.is-hidden { display: none; }
    .section-head.center .eyebrow { max-width: 100%; white-space: normal; text-align: center; }
    .reviews-pagination { gap: 12px; padding: 0; }
    .rev-dots { display: none; }
    .rev-count { display: block; }
}
.reviews-action { text-align: center; margin-top: 44px; }
.reviews-summary { display: inline-flex; align-items: center; gap: 12px; margin: 18px 0 0; flex-wrap: wrap; justify-content: center; }
.reviews-summary .rs-score { font-size: 1.5rem; font-weight: 900; color: var(--ink); }
.reviews-summary .rs-stars { color: #ffb020; font-size: 1.2rem; letter-spacing: 2px; }
.reviews-summary .rs-count { color: var(--muted); font-weight: 600; }

/* ===== Route / Standort ===== */
.location-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.location-map { min-height: 380px; }
.location-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.location-info { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.location-info h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.location-info .addr { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin: 18px 0 6px; white-space: pre-line; }
.location-info .meta { color: var(--muted); margin: 2px 0; }
.location-info .meta a { color: var(--text); font-weight: 600; }
.location-info .btn { margin-top: 26px; align-self: flex-start; }
@media (max-width: 820px) { .location-grid { grid-template-columns: 1fr; } .location-info { padding: 34px 26px; } .location-info .btn { align-self: stretch; } }

/* ===== Default page / Blog ===== */
.page-hero { background: var(--ink); color: #fff; padding: 96px 0 72px; text-align: center; }
.page-hero .eyebrow { background: rgba(255,255,255,.14); color: #fff; }
.page-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); color: #fff; }
.page-hero p { color: #aeb4be; margin: 16px 0 0; font-size: 1.1rem; }
.page-body { padding: 72px 0; }
.page-body img { border-radius: var(--radius); margin: 28px 0; box-shadow: var(--shadow-sm); }
.prose { max-width: 760px; margin: 0 auto; font-size: 1.12rem; color: var(--text); }
.prose h2 { margin-top: 1.6em; font-size: 1.7rem; }
.prose h3 { margin-top: 1.4em; }
.prose a { text-decoration: underline; }

.blog-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (max-width: 760px) { .blog-list { grid-template-columns: 1fr; } }
.post-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .16s, box-shadow .16s; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.post-card .pc-body { padding: 26px 28px; }
.post-card h3 { margin: 0 0 .35em; font-size: 1.35rem; }
.post-card .pc-date { color: var(--accent-ink); font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.post-card .pc-summary { color: var(--muted); margin: 10px 0 16px; }
.post-card a.pc-link { color: var(--accent-ink); font-weight: 800; }

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
    position: fixed; right: 20px; bottom: 20px; z-index: 60;
    display: flex; align-items: center; gap: 12px;
    background: #25d366; color: #fff;
    padding: 15px; border-radius: 999px;
    box-shadow: 0 12px 30px rgba(37,211,102,.5);
    transition: transform .16s ease;
}
.whatsapp-fab:hover { transform: scale(1.06); }
.whatsapp-bubble { color: #fff; font-weight: 700; font-size: .9rem; padding: 0 2px 0 6px; white-space: nowrap; }
@media (max-width: 520px) { .whatsapp-bubble { display: none; } }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #b6bcc6; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; }
.footer-col h3 { color: #fff; font-size: 1.05rem; margin: 0 0 16px; }
.footer-col .footer-logo { height: 84px; width: auto; margin-bottom: 8px; }
.footer-col p { margin: 5px 0; }
.footer-col a { color: #b6bcc6; }
.footer-col a:hover { color: #fff; }
.footer-brand { font-weight: 800; color: #fff; margin: 0 0 4px; }
.footer-address { margin-top: 14px; line-height: 1.5; }
.hours-list--foot li { padding: 10px 0; border-color: rgba(255,255,255,.08); }
.hours-list--foot li span:first-child { color: #fff; }
.hours-list--foot li span:last-child { color: #b6bcc6; }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.social-row a { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; padding: 0; color: #fff; background: rgba(255,255,255,.07); border-radius: 999px; border: 1px solid rgba(255,255,255,.1); transition: background .14s, border-color .14s, color .14s; }
.social-row a svg { display: block; }
.social-row a:hover { color: #fff; }
.social-row a[aria-label="Instagram"]:hover { background: #e1306c; border-color: #e1306c; }
.social-row a[aria-label="Facebook"]:hover { background: #1877f2; border-color: #1877f2; }
.social-row a[aria-label="TikTok"]:hover,
.social-row a[aria-label="YouTube"]:hover { background: var(--accent); border-color: var(--accent); }
.footer-col .btn-primary { color: #fff; }
.footer-col .btn-primary:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 52px; padding-top: 24px; padding-bottom: 26px; font-size: .85rem; color: #828893; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom a { color: #828893; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: #828893; }
.footer-legal a:hover { color: #fff; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ===== Produktkarte als Link ===== */
.product-card { color: inherit; text-decoration: none; }
.product-card .product-more { display: inline-block; margin-top: auto; padding-top: 14px; color: var(--accent-ink); font-weight: 800; font-size: .92rem; }
.product-card:hover .product-more { text-decoration: underline; }

/* ===== Neuigkeiten: Filter & Badges ===== */
.news-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.news-tab { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 20px; font: inherit; font-weight: 700; color: var(--muted); cursor: pointer; transition: all .15s ease; }
.news-tab:hover { border-color: var(--accent); color: var(--accent-ink); }
.news-tab.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.news-badge { display: inline-block; margin-bottom: 10px; padding: 4px 12px; border-radius: 999px; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.news-badge--produkte { background: var(--accent-tint); color: var(--accent-ink); }
.news-badge--allgemeines { background: #eef0f4; color: #57606b; }
.news-empty { color: var(--muted); }

/* ===== Detailseite: links Foto, rechts Text ===== */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.detail-media { position: sticky; top: 24px; }
.detail-text { max-width: none; }
.detail-text > :first-child { margin-top: 0; }
@media (max-width: 820px) {
    .detail-grid { grid-template-columns: 1fr; gap: 28px; }
    .detail-media { position: static; }
}

/* ===== Foto-Galerie / Slider ===== */
.gallery { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); background: #fff; }
.gallery-viewport { overflow: hidden; }
.gallery-track { display: flex; transition: transform .35s ease; }
.gallery-slide { flex: 0 0 100%; margin: 0; }
.gallery-slide img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; border: none; background: rgba(255,255,255,.92); color: var(--ink); font-size: 1.7rem; line-height: 1; cursor: pointer; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; transition: background .15s, color .15s; }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-nav:hover { background: #fff; color: var(--accent-ink); }
.gallery-dots { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; }
.gallery-dot { width: 9px; height: 9px; padding: 0; border-radius: 50%; border: none; background: rgba(255,255,255,.55); cursor: pointer; transition: background .15s; }
.gallery-dot.is-active { background: #fff; }

/* ===== Management (Redaktionsbereich, mobil-first) ===== */
body.management { background: var(--light); }
.mg-top { position: sticky; top: 0; z-index: 30; background: var(--ink); color: #fff; }
.mg-top-inner { max-width: 760px; margin: 0 auto; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mg-brand { color: #fff; font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; }
.mg-top-actions { display: flex; gap: 14px; }
.mg-link { color: #cfd3da; font-size: .9rem; font-weight: 600; }
.mg-link:hover { color: #fff; }
.mg-main { max-width: 760px; margin: 0 auto; padding: 20px 16px 64px; }
.mg-h1 { font-size: 1.6rem; margin: 6px 0 4px; }
.mg-sub { color: var(--muted); margin: 0 0 22px; }
.mg-h2 { font-size: 1.2rem; display: flex; align-items: center; gap: 10px; margin: 0; }
.mg-count { background: var(--accent-tint); color: var(--accent-ink); font-size: .8rem; font-weight: 800; padding: 2px 10px; border-radius: 999px; }
.mg-flash { padding: 13px 16px; border-radius: 12px; font-weight: 600; margin-bottom: 18px; }
.mg-flash--success { background: #e7f6ec; color: #1a7f42; border: 1px solid #b7e4c7; }
.mg-flash--error { background: #fdecea; color: #c0392b; border: 1px solid #f5c6c0; }

.mg-section { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 16px; margin-bottom: 20px; }
.mg-section-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.mg-new { padding: 10px 18px; font-size: .95rem; }
.mg-empty { color: var(--muted); margin: 6px 0; }

.mg-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.mg-item { display: grid; grid-template-columns: 52px 1fr; grid-template-areas: 'img main' 'act act'; gap: 10px 12px; align-items: center; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.mg-item--hidden { opacity: .62; background: var(--light); }
.mg-item-img { grid-area: img; width: 52px; height: 52px; border-radius: 10px; object-fit: cover; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.mg-item-img--none { border: 1px dashed var(--line); }
.mg-item-main { grid-area: main; min-width: 0; }
.mg-item-title { font-weight: 700; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mg-item-meta { font-size: .82rem; color: var(--muted); margin-top: 2px; }
.mg-badge { font-size: .72rem; font-weight: 800; padding: 1px 8px; border-radius: 999px; }
.mg-badge--live { background: #e7f6ec; color: #1a7f42; }
.mg-badge--draft { background: #f0f1f4; color: var(--muted); }
.mg-badge--star { background: var(--accent-tint); color: var(--accent-ink); }
.mg-item-actions { grid-area: act; display: flex; flex-wrap: wrap; gap: 8px; padding-top: 4px; border-top: 1px solid var(--line); margin-top: 2px; }
.mg-act { font-size: .86rem; font-weight: 700; color: var(--ink); background: var(--light); padding: 8px 12px; border-radius: 9px; }
.mg-act:hover { background: #ececf0; }
.mg-act--go { color: #fff; background: var(--accent); }
.mg-act--go:hover { background: var(--accent-ink); }
.mg-act--del { color: #c0392b; }
.mg-act--del:hover { background: #fdecea; }

.mg-back { display: inline-block; color: var(--muted); font-weight: 700; margin-bottom: 8px; }
.mg-form { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 16px; display: flex; flex-direction: column; gap: 16px; }
.mg-field { display: flex; flex-direction: column; gap: 7px; }
.mg-label { font-weight: 700; font-size: .92rem; color: var(--ink); }
.mg-input { width: 100%; font: inherit; font-size: 1.05rem; padding: 13px 14px; border: 1px solid var(--line); border-radius: 11px; background: #fff; color: var(--text); }
.mg-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,90,31,.14); }
.mg-textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.mg-file { font-size: .95rem; }
.mg-thumb { width: 120px; height: 120px; object-fit: cover; border-radius: 12px; border: 1px solid var(--line); }
.mg-img-actions { margin: 4px 0 2px; }
.mg-img-actions .mg-act--del { display: inline-block; }
.mg-hint { font-size: .8rem; color: var(--muted); }
.mg-check { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.mg-check input { width: 22px; height: 22px; accent-color: var(--accent); }
.mg-form-actions { display: flex; gap: 12px; margin-top: 4px; }
.mg-submit { flex: 1; }
.mg-or { display: flex; align-items: center; text-align: center; color: var(--muted); font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.mg-or::before, .mg-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.mg-or span { padding: 0 12px; }
.mg-hours-row { display: flex; gap: 8px; margin-bottom: 8px; }
.mg-hours-row .mg-input { flex: 1; min-width: 0; }
#addHoursRow { margin-top: 2px; border: none; cursor: pointer; }
.mg-hours-view { list-style: none; margin: 0; padding: 0; }
.mg-hours-view li { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.mg-hours-view li:last-child { border-bottom: none; }
.mg-hours-view li span:first-child { font-weight: 700; color: var(--ink); }
.mg-hours-view li span:last-child { color: var(--muted); }
.mg-tax-add { display: flex; gap: 8px; margin-bottom: 14px; }
.mg-tax-add .mg-input { flex: 1; min-width: 0; }
.mg-tax-add .btn { white-space: nowrap; }
.mg-tax-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.mg-tax-list li { display: inline-flex; align-items: center; gap: 6px; background: var(--light); border: 1px solid var(--line); border-radius: 999px; padding: 6px 6px 6px 14px; font-weight: 600; font-size: .92rem; }
.mg-tax-list .mg-act--del { padding: 3px 9px; border-radius: 999px; line-height: 1; }
.mg-tax-del { display: flex; gap: 8px; }
.mg-tax-del .mg-input { flex: 1; min-width: 0; }
.mg-tax-del .btn { white-space: nowrap; }
.mg-tree { list-style: none; margin: 10px 0 16px; padding: 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.mg-tree-item { padding: 9px 14px; border-bottom: 1px solid var(--line); font-weight: 600; color: var(--ink); }
.mg-tree-item:last-child { border-bottom: none; }
.mg-tree-arrow { color: var(--muted); }
.mg-tax-add--stack { flex-wrap: wrap; }
.mg-tax-add--stack .mg-input { flex: 1 1 150px; }
@media (max-width: 560px) { .mg-tax-add, .mg-tax-add--stack, .mg-tax-del { flex-direction: column; } }
.tax-status { min-height: 22px; font-weight: 700; font-size: .9rem; color: #1a7f42; margin-bottom: 6px; }
.tax-status.is-err { color: #c0392b; }
.tax-list, .tax-tree, .tax-children { list-style: none; margin: 0; padding: 0; }
.tax-tree, .tax-list { margin-bottom: 14px; }
.tax-children { padding-left: 22px; }
.tax-row { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 9px 12px; margin: 6px 0; }
.tax-handle { cursor: grab; color: var(--muted); font-size: 1.15rem; touch-action: none; user-select: none; }
.tax-handle:active { cursor: grabbing; }
.tax-name { flex: 1; min-width: 0; font-weight: 600; color: var(--ink); padding: 3px 6px; border-radius: 6px; outline: none; }
.tax-name:focus { background: var(--accent-tint); box-shadow: 0 0 0 2px rgba(255,90,31,.25); }
.tax-del { background: none; border: none; cursor: pointer; font-size: 1rem; padding: 4px 8px; border-radius: 8px; opacity: .7; }
.tax-del:hover { opacity: 1; background: #fdecea; }
.sortable-ghost { opacity: .4; }
.sortable-chosen > .tax-row { border-color: var(--accent); }

@media (min-width: 620px) {
    .mg-item { grid-template-columns: 52px 1fr auto; grid-template-areas: 'img main act'; }
    .mg-item-actions { border-top: none; padding-top: 0; margin-top: 0; }
}

/* ===== Cookie-Consent ===== */
.cc-banner { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 1000; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
.cc-banner[hidden] { display: none; }
.cc-inner { max-width: var(--maxw); margin: 0 auto; padding: 18px 20px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cc-text { flex: 1 1 320px; }
.cc-text strong { display: block; color: var(--ink); font-size: 1.05rem; margin-bottom: 4px; }
.cc-text p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.5; }
.cc-text a { color: var(--accent-ink); text-decoration: underline; }
.cc-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cc-actions .btn { padding: 12px 22px; }
@media (max-width: 560px) { .cc-actions { width: 100%; } .cc-actions .btn { flex: 1; } }

/* Blockierte Embeds (Platzhalter) */
.consent-embed { display: flex; align-items: center; justify-content: center; text-align: center; background: var(--light); border: 1px dashed var(--line); color: var(--text); padding: 20px; }
.location-map .consent-embed { min-height: 380px; height: 100%; }
.video-card .consent-embed { aspect-ratio: 9/16; border: none; background: #1a1d23; color: #fff; }
.consent-embed__inner { max-width: 300px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.consent-embed__txt { margin: 0; font-size: .92rem; line-height: 1.45; }
.video-card .consent-embed__txt { color: #cfd3da; }
.consent-embed__remember { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; color: var(--muted); }
.video-card .consent-embed__remember { color: #aeb4be; }
.consent-embed__remember input { width: 16px; height: 16px; accent-color: var(--accent); }
