.filters-section{
    background-color: var(--primary-color);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    color: var(--text-color);
}

.filters-grid{
    display: grid;
    grid-template-columns: 1fr;
    /* grid-template-columns: 2fr repeat(3, 1fr); */
    grid-template-rows: auto;
    gap: 20px;
}

.search-container{
    /* grid-column: 1fr; */
}

@media (min-width: 768px) {
    .filters-grid{
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

.form-control{

}

.filter-container{
}

.results-section{

}

.results-count{

}

.business-grid{
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    justify-items: center;
}

.business-card{
    display: flex;
    flex-direction: column;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    text-decoration: none;
    color: var(--text-color);
    width: 350px;
    /* add shadow */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.business-image{

}

.business-content{

}

.business-header{

}

h2.business-name{
    font-size: var(--font-size-lg);
    font-weight: bold;
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
}

h3.business-title{
    font-size: var(--font-size-sm);
    font-weight: normal;
    margin-bottom: var(--spacing-xs);
    color: var(--color-surface);
}

.business-description{
    font-size: var(--font-size-sm);
    line-height: 1.2;
}

.business-categories{
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.category-badge{
    background-color: var(--color-surface);
    color: var(--text-color);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    margin-right: var(--spacing-xs);
}

.subcategory-badge{
    background-color: var(--color-surface);
    color: var(--text-color);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    margin-right: var(--spacing-xs);
}

.business-details{

}

.detail-section{
    margin-top: 0;
    padding-top: var(--spacing-md);
    padding-bottom: 0;
}

h4.detail-title{
    font-size: var(--font-size-md);
    font-weight: bold;
    margin-bottom: 0;
    color: var(--text-color);
    margin-bottom: var(--spacing-xs);
}

.detail-content{
    color: var(--text-color);
    font-size: var(--font-size-sm);
    line-height: 1.2;
}

.schedule-list{
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.schedule-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs);
    border-radius: var(--border-radius);
    border: 1px dashed var(--border-color);
    font-size: var(--font-size-sm);
}

.schedule-day{

}

.schedule-hours{

}

.current-day{
    background-color: var(--color-surface);
}

.contact-list{

}

.contact-item{
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
}

.contact-type{

}

.contact-value{

}

.urls-list{
    display: flex;
    flex-direction: row;
    gap: var(--spacing-md);
}

.url-item{
    background-color: var(--color-surface);
    border-radius: var(--border-radius);
    padding: var(--spacing-sm);
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.url-item-content{

}

.url-description{

}

.url-link-text{

}

.no-results{

}
