.search-page {
    margin-top: 30px;
    min-height: 100vh;
}

.container{
    width: 90%;
    margin: 0 auto;
    padding: 10px;
}

.search-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    margin-top: 20px;
}

/* FILTROS */
.search-filters {
    width: 260px;
    background: #ffffff;
    padding: 20px;
    border-radius: 4px;
}

.search-title {
    font-size: 18px;
    margin-bottom: 16px;
}

.search-group {
    margin-bottom: 20px;
}

.search-subtitle {
    font-size: 14px;
    margin-bottom: 10px;
}

.search-checkbox {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 8px;
}

.search-checkbox input {
    margin-right: 8px;
}

.search-select {
    width: 100%;
    padding: 8px;
    margin-top: 6px;
}

.search-btn {
    width: 100%;
    padding: 10px;
    background: #3483FA;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

/* RESULTADOS */
.search-results {
    flex: 1;
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.search-results-title {
    font-size: 20px;
}

.search-results-count {
    font-size: 14px;
    color: #666;
}

/* GRID */
.search-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* CARD */
.search-card {
    width: 20%;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.search-card:hover {
    border: 2px solid #3483FA;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.15); */
}

a.btn_view_product{
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #3483FA;
    margin-top: 10px;
}

.search-card-image {
    height: 160px;
    background: #e0e0e0;
}

.search-card-body {
    padding: 14px;
}

.search-price {
    font-size: 18px;
    font-weight: bold;
    color: #3483FA;
}

.search-name {
    font-size: 14px;
    margin: 8px 0;
}

.search-category {
    font-size: 13px;
    color: #666;
}

.search-distance {
    font-size: 13px;
    color: #00A650;
}

@media screen and (max-width: 764px){
    .search-card{
        width: 100%;
    }

    .search-filters {
        width: 100%;
        background: #ffffff;
        padding: 20px;
        border-radius: 4px;
    }

    .container{
        width: 100%;
        padding: 20px;
    }
}
