:root { --swiss-red: #e10600; --swiss-blue: #002855; --gray-border: #ccc; }
.booking-container { max-width: 1200px; margin: auto; background: white; padding: 20px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); position: relative; z-index: 10; }
.search-row { display: flex; border: 1px solid var(--gray-border); border-radius: 4px; background: white; }
.input-block { padding: 10px 15px; position: relative; border-right: 1px solid var(--gray-border); display: flex; flex-direction: column; flex: 1; min-height: 65px; cursor: pointer; }
.input-block:last-child { border-right: none; }
.input-block label { font-size: 11px; color: #777; font-weight: bold; text-transform: uppercase; pointer-events: none; padding-bottom: 1.2em; }
.input-block input { border: none; width: 100%; font-size: 16px; font-weight: bold; color: var(--swiss-blue); outline: none; background: transparent; }
.field-icon { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: #aaa; font-size: 18px; pointer-events: none; }
.dropdown-results { position: absolute; top: 100%; left: 0; width: 100%; background: white; z-index: 10000; border: 2px solid var(--swiss-blue); box-shadow: 0 8px 20px rgba(0,0,0,0.2); display: none; max-height: 300px; overflow-y: auto; border-radius: 0 0 4px 4px; }
.dropdown-results div { padding: 12px; border-bottom: 1px solid #eee; cursor: pointer; font-size: 14px; color: #333; }
.dropdown-results div:hover { background: #f0f4f8; }
.mobile-overlay { position: fixed !important; left: 0; width: 100vw; background: white; z-index: 99999; display: none; flex-direction: column; padding: 20px; box-sizing: border-box; overflow-y: auto; }
.mobile-overlay.active { display: flex; }
.calendar-wrapper { position: absolute; top: 250px; left: 50%; transform: translate(-50%, -50%); text-align: center; z-index: 10; }
.pax-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; color: #333; }
.pax-ctrl { display: flex; align-items: center; gap: 15px; }
.pax-ctrl button { width: 40px; height: 40px; border: 2px solid var(--swiss-blue); background: white; color: var(--swiss-blue); border-radius: 50% !important; font-size: 20px; font-weight: bold; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.class-select { width: 100%; padding: 12px; font-size: 16px; border: 1px solid #ddd; border-radius: 6px; font-weight: bold; color: var(--swiss-blue); margin: 10px 0 20px 0; }
.fertig-btn { background: var(--swiss-blue); color: white; padding: 15px; text-align: center; border-radius: 6px; font-weight: bold; cursor: pointer; border: none; font-size: 16px; width: 100%; margin-bottom: 30px; }
.btn-submit-f { background: var(--swiss-red); color: white; border: none; width: 100%; height: 100%; font-weight: bold; cursor: pointer; font-size: 18px; min-height: 60px; }
.trip-selector { display: flex; gap: 10px; margin-bottom: 15px; }
.trip-btn { padding: 10px 20px; cursor: pointer; font-weight: bold; border: 2px solid var(--swiss-red); border-radius: 4px; font-size: 14px; color: var(--swiss-red); background: white; }
.active-solid { background: var(--swiss-red) !important; color: white !important; }
.suggester-label { background: #f8f9fa; color: var(--swiss-red) !important; font-weight: bold; font-size: 11px; padding: 8px 15px; text-transform: uppercase; }
.choice { padding: 12px 15px; cursor: pointer; border-bottom: 1px solid #eee; }
.choice:hover { background: #f0f4f8; }
optgroup { font-style: normal; font-weight: bold; color: var(--swiss-red); background: #f9f9f9; }
option { color: #333; background: white; padding: 5px; }
#flatpickr_inline_container { display: flex; justify-content: center; padding: 10px; }
.selected-values { cursor: pointer; min-height: 38px; display: flex; flex-direction: column; justify-content: center; }
.child-age-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; background: #f8f9fa; border-radius: 8px; margin-bottom: 10px; border: 1px solid #eee; }
.child-age-row span { font-weight: bold; color: #555; font-size: 14px; }
.age-select { appearance: none; -webkit-appearance: none; background-color: white; background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e10600' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; background-size: 14px; border: 2px solid #ddd; border-radius: 6px; padding: 8px 35px 8px 15px; font-size: 15px; font-weight: bold; color: var(--swiss-blue); cursor: pointer; transition: border-color 0.2s; min-width: 80px; }
.age-select:focus { border-color: var(--swiss-red); outline: none; }
.dep-group { border-bottom: 1px solid #eee; margin-bottom: 5px; }
.dep-title { display: flex; justify-content: space-between; align-items: center; padding: 12px 10px; background: #f8f9fa; cursor: pointer; font-weight: 600; font-size: 14px; color: #333; transition: all 0.3s ease; }
.dep-title:hover { background: #f1f1f1; }
.dep-group.active .dep-title { background: #fff; color: var(--swiss-red); }
.dep-title i { transition: transform 0.3s ease; font-size: 12px; color: #666; }
.dep-group.active .dep-title i { transform: rotate(180deg); }
.dep-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; max-height: 0; overflow: hidden; opacity: 0; padding: 0 10px; transition: max-height 0.4s ease-in-out, opacity 0.3s ease, padding 0.4s ease; }
.dep-group.active .dep-grid { max-height: 1200px; opacity: 1; padding: 10px; }
.dep-chip { display: flex; align-items: center; gap: 6px; padding: 8px; border: 1px solid #ddd; border-radius: 8px; cursor: pointer; transition: 0.2s; font-size: 13px; background: white; }
.dep-chip input { cursor: pointer; }
.dep-chip input:checked + span { color: var(--swiss-red); font-weight: bold; }
.dep-chip:has(input:checked) { border-color: var(--swiss-red); background: #fff5f5; }
.overlay-footer { position: sticky; bottom: 0; background: white; padding: 15px; text-align: center; z-index: 100; border-top: 1px solid #eee; }
.uebername-btn { background: #009933; color: white; padding: 15px; text-align: center; border-radius: 6px; font-weight: bold; cursor: pointer; border: none; font-size: 16px; width: 100%; position: sticky; bottom: 20px; display: block; margin: 0 auto; z-index: 10; }
#dep_overlay #dep_list { overflow-y: auto; -webkit-overflow-scrolling: touch; }

.destinations-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 25px; }
.button-link { background: #f1f5f9; color: #334155; padding: 10px 20px; border-radius: 50px; text-decoration: none; font-size: 0.95rem; font-weight: 500; border: 1px solid #e2e8f0; transition: 0.2s; }
.button-link:hover { background: #e2e8f0; color: var(--primary); }
.pagination-container { display: flex; justify-content: center; gap: 20px; margin-top: 40px; align-items: center; }
.section-destinations { margin-bottom: 60px; background: white; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); }
.destinations-title { text-align: center; color: var(--primary); display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 30px; }
.destinations-title i { color: var(--luxury-gold); font-size: 0.9em; }
.button-nav.disabled { opacity: 0.5; cursor: not-allowed; border-color: #ccc; color: #ccc; }

.content { max-width:1200px; margin:0 auto; padding:20px; }
.deals a { text-decoration: none; color: inherit; display: block; padding: 20px; }
.deals img { width: 40px; height: 40px; display: block; margin: 0 auto; }
#preis { font-size:24px; color:#E74C3C; font-weight:bold; margin-top:15px; }
.deal-item-fluege::before { content:"Top Deal"; position:absolute; background:#27ae60; color:#fff; font-size:12px; padding:5px 10px; border-radius:0 0 10px 0; }

.deals { padding:20px; }
.deals h2 { text-align:center; font-size:32px; margin-bottom:10px; color:#003580; font-weight:800; }
.deals p { text-align:center; max-width:1000px; margin:0 auto 40px; color:#666; line-height:1.6; }

.deals-items { display:grid; grid-template-columns:repeat(auto-fill, minmax(280px, 1fr)); gap:30px; }

.deal-item-fluege { background:#fff; border-radius:20px; overflow:hidden; box-shadow:0 10px 30px rgba(0,0,0,0.05); transition:all 0.4s cubic-bezier(0.165,0.84,0.44,1); position:relative; border:1px solid #f0f0f0; }
.deal-item-fluege:hover { transform:translateY(-10px); box-shadow:0 20px 40px rgba(0,0,0,0.12); border-color:#003580; }

.badge-aktuell { position:absolute; top:15px; right:15px; background:#e6f7f1; color:#00a698; font-size:11px; padding:5px 12px; border-radius:50px; font-weight:700; border:1px solid #b3e6d5; z-index:2; }

.flight-link { text-decoration:none; color:inherit; display:block; padding:25px; }
.flight-icon { width:45px; height:auto; margin-bottom:15px; display:block; }
.deal-item-fluege h3 { font-size:19px; color:#003580; margin:0 0 8px 0; font-weight:700; }
.deal-item-fluege p { font-size:14px; color:#777; margin:5px 0; }
.flight-route { font-size:14px; color:#777; margin-bottom:20px; display:block; }

.price-box { background:#f8faff; padding:12px 15px; border-radius:12px; display:flex; flex-direction:row; align-items:center; justify-content:center; gap:8px; }
.price-label { font-size:13px; color:#666; font-weight:500; }
.price-value { font-size:22px; color:#E74C3C; font-weight:900; }
.price-currency { font-size:16px; font-weight:700; color:#E74C3C; }

.pagination-container { text-align:center; margin-top:50px; display:flex; align-items:center; justify-content:center; gap:15px; }
.button-nav { display:inline-flex; align-items:center; gap:8px; padding:10px; background-color:#003580; color:#fff !important; text-decoration:none; border-radius:50px; font-weight:600; transition:0.3s ease; }
.button-nav:hover { background-color:#00265a; transform:scale(1.05); }

.deal-card .flight-included-badge { position:absolute; top:15px; right:15px; background:rgba(0,0,0,0.7) !important; color:#fff !important; padding:5px 12px !important; border-radius:50px !important; font-size:0.75rem !important; font-weight:600 !important; z-index:3; display:flex; align-items:center; gap:5px; }
.deal-card .pauschal-badge, .deal-card .luxury-badge, .deal-card .all-inc-badge { position:absolute !important; top:15px !important; left:15px !important; right:auto !important; padding:6px 12px !important; border-radius:8px !important; font-size:0.75rem !important; z-index:3; text-transform:uppercase; }
.deal-card .pauschal-badge { background:#ff5a5f !important; }
.deal-card .luxury-badge { background:#1e293b !important; color:#fbbf24 !important; border:none !important; }
.deal-card .all-inc-badge { background:#059669 !important; }

.country { margin-bottom:10px; }
.country-title { background:#fff; padding:14px; border-radius:10px; cursor:pointer; display:flex; justify-content:space-between; align-items:center; font-weight:600; margin-top:10px; box-shadow:0 2px 8px rgba(0,0,0,0.05); transition: 0.2s; }
.country.open .country-title i.fa-chevron-down { transform: rotate(180deg); }
.regions { max-height: 0; overflow: hidden; opacity: 0; padding: 0 10px; transition: all 0.4s ease; }
.country.open .regions { max-height: 2000px; opacity: 1; padding: 10px; }
.region-card { display:block; background:#fff; margin:10px 0; padding:14px; border-radius:12px; text-decoration:none; color:#333; border:1px solid #eee; transition:0.2s; }
.region-card:hover { transform:translateY(-3px); box-shadow:0 8px 20px rgba(0,0,0,0.08); border-color:#4a6cf7; }
.left { flex:1; font-weight:600; }
.center { flex:2; display:flex; justify-content:center; align-items:center; gap:12px; flex-wrap:nowrap; font-size:13px; color:#555; }
.center span { display:flex; align-items:center; gap:5px; background:#f7f9ff; padding:4px 10px; border-radius:20px; border:1px solid #e6ecff; white-space:nowrap; }
.center i { color:#4a6cf7; }
.right { flex:1; text-align:right; font-weight:600; color:#4a6cf7; white-space:nowrap; }
.price-tag { font-size:14px; color:#4a6cf7; font-weight:600; }

.loading-overlay { display: flex; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.8); z-index: 9999; justify-content: center; align-items: center; flex-direction: column; transition: opacity 0.4s ease; }
.loader-text { margin-top: 15px; font-weight: bold; color: #007bff; }
.spinner { width: 50px; height: 50px; border: 5px solid #f3f3f3; border-top: 5px solid #007bff; border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.loading-disabled { pointer-events: none; opacity: 0.6; }

@media (min-width: 769px) { .mobile-overlay { top: 50% !important; left: 50% !important; transform: translate(-50%, -50%); width: 100% !important; max-width: 500px !important; height: calc(100vh - 180px) !important; max-height: 80vh; border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); border: 1px solid #ddd; } body.no-scroll::after { content: none !important; display: none !important; } .mobile-overlay { width: 700px !important; max-width: 95vw !important; max-height: 90vh !important; } }
@media (max-width: 768px) { .search-row { flex-direction: column; border: none; } .input-block { border: 1px solid var(--gray-border); margin-bottom: 8px; border-radius: 4px; } .btn-submit-f { border-radius: 4px; }
.mobile-overlay { top: 0 !important; height: 100vh !important; padding-top: 80px; box-sizing: border-box; overflow-y: auto; }
.dep-grid { grid-template-columns: repeat(1, 1fr); }
#dep_overlay { top: 0 !important; height: calc(100vh - 80px) !important; padding-top: 80px; overflow-y: auto; }
#dep_overlay #dep_list { max-height: none !important; -webkit-overflow-scrolling: touch; }
.center { justify-content:flex-start; flex-wrap:wrap; margin:6px 0; }
.right { text-align:left; }
}

:root {
    --primary: #016ad3;
    --luxury-gold: #D4AF37;
    --all-inc-green: #096243;
    --text-dark: #1e293b;
    --text-slate: #41545d;
    --radius: 15px;
    --shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.deals-section { padding: 50px 15px; max-width: 1200px; margin: 0 auto; box-sizing: border-box; }
.section-title { text-align: center; margin-bottom: 35px; color: var(--primary); font-size: 1.8rem; font-weight: 800; }
.section-title-p { text-align: center; color: var(--text-slate); margin: -25px auto 35px; max-width: 800px; }

.deals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: 25px; width: 100%; }
.deal-card { 
    background: white; border-radius: var(--radius); overflow: hidden; 
    box-shadow: var(--shadow); display: flex; flex-direction: column; 
    transition: 0.3s; height: 100%; border: 1px solid rgba(0,0,0,0.03); position: relative; 
}

.deal-image-link { position: relative; display: block; height: 210px; flex-shrink: 0; }
.deal-image-link img { width: 100%; height: 100%; object-fit: cover; }

.pauschal-badge { position: absolute; top: 12px; right: 12px; background: var(--primary); color: white; padding: 5px 12px; border-radius: 5px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; z-index: 2; }
.luxury-badge { position: absolute; top: 12px; left: 12px; background: linear-gradient(135deg, #1a1a1a 0%, #333 100%); color: var(--luxury-gold); padding: 5px 12px; border: 1px solid var(--luxury-gold); border-radius: 4px; font-size: 0.75rem; font-weight: 800; z-index: 2; }
.all-inc-badge { position: absolute; top: 12px; left: 12px; background: var(--all-inc-green); color: white; padding: 5px 12px; border-radius: 5px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; z-index: 2; }

.deal-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.hotel-name { display: block; font-size: 1.1rem; line-height: 1.3; margin-bottom: 8px; word-wrap: break-word; }
.hotel-stars { display: inline-flex; gap: 2px; margin-left: 5px; vertical-align: middle; }
.hotel-stars i { font-size: 0.85rem; }
.hotel-location { color: var(--text-slate); font-size: 0.85rem; margin-bottom: 10px; }
.fa-star { color: #F8B805; }
.fa-calendar-check { color: var(--primary); margin-right: 5px; }
.deal-desc { font-size: 0.88rem; margin: 10px 0; color: #444; font-weight: 500; }

.price-wrap { margin-top: auto; padding-top: 15px; }
.price-tag { font-size: 1.3rem; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; display: block; }
.btn-primary-deal, .btn-primary-deal-l, .btn-primary-deal-a { display: block; text-align: center; background: var(--primary); color: white; padding: 13px; border-radius: 10px; text-decoration: none; font-weight: 700; }
.btn-primary-deal-l { background: #1a1a1a; }
.btn-primary-deal-a { background:var(--all-inc-green); }

@media (max-width:600px) {
.deals h2 { font-size:22px; }
.deals-items { grid-template-columns:1fr; gap:15px; }
.fluege-button { padding:15px; }
#preis { font-size:20px; }
}

@media (max-width: 480px) {
    .deals-grid { grid-template-columns: 100%; }
    .section-title { font-size: 1.5rem; }
}