/* === Optimierungen 2026 | lauft-meine-kleinen-woelfe.de === */

/* ----- Wiederanlauf Overlay-Modal ----- */
@keyframes bannerFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes bannerSlideIn {
    from { transform: translateY(36px) scale(0.97); opacity: 0; }
    to   { transform: translateY(0)    scale(1);    opacity: 1; }
}
@keyframes pawFloat {
    0%,100% { transform: translateY(0) rotate(-8deg); }
    50%      { transform: translateY(-8px) rotate(-4deg); }
}

.banner-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(20,10,0,0.68);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
    box-sizing: border-box;
    animation: bannerFadeIn 0.35s ease 0.7s both;
    transition: opacity 1.2s ease;
}
.banner-overlay-hide {
    opacity: 0 !important;
    pointer-events: none;
}
.banner-overlay-hide .banner-modal {
    transform: translateY(40px) scale(0.93);
    transition: transform 1.1s cubic-bezier(0.4,0,0.2,1), opacity 1.0s ease;
    opacity: 0;
}

.banner-modal {
    background: #fff;
    border-radius: 14px;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 24px 64px rgba(0,0,0,0.38);
    overflow: hidden;
    animation: bannerSlideIn 0.42s cubic-bezier(0.34,1.45,0.64,1) 0.7s both;
    transition: transform 1.1s cubic-bezier(0.4,0,0.2,1), opacity 1.0s ease;
}

