@media (max-width: 768px) {
    #coupon_code{
        width: 50%;
    }
}
@media (min-width: 769px) {
    #coupon_code{
        width: 59%;
    }
}
.fn_cart_btn{
    display: inline-block !important;
    padding: 10px 15px !important;
    text-align: center !important;
    font-size: 15px !important;
    background-color: #e6007e !important;
    border-radius: 10px !important;
    color: #fff !important;
    cursor: pointer !important;
    font-family: 'GothamRoundedMedium_21022';
    text-transform: none !important;
    vertical-align: middle !important;
    margin-left: 0 !important;
}
#custom-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    /* display: flex!important; */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.custom-popup-content {
    background: white;
    width: 90%;
    max-width: 500px; /* Limits the width on larger screens */
    padding: 0px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    font-family: 'Arial', sans-serif;
}

.custom-popup-content p {
    margin: 20px 0;
}

.custom-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #333;
    transition: color 0.3s ease;
}

.custom-popup-close:hover {
    color: #000;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .custom-popup-content {
        width: 95%;
        padding: 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .custom-popup-content {
        width: 100%;
        padding: 10px;
    }
}