/* Стили для карты филиалов */
	.branches-map-section {
		padding: 60px 0;
		background: #f8f9fa;
	}

	.branches-map__title {
		text-align: center;
		margin-bottom: 40px;
		font-size: 32px;
		font-weight: 600;
		color: #37363c;
	}

	.branches-map__container {
		border-radius: 12px;
		overflow: hidden;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	}

	.branches-map__map {
		width: 100%;
		height: 500px;
		min-height: 500px;
	}

	.branches-list {
		background: white;
		border-radius: 12px;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
		overflow: hidden;
	}

	.branches-list__header {
		background: #a30041;
		color: white;
		padding: 20px;
		text-align: center;
	}

	.branches-list__header h3 {
		margin: 0;
		font-size: 20px;
		font-weight: 600;
	}

	.branches-list__content {
		max-height: 440px;
		overflow-y: auto;
		padding: 20px;
	}

	.branch-list-item {
		padding: 15px;
		border-bottom: 1px solid #e5e5ed;
		cursor: pointer;
		transition: all 0.3s ease;
		border-radius: 8px;
		margin-bottom: 10px;
	}

	.branch-list-item:hover {
		background: #f5f5f7;
		transform: translateY(-2px);
	}

	.branch-list-item:last-child {
		border-bottom: none;
		margin-bottom: 0;
	}

	.branch-list-item.active {
		background: #fff3f6;
		border-color: #a30041;
	}

	.branch-list-item h4 {
		margin: 0 0 8px 0;
		font-size: 16px;
		font-weight: 600;
		color: #37363c;
	}

	.branch-list-item p {
		margin: 0 0 12px 0;
		font-size: 14px;
		color: #666;
		line-height: 1.4;
	}

	.branch-nav-buttons {
		display: flex;
		gap: 8px;
		flex-wrap: wrap;
	}

	.btn-nav {
		padding: 8px 12px;
		border: none;
		border-radius: 6px;
		font-size: 12px;
		font-weight: 500;
		cursor: pointer;
		transition: all 0.3s ease;
		text-decoration: none;
		display: inline-flex;
		align-items: center;
		gap: 4px;
	}

	.btn-yandex {
		background: #ffcc00;
		color: #000;
	}

	.btn-yandex:hover {
		background: #e6b800;
		color: #000;
	}

	.btn-google {
		background: #4285f4;
		color: white;
	}

	.btn-google:hover {
		background: #3367d6;
		color: white;
	}

	/* Стили для обновленного списка филиалов */
	.branches-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 20px;
		margin-top: 20px;
	}

	.branch-item {
		background: white;
		border-radius: 12px;
		padding: 20px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		transition: all 0.3s ease;
	}

	.branch-item:hover {
		transform: translateY(-5px);
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	}

	.branch-item__content {
		display: flex;
		align-items: flex-start;
		gap: 15px;
	}

	.branch-item .icon-marker {
		color: #a30041;
		font-size: 24px;
		margin-top: 5px;
	}

	.branch-item__info h4 {
		margin: 0 0 10px 0;
		font-size: 18px;
		font-weight: 600;
		color: #37363c;
	}

	.branch-item__info p {
		margin: 0 0 15px 0;
		color: #666;
		line-height: 1.5;
	}

	.branch-item__actions {
		display: flex;
		gap: 10px;
		flex-wrap: wrap;
	}

	.btn-location,
	.btn-navigate {
		padding: 8px 16px;
		border: none;
		border-radius: 6px;
		font-size: 14px;
		font-weight: 500;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.btn-location {
		background: #a30041;
		color: white;
	}

	.btn-location:hover {
		background: #8a0037;
	}

	.btn-navigate {
		background: #f5f5f7;
		color: #37363c;
		border: 1px solid #e5e5ed;
	}

	.btn-navigate:hover {
		background: #37363c;
		color: white;
	}

	@media (max-width: 991px) {
		.branches-map-section {
			padding: 40px 0;
		}

		.branches-map__title {
			font-size: 28px;
			margin-bottom: 30px;
		}

		.branches-map__map {
			height: 400px;
			margin-bottom: 30px;
		}

		.branches-grid {
			grid-template-columns: 1fr;
			gap: 15px;
		}

		.branch-item__actions {
			flex-direction: column;
		}

		.btn-location,
		.btn-navigate {
			width: 100%;
			text-align: center;
		}
	}