/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jan 18 2025 | 01:53:09 */
ul.products li.product {
    padding: 0px 0px 18px 0px!important;
}




li.product .button:hover {
    color:FFF!important;
}

.woocommerce .woocommerce-ordering {
    margin: 0 0 3em!important;
}


h2.woocommerce-loop-product__title{
    padding-left: 10px!important;
    padding-right: 10px!important;
}



/* Estilo geral do formulário */
form.woocommerce-ordering {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 20px;
}

/* Estilo do select */
form.woocommerce-ordering select.orderby {
    appearance: none; /* Remove o estilo padrão do navegador */
    -webkit-appearance: none; /* Compatibilidade com navegadores WebKit */
    -moz-appearance: none; /* Compatibilidade com Firefox */
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 40px 10px 15px; /* Espaço extra para o ícone */
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

/* Seta customizada para o select */
form.woocommerce-ordering {
    position: relative;
}

form.woocommerce-ordering::after {
    content: '▼'; /* Ícone de seta */
    font-size: 12px;
    color: #865EA7;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Alterar estilo ao passar o mouse */
form.woocommerce-ordering select.orderby:hover {
    border-color: #865EA7;
    background-color: #f0f0f0;
}

/* Foco no select */
form.woocommerce-ordering select.orderby:focus {
    outline: none;
    border-color: #865EA7;
    box-shadow: 0 0 5px rgba(134, 94, 167, 0.5);
}

/* Para dispositivos menores */
@media screen and (max-width: 480px) {
    form.woocommerce-ordering select.orderby {
        font-size: 12px;
        padding: 8px 35px 8px 10px; /* Ajuste para telas menores */
    }

    form.woocommerce-ordering::after {
        font-size: 10px; /* Seta menor em dispositivos menores */
    }
}










/* Estilo para o item do produto */
li.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 15px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Alterar estilo ao passar o mouse */
li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

/* Centralizar o título */
li.product h2.woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
    color: #333;
}

/* Aumentar e centralizar o preço */
li.product .price {
    font-size: 18px;
    font-weight: bold;
    color: #865EA7;
    margin: 10px 0;
}

/* Centralizar o botão */
li.product .button {
    display: inline-block;
    background-color: #865EA7;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    margin-top: 10px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

/* Alterar estilo do botão ao passar o mouse */
li.product .button:hover {
    background-color: #6c4797;
    transform: scale(1.05);
}
