/* ========================================================
   ОБЩИЕ СТИЛИ
======================================================== */

/* ======= Хлебные крошки (современный микс) ======= */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  margin-bottom: 30px;
  padding: 10px 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, #fafafa, #fff);
  border: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.3px;
}

.breadcrumbs a {
  color: #333;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.breadcrumbs a:hover {
  background-color: #f3f3f3;
  color: #000;
}

.breadcrumbs span {
  color: #999;
  font-weight: 500;
  margin: 0 6px;
}


/* Заголовок */
.salons-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

/* ========================================================
   СЛАЙДЕРЫ
======================================================== */

/* Контейнер слайдера */
.salons-slider,
.salon-gallery {
  width: 100%;
  padding: 20px 0 60px;
  position: relative;
}

/* Карточки салонов */
.salon-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.salon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.salon-card img {
  width: 100%;
  object-fit: cover;
  height: 200px;
  transition: transform 0.4s ease;
}
.salon-card img:hover {
  transform: scale(1.05);
}

.salon-card__body {
  padding: 15px;
  text-align: center;
}

.salon-card__title {
  font-size: 18px;
  margin: 12px 0 6px;
  color: #222;
}
.salon-card__address {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}
.salon-card .btn {
  background: #d62828;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}
.salon-card .btn:hover {
  background: #a61e1e;
}

/* ========================================================
   СТРЕЛКИ СЛАЙДЕРА
======================================================== */

/* Слайдер стрелки */
.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #d62828;
  color: #d62828;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #d62828;
  color: #fff;
  transform: scale(1.1);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

/* Пагинация */
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #d62828;
}

/* ========================================================
   ГАЛЕРЕЯ САЛОНА
======================================================== */

.salon-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.salon-gallery {
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.salon-gallery .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.salon-gallery .swiper-slide img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease;
}
.salon-gallery .swiper-slide img:hover {
  transform: scale(1.04);
}

/* ========================================================
   ЗАГОЛОВОК И АДРЕС САЛОНА
======================================================== */

.salon-info {
  text-align: center;
  margin-bottom: 20px;
}

.salons-title {
  font-size: 36px;
  font-weight: 800;
  color: #222;
  margin-bottom: 8px;
}

.salon-address {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

/* ========================================================
   КАРТА
======================================================== */

.salon-map {
  grid-column: 1 / -1;
  margin-top: 60px;
}
.salon-map h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

#map {
  width: 100%;
  min-height: 500px;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
#map:hover {
  transform: translateY(-3px);
}

/* ========================================================
   АДАПТИВ
======================================================== */

@media(max-width: 992px) {
  .salon-gallery {
    max-width: 100%;
  }

  .salon-gallery .swiper-slide img {
    aspect-ratio: 4/3;
  }

  #map {
    min-height: 400px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 36px;
    height: 36px;
    right: -15px;
    left: -15px;
  }
}

@media(max-width: 600px) {
  #map {
    min-height: 350px;
  }
}
