.checkout-product-installation {
    padding-left: 124px;
}

@media (max-width: 1024px) {
    .checkout-product-installation {
        padding-left: 0;
    }
}

.checkout-product-installation__badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--livea-blue-dark);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    height: fit-content;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.checkout-product-installation__content {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    border: 1px solid var(--livea-gray-10);
    border-radius: 4px;
    padding: 12px 10px;
    text-align: left;
}

.checkout-product-installation__info {
    display: flex;
}

.checkout-product-installation__service-img {
    margin-right: 8px;
}

.checkout-product-installation__name {
    margin-right: 20px;
}

.checkout-product-installation__title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.checkout-product-installation__link {
    border: none;
    background: none;
    font-size: 12px;
    font-weight: 400;
    color: var(--livea-blue);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.checkout-product-installation__cta {
    flex: 1 1 260px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.checkout-product-installation__price {
    font-size: 27px;
    font-weight: 500;
}

.checkout-product-installation__action {
    display: flex;
    align-items: center;
    border: 1px solid var(--livea-blue);
    background: var(--livea-blue);
    color: var(--livea-white);
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.checkout-product-installation__action:before {
    content: "\002B";
    margin-right: 10px;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
}

.checkout-product-installation__action:hover {

}

.checkout-product-installation__added {
    display: none;
}

.checkout-product-installation__added-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    color: var(--livea-gray-40);
    font-weight: 500;
    font-size: 13px;
}

.checkout-product-installation.is-added .checkout-product-installation__action {
    display: none;
}

.checkout-product-installation.is-added .checkout-product-installation__added {
    display: block;
}

.checkout-product-installation--readonly .checkout-product-installation__action {
    display: none;
}

.checkout-service-notification {
    display: none;
    width: 100%;
    background: #fde8ea;
    border: 1px solid #f3b5be;
    color: #a1283c;
    border-radius: 12px;
    padding: 16px 20px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: left;
}

.checkout-service-notification.is-visible {
    display: block;
}

.dealt-offer-popup {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1100;
}

.dealt-offer-popup.is-active {
    display: block;
}

body.dealt-offer-popup-open {
    overflow: hidden;
}

.dealt-offer-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 16, 43, 0.6);
}

.dealt-offer-popup__dialog {
    position: relative;
    max-width: 720px;
    margin: 80px auto;
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 30px 80px rgba(3, 5, 26, 0.35);
}

.dealt-offer-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    background: transparent;
    font-size: 26px;
    color: var(--livea-gray-60, #6b7280);
    cursor: pointer;
}

.dealt-offer-popup__content {
    display: flex;
    gap: 22px;
    /*flex-wrap: wrap;*/
}

.dealt-offer-popup__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.dealt-offer-popup__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.dealt-offer-popup__item {
    display: flex;
    gap: 12px;
}

.dealt-offer-popup__item-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--livea-blue-light, #e7f0ff);
    color: var(--livea-blue, #0065ff);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.dealt-offer-popup__item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.dealt-offer-popup__item-text {
    margin: 0;
    /*color: var(--livea-gray-60, #6b7280);*/
    line-height: 1.4;
}

.dealt-offer-popup__media {
    display: flex;
    flex: 1 1 220px;
    align-items: center;
    min-width: 220px;
}

.dealt-offer-popup__media-placeholder {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    background: radial-gradient(circle at top, rgba(255,255,255,0.6), rgba(0,101,255,0.2)), var(--livea-blue-dark, #06204a);
}

@media (max-width: 640px) {
    .dealt-offer-popup__dialog {
        margin: 32px 16px;
        padding: 24px;
    }

    .dealt-offer-popup__content {
        flex-direction: column;
    }
}
