.bundle-products__wrapper {
    clear: both;
    min-width: 0;
    box-sizing: border-box;
    padding: 10px;
    margin: 25px 0 20px;
    border: 1px solid #e7e7e7;
    border-radius: 5px;
}

.bundle-products__wrapper h4 {
    margin: 6px 0 20px;
    font-size: 20px;
    font-weight: 500;
}

.bundle-products__list-container {
    position: relative;
    overflow: visible;
}

.bundle-products__list-items {
    width: 100%;
    min-width: 0;
}

.bundle-products__header,
.bundle-products__item {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(32px, .5fr);
    gap: 10px;
    align-items: center;
    text-align: center;
}

.bundle-products__header > *,
.bundle-products__item > * {
    min-width: 0;
}

.bundle-products__header {
    color: #7e7e7e;
    font-size: 11px;
    font-weight: 400;
}

.bundle-products__header > div:first-child,
.bundle-products__item > div:first-child {
    text-align: left;
}

.bundle-products__item {
    padding: 12px 0;
    border-top: 1px solid #e7e7e7;
}

.bundle-products__item > a {
    color: inherit;
    text-decoration: none;
}

.bundle-products__item > a:hover,
.bundle-products__item > a:focus {
    color: #f18300;
    text-decoration: none;
}

.bundle-products__info {
    display: flex;
    width: auto;
    max-width: 100%;
    align-items: center;
    text-align: left;
}

.bundle-products__image {
    display: flex;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.bundle-products__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bundle-products__title,
.bundle-products__price,
.bundle-products__unit-price {
    font-weight: 600;
}

.bundle-products__discount span {
    display: inline-block;
    min-width: 42px;
    padding: 0 12px;
    border-radius: 50px;
    background: #ffead0;
    font-style: normal;
    line-height: 30px;
}

.bundle-products__unit-price {
    color: #f18300;
}

.bundle-products__action {
    display: flex;
    justify-content: center;
}

.bundle-products__add-to-cart {
    display: inline-flex;
    width: 100%;
    min-height: 40px;
    margin-left: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.bundle-products__add-to-cart img {
    width: 24px;
    height: 24px;
}

.bundle-products__add-to-cart:hover,
.bundle-products__add-to-cart:focus {
    background: transparent;
}

.bundle-products__stock-badge {
    display: inline-block;
    max-width: 100%;
    padding: 4px 8px;
    border-radius: 4px;
    background: #d93025;
    color: #fff;
    font-size: 11px;
    line-height: 1.2;
}

@media (max-width: 600px) {
    .bundle-products__wrapper { padding: 8px; }
    .bundle-products__wrapper h4 { font-size: 18px; }
    .bundle-products__header,
    .bundle-products__item {
        grid-template-columns: minmax(0, .8fr) minmax(0, .9fr) repeat(2, minmax(0, 1fr)) minmax(28px, .5fr);
        gap: 4px;
    }
    .bundle-products__header {
        font-size: 10px;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }
    .bundle-products__header > div:first-child { text-align: center; }
    .bundle-products__info {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .bundle-products__image { width: 32px; height: 32px; }
    .bundle-products__title,
    .bundle-products__price,
    .bundle-products__unit-price {
        max-width: 100%;
        font-size: 12px;
        line-height: 1.3;
        overflow-wrap: anywhere;
    }
    .bundle-products__discount span {
        min-width: 0;
        padding: 0 4px;
        font-size: 11px;
        line-height: 24px;
    }
    .bundle-products__stock-badge {
        padding: 4px 2px;
        font-size: 10px;
        overflow-wrap: anywhere;
    }
}

/* Override legacy compiled rules while only this asset is published. */
.bundle-products__list-container { touch-action: auto; overscroll-behavior: auto; }
.bundle-products__list-items { transform: none; transition: none; }
.bundle-products__header > div:first-child { width: auto; }
.bundle-products__stock-badge { box-sizing: border-box; }
