.offerlift--bundle .offerlift-card--offer {
    grid-template-columns: var(--offerlift-radio-size) minmax(0, 1fr) auto;
    align-items: start;
}

.offerlift--bundle .offerlift-card--offer > .offerlift-product-image {
    display: none;
}

.offerlift--bundle .offerlift-card--offer > .offerlift-radio {
    align-self: center;
}

.offerlift--bundle .offerlift-card--offer > .offerlift-copy {
    align-self: center;
}

.offerlift--bundle .offerlift-card--offer > .offerlift-offer-summary {
    align-self: center;
}

.offerlift-bundle-products {
    grid-column: 2 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr);
    align-items: stretch;
    width: 100%;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(42, 116, 118, .25);
}

.offerlift-bundle-product {
    display: grid;
    grid-template-rows: var(--offerlift-image-size) 2.5em auto auto;
    justify-items: center;
    align-content: start;
    gap: 5px;
    min-width: 0;
    padding: 0 12px;
    color: var(--offerlift-title-color);
    text-align: center;
}

.offerlift-card.is-selected .offerlift-bundle-product {
    color: var(--offerlift-selected-text);
}

.offerlift-bundle-product strong {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-width: 0;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow-wrap: anywhere;
    word-break: break-word;
    color: inherit;
    font-size: max(14px, calc(var(--offerlift-title-size) * .76));
    font-weight: var(--offerlift-title-weight);
    line-height: 1.25em;
}

.offerlift-bundle-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--offerlift-image-size);
    height: var(--offerlift-image-size);
    overflow: hidden;
    border-radius: var(--offerlift-image-radius);
    background: var(--offerlift-image-background);
}

.offerlift-bundle-image img {
    display: block;
    width: var(--offerlift-image-size) !important;
    height: var(--offerlift-image-size) !important;
    max-width: none !important;
    object-fit: contain;
}

.offerlift-bundle-quantity {
    color: var(--offerlift-description-color);
    font-size: 12px;
    line-height: 1.2;
}

.offerlift-bundle-reference-price {
    color: var(--offerlift-price-color);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}

.offerlift-bundle-reference-price ins {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
}

.offerlift-bundle-reference-price del {
    display: block;
    color: var(--offerlift-old-price-color);
    font-size: 12px;
}

.offerlift-bundle-plus {
    align-self: center;
    justify-self: center;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--offerlift-selected-border);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

@media (max-width: 600px) {
    .offerlift--bundle .offerlift-card--offer {
        grid-template-columns: 20px minmax(0, 1fr);
    }

    .offerlift--bundle .offerlift-card--offer > .offerlift-copy,
    .offerlift--bundle .offerlift-card--offer > .offerlift-offer-summary {
        grid-column: 2;
    }

    .offerlift-bundle-products {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .offerlift-bundle-product {
        padding: 8px 0;
    }

    .offerlift-bundle-plus {
        transform: rotate(90deg);
    }
}
