.product-decision-card .pool-product-bundle-block {
    margin: 12px 0 12px;
    padding: 10px;
    border: 1px solid #e6edf5;
    border-radius: 10px;
    background: #fafcff;
}

.product-decision-card .pool-product-bundle-heading {
    margin: 0 0 9px;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    color: #1f2e38;
}

.product-decision-card .pool-product-bundle-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.product-decision-card .pool-product-bundle-item {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.product-decision-card .pool-product-bundle-item__image {
    display: block;
    position: relative;
    height: 0;
    overflow: hidden;
    border: 1px solid #e6edf5;
    border-radius: 8px;
    background: #ffffff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.product-decision-card .pool-product-bundle-item:hover .pool-product-bundle-item__image,
.product-decision-card .pool-product-bundle-item.is-active .pool-product-bundle-item__image,
.product-decision-card .pool-product-bundle-item:focus-within .pool-product-bundle-item__image {
    border-color: #ff8b00;
    box-shadow: 0 0 0 1px rgba(255, 139, 0, 0.22);
}

.product-decision-card .pool-product-bundle-item__image > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #ffffff;
}

.product-decision-card .pool-product-bundle-item__name {
    margin: 6px 0 0;
    font-size: 11px;
    line-height: 1.32;
    min-height: 2.64em;
}

.product-decision-card .pool-product-bundle-item__name > a {
    color: #2a3945;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-decision-card .pool-product-bundle-item__name > a:hover,
.product-decision-card .pool-product-bundle-item__name > a:focus {
    color: #f1671e;
}

.product-decision-card .pool-product-bundle-item__price {
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}

.product-decision-card .pool-product-bundle-item__price-new {
    color: #f1671e;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    flex: 1 1 auto;
    min-width: 0;
}

.product-decision-card .pool-product-bundle-item__cart {
    border: 0;
    border-radius: 50%;
    background: #ff8b00;
    color: #ffffff;
    font-size: 0;
    width: 18px;
    height: 18px;
    padding: 0;
    min-width: 18px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.product-decision-card .pool-product-bundle-item__cart-icon {
    display: block;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    transform: translateY(-0.5px);
    pointer-events: none;
}

.product-decision-card .pool-product-bundle-item__cart:hover,
.product-decision-card .pool-product-bundle-item__cart:focus {
    background: #f1671e;
    color: #ffffff;
}

@media (max-width: 767px) {
    .product-decision-card .pool-product-bundle-block {
        margin-top: 10px;
        padding: 8px;
    }

    .product-decision-card .pool-product-bundle-heading {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .product-decision-card .pool-product-bundle-grid {
        gap: 6px;
    }

    .product-decision-card .pool-product-bundle-item__name {
        font-size: 10px;
    }

    .product-decision-card .pool-product-bundle-item__price-new {
        font-size: 12px;
    }

    .product-decision-card .pool-product-bundle-item__cart {
        width: 17px;
        height: 17px;
        min-width: 17px;
    }

    .product-decision-card .pool-product-bundle-item__cart-icon {
        font-size: 10px;
        transform: translateY(-0.5px);
    }
}
