/* Reservations Page Styles */

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f 0%, #0f0f1a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-grid {
    width: 80px;
    height: 80px;
    background-image: 
        linear-gradient(rgba(0, 245, 255, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: gridPulse 1.5s ease-in-out infinite;
    position: relative;
}

.loader-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(0, 245, 255, 0.5) 50%, transparent 60%);
    animation: gridScan 2s linear infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.5; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes gridScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.loader-text {
    margin-top: 1.5rem;
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    color: #00f5ff;
    letter-spacing: 0.2em;
    animation: textFlicker 0.5s ease-in-out infinite alternate;
}

@keyframes textFlicker {
    0% { opacity: 0.7; text-shadow: 0 0 5px #00f5ff; }
    100% { opacity: 1; text-shadow: 0 0 15px #00f5ff, 0 0 30px #00f5ff; }
}

/* Availability Ticker */
.availability-ticker {
    background: linear-gradient(90deg, rgba(0, 245, 255, 0.1) 0%, rgba(189, 0, 255, 0.1) 100%);
    border-top: 1px solid rgba(0, 245, 255, 0.3);
    border-bottom: 1px solid rgba(0, 245, 255, 0.3);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    overflow: hidden;
    margin-bottom: 3rem;
}

.ticker-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    color: #00f5ff;
    letter-spacing: 0.15em;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.ticker-content {
    display: flex;
    gap: 2rem;
    animation: tickerScroll 20s linear infinite;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.status {
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.status.available {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.4);
}

.status.limited {
    background: rgba(255, 170, 0, 0.2);
    color: #ffaa00;
    border: 1px solid rgba(255, 170, 0, 0.4);
}

.status.waitlist {
    background: rgba(255, 0, 85, 0.2);
    color: #ff0055;
    border: 1px solid rgba(255, 0, 85, 0.4);
}

/* Reservations Container */
.reservations-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05) 0%, rgba(189, 0, 255, 0.05) 100%);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f5ff, transparent);
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 6px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00f5ff;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.input-holo {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00f5ff, #bd00ff);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.form-group input:focus ~ .input-holo,
.form-group select:focus ~ .input-holo,
.form-group textarea:focus ~ .input-holo {
    width: 100%;
}

/* Seating Options */
.seating-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.seating-card {
    cursor: pointer;
    position: relative;
}

.seating-card input {
    position: absolute;
    opacity: 0;
}

.seating-visual {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.seating-card:hover .seating-visual {
    border-color: rgba(0, 245, 255, 0.5);
    transform: translateY(-3px);
}

.seating-card input:checked + .seating-visual {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.15) 0%, rgba(189, 0, 255, 0.15) 100%);
    border-color: #00f5ff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.seating-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.25rem;
}

.seating-name {
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    color: #fff;
    font-weight: 600;
}

