.category-image-list ul{
    display: grid;
    grid-gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 2rem;
}

.category-image-list li {
    display:flex;
    align-items: center;
    flex-direction: column;
    text-align: center;

    a{
        width:100%;
        height:100%;
        padding:1rem;
        border-radius:0.5rem;
        background: #FFF;
        display:flex;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 0 1rem rgba(0,0,0,0.15);
        min-height:150px;
        min-width:100px;

        img{
            max-height:100px;
            max-width:170px;
            margin-bottom:1rem;
        }

        h2{
            font-size:1rem;
            font-weight:bold;
            color:var(--bm-accent-color);
        }

    }
}

.wp-block-woocommerce-checkout {
    .wc-block-components-radio-control-accordion-content{
        > div{
           padding:1rem;
        }
    }
}

.alternative-products-add-to-cart{
    padding:1rem;
    background:var(--bm-light-bg-color);
    border-radius:0.5rem;
    .products-add-to-cart{
        max-height:0;
        overflow: hidden;
        transition:all 0.5s ease-in-out;
        .product-add-to-cart-row{
            display:flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            border-bottom:1px solid var(--bm-border-color);
            padding:0.75rem 0rem 0.75rem 0.5rem;

            .cart{
                margin:0;
            }
            h3{
                display:inline;
                font-size:1rem;
                font-weight: normal;
            }
        }

        .product-add-to-cart-row:last-child{
            border-bottom:none !important;
            padding-bottom:0;
        }

    }

    #show-alternatives:checked ~ .products-add-to-cart{
        max-height:2000px;
        transition:all 0.5s ease-in-out;
    }
}

.quantity-selector{
    input{
        background-color: #FFF;
    }
}

.logo-bar.bm-slider-block{
    .slider-container{
        gap:0;
    }
    .slider-item{
        gap:0;
        border-right:1px solid var(--bm-border-color);

        h3{
            font-weight:normal !important;
            color:#333;
        }

        .image-wrapper{
            background-color:#FFF;
            height:100px;
            align-items: center;
            justify-content: center;
            display:flex;
            padding:1rem;

            img {
                max-width:100%;
                height: auto;
                min-height:auto;
            }
        }
    }
    .slider-item:last-child{
        border-right:none;
    }
}

.entry-summary{
    margin-bottom:2rem;
}

.product-detail{
    .payment-icons{
        background: var(--bm-light-bg-color);
        padding: 1rem;
        border-radius: 0.5rem;

        li{
            background: #fff;
            border-radius: .25rem;
            width: 66px;
            height: 40px;
            padding: .35rem 0.45rem;;
            align-items: center;
            justify-content: center;
            img{
                height:100%;
            }
        }
    }
}

/* cellar search */
.header .main-container .searchform{
    overflow:visible;
}
.celersearch-autocomplete-wrapper{
    width:100%;
}
