body {
  background-color: #121212;
  color: #fff;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.model-banner {
  padding: 60px 0;
  background-color: #1a1a1a;
  position: relative;
  text-align: center;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.model-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.model-banner-content {
  position: relative;
  z-index: 2;
}

.model-banner h1 {
  font-size: 48px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.model-bannerh1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #d4af37;
}

.model-profile-section {
  padding: 0 0 40px;
}

.model-profile-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
  margin-bottom: 15px;
}

.model-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 20px;
}

.swiper {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(212, 175, 55, 0.7);
  transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 22px;
  font-weight: bold;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: #d4af37;
  opacity: 1;
}

.fullscreen-btn {
  position: absolute;
  bottom: 63px;
  right: 15px;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
}

.fullscreen-btn:hover {
  background-color: #d4af37;
  transform: scale(1.1);
}

.fullscreen-slider {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

.fullscreen-slider .swiper {
  width: 90%;
  height: 90%;
  max-width: 1200px;
  background-color: transparent;
}

.fullscreen-slider .swiper-slide {
  padding-bottom: 0;
  height: 90vh;
}

.fullscreen-slider .swiper-slide img {
  object-fit: contain;
}

.fullscreen-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 10000;
}

.model-info-container {
  display: flex;
  flex-direction: column;
}

.model-name-container h2 {
  font-size: 36px;
  color: #fff;
  margin: 0 0 30px;
  font-family: "Playfair Display", serif;
  position: relative;
  display: inline-block;
}

.model-name-containerh2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #d4af37;
}

.model-attributes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.model-attribute {
  background-color: #1a1a1a;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.model-attribute:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.attribute-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
}

.attribute-details {
  flex-grow: 1;
}

.attribute-name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3px;
}

.attribute-value {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.model-description {
  margin-top: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  white-space: pre-line;
  margin-bottom: 30px;
}

.description-quote {
  position: relative;
  padding: 20px 30px;
  background-color: #1a1a1a;
  border-radius: 15px;
  margin: 30px 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  border-left: 3px solid #d4af37;
}

.description-quote::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 60px;
  color: rgba(212, 175, 55, 0.3);
  line-height: 1;
}

.model-cta {
  margin-top: auto;
}

.model-cta .btn {
  display: block;
  width: 100%;
  padding: 15px;
  text-align: center;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: #d4af37;
  color: #000;
  border: 2px solid #d4af37;
}

.model-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.model-cta .btn-outline {
  background-color: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
}

.model-cta .btn-outline:hover {
  background-color: #d4af37;
  color: #000;
}

.model-recommendations {
  padding: 80px 0;
  background-color: #0c0c0c;
  position: relative;
}

.recommendations-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.recommendations-header {
  text-align: center;
  margin-bottom: 50px;
}

.recommendations-header h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-family: "Playfair Display", serif;
}

.recommendations-headerh2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #d4af37;
}

.recommendations-description {
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.model-card {
  background-color: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  cursor: pointer;
}

.model-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.model-image-container {
  height: 0;
  padding-bottom: 133.33%;
  position: relative;
  overflow: hidden;
}

.model-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.model-card:hover .model-image {
  transform: scale(1.05);
}

.model-info-fixed {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.7) 60%,
    transparent
  );
}

.model-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.model-name h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  font-family: "Playfair Display", serif;
  margin: 0;
}

.model-name span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(212, 175, 55, 0.2);
  padding: 5px 10px;
  border-radius: 5px;
}

.profile-verify-small {
  display: inline-block;
  background-color: #1da1f2;
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  margin-top: 8px;
}

.profile-verify-small i {
  margin-right: 5px;
}

.contact {
  padding: 80px 0;
  background-color: #121212;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  font-family: "Playfair Display", serif;
}

.contact-infoh2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #d4af37;
}

