/* Hero-Style für Angebote */
.mega-menu {
    position: absolute; top: 80px; left: 50%; transform: translateX(-50%) translateY(10px);
    width: 900px; background: white; box-shadow: var(--shadow);
    border-radius: 0 0 20px 20px; padding: 40px; opacity: 0; visibility: hidden;
    transition: var(--transition); display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 40px;
}
.has-mega:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-column h3 { font-size: 0.9rem; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; border-bottom: 1px solid #f1f5f9; padding-bottom: 10px; }
.mega-column a { display: block; padding: 10px 0; font-weight: 400; text-decoration: none; color: var(--text-dark); border-bottom: 1px solid #f8fafc; }

.mobile-toggle { display: none; font-size: 2rem; color: var(--brand-blue); cursor: pointer; z-index: 2100; }


/* --- QUICK FACTS --- */
.quick-facts {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px;
    margin-top: -80px; position: relative; z-index: 100;
}
.fact-item {
    background: white; padding: 30px 20px; border-radius: 25px;
    box-shadow: var(--shadow-sm); text-align: center; transition: var(--transition-standard);
    border: 1px solid var(--brand-orange);
}
.fact-item:hover { transform: translateY(-10px); }
.fact-item i {font-size: 2.2rem;margin-bottom: 15px;display: block;}
.fact-item span { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; font-weight: 700; }
.fact-item strong { display: block; font-size: clamp(1.15rem, 3vw, 1.4rem); color: var(--text-dark); }


/* --- HORIZONTAL SHOPPING SLIDER --- */

.shopping-card-mw {
    /* ... bestehende Styles ... */
    max-width: 520px; /* Mein Favorit für dein Layout */
    margin-left: auto;
    margin-right: auto;
    width: 100%; /* Wichtig, damit sie auf kleinen Schirmen schrumpfen kann */
}

.related-offers {
    padding: 60px 25px;
    overflow: hidden; 
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
}

.h2-style {
    font-family: 'Playfair Display', serif; 
    color: var(--brand-blue);
    font-size: clamp(1.8rem, 5vw, 2.4rem);
}

.shopping-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    padding-bottom: 25px;
}

.shopping-slider::-webkit-scrollbar { display: none; }

.shopping-card {
    flex: 0 0 290px; 
    scroll-snap-align: start;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: var(--transition-standard);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.shopping-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-sm);
}

.card-thumb {
    height: 190px;
    overflow: hidden;
    position: relative;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.shopping-card:hover .card-thumb img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--brand-orange-warm);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
}

.card-info {
    padding: 25px;
}

.card-info h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.days {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.price-from {
    font-size: 1.15rem;
    color: var(--brand-blue);
}

.price-from strong {
    font-size: 1.45rem;
}

.full-card-link {
    text-indent: -9999px;
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 5;
}

.slider-controls .control-btn {
    background: var(--brand-blue);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 12px;
    transition: 0.3s;
}

.slider-controls .control-btn:hover { background: var(--brand-orange); }

@media (max-width: 768px) {
    .shopping-card { flex: 0 0 260px; }
    .desktop-only { display: none; }
}


/* --- SLIDER BUTTONS --- */
.slider-outer-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.control-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid #f1f5f9;
    border-radius: 50%;
    color: var(--brand-blue);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition-standard);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.control-btn:hover {
    background: var(--brand-blue);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.control-btn.prev {
    left: -25px; 
}

.control-btn.next {
    right: -25px;
}

@media (max-width: 1024px) {
    .control-btn {
        display: none;
    }
    
    .slider-outer-wrapper {
        margin: 0 -25px; 
    }
    
    .shopping-slider {
        padding: 0 25px 20px 25px;
    }
}

@media (min-width: 1300px) {
    .related-offers {
        overflow: visible; 
    }
}

.btn-dream { background: var(--brand-orange); color: white; border: none; padding: 14px 35px; border-radius: 50px; font-weight: 800; text-decoration: none; font-size: 1.1rem; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 992px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .quick-facts { grid-template-columns: 1fr 1fr; gap: 20px; margin-top: -40px; }
}
.last-update {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body); 
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: rgba(0,0,0,0.05);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.last-update i {
    color: var(--brand-orange);
    font-size: 1rem;
}
/* --- KNOWLEDGE LINKS SECTION --- */

.knowledge-link-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
    display: grid;
    grid-template-columns: 1fr; /* Mobil einspaltig */
    gap: 12px;
}

