@import url("./reset.css");
@import url("./variables.css");
@import url("./layout.css");

.main {
  display: flex;
  align-items: start;
  gap: 32px;
}

.sidebar {}

.category__title {
  font-size: 18px;
  font-weight: 700;
}

.category__list {
  margin-top: 12px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.category__list li a {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 640px) {
  .main {
    flex-direction: column;
    gap: 20px;
  }

  .category__list {
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .main {
    gap: 16px;
  }
  
  .category__title {
    font-size: 16px;
  }
  
  .category__list {
    gap: 8px;
    margin-top: 8px;
  }
  
  .category__list li a {
    font-size: 13px;
  }
}

.content {
  flex: 1;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.content__inner {
  display: flex;
  align-items: start;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.images {
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.images img {
  border-radius: 12px;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 890px) {
  .content__inner {
    flex-direction: column;
  }
}

.info {
  flex: 1;
  font-size: 20px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  word-wrap: break-word;
}

@media (max-width: 950px) {
  .info {
    font-size: 16px;
  }
}

@media (max-width: 890px) {
  .info {
    margin-top: 80px;
  }
}

@media (max-width: 480px) {
  .content__inner {
    gap: 16px;
  }
  
  .info {
    margin-top: 24px;
    font-size: 14px;
  }
  
  .name {
    font-size: 24px;
  }
  
  .phone p {
    font-size: 13px;
  }
  
  .phone-btns {
    gap: 8px;
  }
  
  .phone-btns button {
    min-height: 44px;
    font-size: 13px;
  }
  
  .checks {
    font-size: 16px;
  }
  
  .about__title,
  .prices__title,
  .data__title {
    font-size: 22px;
    margin-top: 20px;
  }
  
  .data__lists {
    gap: 16px;
  }
  
  .prices__list {
    gap: 10px;
  }
  
  .prices-1,
  .prices-2 {
    padding: 10px;
    font-size: 14px;
  }
  
  .images {
    width: 100%;
    max-width: 100%;
  }
  
  .images .mySwiper2 {
    height: 350px;
  }
  
  .images .mySwiper {
    height: 80px;
  }
}

@media (max-width: 320px) {
  .info {
    font-size: 13px;
  }
  
  .name {
    font-size: 20px;
  }
  
  .about__title,
  .prices__title,
  .data__title {
    font-size: 20px;
    margin-top: 16px;
  }
  
  .images .mySwiper2 {
    height: 300px;
  }
  
  .images .mySwiper {
    height: 70px;
  }
}

.name {
  font-size: 32px;
  font-weight: 700;
}

.phone {
  margin-top: 12px;
}

.phone p {
  opacity: .7;
  font-size: 14px;
}

.phone-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
  box-sizing: border-box;
}

.phone-btns .telegram,
.phone-btns .whatsapp {
  background: transparent;
  border: 1px solid #8200DB;
  transition: background .1s ease-in-out;
}

.phone-btns .telegram:hover,
.phone-btns .whatsapp:hover {
  background: #8200DB;
  border: 1px solid #8200DB;
}

.checks {
  font-size: 18px;
  margin: 12px 0;
  font-weight: 600;
}

.checks svg {
  display: inline;
}

.about {}

.about__title,
.prices__title,
.data__title {
  font-size: 32px;
  font-weight: 700;
  margin-top: 24px;
}

.about p {}

.data__lists {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 500px) {
  .data__lists {
    display: block;
  }
}

.data__list-1,
.data__list-2 {
  flex: 1
}


.data__list-1 p,
.data__list-2 p {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  color: #ffffff80;
}

.data__list-1 span,
.data__list-2 span {
  color: #ffffff;
  font-weight: 700;
}

/* PRICES */
.prices {}

.prices__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 1280px) {
  .prices__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}

.prices-1,
.prices-2 {
  background: var(--input-bg);
  border: 1px solid #8200DB70;
  border-radius: 12px;
  padding: 12px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prices-1 span,
.prices-2 span {
  font-weight: 700;
}

/* SWIPER */
.images {
  position: relative;
  width: 300px;
  height: 500px;
}

@media (max-width: 640px) {
  .images {
    margin: 0 auto;
  }
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.images .mySwiper2 {
  width: 100%;
  height: 450px;
  margin-left: auto;
  margin-right: auto;
}

.images .mySwiper {
  width: 100%;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper {
  margin-top: 12px;
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SIMILAR GIRLS */
.similarGirls {
  position: relative;
  margin-bottom: 24px;
}

.girl {
  background: var(--girl-bg);
  border: 1px solid #8200DB70;
  padding: 12px;
  border-radius: 12px;
}

.girl__name {}

.girl__name-link {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  border-bottom: 1px solid #8200DB70;
}

.girl__content {
  display: flex;
  align-items: stretch;
  /* align-items: start; */
  gap: 12px;
}

.girl__img-link {
  display: block;
  width: 50%;
  height: 200px;
  /* фиксируем высоту */
  overflow: hidden;
}

.girl__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* подрезает изображение, сохраняя пропорции */
  border-radius: 12px;
}

.girl__info {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  font-size: 14px;
}

.girl__info-location {
  font-weight: 700;
  text-align: end;
}

.girl__info-params {}

.girl__info-params p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.girl__info-params p span {
  font-weight: 700;

}

.girl__info-prices {}

.girl__info-prices p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.girl__info-prices p span {
  font-weight: 700;
}

.girl__info-phone {
  margin-top: auto;
  width: 100%;
  font-size: 12px;
}

.girl__buttons {
  margin-top: 12px;
  width: 100%;
  font-size: 12px;
  display: flex;
  gap: 6px;
}

.girl__buttons button {
  width: 100%;
  flex: 1;
  justify-content: center;
  text-align: center;
  line-height: 100%;
}

.girl__info-telegram,
.girl__info-whatsapp {
  background: transparent;
  border: 1px solid #8200DB;
  transition: background .1s ease-in-out;
}

.girl__info-telegram:hover,
.girl__info-whatsapp:hover {
  background: #8200DB;
  border: 1px solid #8200DB;
}


@media (max-width: 1280px) {
  .girls__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .girls__list {
    grid-template-columns: repeat(1, 1fr);
  }
}