.cc-locations {
  --cc-card-bg: #fff;
  --cc-text: #3b2b1e;
  --cc-muted: rgba(43, 36, 32, 0.7);
  --cc-border: rgba(43, 36, 32, 0.18);
  --cc-radius: 18px;
  --cc-gap: 18px;
  position: relative;
}
.cc-locations__swiper .swiper-slide {
  height: auto;
  display: flex;
}
.dots-container {
  display: flex;
  width: 100%;
}
.cc-locations__dots {
  margin: 32px auto 0;
  display: inline-flex;
  gap: 5px;
  background: rgba(238, 221, 204, 0.6);
  padding: 10px 10px;
  border-radius: 999px;
  position: unset !important;
  width: unset !important;
  left: unset !important;
  top: unset !important;
}

.cc-locations__dots .swiper-pagination-bullets {
  display: inline-flex;
  padding: 8px 16px;
  background: rgba(238, 221, 204, 0.6);
  border-radius: 999px;
}
.cc-locations__dots .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #62462987;
  opacity: 1;
}

.cc-locations__dots .swiper-pagination-bullet-active {
  background: #fff;
}

.cc-locations__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 65px;
}

.cc-locations__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.02em;
}

.cc-locations__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    opacity 0.12s ease;
  background: transparent;
  border-color: #8b6749;
  color: #8b6749 !important;
}
.cc-locations__all:hover {
  transform: translateY(-1px);
}

.cc-locations__slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 24px;
  padding-right: 24px;
}

.cc-locations__swiper {
  width: 100%;
}

.cc-locations__card {
  background: var(--cc-card-bg);
  border-radius: var(--cc-radius);
  padding: 36px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 768px) {
  .cc-locations__card {
    padding: 20px 20px;
  }
}

.cc-locations__pin {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cc-muted);
  border: 1px solid rgba(43, 36, 32, 0.12);
  font-size: 20px;
}
.location-logo {
  width: 32px;
  height: 32px;
  margin: 0 auto;
}

.cc-locations__name {
  margin: 24px 0px 16px 0px;
  font-size: 28px;
  color: var(--cc-text);
}
.cc-locations__address {
  color: #5b4c40;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.cc-locations__book {
  display: inline-block;
  margin-top: 26px;
  color: #8a5a3b;
  text-decoration: underline;
  font-weight: 600;
}

.cc-locations__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--cc-muted);
}
@media (min-width: 1201px) {
  .cc-locations__nav--prev {
    left: -15px;
  }
  .cc-locations__nav--next {
    right: -15px;
  }
}
@media (max-width: 1200px) {
  .cc-locations__nav--prev {
    left: -10px;
  }
  .cc-locations__nav--next {
    right: -10px;
  }
}
@media (max-width: 768px) {
  .cc-locations__header {
    flex-direction: column;
    align-items: center;
  }
  .cc-locations__all {
    display: none;
  }
  .cc-locations__nav {
    width: 40px;
    height: 40px;
  }
}
.cc-locations {
  overflow: visible;
}
.cc-locations__slider {
  overflow: visible;
}
@media (min-width: 769px) {
  .button-mobile-container,
  .cc-locations__all.mobile {
    display: none;
  }
}
.cc-locations__all.mobile {
  display: flex;
  margin: 32px auto 0;
}
