/* Bundle Upsell Popup Styles */
#b2b-bundle-upsell-popup {
    display: none !important;
    position: fixed !important;
    z-index: 999999 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    justify-content: center !important;
    align-items: center !important;
}

#b2b-bundle-upsell-popup.show {
    display: flex !important;
}

.b2b-upsell-content {
    background-color: #fefefe;
    position: relative;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: b2b-fadein 0.3s;
}

@keyframes b2b-fadein {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.b2b-upsell-close {
    color: #333;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.b2b-upsell-close:hover {
    color: #ff9a00;
}

.b2b-upsell-split {
    display: flex;
    min-height: 400px;
}

.b2b-upsell-left {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 40px 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.b2b-upsell-logo-small img {
    max-width: 140px;
    margin-bottom: 20px;
}

.b2b-upsell-bundle-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.b2b-upsell-bundle-price {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.b2b-upsell-bundle-price del {
    font-size: 16px;
    opacity: 0.7;
    margin-right: 10px;
}

.b2b-upsell-right {
    flex: 1;
    padding: 50px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.b2b-upsell-logo-main img {
    max-width: 180px;
    margin-bottom: 30px;
}

.b2b-upsell-right h2 {
    font-size: 24px;
    color: #002237;
    margin-bottom: 30px;
    line-height: 1.3;
}

.b2b-upsell-btn {
    display: inline-block;
    background: #ff9a00;
    color: #fff;
    padding: 12px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background 0.3s;
}

.b2b-upsell-btn:hover {
    background: #e68a00;
    color: #fff;
}

@media (max-width: 768px) {
    .b2b-upsell-split {
        flex-direction: column;
    }

    .b2b-upsell-left {
        min-height: 380px;
    }

    .b2b-upsell-right {
        padding: 30px 20px;
    }
}

.b2b-upsell-logo-main {
    display: flex;
    justify-content: center;
    width: 70%;
}