.contacts-wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 1.5rem;
  gap: 2rem;
}

.salon {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 8px solid #d0c7b3;
  width: 100%;
}

.contacts-tabs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.city-btn {
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  background-color: #f4f1ec;
  color: #453b27;
  border-radius: 0.5rem;
  transition: all 0.3s;

  &.active,
  &:hover {
    background-color: #ffdb9b;
  }
}

.salon-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.salon-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.salon-label {
  font-size: 1.25rem;
  font-weight: 700;
}

.salon-text {
  line-height: 150%;
}

.salon-border {
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    rgba(255, 217, 163, 0.9) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
}

.salon-title {
  padding: 0.5rem 1rem;
  background: linear-gradient(
    84.98deg,
    rgba(176, 149, 100, 0.1377) 0.67%,
    rgba(255, 253, 246, 0.27) 69.26%
  );
}

.salon-content {
  display: grid;
  grid-template-columns: 420px 1fr;
  justify-content: space-between;
  gap: 1.5rem;
}

.salon-list {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.contacts-slider-wrapper {
  position: relative;
  min-height: 0px;
}

.contacts-slider {
  min-height: 0px;

  img {
    width: 100%;
  }
}

.salon-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0px;
}

@media all and (max-width: 1150px) {
  .salon-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media all and (max-width: 1023px) {
  .salon-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .salon-content {
    grid-template-columns: 1fr;
  }

  .salon-label {
    font-size: 1rem;
  }
}

@media all and (max-width: 767px) {
  .salon-list {
    display: flex;
    flex-direction: column;
  }

  .salon iframe {
    height: 280px;
    max-width: 100%;
  }

  .salon {
    padding: 1rem;
  }
}
