        /*! Voyage Booking Design System */
        :root {
            --airbnb-primary: 0 71% 51%;           /* #FF385C */
            --airbnb-primary-dark: 0 71% 45%;
            --airbnb-secondary: 339 100% 50%;
            --airbnb-background: 0 0% 100%;
            --airbnb-background-secondary: 0 0% 98%;
            --airbnb-text: 220 13% 18%;
            --airbnb-text-light: 215 16% 47%;
            --airbnb-border: 210 40% 93%;
            --airbnb-border-light: 210 40% 96%;
            --airbnb-success: 143 85% 96%;
            --airbnb-warning: 49 100% 97%;
            --radius: 12px;
            --shadow-airbnb: 0 6px 16px rgba(0,0,0,0.12);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.5;
            color: hsl(var(--airbnb-text));
            background-color: hsl(var(--airbnb-background));
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: white;
            border-bottom: 1px solid hsl(var(--airbnb-border));
            height: 80px;
            display: flex;
            align-items: center;
        }

        .header-content {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1rem;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        @media (min-width: 640px) {
            .header-content {
                padding: 0 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .header-content {
                padding: 0 2rem;
            }
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: hsl(var(--airbnb-text));
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: hsl(var(--airbnb-primary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.125rem;
        }

        /* Main Layout - Voyage Layout Structure */
        .main-container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1rem;
            padding-top: 96px;
            padding-bottom: 4rem;
        }

        @media (min-width: 640px) {
            .main-container {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .main-container {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }

        /* Full-Width Image Gallery */
        .image-gallery {
            margin-bottom: 3rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            height: 400px;
            border-radius: var(--radius);
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .gallery-grid {
                height: 500px;
            }
        }

        .gallery-main {
            grid-column: span 4;
            position: relative;
            cursor: pointer;
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .gallery-main {
                grid-column: span 2;
                grid-row: span 2;
            }
        }

        .gallery-secondary {
            display: none;
        }

        @media (min-width: 768px) {
            .gallery-secondary {
                display: grid;
                grid-column: span 2;
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
        }

        .gallery-image {
            width: 100%;
            height: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
            display: block;
        }

        .gallery-image:hover {
            transform: scale(1.02);
        }

        .gallery-placeholder {
            width: 100%;
            aspect-ratio: 4 / 3;
            background: hsl(var(--airbnb-background-secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: hsl(var(--airbnb-text-light));
            font-size: 2rem;
        }

        /* Content Grid */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        @media (min-width: 1024px) {
            .content-grid {
                grid-template-columns: 2fr 1fr;
                gap: 4rem;
            }
        }

        /* Shoot Header */
        .shoot-header {
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid hsl(var(--airbnb-border-light));
        }

        .shoot-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: hsl(var(--airbnb-text));
            line-height: 1.2;
        }

        @media (min-width: 768px) {
            .shoot-title {
                font-size: 2.5rem;
            }
        }

        .shoot-meta {
            color: hsl(var(--airbnb-text-light));
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Section Styling */
        .section {
            padding: 2rem 0;
            border-bottom: 1px solid hsl(var(--airbnb-border-light));
        }

        .section:last-child {
            border-bottom: none;
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: hsl(var(--airbnb-text));
        }

        .description {
            color: hsl(var(--airbnb-text));
            line-height: 1.6;
        }

        /* Booking Sidebar - Voyage Widget */
        .booking-sidebar {
            position: relative;
        }

        @media (min-width: 1024px) {
            .booking-sidebar {
                position: sticky;
                top: 96px;
                height: fit-content;
            }
        }

        .airbnb-card {
            background: white;
            border: 1px solid hsl(var(--airbnb-border));
            border-radius: var(--radius);
            box-shadow: var(--shadow-airbnb);
            padding: 1.5rem;
            max-width: 100%;
        }

        @media (min-width: 1024px) {
            .airbnb-card {
                max-width: 384px;
            }
        }

        /* Price Display */
        .price-display {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }

        .price-section {
            display: flex;
            align-items: baseline;
            gap: 0.25rem;
        }

        .price-amount {
            font-size: 1.5rem;
            font-weight: 600;
            color: hsl(var(--airbnb-text));
        }

        .price-period {
            color: hsl(var(--airbnb-text-light));
            font-size: 1rem;
        }

        .rating-section {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .star-icon {
            width: 14px;
            height: 14px;
            fill: hsl(var(--airbnb-primary));
        }

        .rating-text {
            font-size: 0.875rem;
            font-weight: 600;
            color: hsl(var(--airbnb-text));
        }

        /* Duration/Group Info */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: hsl(var(--airbnb-background-secondary));
            border-radius: 8px;
        }

        .info-item {
            text-align: center;
        }

        .info-label {
            font-size: 0.75rem;
            color: hsl(var(--airbnb-text-light));
            margin-bottom: 0.25rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .info-value {
            font-size: 0.875rem;
            font-weight: 600;
            color: hsl(var(--airbnb-text));
        }

        /* Date Selection */
        .date-selection {
            margin-bottom: 1rem;
        }

        .field-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: hsl(var(--airbnb-text));
            margin-bottom: 0.5rem;
        }

        .date-button {
            width: 100%;
            padding: 0.75rem;
            text-align: left;
            border: 1px solid hsl(var(--airbnb-border));
            border-radius: 8px;
            background: white;
            cursor: pointer;
            transition: border-color 0.2s ease;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .date-button:hover {
            border-color: hsl(var(--airbnb-text));
        }

        .date-button:focus {
            outline: none;
            border-color: hsl(var(--airbnb-primary));
        }

        .calendar-icon {
            width: 16px;
            height: 16px;
            color: hsl(var(--airbnb-text-light));
        }

        /* Reserve Button */
        .reserve-button {
            width: 100%;
            background: hsl(var(--airbnb-text));
            color: white;
            border: none;
            border-radius: 8px;
            padding: 1rem;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: opacity 0.2s ease;
            margin-bottom: 1rem;
        }

        .reserve-button:hover {
            opacity: 0.9;
        }

        .reserve-button:disabled {
            background: hsl(var(--airbnb-background-secondary));
            color: hsl(var(--airbnb-text-light));
            cursor: not-allowed;
            opacity: 1;
        }

        .booking-notice {
            text-align: center;
            color: hsl(var(--airbnb-text-light));
            font-size: 0.875rem;
        }

        /* Modal System */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 1rem;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: var(--radius);
            max-width: 90vw;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
        }

        .modal-header {
            padding: 1.5rem;
            border-bottom: 1px solid hsl(var(--airbnb-border));
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .modal-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: hsl(var(--airbnb-text));
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: hsl(var(--airbnb-text-light));
            padding: 0.5rem;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            background: hsl(var(--airbnb-background-secondary));
        }

        .modal-body {
            padding: 2rem;
            min-height: 400px;
        }

        /* Calendar Component */
        .calendar {
            max-width: 400px;
            margin: 0 auto;
        }

        .calendar-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .calendar-nav {
            background: none;
            border: none;
            font-size: 1.25rem;
            cursor: pointer;
            color: hsl(var(--airbnb-text));
            padding: 0.5rem;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .calendar-nav:hover {
            background: hsl(var(--airbnb-background-secondary));
        }

        .calendar-month {
            font-size: 1.125rem;
            font-weight: 600;
            color: hsl(var(--airbnb-text));
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 1px;
        }

        .calendar-day-header {
            padding: 0.5rem;
            text-align: center;
            font-size: 0.75rem;
            font-weight: 600;
            color: hsl(var(--airbnb-text-light));
            text-transform: uppercase;
        }

        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 8px;
            transition: all 0.2s ease;
            font-size: 0.875rem;
        }

        .calendar-day:hover {
            background: hsl(var(--airbnb-background-secondary));
        }

        .calendar-day.available {
            background: hsl(var(--airbnb-success));
            color: hsl(var(--airbnb-text));
            font-weight: 600;
        }

        .calendar-day.available:hover {
            background: hsl(var(--airbnb-primary));
            color: white;
        }

        .calendar-day.selected {
            background: hsl(var(--airbnb-primary));
            color: white;
            font-weight: 600;
        }

        .calendar-day.disabled {
            color: hsl(var(--airbnb-text-light));
            cursor: not-allowed;
        }

        /* Time Slots Grid */
        .time-slots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .time-slot {
            padding: 0.75rem;
            border: 1px solid hsl(var(--airbnb-border));
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
            background: white;
        }

        .time-slot:hover {
            border-color: hsl(var(--airbnb-text));
        }

        .time-slot.selected {
            border-color: hsl(var(--airbnb-primary));
            background: hsl(var(--airbnb-primary));
            color: white;
        }

        .time-slot:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            color: hsl(var(--airbnb-text-light));
        }

        /* Sticky Bottom Notification */
        .sticky-notification {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: white;
            border: 1px solid hsl(var(--airbnb-border));
            border-radius: 12px;
            padding: 1rem;
            display: none;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            max-width: 320px;
        }

        .sticky-notification.active {
            display: block;
        }

        .notification-content {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .notification-info {
            flex: 1;
        }

        .notification-title {
            font-weight: 600;
            font-size: 0.875rem;
            color: hsl(var(--airbnb-text));
            margin-bottom: 0.25rem;
        }

        .notification-subtitle {
            font-size: 0.75rem;
            color: hsl(var(--airbnb-text-light));
        }

        .notification-timer-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .notification-timer {
            background: hsl(var(--airbnb-background-secondary));
            padding: 0.25rem 0.75rem;
            border-radius: 6px;
            font-family: monospace;
            font-size: 0.875rem;
            font-weight: 600;
            color: hsl(var(--airbnb-text));
        }

        .notification-book-btn {
            background: hsl(var(--airbnb-text));
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 500;
            cursor: pointer;
            transition: opacity 0.2s ease;
        }

        .notification-book-btn:hover {
            opacity: 0.9;
        }

        /* Lightbox Gallery */
        .lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: 2rem;
        }

        .lightbox-overlay.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 8px;
        }

        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 0.5rem;
            opacity: 0.8;
            transition: opacity 0.2s;
        }

        .lightbox-close:hover {
            opacity: 1;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 1rem;
            border-radius: 4px;
            opacity: 0.8;
            transition: all 0.2s;
        }

        .lightbox-nav:hover {
            opacity: 1;
            background: rgba(255, 255, 255, 0.3);
        }

        .lightbox-prev {
            left: 2rem;
        }

        .lightbox-next {
            right: 2rem;
        }

        .gallery-hint {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.75rem;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
            z-index: 10;
        }

        .gallery-container:hover .gallery-hint {
            opacity: 1;
        }

        /* Shoots Grid for Availability Page */
        .shoots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .shoot-card {
            background: white;
            border: 1px solid hsl(var(--airbnb-border));
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.2s;
            cursor: pointer;
            text-decoration: none;
            display: block;
        }

        .shoot-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-airbnb);
        }

        .shoot-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        .shoot-content {
            padding: 1.5rem;
        }

        .shoot-name {
            font-size: 1.25rem;
            font-weight: 600;
            color: hsl(var(--airbnb-text));
            margin-bottom: 0.5rem;
        }

        .shoot-description {
            color: hsl(var(--airbnb-text-light));
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .shoot-details {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.875rem;
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            color: hsl(var(--airbnb-text-light));
        }

        .shoot-availability {
            padding: 0.5rem;
            background: hsl(var(--airbnb-background-secondary));
            border-radius: 6px;
            font-size: 0.875rem;
            color: hsl(var(--airbnb-text-light));
        }

        .instant-badge {
            background: hsl(143 85% 40%);
            color: white;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            display: inline-block;
            margin-right: 0.5rem;
        }

        .book-button {
            display: block;
            width: 100%;
            padding: 0.75rem;
            background: hsl(var(--airbnb-text));
            color: white;
            text-align: center;
            text-decoration: none;
            border: none;
            border-radius: 6px;
            font-weight: 500;
            font-size: 1rem;
            cursor: pointer;
            transition: opacity 0.2s;
            margin-top: 1rem;
        }

        .book-button:hover {
            opacity: 0.9;
        }

        .page-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: hsl(var(--airbnb-text));
            margin-bottom: 0.5rem;
        }

        .page-subtitle {
            font-size: 1.125rem;
            color: hsl(var(--airbnb-text-light));
        }

        .shoots-section {
            margin-bottom: 4rem;
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid hsl(var(--airbnb-border));
        }

        .badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: hsl(var(--airbnb-primary));
            color: white;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .empty-state {
            text-align: center;
            padding: 3rem;
            color: hsl(var(--airbnb-text-light));
        }

        .empty-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .gallery-image {
            cursor: pointer;
            transition: transform 0.2s;
        }

        .gallery-image:hover {
            transform: scale(1.02);
        }

        /* Utilities */
        .hidden {
            display: none;
        }

        .visible {
            display: block;
        }

        /* Mobile Responsive */
        @media (max-width: 1023px) {
            .booking-sidebar {
                margin-top: 2rem;
            }
        }