/* orangener Header-Bereich */
.banner-modal-header {
    background: linear-gradient(145deg, #f89406 0%, #d97000 100%);
    padding: 38px 36px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* dekoratives Pfoten-Icon im Hintergrund */
.banner-paw-deco {
    position: absolute;
    top: -10px; right: -14px;
    width: 130px;
    opacity: 0.13;
    animation: pawFloat 4s ease-in-out infinite;
    pointer-events: none;
}
.banner-paw-deco img {
    width: 100%;
    filter: brightness(0) invert(1);
}

/* "Neuigkeit"-Tag */
.banner-modal-tag {
    display: inline-block;
    background: rgba(255,255,255,0.22);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.35);
}

.banner-modal-header h2 {
    color: #fff;
    font-size: 1.4em;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    text-shadow: 0 1px 6px rgba(0,0,0,0.18);
}

/* weißer Content-Bereich */
.banner-modal-body {
    padding: 28px 36px 30px;
    text-align: center;
}
.banner-modal-body p {
    color: #555;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 22px;
}

/* CTA-Button */
.btn-banner-cta {
    display: inline-block;
    background: #f89406;
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 30px;
    border-radius: 7px;
    text-decoration: none !important;
    box-shadow: 0 5px 18px rgba(248,148,6,0.38);
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.btn-banner-cta:hover {
    background: #d97000;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(248,148,6,0.45);
    color: #fff !important;
    text-decoration: none !important;
}

/* "Nicht mehr anzeigen"-Link */
.banner-dismiss-hint {
    margin-top: 16px;
}
.banner-dismiss-text {
    background: none;
    border: none;
    color: #aaa;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: color 0.15s;
}
.banner-dismiss-text:hover { color: #666; }

/* Schließen-Button (X) */
.banner-close {
    position: absolute;
    top: 11px; right: 13px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 18px;
    width: 30px; height: 30px;
    line-height: 30px;
    text-align: center;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.15s;
}
.banner-close:hover { background: rgba(255,255,255,0.4); }

/* ----- Trust Badges (im orangen Spacer) ----- */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}
.trust-badge-item {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 6px;
    padding: 7px 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}
.trust-badge-item a {
    color: #fff;
    text-decoration: underline;
}
.trust-badge-item a:hover {
    color: #fff3e0;
}

/* ----- Bewertungs-Block ----- */
.bewertungs-section {
    background: #fdfaf6;
    padding: 48px 0;
    border-top: 2px solid #f0e8d8;
    border-bottom: 2px solid #f0e8d8;
}
.bewertungs-gesamt {
    text-align: center;
    margin-bottom: 30px;
}
.bewertungs-gesamt .sterne-gross {
    font-size: 30px;
    color: #f89406;
    letter-spacing: 3px;
    line-height: 1;
}
.bewertungs-gesamt h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 10px 0 4px;
}
.bewertungs-gesamt a.google-link {
    font-size: 13px;
    color: #4285f4;
}
.bewertungs-zitate {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.zitat-karte {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    padding: 20px 22px;
    flex: 1 1 210px;
    max-width: 260px;
    border-top: 3px solid #f89406;
}
.zitat-karte .zitat-sterne {
    color: #f89406;
    font-size: 14px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.zitat-karte .zitat-text {
    font-size: 14px;
    line-height: 1.65;
    color: #555;
    font-style: italic;
    margin-bottom: 12px;
}
.zitat-karte .zitat-autor {
    font-weight: 700;
    font-size: 13px;
    color: #333;
}

/* ----- Sticky Mobile CTA (unten fixiert) ----- */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 8px 12px;
    background: #ff0000;
    text-align: center;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
}
.sticky-cta-mobile a {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 10px;
    text-decoration: none;
}
.sticky-cta-mobile a:hover {
    color: #ffe0de;
    text-decoration: none;
}

/* ----- Sticky Desktop CTA in Navbar ----- */
/* padding: 10px top/bottom = identisch mit allen anderen Nav-Links → perfekte vertikale Ausrichtung */
.nav-cta-btn {
    background: #ff0000 !important;
    color: #fff !important;
    border-radius: 4px !important;
    padding: 10px 16px !important;
    margin: 0 0 0 10px !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    line-height: 20px !important;
    display: block !important;
}
.nav-cta-btn:hover {
    background: #c0392b !important;
    color: #fff !important;
}

/* ----- WhatsApp Float Button ----- */
.whatsapp-float {
    position: fixed;
    bottom: 74px;
    right: 18px;
    z-index: 9998;
    background: #25d366;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 14px rgba(0,0,0,0.25);
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
}
.whatsapp-float:hover {
    background: #1db954;
    transform: scale(1.07);
    text-decoration: none;
}
.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

/* ----- Termin Buchen-Button ----- */
.termintabelle .btn-termin {
    display: inline-block;
    background: #ff0000;
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 3px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s;
}
.termintabelle .btn-termin:hover {
    background: #c0392b;
    text-decoration: none;
}
.termintabelle th.buchen-col {
    width: 100px;
    text-align: center;
}
.termintabelle td.buchen-col {
    text-align: center;
}

/* ----- Hinweis-Box in Termine-Section ----- */
.termine-wichtiger-hinweis {
    background: #fff8e1;
    border-left: 4px solid #f89406;
    border-radius: 4px;
    padding: 14px 18px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #4a3800;
    line-height: 1.6;
}

/* ----- Spacer Green (orange Section) – mehr visuelle Tiefe ----- */
section.spacer.green {
    position: relative;
}
section.spacer.green::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(255,255,255,0.07) 0%, transparent 60%),
        radial-gradient(ellipse at 85% 50%, rgba(0,0,0,0.10) 0%, transparent 60%);
    pointer-events: none;
}
section.spacer.green blockquote.large {
    font-size: 1.55em;
    font-weight: 600;
    line-height: 1.45;
    text-shadow: 0 1px 4px rgba(0,0,0,0.22);
}
section.spacer.green blockquote.large::before {
    content: '\201C';
    font-size: 3.5em;
    line-height: 0;
    vertical-align: -0.45em;
    margin-right: 0.08em;
    opacity: 0.35;
}

