/* =========================================
   Standalone Booking Page Styles
   ========================================= */

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
li,
figure {
    margin: 0;
    padding: 0;
}

/* Use Outfit font globally for this page */
.booking-page-body {
    background-color: #f9fafb;
    min-height: 100vh;
    font-family: 'Outfit', sans-serif;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

/* Header styles handled by style.css */

/* Main Layout */
.booking-page-main {
    padding: 40px 5%;
    max-width: 1440px;
    /* Match standard site width */
    margin: 0 auto;
}

.booking-page-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.booking-page-header-row h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.back-link:hover {
    color: #000;
}

/* Two-Column Grid */
.booking-grid-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.booking-grid-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.booking-grid-sidebar {
    width: 380px;
    flex-shrink: 0;
}

/* Global Date Section - Compact & Clean */
.date-selector-container {
    margin-bottom: 24px;
}

.date-scroll-wrapper {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px;
    /* Space for shadow */
    scrollbar-width: none;
    scroll-behavior: smooth;
    /* mask-image: linear-gradient(to right, transparent, black 16px, black 95%, transparent); */
}

.date-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

/* Date Selector Nav Wrapper */
.date-selector-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.date-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    z-index: 20;
    display: flex;
    /* Visible on desktop */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #4b5563;
    font-size: 14px;
    transition: all 0.2s;
}

.date-nav:hover {
    background: #f9fafb;
    color: #111;
    transform: translateY(-50%) scale(1.1);
}

.date-nav.prev {
    left: -16px;
}

.date-nav.next {
    right: -16px;
}

.date-pill {
    min-width: 80px;
    height: 86px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.date-pill:hover {
    border-color: #8b5cf6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.date-pill.selected {
    background: #f5f3ff;
    border-color: #8b5cf6;
    border-width: 1.5px;
    /* Subtle border */
    color: #7c3aed;
}

.date-pill .day-name {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
    color: #6b7280;
    letter-spacing: 0.5px;
}

.date-pill.selected .day-name {
    color: #7c3aed;
}

.date-pill .day-num {
    font-size: 20px;
    font-weight: 700;
    margin: 2px 0;
    color: #111827;
}

.date-pill.selected .day-num {
    color: #7c3aed;
}

.date-pill .price-tag {
    font-size: 11px;
    color: #10b981;
    /* Green for price always nice */
    font-weight: 600;
    margin-top: 2px;
}

.date-pill.selected .price-tag {
    color: #10b981;
}

.more-dates-btn {
    border: 1px dashed #d1d5db;
    /* Dashed border */
    color: #6b7280;
    background: #f9fafb;
}

.more-dates-btn:hover {
    border-color: #8b5cf6;
    border-style: solid;
    color: #8b5cf6;
    background: #fff;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}



/* Option Cards - Compact & Clean */
/* Option Cards - Refined Row Layout */
.options-section-title {
    margin-bottom: 16px;
}

.step-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    /* Rounded corners */
    margin-bottom: 20px;
    padding: 0;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.step-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    /* Soft shadow on hover */
    transform: translateY(-1px);
}

.step-card.active {
    border-color: #d946ef;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.1);
}

.step-header {
    padding: 24px;
    /* More breathing room */
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Vertically center */
    gap: 24px;
    cursor: pointer;
    background: white;
}

.option-info {
    flex: 1;
    /* Take remaining space */
}

.step-title {
    font-size: 18px;
    /* Slightly larger title */
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.3;
}

.option-meta {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping */
    gap: 12px;
}

.option-meta span {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f9fafb;
    /* Subtle tag bg */
    padding: 4px 8px;
    border-radius: 6px;
}

.option-meta svg {
    flex-shrink: 0;
}

.option-price-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    min-width: 140px;
    /* Ensure button width consistancy */
}

.from-price {
    font-size: 13px;
    color: #6b7280;
    text-align: right;
}

.from-price strong {
    font-size: 22px;
    /* Bigger price */
    color: #111827;
    display: block;
    font-weight: 800;
    margin-top: 4px;
}

