.csp-product-widget {
    margin: 25px 0;
    padding: 25px 20px;
    border: 1px solid #e7e7e7;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
}

.csp-product-widget__section + .csp-product-widget__section {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #eee;
}

.csp-product-widget__title {
    margin: 0 0 18px;
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    color: #444;
}

.csp-product-widget__provider {
    gap: 8px;
    min-height: 74px;
    padding: 12px 8px;
    border: 1px solid #e7e7e7;
    border-radius: 3px;
    background-color: #fff;
    transition: all 0.2s ease;
}

.csp-product-widget__provider:hover,
.csp-product-widget__provider.is-active {
    border-color: #4a9fd8;
    background-color: #eef6fc;
    box-shadow: 0 0 0 1px rgba(74, 159, 216, 0.25);
}

.csp-product-widget__provider-name {
    font-size: 13px;
    color: #444;
}

.csp-product-widget__help-link {
    margin-bottom: 18px;
    color: #4a9fd8;
    font-size: 14px;
}

.csp-product-widget__help-icon {
    border: 1px solid #4a9fd8;
    color: #4a9fd8;
}

.csp-product-widget__tab {
    padding: 10px 18px;
    border: 1px solid #e7e7e7;
    border-radius: 3px;
    background-color: #fff;
    color: #444;
    font-size: 14px;
    transition: all 0.2s ease;
}

.csp-product-widget__tab:hover,
.csp-product-widget__tab.is-active {
    border-color: #4a9fd8;
    background-color: #eef6fc;
    color: #333;
}

.csp-product-widget__tabs {
    margin-bottom: 18px;
}

.csp-product-widget__price-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    direction: rtl;
    padding: 12px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
}

.csp-product-widget__price-row:last-child {
    border-bottom: none;
}

.csp-product-widget__price-row--highlight .csp-product-widget__price-value {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.csp-product-widget__price-label {
    color: #666;
    text-align: right;
}

.csp-product-widget__price-value {
    color: #222;
    text-align: left;
    white-space: nowrap;
}

.csp-product-widget__empty {
    color: #888;
    font-size: 14px;
}

.csp-product-widget a,
.csp-product-widget a:visited {
    color: #4a9fd8;
}

.csp-product-widget a:hover,
.csp-product-widget a:focus {
    color: #3a8fc8;
}

@media (max-width: 575px) {
    .csp-product-widget {
        padding: 18px 14px;
    }
}

/* Mobile/tablet popup scroll */
@media (max-width: 991px) {
    button.csp-product-widget__provider {
        padding: 0;
    }

    .csp-product-widget__provider {
        min-height: 50px;
    }

    .csp-popup.is-open {
        align-items: flex-start;
        justify-content: flex-start;
        padding: 12px;
        overflow: hidden;
    }

    .csp-popup__dialog {
        max-height: calc(100dvh - 24px);
        max-height: calc(100vh - 24px);
        min-height: 0;
        width: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .csp-popup__header {
        position: sticky;
        top: 0;
        z-index: 2;
        background: #fff;
    }

    .csp-popup__body {
        flex: 0 0 auto;
        min-height: auto;
        overflow: visible;
    }

    .csp-product-widget--in-popup {
        padding-bottom: 20px;
    }
}
