/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 30 2026 | 18:22:52 */
/* CARD PRODUTO */
.woocommerce ul.products li.product {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.25s ease;

    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* MOBILE/TABLET mantém flex */
.woocommerce ul.products {
    display: flex;
    flex-wrap: wrap;
}

/* DESKTOP ALINHADO */
@media (min-width: 1025px) {
    .woocommerce ul.products {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .woocommerce ul.products li.product {
        width: 100% !important;
        margin: 0 !important;
        float: none !important;
        clear: none !important;
        min-height: 395px;
    }
}

/* HOVER SUAVE */
.woocommerce ul.products li.product:hover {
    border-color: #2b4ac5;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

/* IMAGEM */
.woocommerce ul.products li.product img {
    border-radius: 8px;
    margin-bottom: 10px;
}

/* DESKTOP - imagens padronizadas */
@media (min-width: 1025px) {
    .woocommerce ul.products li.product img {
        height: 180px;
        object-fit: contain;
        width: 100%;
    }
}

/* TÍTULO */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 13px;
    min-height: 44px;
}

/* PREÇO */
.woocommerce ul.products li.product .price {
    margin: 8px 0;
}

/* BOTÃO FIXO EMBAIXO */
.woocommerce ul.products li.product .button {
    margin-top: auto;
    border-radius: 6px;
    width: 100%;
}

/* REMOVE LINHA BUGADA DO BOTÃO */
.woocommerce ul.products li.product .added_to_cart {
    display: none;
}
/* MOBILE 2 COLUNAS */
@media (max-width: 768px) {

    .woocommerce ul.products {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .woocommerce ul.products li.product {
        width: 100% !important;
        margin: 0 !important;
    }

    /* Ajuste de imagem no mobile */
    .woocommerce ul.products li.product img {
        height: 120px;
        object-fit: contain;
    }

    /* Texto menor pra caber melhor */
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 12px;
        min-height: 38px;
    }

    /* Botão compacto */
    .woocommerce ul.products li.product .button {
        font-size: 12px;
        padding: 8px;
    }
}
@media (min-width: 1025px) {

    .woocommerce ul.products li.product {
        position: relative !important;
        padding-bottom: 65px !important; /* espaço pro botão */
        min-height: 420px !important;
    }

    /* PREÇO */
    .woocommerce ul.products li.product .price {
        position: absolute !important;
        bottom: 60px !important;
        left: 20px;
        right: 20px;
        margin: 0 !important;
        text-align: left;
    }

    /* BOTÃO */
    .woocommerce ul.products li.product .button,
    .woocommerce ul.products li.product a.button {
        position: absolute !important;
        bottom: 15px !important;
        left: 15px;
        right: 15px;
        width: auto !important;
        margin: 0 !important;
    }
}