/* Guest Popup Modal Styles */
.guest-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Prevent body scroll when popup is open */
body.guest-popup-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.guest-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.guest-popup-content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.guest-popup-header {
    padding: 24px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guest-popup-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.guest-popup-close {
    display: none !important; /* Hide close button - users cannot close popup */
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    padding: 0 8px;
}

.guest-popup-close:hover {
    color: #333;
}

.guest-popup-body {
    padding: 24px;
}

.guest-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.guest-option:last-child {
    border-bottom: none;
}

.guest-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.guest-label strong {
    font-size: 16px;
    color: #333;
}

.guest-sublabel {
    font-size: 13px;
    color: #666;
}

.guest-info-icon {
    display: inline-block;
    margin-left: 6px;
    font-size: 16px;
    color: #999;
    cursor: help;
}

.guest-counter {
    display: flex;
    align-items: center;
    gap: 16px;
}

.guest-decrease,
.guest-increase {
    width: 40px;
    height: 40px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    background: white;
    color: #666;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
    line-height: 1;
}

.guest-decrease:hover,
.guest-increase:hover {
    border-color: #01bea0;
    color: #01bea0;
    background: #f0fdf9;
}

.guest-decrease:disabled,
.guest-increase:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #e0e0e0;
    color: #ccc;
}

.guest-count {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    min-width: 30px;
    text-align: center;
}

.guest-popup-footer {
    padding: 24px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.guest-continue-btn {
    background: #01bea0;
    color: white;
    border: none;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guest-continue-btn:hover {
    background: #019c87;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 190, 160, 0.4);
}

.guest-continue-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 600px) {
    .guest-popup-content {
        width: 95%;
        margin: 20px;
    }
    
    .guest-popup-header,
    .guest-popup-body,
    .guest-popup-footer {
        padding: 16px;
    }
    
    .guest-popup-header h3 {
        font-size: 18px;
    }
    
    .guest-decrease,
    .guest-increase {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .guest-counter {
        gap: 12px;
    }
}

