/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 02 2026 | 22:05:19 */
/* ================================
   2- FILTRO DE PREÇO
   ================================ */

/* Centralizar o conteúdo do Widget */
.widget_price_filter {
    text-align: center !important;
}

/* Centralizar o título */
.widget_price_filter .widget-title {
    text-align: center;
    width: 100%;
}

/* Centralizar a barra (slider) */
.widget_price_filter .price_slider_wrapper {
    margin: 0 auto;
    padding: 10px 15px; /* Espaçamento lateral para a barra não tocar nas bordas */
}

/* Ajustar o contentor do preço e botão para o centro */
.widget_price_filter .price_slider_amount {
    display: flex !important;
    flex-direction: column-reverse !important; /* Mantém o botão em baixo */
    align-items: center !important; /* Centraliza horizontalmente no eixo flex */
    justify-content: center !important;
    gap: 15px;
    margin-top: 15px;
}

/* Ajustar a largura do botão se necessário (opcional) */
.widget_price_filter .button {
    width: auto !important;
    min-width: 120px; /* Define uma largura mínima para o botão ficar elegante */
    margin: 0 auto !important;
}

/* Cores que definimos anteriormente (mantidas) */
.widget_price_filter .ui-slider .ui-slider-range,
.widget_price_filter .ui-slider .ui-slider-handle {
    background-color: #003399 !important;
}

.widget_price_filter .button {
    background-color: #003399 !important;
    color: #ffffff !important;
    border: 1px solid #003399 !important;
    transition: all 0.3s ease;
}

.widget_price_filter .button:hover {
    background-color: #ffffff !important;
    color: #003399 !important;
    border: 1px solid #003399 !important;
}