.select-option-btn {
    width: 100%;
    padding: 12px 0;
    background: white;
    border: 1.5px solid #8b5cf6;
    color: #8b5cf6;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.select-option-btn:hover {
    background: #f5f3ff;
    transform: translateY(-1px);
}

.step-card.active .select-option-btn {
    background: #8b5cf6;
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

/* Expanded Content */
.step-content {
    background: #fafafa;
    border-top: 1px solid #f3f4f6;
    padding: 24px;
    display: none;
    animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card.active .step-content {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== NEW STEP SECTION LAYOUT ==================== */
.step-section {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 24px;
    padding: 24px;
}

.step-header-new {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.step-info {
    flex: 1;
}

.step-title-new {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.step-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Step Calendar */
.step-calendar {
    margin-bottom: 28px;
}

.date-pills-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 4px 12px 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.date-pills-container::-webkit-scrollbar {
    display: none;
}

.date-pill {
    flex-shrink: 0;
    min-width: 80px;
    padding: 16px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    background: white;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.date-pill:hover {
    border-color: #d946ef;
    background: linear-gradient(180deg, #fdf4ff 0%, #fae8ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 70, 239, 0.15);
}

.date-pill.selected {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #f5f3ff 0%, #fdf4ff 100%);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.2), inset 0 0 0 1px rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.date-pill .day-name {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    text-transform: capitalize;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.date-pill.selected .day-name {
    color: #7c3aed;
}

.date-pill .day-num {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.2;
}

.date-pill.selected .day-num {
    color: #7c3aed;
}

.date-pill .day-price {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #10b981;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    padding: 4px 8px;
    border-radius: 6px;
    margin-top: 4px;
}

.date-pill.selected .day-price {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #7c3aed;
}

.date-pill.more-dates {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-style: dashed;
    border-color: #d1d5db;
    color: #6b7280;
    background: #fafafa;
}

.date-pill.more-dates:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
    background: #f5f3ff;
}

.date-pill.more-dates svg {
    opacity: 0.7;
}

.date-pill.more-dates span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prices-note {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 8px;
}

/* Time Section */
.time-section {
    margin-bottom: 24px;
}

.time-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.time-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: #f0fdf4;
    border-radius: 12px;
    color: #166534;
    margin-bottom: 8px;
}

.operating-hours {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

/* Pax Section */
.pax-section {
    border-top: 1px solid #f3f4f6;
    padding-top: 24px;
}

.pax-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.pax-note {
    font-size: 13px;
    color: #f59e0b;
    margin-bottom: 16px;
}

.pax-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
}

.pax-row:last-child {
    border-bottom: none;
}

.pax-info {
    flex: 1;
}

.pax-type {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.pax-desc {
    display: block;
    font-size: 13px;
    color: #6b7280;
}

.pax-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pax-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    background: white;
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pax-btn:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.pax-btn.plus {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.pax-count {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 24px;
    text-align: center;
}

.pax-price {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 80px;
    text-align: right;
}

/* Time Select */
.time-dropdown {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    background: white;
    cursor: pointer;
    transition: border 0.2s;
    font-family: 'Outfit', sans-serif;
}

.time-dropdown:hover {
    border-color: #9ca3af;
}

.time-dropdown:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* Pax Selector */
.pax-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
}

.pax-row:last-child {
    border-bottom: none;
}

.pax-info h5 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.pax-info p {
    font-size: 13px;
    color: #9ca3af;
}

.pax-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pax-btn {
    width: 36px;
    height: 36px;
    border: 1.5px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: #374151;
}

.pax-btn:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.pax-count-display {
    min-width: 30px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

/* Summary Sidebar */
.summary-card {
    position: sticky;
    top: 20px;
    /* Adjusted for relative header */
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.summary-header {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.summary-header img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.summary-title-block h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #111827;
    line-height: 1.4;
}

.summary-subtitle {
    font-size: 12px;
    color: #10b981;
    font-weight: 500;
}

.summary-items {
    margin-bottom: 24px;
}

.summary-item {
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #374151;
}

.summary-item-detail {
    font-size: 13px;
    color: #9ca3af;
}

.summary-item-detail.filled {
    color: #111827;
    font-weight: 500;
}

.check-icon {
    color: #10b981;
    font-weight: 900;
}

.summary-footer {
    border-top: 1px solid #f3f4f6;
    padding-top: 20px;
}

.price-breakdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.price-breakdown span:first-child {
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
}

.total-price-display {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
}

.booking-action-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.booking-action-btn:hover:enabled {
    background: #7c3aed;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.booking-action-btn:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

.booking-guarantee {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

/* Gallery */
/* Gallery - Modern Scrollable Carousel */
.event-gallery {
    position: relative;
    height: 320px;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    background: #f3f4f6;
    /* Placeholder color */
}

.gallery-wrapper {
    display: flex;
    gap: 0;
    /* Seamless */
    overflow-x: auto;
    scroll-behavior: smooth;
    height: 100%;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.gallery-wrapper::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    min-width: 100%;
    height: 100%;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Nav Buttons */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #111;
    z-index: 10;
    backdrop-filter: blur(4px);
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 16px;
}

.gallery-nav.next {
    right: 16px;
}

/* Hide nav if not needed (handled by JS but safety check) */
.event-gallery:not(.scrollable) .gallery-nav {
    display: none;
}

/* Description */
.event-description {
    margin-bottom: 32px;
}

.description-block {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.description-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.description-block p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
}

/* Highlights */
.event-highlights {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid #e5e7eb;
}

.section-header-simple h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.event-highlights ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.event-highlights li {
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

/* Sticky Mobile Booking Bar */
.sticky-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 16px 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
    /* Hidden by default on desktop */
}

.sticky-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sticky-info {
    display: flex;
    flex-direction: column;
}

.sticky-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.sticky-price {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
}

.sticky-action-btn {
    flex: 1;
    max-width: 200px;
    background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.sticky-action-btn:hover:enabled {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.sticky-action-btn:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

.event-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 800;
    font-size: 16px;
}

/* Reviews - Premium Grid */
/* Reviews - Horizontal Slider (Headout Style) */
.event-reviews {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.rating-badge {
    font-size: 24px;
    font-weight: 800;
    color: #be123c;
    /* Dark pink/red like screenshot */
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.show-all-link {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    text-decoration: underline;
    text-decoration-color: #d1d5db;
    text-underline-offset: 4px;
}

.nav-arrows {
    display: flex;
    gap: 8px;
}

.review-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: #4b5563;
    transition: all 0.2s;
}

.review-nav:hover {
    border-color: #111;
    color: #111;
}

/* Horizontal Scroll List */
.reviews-list.horizontal-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    /* Space for shadow */
    scroll-behavior: smooth;
    scrollbar-width: none;
    margin: 0 -4px;
    /* Compensate for padding */
    padding: 4px;
}

.reviews-list.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.review-card-modern {
    min-width: 320px;
    max-width: 320px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.review-card-header {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    align-items: center;
}

.user-avatar-placeholder {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #4b5563;
    font-size: 16px;
}

.user-meta {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 700;
    font-size: 15px;
    color: #111827;
}

.review-date {
    font-size: 12px;
    color: #6b7280;
}

.verified-badge {
    color: #6b7280;
}

.review-stars-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
}

.stars {
    color: #be123c;
    /* Match header badge */
    font-size: 16px;
    letter-spacing: 2px;
}

.numeric-n {
    font-size: 13px;
    font-weight: 700;
    color: #be123c;
}

.review-body p {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.read-more-link {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-top: auto;
}

.review-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 1px;
}

.review-text {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.review-date {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

/* Related Events */
.related-events-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.related-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-info {
    padding: 20px;
}

.related-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
    line-height: 1.4;
    height: 44px;
    /* Limit height */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.related-rating {
    font-size: 13px;
    color: #f59e0b;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.related-price {
    font-size: 13px;
    color: #6b7280;
}

.related-price strong {
    font-size: 18px;
    color: #111827;
    font-weight: 800;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .booking-grid-wrapper {
        flex-direction: column;
    }

    .booking-grid-sidebar {
        width: 100%;
        order: -1;
    }

    .event-gallery {
        height: 200px;
        grid-template-columns: 1fr 1fr;
    }

    .date-pill {
        min-width: 90px;
    }

    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .option-price-action {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.app-footer {
    background: white;
    padding: 32px 0;
    margin-top: 60px;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-logo {
    font-weight: 800;
    font-size: 20px;
    color: #111;
    letter-spacing: -0.5px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #6b7280;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.1s;
}

.footer-links a:hover {
    color: #111;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 13px;
    margin-top: 8px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-links {
        margin-left: auto;
        margin-right: 32px;
    }

    .footer-copyright {
        margin-top: 0;
    }
}

/* Main Footer (Old File Style / Headout) */
.main-footer {
    background: #fff;
    border-top: 1px solid #eee;
    padding-top: 60px;
    padding-bottom: 20px;
    margin-top: 60px;
    font-size: 14px;
    color: #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.brand-col {
    flex: 1.5;
}

/* Footer Logo Block */
.footer-logo-block {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.logo-dubai {
    font-weight: 800;
    font-size: 24px;
    color: #000;
    letter-spacing: -0.5px;
}

.logo-tickets {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #000;
    margin-top: 4px;
}

.logo-divider {
    font-size: 20px;
    color: #ddd;
    font-weight: 300;
}

.logo-text-small {
    font-size: 18px;
    font-family: serif;
    font-style: italic;
    font-weight: 600;
    color: #000;
}

/* Headings & Links */
.footer-heading {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    margin-top: 0;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.1s;
}

.footer-links-list a:hover {
    color: #000;
    text-decoration: underline;
}

/* Payment Icons */
.payment-icons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-icons-grid img {
    height: 24px;
    width: auto;
    opacity: 0.8;
}

/* Copyright */
.footer-bottom {
    padding-top: 30px;
    text-align: left;
}

.copyright-text {
    font-size: 12px;
    color: #999;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
}

/* =========================================
   NEW BOOKING UI REFINEMENTS
   ========================================= */

/* Time Selection - Pills Grid */
.time-selector-container {
    margin-top: 20px;
    margin-bottom: 24px;
}

.time-selector-container h4 {
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.time-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    gap: 10px;
}

.time-pill {
    padding: 10px 4px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-pill:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

.time-pill.selected {
    background: #111827;
    color: white;
    border-color: #111827;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Pax Selection - Refined */
.pax-selector-container {
    background: #f9fafb;
    padding: 20px;
    border-radius: 16px;
    margin-top: 24px;
    border: 1px solid #f3f4f6;
}

.pax-selector-container h4 {
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 10px;
}

.pax-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.pax-row:last-child {
    margin-bottom: 0;
}

.pax-info h5 {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 2px 0;
}

.pax-info span {
    font-size: 13px;
    color: #6b7280;
}

.pax-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 4px;
    border-radius: 50px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pax-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #6b7280;
    transition: all 0.2s;
}

.pax-btn:hover {
    background: #f3f4f6;
    color: #111;
}

.pax-count-display {
    font-size: 16px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    color: #111827;
}

/* Hide Summary Image as requested -> RESTORED */
/* .summary-header img {
    display: none !important;
} */

.summary-header {
    display: block;
    /* Align title logic simpler */
    margin-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 12px;
}

.summary-title-block {
    margin-left: 0;
}

.summary-title-block h4 {
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 1.4;
}

/* Hide Gallery as requested */
.event-gallery,
#eventGallery {
    display: none !important;
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */

@media (max-width: 900px) {
    .booking-page-main {
        padding: 16px 12px;
    }

    /* Stack the main grid */
    .booking-grid-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .booking-grid-content {
        width: 100%;
        min-width: 0;
    }

    /* Hide sidebar on mobile, use sticky bar */
    .booking-grid-sidebar {
        display: none;
    }

    /* Adjust Header */
    .booking-page-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 16px;
    }

    .booking-page-header-row h1 {
        font-size: 20px;
        line-height: 1.3;
    }

    .back-link {
        font-size: 13px;
    }

    /* Section Titles */
    .section-title {
        font-size: 16px !important;
        margin-bottom: 12px;
    }

    /* Date Pills Mobile - Smaller and scrollable */
    .date-selection-section {
        margin-bottom: 16px;
    }

    .date-selector-wrapper {
        margin-bottom: 16px;
    }

    .date-scroll-wrapper {
        gap: 8px;
        padding: 2px;
    }

    .date-pill {
        min-width: 68px;
        height: 72px;
        border-radius: 10px;
    }

    .date-pill .day-name {
        font-size: 10px;
        margin-bottom: 2px;
    }

    .date-pill .day-num {
        font-size: 16px;
    }

    .date-pill .price-tag {
        font-size: 10px;
    }

    /* Hide date nav buttons on mobile - use swipe */
    .date-nav {
        display: none;
    }

    /* Step Cards Mobile */
    .step-card {
        margin-bottom: 12px;
        border-radius: 12px;
    }

    .step-header {
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .step-title {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .option-meta {
        gap: 8px;
    }

    .option-meta span {
        font-size: 11px;
        padding: 3px 6px;
    }

    .option-price-action {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        min-width: auto;
    }

    .from-price {
        font-size: 12px;
    }

    .from-price strong {
        font-size: 18px;
        display: inline;
        margin-top: 0;
    }

    .select-option-btn {
        padding: 10px 20px;
        font-size: 13px;
        width: auto;
        min-width: 100px;
    }

    /* Step Content Mobile */
    .step-content {
        padding: 16px;
    }

    /* Time Pills Grid Mobile */
    .time-selector-container {
        margin-top: 12px;
        margin-bottom: 16px;
    }

    .time-grid-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .time-pill {
        font-size: 12px;
        padding: 8px 2px;
    }

    /* Pax Selector Mobile */
    .pax-selector-container {
        padding: 14px;
        margin-top: 16px;
        border-radius: 12px;
    }

    .pax-selector-container h4 {
        font-size: 14px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .pax-row {
        margin-bottom: 12px;
    }

    .pax-info h5 {
        font-size: 14px;
    }

    .pax-controls {
        gap: 10px;
        padding: 3px;
    }

    .pax-btn {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .pax-count-display {
        font-size: 14px;
        min-width: 18px;
    }

    /* Sticky Booking Bar Mobile - ENHANCED */
    .sticky-booking-bar {
        display: block !important;
        padding: 12px 16px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }

    .sticky-bar-content {
        gap: 12px;
    }

    .sticky-info {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .sticky-label {
        font-size: 11px;
    }

    .sticky-price {
        font-size: 18px;
    }

    .sticky-action-btn {
        flex: none;
        width: auto;
        max-width: none;
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Adjust bottom spacing for sticky bar */
    .booking-page-main {
        padding-bottom: 90px;
    }

    /* Related Events Mobile */
    .related-events-section {
        margin-top: 40px;
        padding-top: 24px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .related-card img {
        height: 140px;
    }

    .related-info {
        padding: 14px;
    }

    .related-info h4 {
        font-size: 14px;
        height: auto;
    }

    /* Event Highlights Mobile */
    .event-highlights {
        padding: 16px;
        margin-bottom: 20px;
    }

    .event-highlights li {
        font-size: 13px;
        padding-left: 24px;
    }

    /* Reviews Mobile */
    .event-reviews {
        margin-top: 32px;
        padding-top: 24px;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .review-card-modern {
        min-width: 280px;
        max-width: 280px;
        padding: 16px;
    }
}

/* Extra small screens (phones < 375px) */
@media (max-width: 375px) {
    .booking-page-header-row h1 {
        font-size: 18px;
    }

    .date-pill {
        min-width: 60px;
        height: 65px;
    }

    .time-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .step-header {
        padding: 12px;
    }

    .sticky-action-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* ==================== CALENDAR MODAL ==================== */
.calendar-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.calendar-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.calendar-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.calendar-modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 400px;
    height: 80vh;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 1001;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.calendar-modal.active .calendar-modal-content {
    transform: translateY(0);
}

.calendar-modal-header {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calendar-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.close-calendar {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-grid-container {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.calendar-month-section {
    margin-bottom: 32px;
}

.calendar-month-section h4 {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: #1a1a1a;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.weekday-header {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 600;
    margin-bottom: 8px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background: #f3f4f6;
}

.calendar-day.selected {
    background: #8b5cf6;
    color: white;
    font-weight: 600;
}

.calendar-day.disabled {
    color: #e5e7eb;
    cursor: not-allowed;
}

/* Fix for footer overlap with sticky bar on mobile */
@media (max-width: 991px) {
    footer {
        padding-bottom: 120px;
    }
}

/* ==================== CHECKOUT PAGE STYLES ==================== */

.checkout-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.checkout-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.checkout-header .back-link {
    font-size: 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 500;
}

/* Guest Details Form Override */
.guest-details-form {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.form-row {
    margin-bottom: 16px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    display: block;
}

.form-group label span {
    font-weight: 400;
    color: #9ca3af;
    font-size: 13px;
    margin-left: 4px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    color: #1a1a1a;
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.phone-input-group {
    display: flex;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
}

.phone-input-group .country-code {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f9fafb;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    border-right: 1px solid #d1d5db;
    color: #374151;
}

.phone-input-group .country-code img {
    width: 20px;
}

.phone-input-group input {
    border: none;
    border-radius: 0;
}

.phone-input-group input:focus {
    box-shadow: none;
}

.promo-link {
    display: inline-block;
    color: #059669;
    font-weight: 600;
    font-size: 14px;
    text-decoration: underline;
    margin-top: 10px;
}

/* Payment Method */
.payment-selection-card {
    border: 2px solid #8b5cf6;
    /* Selected state by default for now */
    border-radius: 12px;
    background: #fdf4ff;
    /* Light purple tint */
    overflow: hidden;
    transition: all 0.2s;
}

.payment-header {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    background: white;
}

.radio-circle.checked {
    border-color: #8b5cf6;
    background: #8b5cf6;
}

.radio-circle.checked::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.payment-label {
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
}

.payment-icons-row {
    display: flex;
    gap: 6px;
}

.payment-icons-row img {
    height: 20px;
}


.card-details-form {
    padding: 20px;
    padding-top: 0;
    /* animation: slideDown 0.3s ease; */
}

.input-with-icon {
    position: relative;
}

.input-with-icon input {
    padding-right: 40px;
}

.input-with-icon svg {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.info-icon {
    color: #9ca3af;
    font-size: 14px;
    cursor: pointer;
}

.secure-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
    margin-top: 16px;
}

.secure-note svg {
    color: #10b981;
}

/* Summary Sidebar Updates */
.summary-subtitle {
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}

.summary-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 16px 0;
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.summary-total-row span:first-child {
    font-weight: 600;
    color: #374151;
}

.summary-total-row span:last-child {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
}

.legal-text {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.4;
    margin-bottom: 16px;
}

.legal-text a {
    color: #6b7280;
    text-decoration: underline;
}

.confirm-pay-btn {
    width: 100%;
    background: #7c3aed;
    /* Purple */
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}

.confirm-pay-btn:hover {
    background: #6d28d9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.confirm-pay-btn svg {
    opacity: 0.9;
}

/* ============================================
   MOBILE RESPONSIVE - CHECKOUT PAGE
   ============================================ */

@media (max-width: 900px) {

    /* Stack the layout */
    .booking-grid-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    /* Full width content */
    .booking-grid-content {
        width: 100%;
    }

    /* Sidebar full width, not sticky */
    .booking-grid-sidebar {
        width: 100%;
        position: relative;
    }

    /* Summary card not sticky on mobile */
    .summary-card {
        position: relative;
        top: 0;
    }

    /* Hide legal text on mobile to show in fixed footer */
    .booking-grid-sidebar .legal-text {
        display: none;
    }
}

@media (max-width: 768px) {

    /* Page padding adjustment */
    .booking-page-main {
        padding: 20px 16px;
        padding-bottom: 100px;
        /* Space for fixed footer */
    }

    /* Checkout header */
    .checkout-header {
        margin-bottom: 20px;
    }

    .checkout-header h1 {
        font-size: 24px;
    }

    /* Step sections */
    .step-section {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .step-header-new {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .step-title-new {
        font-size: 16px;
    }

    .step-subtitle {
        font-size: 13px;
    }

    /* Form rows - stack on mobile */
    .form-row,
    .guest-details-form .form-row {
        flex-direction: column !important;
        gap: 16px !important;
    }

    .form-row .form-group,
    .guest-details-form .form-row .form-group {
        flex: none !important;
        width: 100%;
    }

    /* Form inputs larger for touch */
    .form-group input,
    .form-group select,
    .time-dropdown {
        padding: 16px;
        font-size: 16px;
        /* Prevent iOS zoom */
        border-radius: 12px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .form-group label span {
        font-size: 11px;
    }

    /* Phone input group */
    .phone-input-group {
        flex-direction: row;
    }

    .phone-input-group .country-code {
        padding: 16px 12px;
        font-size: 14px;
        white-space: nowrap;
    }

    .phone-input-group input {
        border-radius: 0 12px 12px 0;
    }

    /* Payment section */
    .payment-selection-card {
        border-radius: 12px;
    }

    .payment-header {
        padding: 16px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .payment-label {
        flex: 1;
        min-width: 120px;
    }

    .payment-icons-row {
        margin-left: auto;
    }

    .card-details-form {
        padding: 16px;
        padding-top: 0;
    }

    /* Summary card mobile */
    .summary-card {
        padding: 16px;
        border-radius: 12px;
    }

    .summary-header {
        flex-direction: row;
        gap: 12px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .summary-header img {
        width: 60px;
        height: 60px;
    }

    .summary-title-block h4 {
        font-size: 14px;
    }

    .summary-subtitle {
        font-size: 12px;
    }

    /* Summary items compact */
    .summary-item {
        padding: 12px 0;
    }

    .summary-item-title {
        font-size: 14px;
    }

    .summary-item-details span {
        font-size: 12px;
    }

    /* Total row */
    .summary-total-row span:last-child {
        font-size: 18px;
    }

    /* Hide confirm button in summary on mobile - we'll show fixed footer */
    .summary-footer {
        display: none;
    }
}

/* Fixed bottom footer for mobile checkout - BASE STYLES */
.checkout-fixed-footer {
    display: none;
    /* Hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid #e5e7eb;
}

.checkout-fixed-footer .footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.checkout-fixed-footer .footer-price {
    font-size: 12px;
    color: #6b7280;
}

.checkout-fixed-footer .footer-price strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
}

.checkout-fixed-footer .confirm-pay-btn {
    flex: 1;
    max-width: 200px;
    padding: 14px 20px;
    font-size: 15px;
}

/* Show fixed footer on mobile - OVERRIDE */
@media (max-width: 768px) {
    .checkout-fixed-footer {
        display: block !important;
    }
}

/* Very small screens */
@media (max-width: 400px) {
    .booking-page-main {
        padding: 16px 12px;
        padding-bottom: 100px;
    }

    .step-section {
        padding: 16px 12px;
    }

    .form-group input,
    .form-group select {
        padding: 14px 12px;
    }

    .summary-header {
        flex-direction: column;
        text-align: center;
    }

    .summary-header img {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
}