.seating-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.seating-price {
    font-size: 0.8rem;
    color: #00f5ff;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Add-ons */
.addon-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.addon-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.addon-item:hover {
    border-color: rgba(0, 245, 255, 0.4);
    background: rgba(0, 245, 255, 0.05);
}

.addon-item input {
    position: absolute;
    opacity: 0;
}

.addon-check {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(0, 245, 255, 0.4);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.addon-check::after {
    content: '✓';
    color: #0a0a0f;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.addon-item input:checked + .addon-check {
    background: #00f5ff;
    border-color: #00f5ff;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.addon-item input:checked + .addon-check::after {
    opacity: 1;
}

.addon-info {
    flex: 1;
}

.addon-name {
    display: block;
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

.addon-desc {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.addon-price {
    font-family: 'Orbitron', monospace;
    color: #00f5ff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Booking Summary */
.booking-summary {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.booking-summary h3 {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: #00f5ff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row.total {
    border-top: 2px solid rgba(0, 245, 255, 0.4);
    border-bottom: none;
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.summary-row.total span:last-child {
    color: #00f5ff;
    font-family: 'Orbitron', monospace;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.submit-btn {
    flex: 1;
    position: relative;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00f5ff 0%, #00c8cc 100%);
    border: none;
    border-radius: 8px;
    color: #0a0a0f;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.submit-btn:hover .btn-glow {
    transform: translateX(100%);
}

.reset-btn {
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-btn:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

/* Confirmation */
.booking-confirmation {
    text-align: center;
    padding: 3rem 2rem;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #0a0a0f;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    animation: confirmationPulse 2s ease-in-out infinite;
}

@keyframes confirmationPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.booking-confirmation h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.confirmation-code {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.confirmation-code strong {
    color: #00f5ff;
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
}

.confirmation-details {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    padding: 0.875rem 1.5rem;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.4);
    border-radius: 6px;
    color: #00f5ff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(0, 245, 255, 0.2);
}

.btn-primary {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #00f5ff 0%, #00c8cc 100%);
    border: none;
    border-radius: 6px;
    color: #0a0a0f;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 245, 255, 0.4);
}

/* Booking Info Sidebar */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05) 0%, rgba(189, 0, 255, 0.05) 100%);
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(0, 245, 255, 0.3);
    transform: translateY(-2px);
}

.info-card.featured {
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.1) 0%, rgba(255, 85, 0, 0.1) 100%);
    border-color: rgba(255, 170, 0, 0.3);
}

.info-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: #00f5ff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.info-card.featured h3 {
    color: #ffaa00;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card li:last-child {
    border-bottom: none;
}

.special-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.special-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.special-price {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: #00ff88;
}

.original-price {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.link-btn {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 4px;
    color: #00f5ff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.link-btn:hover {
    background: rgba(0, 245, 255, 0.2);
}

/* Floor Plan Section */
.floor-plan-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.floor-plan {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 2px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 120px);
    gap: 1rem;
    position: relative;
}

.floor-zone {
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease;
}

.floor-zone:hover {
    border-color: rgba(0, 245, 255, 0.4);
    background: rgba(0, 245, 255, 0.1);
}

.zone-entrance {
    grid-column: 1;
    grid-row: 3;
    background: rgba(189, 0, 255, 0.1);
    border-color: rgba(189, 0, 255, 0.3);
}

.zone-bar {
    grid-column: 2 / 4;
    grid-row: 1;
}

.zone-window {
    grid-column: 4;
    grid-row: 1 / 3;
}

.zone-neural {
    grid-column: 2 / 4;
    grid-row: 2 / 4;
}

.zone-pods {
    grid-column: 1;
    grid-row: 1 / 3;
}

.zone-vr {
    grid-column: 4;
    grid-row: 3;
    background: rgba(255, 0, 85, 0.1);
    border-color: rgba(255, 0, 85, 0.3);
}

.zone-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.zone-seats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.seat {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid;
}

.seat.available {
    background: rgba(0, 255, 136, 0.3);
    border-color: #00ff88;
}

.seat.occupied {
    background: rgba(255, 0, 85, 0.3);
    border-color: #ff0055;
}

.seat.waitlist {
    background: rgba(255, 170, 0, 0.3);
    border-color: #ffaa00;
}

.floor-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 1024px) {
    .reservations-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .booking-info {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .floor-plan {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .zone-entrance,
    .zone-bar,
    .zone-window,
    .zone-neural,
    .zone-pods,
    .zone-vr {
        grid-column: auto;
        grid-row: auto;
        min-height: 100px;
    }
}

@media (max-width: 768px) {
    .reservations-container {
        padding: 0 0.75rem;
        gap: 1.5rem;
    }
    
    .availability-ticker {
        padding: 0.5rem 0.75rem;
        gap: 1rem;
        margin-bottom: 2rem;
        font-size: 0.75rem;
    }
    
    .ticker-label {
        font-size: 0.65rem;
        letter-spacing: 0.1em;
    }
    
    .ticker-item {
        font-size: 0.8rem;
    }
    
    .status {
        font-size: 0.65rem;
        padding: 0.1rem 0.4rem;
    }
    
    .booking-section {
        padding: 1.5rem;
        border-radius: 10px;
    }
    
    .section-title {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group label {
        font-size: 0.75rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem 0.875rem;
        font-size: 1rem;
    }
    
    .seating-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .seating-visual {
        padding: 1rem;
    }
    
    .seating-icon {
        font-size: 1.75rem;
    }
    
    .seating-name {
        font-size: 0.8rem;
    }
    
    .seating-desc {
        font-size: 0.7rem;
    }
    
    .seating-price {
        font-size: 0.75rem;
    }
    
    .addon-options {
        gap: 0.5rem;
    }
    
    .addon-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .addon-check {
        width: 20px;
        height: 20px;
    }
    
    .addon-name {
        font-size: 0.9rem;
    }
    
    .addon-desc {
        font-size: 0.75rem;
    }
    
    .addon-price {
        font-size: 0.85rem;
    }
    
    .booking-summary {
        padding: 1rem;
    }
    
    .booking-summary h3 {
        font-size: 0.85rem;
    }
    
    .summary-row {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .summary-row.total {
        font-size: 1rem;
        padding-top: 0.75rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .submit-btn {
        padding: 0.875rem;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    .reset-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    /* Booking Confirmation Mobile */
    .booking-confirmation {
        padding: 2rem 1rem;
    }
    
    .confirmation-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .booking-confirmation h3 {
        font-size: 1.25rem;
    }
    
    .confirmation-code {
        font-size: 1rem;
    }
    
    .confirmation-code strong {
        font-size: 1.15rem;
    }
    
    .confirmation-details {
        font-size: 0.9rem;
    }
    
    .confirmation-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-secondary,
    .btn-primary {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    /* Booking Info Sidebar Mobile */
    .booking-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card {
        padding: 1.25rem;
        border-radius: 8px;
    }
    
    .info-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .info-card li {
        padding: 0.35rem 0;
        font-size: 0.85rem;
    }
    
    .special-name {
        font-size: 1rem;
    }
    
    .special-desc {
        font-size: 0.8rem;
    }
    
    .special-price {
        font-size: 1.1rem;
    }
    
    .original-price {
        font-size: 0.85rem;
    }
    
    .link-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
        min-height: 44px;
    }
    
    /* Floor Plan Mobile */
    .floor-plan-section {
        margin: 2rem auto;
        padding: 0 0.75rem;
    }
    
    .floor-plan {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 0.75rem;
        border-radius: 10px;
    }
    
    .floor-zone {
        padding: 0.75rem;
        min-height: 80px;
    }
    
    .zone-label {
        font-size: 0.7rem;
    }
    
    .seat {
        width: 12px;
        height: 12px;
    }
    
    .floor-legend {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .legend-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .reservations-container {
        padding: 0 0.5rem;
    }
    
    .booking-section {
        padding: 1.25rem;
    }
    
    .seating-options {
        grid-template-columns: 1fr;
    }
    
    .seating-visual {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }
    
    .seating-icon {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .addon-item {
        flex-wrap: wrap;
    }
    
    .addon-price {
        width: 100%;
        text-align: right;
        margin-top: 0.5rem;
    }
    
    .floor-plan {
        padding: 0.75rem;
    }
    
    .floor-zone {
        min-height: 70px;
    }
}