/* ----- Responsive ----- */
@media (max-width: 767px) {
    .sticky-cta-mobile {
        display: block;
    }
    body {
        padding-bottom: 62px;
    }
    .whatsapp-float {
        bottom: 74px;
    }
    .bewertungs-zitate {
        flex-direction: column;
        align-items: center;
    }
    .zitat-karte {
        max-width: 100%;
        flex: none;
        width: 100%;
        box-sizing: border-box;
    }
    /* Preistabellen: Overflow auf Sektionsebene einsperren */
    #preise {
        overflow-x: hidden;
    }
    /* Tour-Länge-Spalte verstecken */
    #preise table.preistabelle th.mobile,
    #preise table.preistabelle td.mobile {
        display: none !important;
    }
    /* 3 Spalten gleichmäßig auf 100% Breite – ID+Typ-Selektor schlägt alle style.css-Regeln */
    #preise table.preistabelle {
        width: 100% !important;
        table-layout: fixed !important;
        font-size: 12px !important;
    }
    #preise table.preistabelle th,
    #preise table.preistabelle td {
        width: auto !important;
        padding: 5px 7px !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
    }
    .nav-cta-btn {
        display: none !important;
    }

    /* Banner: kompaktes Modal auf Tablet */
    .banner-modal-header { padding: 28px 24px 22px; }
    .banner-modal-header h2 { font-size: 1.2em; }
    .banner-modal-body { padding: 20px 24px 24px; }
    .btn-banner-cta { display: block; text-align: center; }
}

