        html {
            scroll-behavior: smooth;
        }

        .property-detail-title {
            font-size: 32px; 
            font-weight: 800;
        }

        
        .property-location-line {
            font-size: 16px;
            color: #555;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .scroll-to-map-link {
            display: inline-block;
            margin-top: 5px;
            color: #555;
            cursor: pointer;
            font-weight: 500;
        }

        .scroll-to-map-link:hover {
            text-decoration: underline;
        }

        /* Booking.com Style Gallery */
        .booking-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 250px);
            gap: 8px;
            margin-bottom: 2rem;
            position: relative;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.02);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .gallery-item:first-child {
            grid-column: 1 / 3;
            grid-row: 1 / 3;
        }
        
        .show-all-photos {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: white;
            border: 1px solid #222;
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.2s ease;
            z-index: 10;
        }
        
        .show-all-photos:hover {
            background: #f7f7f7;
        }
        
        .show-all-photos svg {
            width: 16px;
            height: 16px;
            margin-right: 8px;
            vertical-align: middle;
        }
        
        /* Modal Slider */
        .gallery-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            overflow: auto;
        }
        
        .gallery-modal.active {
            display: block;
        }
        
        .modal-header-custom {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.8);
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10001;
        }
        
        .modal-close {
            background: transparent;
            border: none;
            color: white;
            font-size: 32px;
            cursor: pointer;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-counter {
            color: white;
            font-size: 16px;
            font-weight: 500;
        }
        
        .slider-container {
            max-width: 1400px;
            margin: 100px auto 50px;
            padding: 0 100px;
            position: relative;
        }
        
        .slider-image {
            display: none;
            width: 100%;
            max-height: 60vh;
            object-fit: contain;
        }
        
        .slider-image.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: background 0.2s ease;
        }
        
        .slider-nav:hover {
            background: white;
        }
        
        .slider-nav.prev {
            left: 20px;
        }
        
        .slider-nav.next {
            right: 20px;
        }
        
        .slider-nav:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        
        .slider-thumbnails {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 10px;
            padding: 30px 40px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .thumbnail {
            aspect-ratio: 4/3;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            border: 3px solid transparent;
            transition: all 0.2s ease;
        }
        
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .thumbnail:hover {
            opacity: 0.8;
        }
        
        .thumbnail.active {
            border-color: white;
        }

/* #### Beginn Calendar Styles #### */
.calendar-day {
  cursor: default;
  transition: all 0.2s ease;
  position: relative;
}

.calendar-day.available {
  cursor: pointer;
}

.calendar-day.available:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}

.calendar-day.past {
  color: #ccc;
  cursor: not-allowed;
}

.calendar-day.selected {
  background-color: #000000ff !important;
  color: white !important;
  font-weight: bold;
}

.calendar-day.in-range {
  background-color: #e3f2fd;
  color: #1976d2;
}

/* Check-in Tag - diagonal links oben gebucht */
.calendar-day.check-in {
  cursor: pointer !important;
  background: linear-gradient(to bottom right,
    #ffffff 0%,
    #ffffff 49%,
    transparent 50%,
    transparent 51%,
    #e0e0e0 52%,
    #e0e0e0 100%);
}

/* Check-out Tag - diagonal rechts unten gebucht */
.calendar-day.check-out {
  cursor: pointer !important;
  background: linear-gradient(to top left,
    #ffffff 0%,
    #ffffff 49%,
    transparent 50%,
    transparent 51%,
    #e0e0e0 52%,
    #e0e0e0 100%);
}

/* Check-in ausgewählt: linke obere Hälfte schwarz, rechte untere grau */
.calendar-day.check-in.selected {
  background: linear-gradient(to bottom right,
    #000000 0%,
    #000000 49%,
    #e0e0e0 50%,
    #e0e0e0 100%) !important;
  color: white !important;
}

/* Check-out ausgewählt: rechte untere Hälfte schwarz, linke obere grau */
.calendar-day.check-out.selected {
  background: linear-gradient(to top left,
    #000000 0%,
    #000000 49%,
    #e0e0e0 50%,
    #e0e0e0 100%) !important;
  color: white !important;
}

/* Voll gebuchter Tag - HÖCHSTE PRIORITÄT */
.calendar-day.fully-booked {
  background-color: #e0e0e0 !important;
  color: #666 !important;
  text-decoration: line-through;
  cursor: not-allowed !important;
  /* Überschreibt check-in/check-out styling für same-day turnovers */
}

.calendar-day.today {
  border: 2px solid #007bff;
  font-weight: bold;
}

/* Hover Effekt nur für verfügbare Tage */
.calendar-day.available:not(.selected):hover {
  background-color: #f0f8ff;
  border-color: #007bff;
}

/* Visual Feedback für Check-in/Check-out */
.calendar-day.selected::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background-color: white;
  border-radius: 50%;
  z-index: 2;
}

/* #### End Calendar Styles #### */

        /* Mobile Bottom CTA */
        .mobile-booking-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #000;
            padding: 14px 20px;
            display: flex;
            justify-content: center;
            z-index: 99999;
            box-shadow: 0 -4px 14px rgba(0,0,0,0.2);
        }

        .mobile-booking-cta .cta-btn {
            background: #ffffff;
            color: #000;
            font-weight: 700;
            font-size: 16px;
            padding: 12px 24px;
            border-radius: 8px;
            border: none;
            width: 100%;
            max-width: 480px;
            transition: 0.25s;
        }

        .mobile-booking-cta .cta-btn:hover {
            background: #f2f2f2;
        }

        .is-invalid {
            border-color: #dc3545 !important;
            background-color: #fff5f5 !important;
        }

        .is-invalid:focus {
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
        }

        .btn-whatsapp {
            background-color: #25D366 !important;
            border-color: #25D366 !important;
            color: white !important;
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 15px;
        }

        .btn-whatsapp:hover {
            background-color: #1ebe5d !important;
            border-color: #1ebe5d !important;
        }

        .wa-icon {
            width: 22px;
            height: 22px;
            fill: white;
        }

        .fewo-map-section {
            padding-top: 40px;
        }

        .map-title {
            font-size: 24px;
            font-weight: 600;
        }

        .map-subtitle {
            font-size: 16px;
            color: #666;
        }

        .map-embed iframe {
            border-radius: 10px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }


        /* Responsive */
        @media (max-width: 992px) {
            .booking-gallery {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 200px);
            }
            
            .gallery-item:first-child {
                grid-column: 1 / 3;
                grid-row: 1 / 2;
            }
            
            .slider-container {
                padding: 0 60px;
            }
            
            .slider-thumbnails {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            }
        }
        
        @media (max-width: 576px) {
            .booking-gallery {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(5, 180px);
            }
            
            .gallery-item:first-child {
                grid-column: 1;
                grid-row: 1;
            }
            
            .show-all-photos {
                bottom: 10px;
                right: 10px;
                padding: 8px 16px;
                font-size: 12px;
            }
            
            .slider-container {
                padding: 0 20px;
                margin-top: 80px;
            }
            
            .slider-nav {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            
            .slider-nav.prev {
                left: 10px;
            }
            
            .slider-nav.next {
                right: 10px;
            }
            
            .slider-thumbnails {
                grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
                padding: 20px;
            }
        }