/* CF Peptide — Mobile Product Grid Fix v2.1 - Deployed via Kadence */

/* Hide empty Kadence sections */
.kb-row-layout-id13_d00ffe-38,
.kb-row-layout-id13_cdb9ee-de {
    display: none !important;
}

.kadence-column13_f366e5-a1 > .kt-inside-inner-col:empty,
.kadence-column13_d2c277-63 > .kt-inside-inner-col:empty {
    display: none !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Equalize product card heights */
.products li.product,
ul.products li.product {
    display: flex !important;
    flex-direction: column !important;
    height: 100%;
    padding: 16px 12px !important;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* Wishlist button above image */
.products li.product .stw-wishlist-button-container,
.products li.product .yith-wcwl-add-to-wishlist,
.products li.product .tinv-wraper.tinv-wishlist,
.products li.product .ti-wishlist-wrapper {
    position: static !important;
    order: -1;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    text-align: center;
}

/* Product image - square aspect ratio */
.products li.product .woocommerce-loop-product__link {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 240px;
    margin: 0 auto 12px auto;
    overflow: hidden;
}

.products li.product a img,
.products li.product .woocommerce-loop-product__link img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

/* Hide Learn More links */
.products li.product > a[href="#"],
.products li.product a[href="#"]:not(.button):not(.add_to_cart_button) {
    display: none !important;
}

/* Product title - fixed height */
.products li.product .woocommerce-loop-product__title {
    font-size: 16px !important;
    line-height: 1.35 !important;
    min-height: 66px !important;
    max-height: 66px;
    overflow: hidden;
    margin: 8px 0 !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Price consistent */
.products li.product .price {
    text-align: center;
    margin: 8px 0 12px 0 !important;
    font-size: 16px;
    font-weight: 600;
    min-height: 24px;
}

/* Add to cart button bottom */
.products li.product .button,
.products li.product a.add_to_cart_button {
    display: block !important;
    width: 100% !important;
    margin-top: auto !important;
    text-align: center;
    padding: 10px !important;
}

/* MOBILE - single column */
@media (max-width: 600px) {
    ul.products, .products {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .products li.product {
        width: 100% !important;
    }
    .products li.product .woocommerce-loop-product__link {
        max-width: 320px !important;
    }
    .products li.product .woocommerce-loop-product__title {
        font-size: 18px !important;
        min-height: auto !important;
    }
}

/* TABLET - 2 columns */
@media (min-width: 601px) and (max-width: 900px) {
    ul.products, .products {
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
    }
}
