/* Global Font */
body {
    font-family: 'Outfit', sans-serif;
}

/* Custom Modal Overlay (Backdrop) */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark semi-transparent background */
    backdrop-filter: blur(8px); /* Blur effect for glassmorphism */
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

/* Custom Modal Content */
.custom-modal-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    animation: slideUp 0.3s forwards;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    text-align: left !important;
}

/* Modal Header */
.modal-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Close Button */
.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #333;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #dc3545;
}

/* Checkout Button Animation */
.shadow-transition {
    transition: transform 0.2s, box-shadow 0.2s;
}

.shadow-transition:active {
    transform: scale(0.98);
}

/* Animations */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

/* Utility to hide/show */
.d-none {
    display: none !important;
}
