/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/
/* custom-cross-sells.css */

/* custom-cross-sells.css */

.widget.cross-sells {
    margin-top: 20px;
}

.widget.cross-sells h2 {
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
}

.cross-sells-products {
    display: flex;
    flex-direction: column; /* Один товар под другим */
    gap: 20px; /* Отступ между товарами */
}

.cross-sells-products .product {
    box-sizing: border-box;
}

.cross-sells-products .product h3 {
    font-size: 12px; /* Изменение размера шрифта названия товара */
}

.cross-sells-products .product .add_to_cart_button {
    margin-top: 10px; /* Отступ для кнопки "Добавить в корзину" */
}

.related-mini-cart-products ul li {
    display: flex;
    gap: 15px;
}
.related-product-image {
    height: 100px;
    width: 70px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.related-product-image img {
    height: 100%;
    width: auto;
    max-width: auto;
}