/* Age Verification Modal Custom Styles */
#ageVerificationModal .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    overflow: hidden;
}

#ageVerificationModal .modal-header {
    border-bottom: none;
    background-color: #ff4757; /* Example primary color, adjust to theme */
    color: white;
    justify-content: center;
    padding: 20px;
}

#ageVerificationModal .modal-title {
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#ageVerificationModal .modal-body {
    padding: 30px;
    text-align: center;
    font-size: 1.1rem;
    color: #333;
}

#ageVerificationModal .modal-footer {
    border-top: none;
    justify-content: center;
    padding-bottom: 30px;
    gap: 15px;
}


/* Blur effect for the background when modal is open */
body.modal-open .container, 
body.modal-open header, 
body.modal-open footer, 
body.modal-open section {
    filter: blur(5px);
    transition: filter 0.3s ease;
}