@media (min-width: 600px) {
    .knowledge-link-list {
        grid-template-columns: 1fr 1fr; /* Desktop zweispaltig für bessere Platzausnutzung */
    }
}

.knowledge-link-list li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 15px;
    text-decoration: none;
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.knowledge-link-list li a i {
    color: var(--brand-orange);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.knowledge-link-list li a:hover {
    background: white;
    border-color: var(--brand-orange-warm);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.knowledge-link-list li a:hover i {
    transform: scale(1.2);
}

/* Anpassung für das Bild in dieser Sektion */
#travel-knowledge .image-card {
    align-self: start;
}

/* --- STICKY CONVERSION BAR --- */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--brand-blue);
    padding: 12px 0;
    z-index: 1100;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(100%); /* Startzustand: versteckt */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Klasse, die per JS hinzugefügt wird, wenn man scrollt */
.sticky-bar.is-visible {
    transform: translateY(0);
}

.sticky-flex-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Preis-Bereich */
.sticky-price-area {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.sticky-price-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    font-weight: 600;
}

.sticky-price-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-h1);
}

/* Button-Style speziell für die Bar */
.btn-sticky-cta {
    background: var(--brand-orange);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 112, 34, 0.3);
}

.btn-sticky-cta:hover {
    background: var(--brand-orange-warm);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 112, 34, 0.4);
}

.btn-sticky-cta i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-sticky-cta:hover i {
    transform: translateX(3px);
}

/* --- MOBILE OPTIMIERUNG --- */
@media (max-width: 600px) {
    .sticky-bar {
        padding: 10px 0;
    }
    
    .sticky-price-value {
        font-size: 1.15rem;
    }
    
    .btn-sticky-cta {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .btn-sticky-cta span {
        display: inline-block; /* Verhindert hässliche Zeilenumbrüche im Button */
    }
}

/* 
====================================
--- DIFFICULTY METER STYLES --- 
===================================
*/
.difficulty-container {
    display: block;
 }

.difficulty-container:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.difficulty-icons {
    display: flex;
    gap: 4px;
}

.difficulty-icons .icon-landscape {
    font-size: 1.4rem;
    /* Inaktive Berge sind dezent grau */
    color: #cbd5e1; 
    transition: transform 0.3s ease;
}

/* Aktive Berge nutzen dein Brand-Orange */
.difficulty-icons .icon-landscape.active {
    color: var(--brand-orange);
}

/* Kleiner Animationseffekt beim Hover über die Box */
.difficulty-container:hover .icon-landscape.active {
    transform: scale(1.1);
}

.difficulty-label {
    text-decoration: none;
    font-size: 0.85rem;
    color: var(--text-muted); /* */
    display: flex;
    align-items: center;
    gap: 5px;
}

.difficulty-label strong {
    color: var(--brand-blue); /* */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.difficulty-label i {
    font-size: 0.75rem;
    opacity: 0.6;
}

.difficulty-label:hover strong {
    color: var(--brand-orange);
    text-decoration: underline;
}
/* 
=========================================
    Touranfrage Responses
=========================================
*/
.login-info-card {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 20px;
}

/* Mobile Anpassung für das Grid */
@media (max-width: 480px) {
    .login-grid {
        grid-template-columns: 1fr;
    }
}

.login-item small {
    display: block;
    color: #94a3b8;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.login-item span {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
    word-break: break-all;
}

/* Hervorhebung des Buchungscodes */
.highlight-code {
    display: inline-block;
    background: #1e293b; /* Dein dunkles Blau */
    color: #ffffff !important;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 1.2rem !important;
    letter-spacing: 1px;
}

.info-note {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 1rem !important;
    font-style: italic;
}
.signature {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #cbd5e1;
    font-size: 0.9rem;
    color: #64748b;
}

.signature strong {
    color: #1e293b;
}
/* Styling für die Download-Buttons im Tourverlauf */
.itinerary-download-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: var(--space-s);
    flex-wrap: wrap;
}

.btn-file-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: white;
    border: 1px solid var(--brand-blue);
    border-radius: 15px;
    color: var(--brand-blue-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-file-download i {
    font-size: 1.1rem;
    color: var(--brand-orange); /* Icons in deinem Brand-Orange gemäß global.min.css */
}

.btn-file-download:hover {
    background-color: var(--bg-light);
    border-color: var(--brand-orange);
    color: var(--brand-orange-warm);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Mobile Optimierung: Buttons untereinander, wenn der Platz nicht reicht */
@media (max-width: 480px) {
    .itinerary-download-group {
        flex-direction: column;
        align-items: center;
    }
    .btn-file-download {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}