/* Banner: Bottom-Sheet auf kleinen Phones */
@keyframes bannerSlideUp {
    from { transform: translateY(100%); opacity: 0.6; }
    to   { transform: translateY(0);    opacity: 1; }
}
@media (max-width: 480px) {
    .banner-overlay {
        align-items: flex-end;
        padding: 0;
        overflow: hidden;
    }
    .banner-modal {
        border-radius: 18px 18px 0 0;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        animation: bannerSlideUp 0.4s cubic-bezier(0.25,1.3,0.5,1) 0.7s both;
    }
    .banner-modal-header {
        padding: 22px 18px 18px;
        box-sizing: border-box;
    }
    .banner-modal-header h2 {
        font-size: 1.05em;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    .banner-paw-deco {
        width: 70px;
        top: -4px; right: -6px;
    }
    .banner-modal-body {
        padding: 18px 18px 22px;
        box-sizing: border-box;
    }
    .banner-modal-body p {
        font-size: 14px;
        word-wrap: break-word;
    }
    .btn-banner-cta {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 12px;
        font-size: 15px;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
    }
}

/* ----- Buchungsanfrage: Split-Screen Layout ----- */
.buchung-split {
    display: flex;
    min-height: calc(100vh - 60px);
    margin-top: 0;
}
.buchung-left {
    width: 42%;
    flex-shrink: 0;
    position: sticky;
    top: 60px;
    height: calc(100vh - 60px);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.buchung-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.08) 0%,
        rgba(0,0,0,0.48) 50%,
        rgba(0,0,0,0.74) 100%
    );
}
.buchung-left-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}
.buchung-info {
    position: absolute;
    bottom: 5%;
    left: 30px;
    right: 30px;
    color: #fff;
}
.buchung-profil-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.buchung-profil-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.85);
    flex-shrink: 0;
}
.buchung-profil-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}
.buchung-profil-role {
    font-size: 13px;
    opacity: 0.75;
    margin-top: 1px;
}
.buchung-sterne {
    color: #f89406;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 2px;
}
.buchung-sterne-text {
    font-size: 13px;
    opacity: 0.82;
    margin-bottom: 8px;
}
.buchung-zitat {
    font-size: 13px;
    line-height: 1.5;
    font-style: italic;
    opacity: 0.92;
    border-left: 3px solid #f89406;
    padding-left: 10px;
    margin: 0 0 8px;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.buchung-versprechen {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.buchung-versprechen li {
    font-size: 13px;
    opacity: 0.88;
    display: flex;
    align-items: center;
    gap: 8px;
}
.buchung-versprechen li::before {
    content: '\2713';
    color: #f89406;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

/* Rechte Seite */
.buchung-right {
    flex: 1;
    background: #fdfaf6;
    padding: 45px 40px 14px;
    overflow-y: auto;
    min-width: 0;
}
.buchung-h1 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 2px;
}
.buchung-subtitle {
    color: #777;
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 8px;
}
.buchung-section {
    margin-bottom: 8px;
}
.buchung-section-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #f89406;
    margin-bottom: 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid #f0e8d8;
}
.buchung-fields-row {
    display: flex;
    gap: 10px;
    margin-bottom: 4px;
}
.buchung-fields-row .form-group {
    flex: 1;
    margin: 0;
    min-width: 0;
}

/* Bootstrap 2 Überschreibung: alle Inputs in der Buchungsseite volle Breite + Margin-Fix */
.buchung-right input.form-control,
.buchung-right input[type="tel"],
.buchung-right input[type="text"],
.buchung-right input[type="email"],
.buchung-right input[type="number"] {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
/* Bootstrap 2 setzt margin-top: 30px auf input/select/textarea → auf 10px reduzieren */
.buchung-right input,
.buchung-right select,
.buchung-right textarea {
    margin-top: 10px !important;
}
/* Tel-Feld: Bootstrap 2 kennt type="tel" nicht → explizit alle Defaults überschreiben */
.buchung-right .form-group input[type="tel"] {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background: #fff !important;
    border: 1.5px solid #e0d8cc !important;
    border-radius: 7px !important;
    height: 36px !important;
    padding: 6px 12px !important;
    font-size: 14px !important;
    color: #333 !important;
    box-shadow: none !important;
    margin: 10px 0 0 0 !important;
    float: none !important;
    line-height: normal !important;
    vertical-align: top !important;
}

/* Tour-Dropdown: versteckt solange kein Event gewählt */
.buchung-tour-group:has(#tour[style*="display: none"]),
.buchung-tour-group:has(#tour:not([style])) {
    display: none;
}

/* Modernere Formular-Inputs auf der Buchungsseite */
.buchung-right .form-control,
.buchung-right input[type="tel"],
.buchung-right select,
.buchung-right textarea.buchunsanfrageForm {
    background: #fff !important;
    border: 1.5px solid #e0d8cc !important;
    border-radius: 7px !important;
    height: 36px !important;
    padding: 6px 12px !important;
    font-size: 14px !important;
    color: #333 !important;
    box-shadow: none !important;
    transition: border-color 0.15s, box-shadow 0.15s;
    width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
}
.buchung-right .form-control:focus,
.buchung-right input[type="tel"]:focus,
.buchung-right select:focus,
.buchung-right textarea.buchunsanfrageForm:focus {
    border-color: #f89406;
    box-shadow: 0 0 0 3px rgba(248,148,6,0.12);
    outline: none;
}
.buchung-right textarea.buchunsanfrageForm {
    height: 62px !important;
    resize: vertical;
}
.buchung-right select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23999' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

/* Datenschutz-Box */
.buchung-datenschutz-box {
    background: #f7f4ef;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}
.buchung-datenschutz-box input[type="checkbox"] {
    margin-right: 10px;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    accent-color: #f89406;
    cursor: pointer;
}
.buchung-datenschutz-box a { color: #f89406; }

/* Submit-Zeile */
.buchung-submit-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 2px;
}
.btn-buchung-submit {
    background: #ff0000;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 11px 34px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, transform 0.12s;
    letter-spacing: 0.3px;
}
.btn-buchung-submit:hover {
    background: #c0392b;
    transform: translateY(-1px);
}
.buchung-wa-link {
    font-size: 14px;
    color: #25d366;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.buchung-wa-link:hover { color: #1db954; text-decoration: none; }

/* Erfolgs-/Fehlermeldungen */
#sendmessage {
    background: #eafaf1;
    border: 1.5px solid #27ae60;
    border-radius: 8px;
    padding: 18px 22px;
    color: #1a6636;
    margin-top: 16px;
    display: none !important;
}
#sendmessage.show { display: block !important; }
#errormessage {
    background: #fdecea;
    border: 1.5px solid #e74c3c;
    border-radius: 8px;
    padding: 12px 16px;
    color: #a93226;
    font-size: 14px;
    margin-top: 12px;
    display: none !important;
}
#errormessage.show { display: block !important; }

/* Buchungsseite Desktop: kein Seiten-Scrolling, Footer immer sichtbar */
@media (min-width: 901px) {
    html:has(body.buchung-page) {
        overflow: hidden;
    }
    body.buchung-page {
        height: 100vh;
        box-sizing: border-box;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    body.buchung-page .buchung-split {
        flex: 1;
        min-height: 0 !important;
    }
    body.buchung-page footer {
        flex-shrink: 0;
    }
    body.buchung-page .buchung-left {
        position: relative;
        top: 0;
        height: 100%;
    }
}

/* Buchungsseite Responsive */
@media (max-width: 900px) {
    .buchung-split {
        flex-direction: column;
        min-height: auto;
    }
    .buchung-left {
        width: 100%;
        position: relative;
        top: 0;
        height: 300px;
    }
    .buchung-info {
        bottom: 14%;
        left: 18px;
        right: 18px;
    }
    .buchung-profil-img { width: 44px; height: 44px; }
    .buchung-profil-name { font-size: 13px; }
    .buchung-profil-role { font-size: 11px; }
    .buchung-sterne { font-size: 15px; }
    .buchung-sterne-text { font-size: 11px; margin-bottom: 8px; }
    .buchung-zitat { font-size: 12px; margin-bottom: 10px; }
    .buchung-versprechen li { font-size: 11px; }
    .buchung-right {
        padding: 24px 20px 48px;
    }
    .buchung-h1 { font-size: 20px; }
    .buchung-submit-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .btn-buchung-submit {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 600px) {
    .buchung-fields-row {
        flex-direction: column;
        gap: 8px;
    }
}

/* ----- HuskyHIKING: Quick-Facts-Strip ----- */
.hiking-facts {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0 24px;
}
.hiking-fact-item {
    flex: 1 1 110px;
    background: #fff8f0;
    border-radius: 8px;
    padding: 16px 12px;
    text-align: center;
    border-top: 3px solid #f89406;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.hf-icon { font-size: 22px; margin-bottom: 6px; line-height: 1; }
.hf-value { font-size: 15px; font-weight: 700; color: #1a1a1a; line-height: 1.2; }
.hf-label { font-size: 11px; color: #999; margin-top: 3px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ----- HuskyHIKING: Terrain-Tags & Tipp ----- */
.hiking-terrain-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 14px;
}
.hiking-terrain-tag {
    background: #f0e8d8;
    color: #555;
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}
.hiking-tipp {
    background: #fff8e1;
    border-left: 4px solid #f89406;
    border-radius: 0 6px 6px 0;
    padding: 11px 16px;
    margin: 0 0 16px;
    font-size: 14px;
    color: #4a3800;
    line-height: 1.55;
}

/* ----- HuskyHIKING: Tagesablauf Timeline ----- */
.hiking-timeline-section { background: #fdfaf6; }
.hiking-timeline {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 24px 0 8px;
}
.hiking-timeline::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 21px;
    bottom: 22px;
    width: 2px;
    background: #f0e8d8;
    z-index: 0;
}
.hiking-timeline-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 26px;
    position: relative;
}
.hiking-timeline-step.last { padding-bottom: 0; }
.ht-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f89406;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(248,148,6,0.22);
}
.ht-body { flex: 1; padding-top: 8px; }
.ht-time {
    font-size: 12px;
    color: #f89406;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}
.ht-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    line-height: 1.3;
}
.ht-text {
    font-size: 13px;
    color: #666;
    line-height: 1.55;
    margin: 0;
}

/* Desktop: horizontal */
@media (min-width: 768px) {
    .hiking-timeline {
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }
    .hiking-timeline::before {
        top: 21px;
        left: 22px;
        right: 22px;
        bottom: auto;
        width: auto;
        height: 2px;
    }
    .hiking-timeline-step {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 0;
        gap: 0;
        padding: 0 6px;
    }
    .ht-number { margin-bottom: 12px; }
    .ht-body { padding-top: 0; }
}

/* ----- HuskyHIKING: Für wen geeignet ----- */
.hiking-suitable {
    background: #fff;
    border-radius: 8px;
    padding: 22px 26px;
    margin: 28px 0 24px;
    border-left: 4px solid #f89406;
}
.hiking-suitable h4 { margin: 0 0 16px; }
.hiking-suitable-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}
.hiking-suitable-item {
    font-size: 15px;
    color: #333;
    flex: 1 1 45%;
    line-height: 1.5;
}
.hs-check {
    color: #f89406;
    font-weight: 700;
    margin-right: 6px;
}

/* ----- Termine: Accordion auf Mobile ----- */

/* Desktop: Karten versteckt, Tabelle sichtbar */
.termin-karten-mobile { display: none; }

/* Mobile: Karten sichtbar, Tabelle versteckt */
@media (max-width: 767px) {
    .termin-karten-mobile  { display: block; }
    .termin-tabelle-desktop { display: none; }
}

/* Accordion-Karte */
.termin-karte {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0,0,0,0.06);
}

/* Header: immer sichtbar, klickbar */
.termin-karte-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.termin-karte-header:active {
    background: #fafafa;
}
.termin-karte-datum {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}
.termin-karte-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.termin-karte-toggle {
    color: #aaa;
    font-size: 13px;
    display: inline-block;
    transition: transform 0.22s ease;
}
.termin-karte.open .termin-karte-toggle {
    transform: rotate(180deg);
}

/* Body: zugeklappt by default */
.termin-karte-body {
    display: none;
    padding: 4px 16px 16px;
    border-top: 1px solid #f0f0f0;
}
.termin-karte.open .termin-karte-body {
    display: block;
}

/* Detail-Zeilen im Body */
.termin-karte-detail {
    display: flex;
    align-items: center;
    padding: 5px 0;
    font-size: 14px;
    color: #333;
}
.termin-karte-detail span {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    min-width: 62px;
    flex-shrink: 0;
}

/* Buchen-Button: volle Breite */
.btn-termin-karte {
    display: block;
    width: 100%;
    text-align: center;
    background: #ff0000;
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 16px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 12px;
    box-sizing: border-box;
    transition: background 0.15s;
}
.btn-termin-karte:hover {
    background: #c0392b;
    text-decoration: none;
    color: #fff !important;
}

/* ----- HuskyHIKING: Farb-Fixes (verhindert orangene Texte) ----- */
section.huskytrekking p { color: #333 !important; }
.hf-value { color: #1a1a1a !important; }
.hf-label { color: #888 !important; }

/* Quick-Facts-Row: Bootstrap-2-Spans brauchen keine flex-Wrapper-Klasse mehr */
.hiking-facts-row { margin-bottom: 24px; }
.hiking-facts-row .hiking-fact-item { margin-top: 0; width: 100%; box-sizing: border-box; }
.hiking-facts-flex {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
    margin-bottom: 24px;
}
.hiking-facts-flex .hiking-fact-item {
    flex: 1 1 0;
    min-width: 0;
    box-sizing: border-box;
    margin-top: 0;
}
@media (max-width: 600px) {
    .hiking-facts-flex { flex-wrap: wrap; }
    .hiking-facts-flex .hiking-fact-item { flex: 1 1 120px; }
}

/* ----- HuskyHIKING: Moderner Text-Bild-Bereich ----- */
.hiking-intro-lead {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.65;
    color: #1a1a1a !important;
    margin-bottom: 14px;
}
.hiking-mini-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}
.hiking-mini-chips span {
    background: #fff8f0;
    border: 1px solid #f0e0c8;
    color: #775500;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 20px;
    white-space: nowrap;
}
.hiking-hero-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    display: block;
    margin-top: 6px;
}

/* ----- HuskyHIKING: Preise & Leistungen Redesign ----- */
.preise-redesign {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin: 20px 0 8px;
    flex-wrap: wrap;
}
.preis-karte-box {
    flex: 0 0 190px;
    background: linear-gradient(145deg, #f89406 0%, #d97000 100%);
    border-radius: 12px;
    padding: 26px 20px 22px;
    text-align: center;
    color: #fff;
    box-shadow: 0 6px 24px rgba(248,148,6,0.28);
}
.preis-karte-main {
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
    color: #fff;
}
.preis-karte-unit {
    font-size: 13px;
    opacity: 0.88;
    margin-bottom: 14px;
    line-height: 1.5;
    color: #fff;
}
.preis-karte-kinder {
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 7px 10px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #fff;
}
.preis-karte-btn {
    display: block;
    background: rgba(255,255,255,0.22);
    border: 1.5px solid rgba(255,255,255,0.65);
    color: #fff !important;
    font-weight: 700;
    font-size: 13px;
    padding: 9px 16px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: background 0.15s;
}
.preis-karte-btn:hover {
    background: rgba(255,255,255,0.38);
    text-decoration: none !important;
    color: #fff !important;
}
.preis-leistungen-box {
    flex: 1;
    min-width: 220px;
}
.preis-section-heading {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}
.preis-inklusive-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #999;
    margin: 0 0 14px;
}
.preis-inklusive-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
.preis-inklusive-list li {
    flex: 1 1 50%;
    font-size: 14px;
    color: #333 !important;
    padding: 7px 12px 7px 0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    box-sizing: border-box;
    border-bottom: 1px solid #f0ede8;
    line-height: 1.4;
}
.preis-inklusive-list li::before {
    content: '✓';
    color: #f89406;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 14px;
    line-height: 1.4;
}
@media (max-width: 767px) {
    .preise-redesign { flex-direction: column; }
    .preis-karte-box { flex: none; width: 100%; box-sizing: border-box; }
    .preis-inklusive-list li { flex: 1 1 100%; }
}

/* ----- Begleitperson-Hinweis in Preisliste ----- */
.begleitung-hinweis {
    background: #fdf9f1;
    border-left: 4px solid #f89406;
    border-radius: 0 6px 6px 0;
    padding: 12px 16px;
    margin-top: 14px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
.preis-karte-begleitung {
    background: rgba(0,0,0,0.12);
    border-radius: 6px;
    padding: 7px 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-top: 0;
    margin-bottom: 18px;
}

/* ----- Geo-Landing-Pages Intro ----- */
.geo-intro-section {
    background: #fdf9f4;
    border-bottom: 1px solid #f0ebe0;
    padding-top: 36px;
    padding-bottom: 28px;
}
.geo-intro-headline {
    font-size: 1.7em;
    font-weight: 700;
    color: #2a1a00;
    margin: 0 0 14px;
    line-height: 1.25;
}
.geo-intro-text {
    font-size: 1.05em;
    color: #444;
    line-height: 1.65;
    margin-bottom: 18px;
}
.geo-intro-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.geo-intro-chips span {
    display: inline-block;
    background: #fff;
    border: 1px solid #e8d8b8;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.88em;
    color: #7a5a1a;
    font-weight: 500;
}
@media (max-width: 767px) {
    .geo-intro-headline { font-size: 1.3em; }
    .geo-intro-text { font-size: 0.97em; }
}

