:root {
            --primary: #ffbb36;
            --primary-dark:#fdb524;
            --primary-light: #fbd27e;
            --warning: #fff9db;
            --warning-text: #856404;
            --danger: #fee2e2;
            --danger-text: #991b1b;
            --text-dark: #1f2937;
            --text-muted: #6b7280;
            --bg-light: #f8f9fa;
            --border: #e5e7eb;
            --white: #ffffff;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.5;
        }

        .relative {
            position: relative;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 ;
                        background: #f8f9fa;
                        position: relative;
        }

        .hidden {
            display: none !important;
        }

        /* Header */
        .main-header {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 80px;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .header-title h1 {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .subtitle {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        .header-actions {
            display: flex;
            gap: 0.5rem;
        }

        .icon-btn {
            padding: 0.6rem;
            border-radius: 99px;
            border: 1px solid var(--border);
            background: var(--white);
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon-btn:hover {
            background: var(--bg-light);
        }

        .icon-btn svg {
            width: 18px;
            height: 18px;
            color: var(--text-dark);
        }

        /* Gallery */
        .gallery-viewport {
            position: relative;
            height: 600px;
            border-radius: 1rem;
            overflow: hidden;
            margin-top: 2rem;
            background: #eee;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 1rem;
            height: 100%;
        }

        .grid-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .grid-side {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .side-item {
            height: calc(50% - 0.5rem);
            position: relative;
            overflow: hidden;
        }

        .side-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-item {
            cursor: pointer;
            position: relative;
        }

        .main-content .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.03);
        }

        .photo-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            color: var(--white);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }

        .photo-overlay .count {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .photo-overlay .action {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            opacity: 0.8;
        }

        .map-container {
            position: absolute;
            inset: 0;
            background: #eee;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .gallery-controls {
            position: absolute;
            top: 1rem;
            right: 1rem;
            display: flex;
            gap: 0.5rem;
            z-index: 10;
        }

        .view-btn {
            padding: 0.6rem;
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            box-shadow: var(--shadow);
            color: var(--text-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .view-btn:hover {
            background: var(--white);
            transform: translateY(-1px);
        }

        .view-btn.active {
            background: var(--primary);
            color: var(--white);
        }

        .view-btn svg {
            width: 20px;
            height: 20px;
        }

        /* Chips */
        .spec-chips {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            overflow-x: auto;
            padding-bottom: 0.5rem;
        }

        .chip {
            padding: 0.75rem 1.25rem;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            white-space: nowrap;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .chip svg {
            width: 16px;
            height: 16px;
            color: var(--primary);
        }

        /* Layout */
        .content-layout {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
            margin-bottom: 5rem;
        }

        .main-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .sidebar {
            width: 380px;
        }

        /* Accordion Style Cards */
        .card-accordion {
            background: var(--white);
            border-radius: 1rem;
            border: 1px solid var(--border);
          
        }

        .card-header {
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background 0.2s;
            border-radius: 0 0 1rem;
        }

        .card-header:hover {
            background: var(--bg-light);
        }

        .card-header h2 {
            font-size: 1.25rem;
            font-weight: 700;
        }

        .card-content {
            padding: 0 2rem 2rem;
        }

        .chevron {
            transition: transform 0.3s;
            color: var(--text-muted);
            width: 20px;
            height: 20px;
        }

        .collapsed .card-content {
            display: none;
        }

        .collapsed .chevron {
            transform: rotate(-90deg);
        }

        .details-text p {
            margin-bottom: 1rem;
            color: var(--text-muted);
            font-size: 0.9375rem;
            line-height: 1.6;
        }

        .details-text.clamped {
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .text-link {
            background: none;
            border: none;
            color: var(--primary);
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.875rem;
            margin-top: 0.5rem;
            transition: color 0.2s;
        }

        .text-link:hover {
            color: var(--primary-dark);
        }

        .text-link svg {
            width: 14px;
            height: 14px;
        }

        /* Amenities */
        .amenities-list {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1rem;
        }

        .amenity-item {
            font-size: 0.875rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-dark);
        }

        .checkmark {
            color: var(--text-dark);
            font-weight: 800;
        }

        /* Sleep Section */
        .sleep-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .sleep-pager {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        .sleep-grid-container {
            overflow: hidden;
        }

        .sleep-grid {
            display: flex;
            gap: 1.5rem;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .sleep-card {
            flex: 0 0 calc(50% - 0.75rem);
        }

        .sleep-card img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            border-radius: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .sleep-card h4 {
            font-size: 0.9375rem;
            font-weight: 700;
        }

        .nav-arrow {
            cursor: pointer;
            padding: 6px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border);
            background: var(--white);
            transition: all 0.2s;
        }

        .nav-arrow:hover:not(.disabled) {
            background: var(--bg-light);
            border-color: var(--primary);
            color: var(--primary);
        }

        .nav-arrow.disabled {
            opacity: 0.2;
            cursor: default;
        }

        .nav-arrow svg {
            width: 16px;
            height: 16px;
        }

        /* Map */
        .map-box {
            height: 400px;
            width: 100%;
            background: #ddd;
            border-radius: 0.5rem;
            overflow: hidden;
        }

        .map-box iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Sidebar Booking Card */
        .booking-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 1.5rem;
            border: 1px solid var(--border);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 100px;
        }

        .booking-card h3 {
            margin-bottom: 1.5rem;
            font-size: 1.25rem;
            font-weight: 700;
        }

        .date-picker-trigger {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            overflow: hidden;
            cursor: pointer;
            margin-bottom: 1rem;
        }

        .trigger-box {
            padding: 1rem;
            transition: background 0.1s;
        }

        .trigger-box:hover {
            background: var(--bg-light);
        }

        .trigger-box label {
            display: block;
            font-size: 0.625rem;
            font-weight: 800;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 0.25rem;
        }

        .trigger-box span {
            font-size: 0.9375rem;
            font-weight: 500;
        }

        /* Calendar Dropdown */
        .datepicker-dropdown {
            position: absolute;
            top: 105%;
            left: 0;
            width: 320px;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
            z-index: 100;
            padding: 1.25rem;
        }

        .dp-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .dp-nav-btn {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-muted);
            font-size: 1.25rem;
            padding: 0 0.5rem;
            border-radius: 50%;
        }

        .dp-nav-btn:hover {
            background: var(--bg-light);
            color: var(--primary);
        }

        .dp-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            text-align: center;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .dp-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            text-align: center;
        }

        .dp-day {
            padding: 0.6rem 0;
            font-size: 0.8125rem;
            cursor: pointer;
            position: relative;
            z-index: 1;
            font-weight: 500;
        }

        .dp-day.disabled {
            color: #d1d5db;
            cursor: not-allowed;
            text-decoration: line-through;
        }

        .dp-day.booked {
            color: #9ca3af;
            background: #f3f4f6;
            cursor: not-allowed;
            position: relative;
        }

        .dp-day.booked::after {
            content: '';
            position: absolute;
            inset: 4px;
            border: 1px dashed #d1d5db;
            border-radius: 50%;
            pointer-events: none;
        }

        .dp-day.other-month {
            opacity: 0.2;
        }

        .dp-day.selected {
            color: white !important;
        }

        .dp-day.selected::after {
            content: '';
            position: absolute;
            inset: 2px;
            background: var(--primary);
            border-radius: 50%;
            z-index: -1;
        }

        .dp-day.in-range {
            background: var(--primary-light);
        }

        .dp-warning {
            background: var(--warning);
            color: var(--warning-text);
            padding: 0.75rem;
            border-radius: 0.5rem;
            font-size: 0.8125rem;
            font-weight: 600;
            text-align: center;
            margin-top: 1rem;
        }

        .dp-error {
            background: var(--danger);
            color: var(--danger-text);
            padding: 0.75rem;
            border-radius: 0.5rem;
            font-size: 0.8125rem;
            font-weight: 600;
            text-align: center;
            margin-top: 1rem;
        }

        .dp-footer {
            border-top: 1px solid var(--border);
            margin-top: 1rem;
            padding-top: 0.75rem;
            text-align: center;
            font-size: 0.875rem;
            font-weight: 600;
        }

        /* Guest Dropdown */
        .guest-container {
            position: relative;
            margin-top: 1rem;
        }

        .guest-trigger {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            cursor: pointer;
            margin-bottom: 1rem;
            font-size: 0.875rem;
            color: var(--text-dark);
            transition: border-color 0.2s;
            background: var(--white);
        }

        .guest-trigger:hover {
            border-color: var(--primary);
        }

        .guest-trigger svg {
            width: 16px;
            height: 16px;
            color: var(--text-muted);
        }

        .guest-dropdown {
            position: absolute;
            top: 105%;
            left: 0;
            right: 0;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            padding: 1.25rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            z-index: 50;
        }

        .guest-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .guest-info .main-label {
            display: block;
            font-weight: 700;
            font-size: 0.875rem;
        }

        .guest-info .sub-label {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .guest-controls {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .cnt-btn {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: var(--white);
            cursor: pointer;
            font-size: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .cnt-btn:hover:not(:disabled) {
            border-color: var(--primary);
            color: var(--primary);
        }

        .cnt-btn:disabled {
            opacity: 0.2;
            cursor: default;
        }

        .cnt-val {
            font-weight: 700;
            min-width: 24px;
            text-align: center;
        }

        .reserve-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            text-decoration: none;
            text-align: center;
            margin-top: 1rem;
            padding: 1.25rem;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 0.75rem;
            font-weight: 800;
            cursor: pointer;
            box-shadow: 0 8px 15px var(--primary-light);
            transition: all 0.2s;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .reserve-btn:hover:not(:disabled) {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

        .reserve-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background: #999999;
        }

        .reserve-btn .loader-icon {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            display: none;
        }

        .reserve-btn .loader-icon.visible {
            display: inline-block;
        }

        .reserve-btn .btn-text.hidden {
            display: none;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        .icon.spin {
            animation: spin 1s linear infinite;
        }

        .price-breakdown {
            border-top: 1px solid var(--border);
            padding-top: 1.5rem;
            margin-top: 1.5rem;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.75rem;
            font-size: 0.8125rem;
            color: var(--text-muted);
        }

        .price-row.discount {
            color: #16a34a;
            font-weight: 600;
        }

        .price-total {
            display: flex;
            justify-content: space-between;
            margin-top: 1.25rem;
            padding-top: 1.25rem;
            border-top: 1px solid var(--border);
            font-size: 1.125rem;
            font-weight: 800;
            color: var(--text-dark);
        }

        /* Lightbox */
        .lightbox {
            position: fixed;
            inset: 0;
            background: var(--white);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .lb-header {
            padding: 1.5rem 3rem;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--white);
        }

        .lb-title h2 {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .lb-specs {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 0.35rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        /* Photo Counter Display */
        .lb-photo-counter {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-top: 0.35rem;
            font-weight: 500;
        }

        .close-btn {
            font-size: 2.5rem;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-muted);
            line-height: 1;
            padding: 0.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn:hover {
            background: var(--bg-light);
            color: var(--text-dark);
        }

        /* ========================================
           PHOTO SLIDER STYLES
           ======================================== */

        /* Photo Slider Container */
        .photo-slider-container {
            position: relative;
            width: 100%;
            height: calc(100vh - 100px); /* Full screen height minus header */
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white);
        }

        /* Photo Slider Wrapper */
        .photo-slider {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #f0f0f0;
            max-height: 90vh; /* Prevent slider from exceeding viewport height */
        }

        /* Individual Photo Slide */
        .photo-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease-in-out;
        }

        /* Active Photo Slide - Visible */
        .photo-slide.active {
            opacity: 1;
            position: relative;
        }

        /* Photo Slide Image */
        .photo-slide img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            width: auto;
            height: auto;
        }

        /* Slider Controls Container - Always Centered */
        .slider-controls {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10;
            pointer-events: none;
        }

        /* Navigation Arrow Buttons */
        .slider-controls .nav-arrow {
            pointer-events: auto;
            width: 50px;
            height: 50px;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            margin: 0 20px;
            flex-shrink: 0;
        }

        /* Navigation Arrow Hover Effect */
        .slider-controls .nav-arrow:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        /* Navigation Arrow Icon */
        .slider-controls .nav-arrow svg {
            width: 24px;
            height: 24px;
            color: var(--white);
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
        }

        /* Disabled Navigation Arrow */
        .slider-controls .nav-arrow.disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .slider-controls .nav-arrow.disabled:hover {
            background: rgba(0, 0, 0, 0.5);
        }

        /* ======================================== */

        /* Enquire Section Classes */
        .enquire-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .date-picker-container {
            position: relative;
        }

        .guest-container {
            margin-top: 1rem;
        }

        .child-input-wrapper {
            margin-top: 1rem;
        }

        .price-breakdown-enquire {
            border: none;
            padding: 0;
            margin-top: 1rem;
        }

        .price-total-section {
            padding-top: 1rem;
            border-top: 1px solid var(--border);
        }

        .reserve-btn-wrapper {
            margin-top: 1rem;
        }

        .notice {
            text-align: center;
            margin-top: 0.5rem;
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .loader-wrap {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1rem;
        }

        .loader-inner {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            font-size: 0.875rem;
        }

        .card-header-no-cursor {
            cursor: default;
        }

        .policy-text {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        .sleep-controls {
            display: flex;
            gap: 8px;
        }

        @media (max-width: 1024px) {
            .content-layout {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
            }

            .gallery-viewport {
                height: 400px;
            }

            .amenities-list {
                grid-template-columns: 1fr 1fr;
            }

            .enquire-grid {
                grid-template-columns: 1fr;
            }
        }