/**
 * Sale products shortcode layout helpers (align with Woo Product Collection block).
 */

.bow24fse-sale-products {
    width: 100%;
    margin: 0 auto;
}

.bow24fse-sale-products .wp-block-woocommerce-product-template {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(16px, 1.5vw, 24px);
}

.bow24fse-sale-products .wc-block-components-product-image {
    position: relative;
    margin: 0;
    border-radius: 0px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f6f7fa;
}

.bow24fse-sale-products .wc-block-components-product-image a,
.bow24fse-sale-products .wc-block-components-product-image img {
    display: block;
    width: 100%;
    height: 100%;
}

.bow24fse-sale-products .wc-block-components-product-image img {
    object-fit: cover;
    object-position: center;
}

.bow24fse-sale-products .wp-block-woocommerce-product-price {
    margin: 0px auto;
    text-align: center;
}

.bow24fse-sale-products .wc-block-components-product-price {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    font-size: 18px;
    font-weight: 600;
    flex-wrap: wrap;
}

.bow24fse-sale-products .wc-block-components-product-price .woocommerce-Price-amount {
    font-size: 20px;
    font-weight: 700;
}

.bow24fse-sale-products .wc-block-components-product-price .from {
    font-weight: 600;
    color: #000;
    margin-right: 2px;
}

.bow24fse-sale-products .wc-block-components-product-price del {
    opacity: 0.7;
    font-size: 12px;
}

.bow24fse-sale-products .wc-block-components-product-price del .woocommerce-Price-amount {
    font-size: 12px;
    font-weight: 600;
    position: relative;

    color: #000;
}
.bow24fse-sale-products .wc-block-components-product-price del .woocommerce-Price-amount:before {
background-color: #000;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 9px; 
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
    width: 100%;
}
.bow24fse-sale-products .wc-block-components-product-price ins {
    text-decoration: none;
    color: #d92a2a;
}

.bow24fse-sale-products .wc-block-components-product-price ins .woocommerce-Price-amount {
    color: inherit;
    font-size: 16px;
}



@media (max-width: 600px) {
    .bow24fse-sale-products .wp-block-woocommerce-product-template {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}
