h1 {
	margin-bottom: 30px;
}

/* Фильтр */
.salons-filter {
	margin-bottom: 30px;
}

.salons-filter__form {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
}

.salons-filter__select {
	flex: 1;
	min-width: 250px;
	padding: 12px 16px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 16px;
	background: white;
	cursor: pointer;
}

.salons-filter__button {
	padding: 12px 24px;
	background: #febf00;
	color: #000;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	/* font-weight: 600; */
	cursor: pointer;
	transition: background 0.2s;
}

.salons-filter__button:hover {
	background: #febf00;
}
/* Обертка селекта */
.salons-filter__select-wrapper {
    position: relative;
    flex: 1;
	max-width: 300px;
}

/* Основной контейнер Choices */
.salons-filter__choices {
    width: 100%;
    margin: 0;
    font-size: 16px;
}

/* Внутренний контейнер */
.salons-filter__choices .choices__inner {
    min-height: 45px;
    padding: 8px 15px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.salons-filter__choices .choices__inner:hover {
    border-color: #2196F3;
}

/* Открытое состояние */
.salons-filter__choices.is-open .choices__inner {
    border-color: #2196F3;
    border-radius: 4px 4px 0 0;
    box-shadow: 0 0 5px rgba(33, 150, 243, 0.3);
}

/* Выпадающий список */
.salons-filter__choices .choices__list--dropdown {
    border: 2px solid #2196F3;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    margin-top: -2px;
    background: white;
    z-index: 1000;
}

/* Поле поиска в выпадающем списке */
.salons-filter__choices .choices__list--dropdown .choices__input {
    padding: 12px 15px !important;
    border-bottom: 1px solid #eee !important;
    background: #f9f9f9;
    font-size: 15px;
    width: 100%;
}

.salons-filter__choices .choices__list--dropdown .choices__input:focus {
    background: white;
    outline: none;
    border-bottom-color: #2196F3 !important;
}

/* Список городов */
.salons-filter__choices .choices__list--dropdown .choices__list {
    max-height: 300px;
}

/* Элементы списка */
.salons-filter__choices .choices__list--dropdown .choices__item {
    padding: 12px 15px;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.salons-filter__choices .choices__list--dropdown .choices__item:last-child {
    border-bottom: none;
}

/* Ховер эффект */
.salons-filter__choices .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background: #e3f2fd;
    color: #1976D2;
}

/* Выбранный элемент */
.salons-filter__choices .choices__list--single .choices__item {
    color: #333;
    line-height: 1.4;
}

/* Плейсхолдер */
.salons-filter__choices .choices__placeholder {
    color: #999;
    opacity: 1;
}

/* Сообщение когда ничего не найдено */
.salons-filter__choices .choices__list--dropdown .choices__item.choices__item--choice.choices__placeholder {
    color: #999;
    text-align: center;
    font-style: italic;
}

/* Анимация появления */
@keyframes choicesFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.salons-filter__choices .choices__list--dropdown {
    animation: choicesFadeIn 0.2s ease;
}

/* Контейнер салонов */
.salons-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 24px;
	margin-top: 30px;
}

/* Карточка салона */
.salon-card {
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.salon-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.salon-card__logo {
	max-width: 120px;
	height: auto;
	margin-bottom: 16px;
}

.salon-card__name {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #1a1a1a;
	line-height: 1.4;
}
.salon-card__map {
	font-size: 12px;
	font-weight: 400;
	color: #666;
	margin-left: 8px;
	text-decoration: underline;
}
.salon-card__map:hover {
	color: red;
}

.salon-card__number {
	font-size: 14px;
	font-weight: 400;
	color: #666;
	margin-left: 8px;
}
.salon-card__map_link {
	color: red;
}
.salon-card__badge {
	display: inline-block;
	background: #10b981;
	color: white;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 16px;
	align-self: flex-start;
}

.salon-card__info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	color: #666;
	font-size: 14px;
	margin-bottom: 16px;
}

.salon-card__info-item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.salon-card__phone {
	display: inline-block;
	margin-top: auto;
	padding: 12px 20px;
	background: #f8f8f8;
	color: #1a1a1a;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	text-align: center;
	transition: background 0.2s;
}

.salon-card__phone:hover {
	background: #e8e8e8;
}

@media (max-width: 768px) {
    .salons-filter__form {
        flex-direction: column;
        padding: 15px;
    }
    
    .salons-filter__select-wrapper {
        width: 100%;
        min-width: 100%;
    }
    
    .salons-filter__button {
        width: 100%;
        padding: 12px 25px;
    }
    
    .salons-filter__choices .choices__inner {
        min-height: 50px;
        padding: 10px 15px;
    }
    
    .salons-filter__choices .choices__list--dropdown .choices__item {
        padding: 15px;
        font-size: 16px;
    }
}