.about-text {
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.contact-methods {
  margin: 30px 0;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: #242424;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #d4af37;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-method div h3 {
  margin-bottom: 5px;
  font-size: 18px;
  color: #fff;
}

.contact-method div p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.social-buttons {
  display: flex;
  margin: 30px 0;
}

.social-btn {
  width: 45px;
  height: 45px;
  background-color: #242424;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #d4af37;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.social-btn:hover {
  background-color: #d4af37;
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.contact-form {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Playfair Display", serif;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: #242424;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
  transition: all 0.3s ease;
}

.form-groupinput:focus,
.form-grouptextarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-success-message {
  background-color: rgba(46, 125, 50, 0.1);
  color: #81c784;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(46, 125, 50, 0.2);
}

.form-error-message {
  background-color: rgba(211, 47, 47, 0.1);
  color: #e57373;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(211, 47, 47, 0.2);
}

.form-privacy {
  margin: 20px 0;
}

.privacy-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.privacy-label input {
  width: auto;
  margin: 0;
}

.privacy-label a {
  color: #d4af37;
  text-decoration: none;
  transition: all 0.3s ease;
}

.privacy-labela:hover {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .recommendations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .model-profile-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .model-name-container h2 {
    font-size: 32px;
  }

  .recommendations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .model-banner h1 {
    font-size: 32px;
  }

  .model-profile-section {
    padding: 0 0 20px;
  }

  .model-attributes {
    grid-template-columns: 1fr;
  }

  .model-recommendations {
    padding: 50px 0;
  }

  .recommendations-header h2 {
    font-size: 28px;
  }

  .recommendations-grid {
    .recommendations-grid {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
  }

  @media (max-width: 576px) {
    .model-banner h1 {
      font-size: 28px;
    }

    .model-name-container h2 {
      font-size: 28px;
    }

    .recommendations-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .swiper-button-next,
    .swiper-button-prev {
      width: 35px;
      height: 35px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
      font-size: 16px;
    }
  }
}

.model-slider-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
}

.main-slider {
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
}

.slide img {
  width: 100%;
  display: block;
}

.thumbnails {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 6px;
  overflow-x: auto;
}

.thumbnails .thumb {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
}

.thumbnails .thumb.active {
  opacity: 1;
  border-color: #fff;
}

.thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 8px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 4px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.main-slider .slide img,
.thumbnails .thumb img {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.main-slider .slideimg:hover,
.thumbnails .thumbimg:hover {
  opacity: 0.9;
}

.fullscreen-btn {
  display: none !important;
}

.fullscreen-thumbnails {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  max-width: 90vw;
  overflow-x: auto;
  z-index: 1000;
}

.fullscreen-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.fullscreen-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.fullscreen-thumb:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.fullscreen-thumb.active {
  border-color: #00c9ff;
  box-shadow: 0 0 15px rgba(0, 201, 255, 0.5);
  transform: scale(1.1);
}

.fullscreen-thumb.active img {
  opacity: 1;
}

.fullscreen-thumb img {
  opacity: 0.7;
}

.fullscreen-thumbnails::-webkit-scrollbar {
  height: 4px;
}

.fullscreen-thumbnails::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.fullscreen-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(0, 201, 255, 0.5);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .fullscreen-thumbnails {
    bottom: 10px;
    padding: 10px;
    gap: 8px;
    max-width: 95vw;
  }

  .fullscreen-thumb {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .fullscreen-thumbnails {
    bottom: 5px;
    padding: 8px;
    gap: 6px;
  }

  .fullscreen-thumb {
    width: 45px;
    height: 45px;
  }
}

.model-page-header-nav {
  position: relative;
  width: 100%;
  background-color: #121212;
  padding: 15px 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.model-nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;
  overflow-x: auto;
  min-height: 50px;
}

.model-nav-left {
  flex-shrink: 0;
}

.model-nav-right {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.model-page-nav-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d4af37, #e5c352);
  color: #000;
  border: none;
  padding: 4px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 3px 12px rgba(212, 175, 55, 0.25);
  text-decoration: none;
  white-space: nowrap;
  height: 48px;
  box-sizing: border-box;
}

.model-page-nav-button:hover {
  background: linear-gradient(135deg, #e5c352, #f0d068);
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(212, 175, 55, 0.35);
}

.model-page-nav-button .fas {
  font-size: 14px;
}

.model-nav-model-btn {
  gap: 10px;
  min-width: 130px;
}

.model-nav-model-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.model-nav-model-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-page-nav-button:hover .model-nav-model-pic {
  transform: scale(1.08);
}

.model-nav-info-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.model-nav-direction-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  margin-bottom: 1px;
}

.model-nav-model-title {
  font-size: 11px;
  color: #000;
  font-weight: 700;
  max-width: 75px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: capitalize;
}

.model-nav-prev-btn .model-nav-info-block {
  align-items: flex-start;
  text-align: left;
  margin-right: 9px;
}

.model-nav-next-btn {
  flex-direction: row-reverse;
}

.model-nav-next-btn .model-nav-info-block {
  align-items: flex-end;
  text-align: right;
  margin-right: 9px;
}

@media (max-width: 992px) {
  .model-page-header-nav {
    padding: 12px 0;
  }

  .model-nav-wrapper {
    padding: 0 15px;
    gap: 12px;
  }

  .model-nav-right {
    gap: 10px;
  }

  .model-page-nav-button {
    padding: 3px 12px;
    font-size: 12px;
    gap: 7px;
    height: 42px;
  }

  .model-nav-model-btn {
    min-width: 115px;
  }

  .model-nav-model-pic {
    width: 36px;
    height: 36px;
  }

  .model-nav-model-title {
    font-size: 10px;
    max-width: 65px;
  }

  .model-nav-direction-label {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .model-nav-wrapper {
    padding: 0 12px;
    gap: 10px;
  }

  .model-nav-right {
    gap: 8px;
  }

  .model-page-nav-button {
    padding: 2px 10px;
    font-size: 11px;
    gap: 6px;
    height: 36px;
  }

  .model-nav-model-btn {
    min-width: 100px;
  }

  .model-nav-model-pic {
    width: 32px;
    height: 32px;
  }

  .model-nav-model-title {
    font-size: 9px;
    max-width: 55px;
  }

  .model-nav-direction-label {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .model-page-header-nav {
    padding: 8px 0;
  }

  .model-nav-wrapper {
    padding: 0 8px;
    gap: 6px;
  }

  .model-nav-right {
    gap: 6px;
  }

  .model-page-nav-button {
    padding: 2px 1px;
    font-size: 10px;
    gap: 16px;
    height: 32px;
  }

  .model-nav-model-btn {
    min-width: 10px;
  }

  .model-nav-model-pic {
    width: 28px;
    height: 28px;
  }

  .model-nav-model-title {
    font-size: 8px;
    max-width: 45px;
  }

  .model-nav-direction-label {
    font-size: 9px;
  }
}

.model-nav-model-btn:empty {
  display: none;
}

.model-nav-back-btn {
  padding: 6px 20px;
  font-size: 13px;
  gap: 8px;
}

.model-nav-back-btn .fas {
  margin-left: 2px;
  font-size: 14px;
}

.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0c0c0c;
  padding: 11px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.model-cta {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}

.sticky-buttons .btn {
  flex: 1;
  font-size: 14px;
  padding: 8px 14px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.sticky-buttons.show {
  transform: translateY(0);
}

body.sticky-active {
  padding-bottom: 80px;
}

@media (min-width: 769px) {
  .sticky-buttons {
    display: none !important;
  }
}

@media (max-width: 320px) {
  .model-cta {
    gap: 6px;
  }
}

.model-video-section {
  margin: 30px 0;
  padding: 0;
}

.videos-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.videos-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.video-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.video-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.video-container {
  position: relative;
  background: #000;
  aspect-ratio: 16/9;
}

.model-video {
  width: 100%;
  /*height: 100%;*/
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.video-fullscreen-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 6px;
  padding: 8px;
  color: white;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.video-fullscreen-btn svg {
  width: 18px;
  height: 18px;
}

.video-container:hover .video-fullscreen-btn {
  opacity: 1;
}

.video-number {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.video-info {
  padding: 15px;
  background: #fff;
}

.video-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

@media (max-width: 768px) {
  .model-video-section {
    margin: 20px 0;
  }

  .videos-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .video-item {
    border-radius: 8px;
  }

  .model-video {
    border-radius: 8px 8px 0 0;
  }

  .video-info {
    padding: 12px;
  }

  .video-fullscreen-btn {
    opacity: 1;
    padding: 6px;
  }

  .video-fullscreen-btn svg {
    width: 16px;
    height: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.model-video-container {
  flex: 0 0 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background: #000;
}

.model-video-container video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border: none;
}

.model-rates-section {
  flex: 1;
  background-color: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.rates-header {
  background-color: #0c0c0c;
  padding: 20px 25px;
  border-bottom: 2px solid #d4af37;
}

.rates-header h3 {
  margin: 0;
  font-size: 20px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.rates-headerh3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #d4af37;
}

.rates-table {
  width: 100%;
}

.rates-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: linear-gradient(135deg, #d4373c 0%, #e85a5f 100%);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .model-content-section {
    display: unset;
    max-width: none;
    margin-top: 15px;
  }
}

.rates-table-header > div {
  padding: 15px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.rates-table-header > div:last-child {
  border-right: none;
}

.rates-table-body {
  background-color: #1a1a1a;
}

.rates-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.rates-table-row:hover {
  background-color: rgba(212, 175, 55, 0.05);
  transform: scale(1.01);
}

.rates-table-row:last-child {
  border-bottom: none;
}

.time-cell,
.incall-cell,
.outcall-cell {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.time-cell:last-child,
.incall-cell:last-child,
.outcall-cell:last-child {
  border-right: none;
}

.duration {
  font-size: 16px;
  font-weight: 600;
  color: #d4af37;
  text-transform: capitalize;
}

.price-aed {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  display: block;
}

.rates-table-row:first-child {
  background-color: rgba(212, 175, 55, 0.1);
}

.rates-table-row:first-child .duration {
  color: #f5e28a;
  font-weight: 700;
}

.rates-table-row:first-child .price-aed {
  color: #f5e28a;
}

.model-video-containervideo::-webkit-media-controls-panel {
  background-color: rgba(0, 0, 0, 0.8);
}

.model-video-containervideo::-webkit-media-controls-current-time-display,
.model-video-containervideo::-webkit-media-controls-time-remaining-display {
  color: #fff;
}

@media (max-width: 968px) {
  .model-video-container {
    flex: none;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .model-video-container {
    max-width: 90%;
    border-radius: 8px;
  }

  .rates-header {
    padding: 15px 20px;
  }

  .rates-header h3 {
    font-size: 18px;
  }

  .rates-table-header {
    font-size: 14px;
  }

  .rates-table-header > div {
    padding: 12px 15px;
  }

  .time-cell,
  .incall-cell,
  .outcall-cell {
    padding: 15px 10px;
  }

  .duration {
    font-size: 14px;
  }

  .price-aed {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .rates-table-header {
    font-size: 12px;
  }

  .rates-table-header > div {
    padding: 10px 8px;
  }

  .time-cell,
  .incall-cell,
  .outcall-cell {
    padding: 12px 6px;
  }

  .duration {
    font-size: 13px;
  }

  .price-aed {
    font-size: 15px;
  }
}

.p-icons {
  padding: 9px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 20px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.p-icons h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}
@media (min-width: 769px) {
  .p-icons {
    /* 1. Центрирование и сетка */
    display: grid;
    grid-template-columns: repeat(
      2,
      150px
    ); /* Фиксируем ширину колонок под размер иконок */
    gap: 12px; /* Расстояние МЕЖДУ иконками (уменьшите до 8px, если нужно еще ближе) */
    justify-content: center; /* Центрирует сетку внутри блока */

    /* 2. Внешний вид и положение блока */
    margin: 0px auto; /* auto — выравнивает весь блок по центру страницы */
    max-width: fit-content; /* Блок будет шириной ровно под 2 иконки + gap */
  }
}
@media (max-width: 769px) {
  .p-icons {
    /* 1. Центрирование и сетка */
    display: grid;
    grid-template-columns: repeat(
      2,
      100px
    ); /* Фиксируем ширину колонок под размер иконок */
    gap: 12px; /* Расстояние МЕЖДУ иконками (уменьшите до 8px, если нужно еще ближе) */
    justify-content: center; /* Центрирует сетку внутри блока */

    /* 2. Внешний вид и положение блока */
    margin: 0px auto; /* auto — выравнивает весь блок по центру страницы */
    max-width: fit-content; /* Блок будет шириной ровно под 2 иконки + gap */
  }
}
.p-icon {
  border-radius: 20px;
  padding: 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  background: transparent;
}

.p-icon svg {
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: filter 0.3s ease;
}

@media (max-width: 768px) {
  .p-m {
    padding: 20px;
  }

  .p-m h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .p-icons {
    gap: 5px;
  }

  .p-icon {
    padding: 0px;
  }

  .p-icon svg {
    width: 60px !important;
    height: 38px !important;
  }

  .p-icon:nth-child(5) svg {
    width: 42px !important;
    height: 42px !important;
  }
}

.banner-section {
  margin: 0;
  text-align: center;
  width: 100%;
}

.banner-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s ease;
  display: block;
}

.banner-image:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .banner-section {
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .banner-section {
    margin: 0;
    padding: 0;
  }
}

.back-button-container {
  top: 80px;
  z-index: 100;
  padding: 20px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #d4af37, #e5c352);
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.back-button:hover {
  background: linear-gradient(135deg, #e5c352, #f0d575);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.back-button:active {
  transform: translateY(0);
}

.back-button i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.back-button:hover i {
  transform: translateX(-3px);
}

@media (max-width: 768px) {
  .back-button-container {
    padding: 15px;
    top: 60px;
  }

  .back-button {
    padding: 10px 20px;
    font-size: 13px;
    gap: 8px;
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 10px;
  }

  .back-button span {
    display: none;
  }

  .back-button::after {
    content: "Back";
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .back-button-container {
    padding: 10px;
    top: 50px;
  }

  .back-button {
    padding: 8px 16px;
    font-size: 12px;
    margin-top: 20px;
    margin-left: 20px;
  }

  .back-button i {
    font-size: 14px;
  }
}

.model-card-wrapper {
  position: relative;
  display: block;
}

.contact-buttons {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.contact-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.contact-btn i {
  font-size: 16px;
  color: #fff;
}

.tg-btn {
  background: linear-gradient(135deg, #0088cc 0%, #229ed9 100%);
}

.tg-btn:hover {
  background: linear-gradient(135deg, #006699 0%, #1a8bc6 100%);
  border-color: rgba(34, 158, 217, 0.5);
}

.wa-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.wa-btn:hover {
  background: linear-gradient(135deg, #20b358 0%, #0e6b5d 100%);
  border-color: rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
  .contact-buttons {
    bottom: 10px;
    right: 10px;
    gap: 6px;
  }

  .contact-btn {
    width: 32px;
    height: 32px;
    border-width: 1px;
  }

  .contact-btn i {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .contact-buttons {
    bottom: 8px;
    right: 8px;
    gap: 5px;
  }

  .contact-btn {
    width: 28px;
    height: 28px;
  }

  .contact-btn i {
    font-size: 12px;
  }
}

.model-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin: 6px 0;
}

.price-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-amount {
  font-size: 16px;
  color: #d4af37;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.price-duration {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

@media (max-width: 768px) {
  .model-price {
    margin: 4px 0;
    gap: 2px;
  }

  .price-label {
    font-size: 10px;
  }

  .price-amount {
    font-size: 14px;
  }

  .price-duration {
    font-size: 10px;
  }
}

@media (max-width: 576px) {
  .model-price {
    margin: 3px 0;
  }

  .price-label {
    font-size: 9px;
  }

  .price-amount {
    font-size: 13px;
  }

  .price-duration {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .price-amount {
    font-size: 12px;
  }

  .price-label,
  .price-duration {
    font-size: 8px;
  }
}

@media (max-width: 360px) {
  .price-amount {
    font-size: 11px;
  }

  .price-label,
  .price-duration {
    font-size: 7px;
  }
}

.recommendations-grid .model-card {
  position: relative;
  transition: all 0.3s ease;
  transform: translateY(0);
  display: block;
}

.recommendations-grid .model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.recommendations-grid .availability-indicator {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
}

.recommendations-grid .status-available,
.recommendations-grid .status-unavailable {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.recommendations-grid .status-available {
  background-color: rgba(34, 197, 94, 0.95);
  color: #fff;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.recommendations-grid .status-available i {
  color: #ffffff;
  font-size: 7px;
  animation: pulse-green-small 2s infinite;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
}

.recommendations-grid .status-unavailable {
  background-color: #f59e0b;
  color: #fff;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.recommendations-grid .status-unavailable i {
  color: #ffffff;
  font-size: 7px;
  animation: pulse-red-small 2s infinite;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
}

@keyframes pulse-green-small {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes pulse-red-small {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.recommendations-grid
  .model-card.available:hover
  .availability-indicator
  .status-available {
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.6);
  transform: scale(1.05);
}

.recommendations-grid
  .model-card.unavailable:hover
  .availability-indicator
  .status-unavailable {
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .recommendations-grid .availability-indicator {
    top: 8px;
    left: 8px;
  }

  .recommendations-grid .status-available,
  .recommendations-grid .status-unavailable {
    font-size: 9px;
    padding: 3px 6px;
    gap: 3px;
  }

  .recommendations-grid .status-available i,
  .recommendations-grid .status-unavailable i {
    font-size: 6px;
  }
}

@media (max-width: 576px) {
  .recommendations-grid .availability-indicator {
    top: 6px;
    left: 6px;
  }

  .recommendations-grid .status-available,
  .recommendations-grid .status-unavailable {
    font-size: 8px;
    padding: 2px 5px;
    border-radius: 8px;
  }

  .recommendations-grid .status-available i,
  .recommendations-grid .status-unavailable i {
    font-size: 5px;
  }
}

.recommendations-grid .model-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommendations-grid .availability-indicator {
  transition: all 0.3s ease;
}

.recommendations-grid .status-available,
.recommendations-grid .status-unavailable {
  transition: all 0.3s ease;
}

.recommendations-grid .model-image {
  position: relative;
  overflow: hidden;
}

.recommendations-grid .model-card.available .model-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.1) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.recommendations-grid .model-card.available:hover .model-image::after {
  opacity: 1;
}

.recommendations-grid .model-card.unavailable .model-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.recommendations-grid .model-card.unavailable:hover .model-image::after {
  opacity: 1;
}

.recommendations-grid .model-card.unavailable .model-name h3,
.recommendations-grid .model-card.unavailable .model-name span {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.recommendations-grid .model-card.available .model-name h3,
.recommendations-grid .model-card.available .model-name span {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.model-availability-status {
  padding: 15px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.availability-badge {
  display: flex;
  align-items: center;
  gap: 15px;
}

.status-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.availability-badge.available .status-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  animation: pulse-available 2s infinite;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.availability-badge.unavailable .status-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  animation: pulse-unavailable 2s infinite;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.status-details {
  flex: 1;
}

.status-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
}

.status-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.availability-badge.available .status-title {
  color: #22c55e;
}

.availability-badge.unavailable .status-title {
  color: #f59e0b;
}

@keyframes pulse-available {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
    transform: scale(1.05);
  }
}

@keyframes pulse-unavailable {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.6);
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .model-availability-status {
    padding: 12px;
    margin-bottom: 20px;
  }

  .availability-badge {
    gap: 12px;
  }

  .status-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .status-title {
    font-size: 16px;
  }

  .status-subtitle {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .model-availability-status {
    padding: 10px;
  }

  .availability-badge {
    gap: 10px;
  }

  .status-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .status-title {
    font-size: 15px;
  }

  .status-subtitle {
    font-size: 12px;
  }
}

.booking-form::before {
  content: "This model is currently unavailable for booking";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(239, 68, 68, 0.9);
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 10;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .booking-form::before {
    font-size: 14px;
    padding: 12px 20px;
  }
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .recommendations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .model-recommendations {
    padding: 40px 0 60px;
  }

  .recommendations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 991px) {
  .model-recommendations {
    padding: 60px 0 80px;
  }

  .recommendations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .model-recommendations {
    padding: 50px 0 70px;
  }

  .recommendations-grid {
    gap: 18px;
  }

  .model-card .model-image {
    border-radius: 12px;
  }

  .model-info-fixed .model-name h3 {
    font-size: 16px;
  }

  .model-info-fixed .model-name span {
    font-size: 13px;
  }

  .profile-verify-small {
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .model-recommendations {
    padding: 40px 0 60px;
  }

  .recommendations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .section-header p {
    font-size: 13px;
    margin-bottom: 0;
  }

  .model-card .model-image img {
    object-fit: cover;
  }

  .model-info-fixed {
    padding: 12px;
  }

  .model-info-fixed .model-name h3 {
    font-size: 15px;
    margin-bottom: 2px;
  }

  .model-info-fixed .model-name span {
    font-size: 12px;
  }

  .profile-verify-small {
    font-size: 10px;
    padding: 3px 6px;
  }

  .profile-verify-small i {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .model-recommendations {
    padding: 35px 0 50px;
  }

  .recommendations-grid {
    gap: 12px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .model-info-fixed {
    padding: 10px;
  }

  .model-info-fixed .model-name h3 {
    font-size: 14px;
  }

  .model-info-fixed .model-name span {
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .model-recommendations {
    padding: 30px 0 45px;
  }

  .recommendations-grid {
    gap: 10px;
  }

  .section-header h2 {
    font-size: 20px;
  }

  .section-header p {
    font-size: 12px;
  }

  .model-info-fixed {
    padding: 8px;
  }

  .model-info-fixed .model-name h3 {
    font-size: 13px;
  }

  .profile-verify-small {
    font-size: 9px;
    padding: 2px 5px;
  }
}

/* Стили для кнопки избранного */
.favorite-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.favorite-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.favorite-btn i {
  font-size: 22px;
  color: #fff;
  transition: all 0.3s ease;
}

.favorite-btn.active i {
  color: #ffd700;
  font-weight: 700;
}

.favorite-btn.active i:before {
  content: "\f005";
  /* fas fa-star (заполненная звезда) */
}

/* Стили для полноэкранной кнопки */
.fullscreen-favorite-btn {
  position: fixed;
  top: 20px;
  right: 80px;
  /* Справа от кнопки закрытия */
}

/* Анимация при добавлении в избранное */
@keyframes favoriteAdded {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

.favorite-btn.adding {
  animation: favoriteAdded 0.4s ease;
}

/* Всплывающее уведомление */
.favorite-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #d4af37, #e5c352);
  color: #000;
  padding: 15px 25px;
  border-radius: 8px;
  z-index: 10000;
  font-weight: bold;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  animation: slideInRight 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.favorite-notification i {
  font-size: 20px;
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

.favorite-notification.removing {
  animation: slideOutRight 0.3s ease forwards;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
  .favorite-btn {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }

  .favorite-btn i {
    font-size: 18px;
  }

  .fullscreen-favorite-btn {
    right: 70px;
    top: 15px;
  }

  .favorite-notification {
    right: 10px;
    top: 10px;
    font-size: 14px;
    padding: 12px 20px;
  }
}

.model-content-section {
  display: flex;
  flex-direction: column; /* Изменено с row на column */
  gap: 30px;
  margin: 0px auto;
  max-width: 1200px;
  align-items: stretch; /* Изменено с flex-start на stretch */
}

.model-video-section {
  width: 100%; /* Добавлено */
  order: 2; /* Видео идут вторыми (после цен) */
}

.model-rates-section {
  width: 100%; /* Изменено с flex: 1 */
  order: 1; /* Цены идут первыми */
  background-color: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.model-video-container {
  width: 100%; /* Изменено с flex: 0 0 350px */
  max-width: none; /* Убираем ограничение ширины */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background: #000;
  order: 2;
}

.videos-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  ); /* Уже есть, оставляем */
}

/* Обновленные медиа-запросы */
@media (max-width: 768px) {
  .model-content-section {
    gap: 20px;
    margin-top: 15px;
  }

  .videos-grid {
    grid-template-columns: 1fr; /* На мобильных - одна колонка */
    gap: 15px;
  }
}

@media (max-width: 968px) {
  .model-video-container {
    max-width: 100%; /* Убрано ограничение в 500px */
    margin: 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr); /* Два видео в ряд на планшетах */
  }
}

.p-icon img {
  /* Делает темные иконки белыми */
  opacity: 0.9;
  transition: all 0.3s ease;
}

.p-icon:hover img {
  filter: brightness(0) invert(1);
  opacity: 1;
  transform: scale(1.05);
}

/* Альтернативный вариант - золотистый цвет как у других элементов */
.p-icon img.gold-tint {
  filter: brightness(0) saturate(100%) invert(78%) sepia(45%) saturate(450%)
    hue-rotate(6deg) brightness(95%) contrast(90%);
}

