.fes-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.fes-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.fes-popup-content {
    background: #0f172a;
    width: 90%;
    max-width: 1200px;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}



.fes-rec-products .product-small .col-inner {
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.fes-rec-products .name a,
.fes-rec-products .box-text a {
    color: inherit !important;
}

.fes-rec-products .price {
    color: inherit !important;
}

.fes-rec-products .price del {
    color: #94a3b8 !important;
}

.fes-rec-products .products {
    margin-bottom: 0;
}

.fes-popup-close {
    position: absolute;
    top: 6px;
    right: -15px;
    width: 59px;
    height: 60px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    border: none;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
}


