* {
  box-sizing: border-box;
}
.model-filter {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.5);
  border: solid 1px #D486D450;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 50px;
}
.model-filter button {
  background-color: transparent;
  background-image: linear-gradient(-300deg, #D486D4 0%, #984A98 100%);
  border: 0;
  color: #fff;
  font-weight: 500;
}
.model-filter button:hover {
  background-color: #D486D450;
}
.model-filter input,
.model-filter select {
  width: 100%;
  padding: 15px;
  color: #fff;
  border: 0;
  background-color: #D486D450;
  border-radius: 6px;
}
.model-filter input option,
.model-filter select option {
  color: #000;
}
.model-filter input:focus,
.model-filter select:focus {
  outline: none;
}
.model-filter input::placeholder,
.model-filter select::placeholder {
  color: #ffffff;
}
.model-category-title {
  color: #ffffff;
  padding-bottom: 10px;
  border-bottom: solid 1px #D486D450;
}
.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 50px;
}
.models-grid:last-child {
  margin-bottom: 0;
}
.models-grid .model-card {
  opacity: 0.9;
  transition: all 0.2s ease-in-out;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
}
.models-grid .model-card .model-image {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: transparent;
  border: solid 2px #ffffff;
}
@media screen and (min-width: 1200px) {
  .models-grid .model-card .model-image {
    min-height: 354px;
  }
}
.models-grid .model-card .model-image img {
  width: 100%;
  height: 100%;
  max-height: 354px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0;
  display: block;
}
.models-grid .model-card .model-image:hover {
  border: solid 2px #D486D4;
}
.models-grid .model-card:hover {
  opacity: 1;
}
.models-grid .model-card:hover .model-image {
  background-color: #D486D4;
}
.models-grid .model-card .model-price {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  font-weight: 600;
  font-size: 12px;
  color: #ffffff;
  border-radius: 4px;
  background-color: #000;
  padding: 2px 10px;
  display: none;
}
.models-grid .model-card .model-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  border-radius: 0 0 6px 6px;
  max-width: 294px;
}
.models-grid .model-card .model-caption h3 {
  font-size: 16px;
  margin: 0;
  color: #ffffff;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 170px;
}
.models-grid .model-card .model-caption p {
  font-size: 12px;
  font-weight: 400;
  color: #D486D4;
  margin-bottom: 0;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  word-break: break-word;
  height: 36px;
  max-width: 155px;
}
.models-grid .model-card .model-caption .age {
  position: absolute;
  top: 15px;
  right: 10px;
  z-index: 2;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  border-radius: 60px;
  background-color: #D486D4;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.single-model .page-header {
  display: none;
}
.breadcrumbs,
.mdp-breadcrumbs {
  width: 100%;
  padding: 20px 0;
  color: #ccc;
}
.breadcrumbs a,
.mdp-breadcrumbs a {
  color: #ffa1ff;
  text-underline-position: under;
}
.breadcrumbs a:not([href]),
.mdp-breadcrumbs a:not([href]) {
  color: #ffffff;
  text-decoration: none;
}
.breadcrumbs span,
.mdp-breadcrumbs span {
  padding: 0 5px;
}
.home .mdp-breadcrumbs {
  display: none;
}
.cityContainer {
  text-align: center;
  color: #ffffff;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.cityContainer .top h4 {
  color: #D486D4;
}
.cityContainer .top p {
  margin-bottom: 0;
  max-width: 600px;
}
.cityContainer .whatsAppCallaction {
  background-color: transparent;
  background-image: linear-gradient(-300deg, #984A98 0%, #D486D4 100%);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  color: #fff;
  width: 100%;
  margin-top: 20px;
}
.cityContainer .whatsAppCallaction h4 {
  margin: 0;
  font-weight: 600;
}
.cityContainer .whatsAppCallaction span {
  font-weight: 500;
}
.cityContainer .whatsAppCallaction .col:first-child {
  text-align: left;
}
.cityContainer .whatsAppCallaction .whatsAppbtn {
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 20px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  color: #000;
}
.cityContainer .whatsAppCallaction .whatsAppbtn .icon {
  background: url(img/whatsapp.png) 0 0 no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  display: block;
  margin-right: 10px;
}
.model-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 0;
  padding-bottom: 100px;
}
.model-detail .left-panel {
  width: 25%;
}
.model-detail .left-panel .model-detail-image {
  border-radius: 6px;
  overflow: hidden;
}
.model-detail .left-panel .model-detail-image img {
  display: block;
  border-radius: 6px;
  height: 100%;
  object-fit: cover;
  max-height: 475px;
  margin: 0 auto;
}
.model-detail .right-panel {
  width: 72%;
  color: #eee;
}
.model-detail .right-panel .topBar {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.model-detail .right-panel .topBar .verified {
  position: absolute;
  right: 0;
  top: 6px;
  background: url(img/verified.png) 8px 3px no-repeat;
  border: solid 1px #ffffff20;
  padding: 4px 15px 6px 35px;
  text-align: center;
  border-radius: 60px;
  background-color: #000;
  text-transform: uppercase;
  line-height: 20px;
  font-size: 14px;
}
.model-detail .right-panel .topBar h2 {
  margin-top: 0;
  margin-bottom: 10px;
}
.model-detail .right-panel .topBar .left {
  width: 73%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.model-detail .right-panel .topBar .right {
  width: 27%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.model-detail .right-panel .topBar .right .whatsAppbtn {
  background-color: transparent;
  background-image: linear-gradient(-300deg, #D486D4 0%, #984A98 100%);
  border-radius: 60px 60px 60px 60px;
  color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.model-detail .right-panel .topBar .right .whatsAppbtn:hover {
  background-image: linear-gradient(300deg, #984A98 0%, #D486D4 100%);
}
.model-detail .right-panel .topBar .right .whatsAppbtn .icon {
  background: url(img/whatsapp.png) 0 0 no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  display: block;
  margin-right: 5px;
  filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(98deg) brightness(200%) contrast(200%);
}
.model-detail .right-panel .description {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 50px;
}
.model-detail .right-panel .description .info {
  display: flex;
  gap: 15px;
}
.model-detail .right-panel .description .info .col {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  background-color: #FFFFFF10;
  padding: 20px 15px;
}
.model-detail .right-panel .description .info .col h4 {
  color: #FFFFFF90;
  text-transform: uppercase;
  font-size: 16px;
  margin: 0;
}
.model-detail .right-panel .description .info .col p {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 0;
}
.model-detail .right-panel .description .model-tags-wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.model-detail .right-panel .description .model-tags-wrapper .model-tag {
  background-color: #FFFFFF10;
  padding: 5px 15px 5px 15px;
  border-radius: 60px 60px 60px 60px;
  color: #ccc;
  font-size: 14px;
}
.model-tabs {
  width: 100%;
}
.model-tabs .tab-buttons {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.model-tabs .tab-buttons .tab-btn {
  border: 0;
  color: #fff;
  border-radius: 60px;
  padding: 10px 50px;
  background: transparent;
}
.model-tabs .tab-buttons .tab-btn:hover,
.model-tabs .tab-buttons .tab-btn.active {
  color: #fff;
  background-color: transparent;
  background-image: linear-gradient(90deg, #D486D4 0%, #984A98 100%);
}
.model-tabs .tab-buttons .tab-btn.active {
  font-weight: bold;
}
.model-tabs .gallery-item {
  cursor: pointer;
}
.model-tabs .photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.model-tabs .photo-grid img {
  max-height: 295px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.model-tabs .photo-grid.empty {
  display: flex;
}
.model-tabs .video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.model-tabs .video-grid.empty {
  display: flex;
}
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}
.gallery-modal img {
  max-width: 90%;
  max-height: 85%;
}
.gallery-modal.active {
  display: flex;
}
.gallery-modal .gallery-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #ffffff;
  cursor: pointer;
}
.gallery-modal .gallery-prev {
  position: absolute;
  top: 50%;
  font-size: 40px;
  background: none;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  left: 40px;
}
.gallery-modal .gallery-next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  background: none;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  right: 40px;
}
.model-comments {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #ddd;
}
.model-comments h3 {
  margin-bottom: 25px;
}
.comment-list {
  list-style: none;
  padding: 0;
}
.comment {
  margin-bottom: 25px;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  margin-bottom: 15px;
}
.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
}
.comment-form textarea {
  min-height: 140px;
}
.comment-form .submit {
  cursor: pointer;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.modelCard {
  opacity: 0.9;
  transition: all 0.2s ease-in-out;
  padding: 2px;
  overflow: hidden;
}
.modelCard img {
  height: 100%;
  object-fit: cover;
}
.modelCard:hover {
  opacity: 1;
  border-color: #D486D4;
}
.elementor-nav-menu .sub-arrow {
  margin-left: auto;
}
header .elementor-nav-menu > li {
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}
.custom-post .entry-title,
.single-post .entry-title {
  color: #fff;
}
.custom-post .post-header,
.single-post .post-header {
  color: #fff;
}
.custom-post section,
.single-post section {
  margin-top: 25px;
  padding: 20px;
  border-radius: 10px;
  border: solid 1px #D486D450;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.custom-post cite,
.single-post cite {
  color: #D486D4;
}
.custom-post blockquote,
.single-post blockquote {
  background: #D486D450;
  padding: 20px;
  border-radius: 10px;
  margin-left: 0;
}
.custom-post blockquote p,
.single-post blockquote p {
  margin-bottom: 5px;
}
.faq-section .faq-item {
  background: #D486D450;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.faq-section .faq-item h3 {
  color: #D486D4;
}
.comments-area {
  margin: 50px auto;
  color: #fff;
  border-radius: 10px;
  border: solid 1px #D486D450;
  padding: 50px;
}
.comments-area textarea,
.comments-area input {
  background: #D486D450;
  border: 0px;
  margin-top: 5px;
  color: #fff;
}
.no-model-found,
.no-models-found {
  background: #D486D450;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}
.no-gallery-content {
  background: #D486D450;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  padding: 100px 0;
  width: 100%;
}
[type="button"],
[type="submit"],
button,
[type="button"]:hover,
[type="submit"]:hover,
button:hover {
  background: #D486D4;
  color: #fff;
  border-color: #D486D4;
}
.related-models h2 {
  color: #ffffff;
  padding-bottom: 10px;
  border-bottom: solid 1px #D486D450;
}
.toggleBtn {
  display: none;
  cursor: pointer;
  padding: 10px 10px 12px;
  background-color: #D486D4;
  color: #fff;
  font-size: 20px;
  border-radius: 10px;
  text-align: center;
  background-color: transparent;
  background-image: linear-gradient(90deg, #D486D4 0%, #984A98 100%);
  margin-bottom: 20px;
}
@media (min-width: 1240px) {
  body:not([class*="elementor-page-"]) .site-main {
    max-width: 1240px;
  }
}
@media screen and (max-width: 1167px) {
  .models-grid .model-card .model-image img {
    min-height: 220px;
    max-height: 220px;
    object-position: top;
  }
  .models-grid .model-card .model-caption p {
    max-width: 135px;
  }
}
@media screen and (max-width: 967px) {
  .breadcrumbs {
    text-align: center;
  }
  .site-main {
    padding-top: 100px;
  }
  .model-detail {
    gap: 10px;
  }
  .model-detail .left-panel,
  .model-detail .right-panel {
    width: 100%;
  }
  .model-detail .right-panel .topBar {
    flex-direction: column;
  }
  .model-detail .right-panel .topBar .verified {
    position: static;
    margin-top: 20px;
  }
  .model-detail .right-panel .topBar .left {
    align-items: center;
  }
  .model-detail .right-panel .topBar .left,
  .model-detail .right-panel .topBar .right {
    width: 100%;
  }
  .model-detail .right-panel .description .info {
    flex-wrap: wrap;
    justify-content: center;
  }
  .model-detail .right-panel .description .info .col {
    width: 46%;
  }
  .related-models .models-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .model-tabs .photo-grid {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .site-main {
    padding-top: 80px;
  }
  .model-filter {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .models-grid .model-card .model-caption .age {
    width: 20px;
    height: 20px;
    top: 10px;
    font-size: 10px;
  }
  .models-grid .model-card .model-caption p {
    max-width: 100%;
  }
  .languageDropdown {
    position: absolute;
    right: 60px;
  }
  .toggleBtn {
    display: block;
  }
  .model-filter {
    display: none;
  }
  .model-filter.open {
    display: flex;
  }
  .cityContainer .whatsAppCallaction {
    flex-direction: column;
    gap: 20px;
  }
  .cityContainer .whatsAppCallaction .col:first-child {
    text-align: center;
  }
  .model-tabs .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .comments-area {
    padding: 20px;
  }
}
