.hw-product-page-cross-sells-wrapper label {
    width: 100%;
}

.hw-product-page-cross-sells-heading {
    font-size: 14px;
    margin-bottom: 4px;
    margin-top: 4px;
}

.hw-product-page-cross-sell-item {
    background-color: #F9F9FF;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    gap: 12px;
    border:2px solid;
    border-color: transparent;
    transition: border-color var(--transition-short), background-color var(--transition-short);

    &:has(.hw-product-page-cross-sell-checkbox:checked) {
        border-color: var(--bat-color-primary);
        background-color: #eefff8;
    }

    & input {
        flex-shrink: 0;
        background-color: white;
    }

    & .hw-product-page-cross-sell-title {
        font-size: 14px;
        font-family: 'poppins', sans-serif;
        margin-bottom: 2px;
    }

    & .hw-product-page-cross-sell-short-description {
        display: block;
        font-size: 13px;
    }

    & img {
        max-width: 75px;
        max-height: max-content;
    }

    & .hw-product-page-cross-sell-price {
        text-align: right;
        flex-grow: 1;
        display: flex;
        justify-content: flex-end;

        & .woocommerce-Price-amount {
            margin-top: auto;
            font-size: 14px;
        }
    }
}