* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #121212;
  overflow-x: hidden;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}
header {
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 40px;
  margin-right: 10px;
}
.logo h1 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #fff;
  letter-spacing: 1px;
}
.logo span {
  color: #d4af37;
  font-weight: 400;
}
.header-right {
  display: flex;
  align-items: center;
}
.search-bar {
  margin-right: 20px;
  position: relative;
}
.search-bar input {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50px;
  padding: 10px 40px 10px 20px;
  color: #fff;
  width: 250px;
  font-size: 14px;
  transition: all 0.3s;
}
.search-barinput:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  width: 280px;
}
.search-barinput::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-bar i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
}
.contact-info {
  display: flex;
  align-items: center;
  margin-right: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.contact-info i {
  margin-right: 5px;
  color: #d4af37;
}
.social-icons a {
  margin-left: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  transition: all 0.3s ease;
}
.social-iconsa:hover {
  color: #d4af37;
  transform: translateY(-2px);
}
.whatsapp {
  color: #25d366 !important;
}
.telegram {
  color: #0088cc !important;
}
.mobile-menu-toggle {
  display: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.minimum-engagement-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 18px auto 0;
  padding: 10px 18px;
  border: 1px solid rgba(212, 175, 55, 0.85);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(170, 16, 16, 0.2));
  color: #f8df8a;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), inset 0 0 18px rgba(212, 175, 55, 0.08);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.6px;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}
.hero {
  height: 80vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-content {
  max-width: 800px;
  padding: 0 20px;
}
.hero h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  color: #fff;
}
.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}
.hero-btn {
  display: inline-block;
  background-color: #d4af37;
  color: #000;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  border: 2px solid #d4af37;
}
.hero-btn:hover {
  background-color: transparent;
  color: #d4af37;
}
.models-section {
  padding: 80px 0 100px;
  background-color: #121212;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-headerh2:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #d4af37;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.section-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  margin-top: 20px;
}
.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.model-card-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-color: #1a1a1a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  height: 650px;
}
.model-card-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.model-card {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.model-image {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.model-card:hover .model-image img {
  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
  );
  padding: 20px;
}
.model-name {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.model-name h3 {
  font-size: 24px;
  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;
  white-space: nowrap;
}
.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;
}
.model-verified-row {
  margin-top: 8px;
}
.profile-verify-small {
  display: inline-block;
  background-color: #1da1f2;
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}
.profile-verify-small i {
  margin-right: 5px;
}
.favorite-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.favorite-btn:hover {
  background-color: #d4af37;
  transform: scale(1.1);
}
.favorite-btn i {
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease;
}
.favorite-btn:hover i,
.favorite-btn.active i {
  color: #000;
}
.favorite-btn.active {
  background-color: #d4af37;
}
.availability-indicator {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}
.status-available,
.status-unavailable {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.status-available {
  background-color: rgba(34, 197, 94, 0.9);
  color: #fff;
}
.status-unavailable {
  background-color: rgba(245, 158, 11, 0.9);
  color: #fff;
}
.contact-buttons {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 10px;
  z-index: 10;
}
.contact-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
  position: relative;
}
.contact-btn:hover {
  transform: scale(1.05);
}
.tg-btn {
  background: radial-gradient(circle at center, #229ed9 0%, #0088cc 100%);
  border: 2px solid rgba(34, 158, 217, 0.8);
}
.wa-btn {
  background: radial-gradient(circle at center, #128c7e 0%, #25d366 100%);
  border: 2px solid rgba(37, 211, 102, 0.8);
}
.contact-btn span {
  display: none;
}
.tg-btn::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M9.78 18.65l.28-4.23 7.68-6.92c.34-.31-.07-.46-.52-.19L7.74 13.3 2.1 11.75c-1.21-.37-1.23-1.16.26-1.75l21.26-8.17c.73-.33 1.43.18 1.15 1.75l-3.25 15.44c-.25.93-.86 1.22-1.64.9l-8.14-6.08z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.wa-btn::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.567-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.465 3.488"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.filter-container {
  background-color: #1a1a1a;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.filter-header {
  background-color: #0c0c0c;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-header h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  position: relative;
  display: inline-block;
}
.filter-headerh3:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: #d4af37;
  bottom: -5px;
  left: 0;
}
.filter-toggle {
  display: none;
  background: none;
  border: none;
  color: #d4af37;
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s;
}
.filter-toggle:hover {
  background-color: rgba(212, 175, 55, 0.1);
}
.filter-content {
  padding: 20px;
}
.filters-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.filter-group {
  display: flex;
  flex-direction: column;
}
.filter-group label {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.sorting-row {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.sort-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sort-group label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}
.sort-select {
  background-color: #2a2a2a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s;
}
.sort-select:hover,
.sort-select:focus {
  border-color: #d4af37;
  background-color: #333;
}
.range-slider {
  position: relative;
  margin: 15px 0;
  height: 6px;
}
.range-track {
  position: absolute;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  top: 0;
}
.range-fill {
  position: absolute;
  height: 6px;
  background: linear-gradient(90deg, #d4af37, #e5c352);
  border-radius: 3px;
  top: 0;
  transition: all 0.3s ease;
}
.range-input {
  position: absolute;
  width: 100%;
  height: 6px;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  pointer-events: none;
  top: 0;
}
.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d4af37;
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 3px 8px rgba(212, 175, 55, 0.4);
  transition: all 0.2s ease;
  border: 2px solid #fff;
}
.range-input::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.6);
  background: #e5c352;
}
.range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d4af37;
  cursor: pointer;
  pointer-events: all;
  border: 2px solid #fff;
  box-shadow: 0 3px 8px rgba(212, 175, 55, 0.4);
  transition: all 0.2s ease;
}
.range-input::-moz-range-track {
  background: transparent;
  border: none;
}
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.filter-button {
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.apply-filter {
  background-color: #d4af37;
  color: #000;
}
.apply-filter:hover {
  background-color: #e5c352;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
.reset-filter {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}
.reset-filter:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.loading-indicator {
  text-align: center;
  padding: 20px 0;
  margin: 20px 0;
}
.spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  border-top-color: #d4af37;
  animation: spin 1s ease-in-out infinite;
  margin: 0 auto;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.no-models-message {
  grid-column: 1/-1;
  padding: 40px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  background-color: #1a1a1a;
  border-radius: 10px;
  margin: 20px 0;
}
.favorite-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  z-index: 9999;
  transform: translateX(300px);
  transition: all 0.3s ease;
  border: 1px solid #d4af37;
}
.favorite-notification.show {
  transform: translateX(0);
}
footer {
  background-color: #0c0c0c;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.footer-column h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}
.footer-columnh3:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: #d4af37;
  bottom: 0;
  left: 0;
}
.footer-column p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}
.footer-linksa:hover {
  color: #d4af37;
  padding-left: 5px;
}
.footer-contact {
  list-style: none;
}
.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}
.footer-contact i {
  margin-right: 10px;
  color: #d4af37;
  font-size: 16px;
  margin-top: 4px;
}
.footer-social {
  display: flex;
  margin-top: 20px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  margin-right: 10px;
  transition: all 0.3s;
}
.footer-sociala:hover {
  background-color: #d4af37;
  transform: translateY(-3px);
}
.copyright {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}
.language-selector {
  display: flex;
  margin-left: 20px;
}
.language-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-left: 10px;
  transition: transform 0.3s;
}
.language-flag:hover {
  transform: scale(1.1);
}
@media (max-width: 1200px) {
  .models-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .filters-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .model-card-wrapper {
    height: 580px;
  }
}
@media (max-width: 991px) {
  .search-bar {
    display: none;
  }
  .hero h1 {
    font-size: 48px;
  }
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .contact-info span {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-right: 15px;
  }
  .header-right {
    justify-content: flex-end;
  }
  .model-card-wrapper {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  header {
    padding: 12px 0;
  }
  .header-container {
    align-items: center;
  }
  .logo {
    flex-direction: row;
    align-items: center;
  }
  .logo img {
    height: 30px;
    margin-right: 8px;
  }
  .logo h1 {
    font-size: 20px;
  }
  .social-icons a {
    margin-left: 15px;
  }
  .hero {
    height: 60vh;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 16px;
  }
  .section-header h2 {
    font-size: 30px;
  }
  .models-section {
    padding: 60px 0;
  }
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .model-card-wrapper {
    height: 420px;
  }
  .model-info-fixed {
    padding: 12px;
  }
  .model-name h3 {
    font-size: 18px;
    line-height: 1.2;
  }
  .model-name span {
    font-size: 12px;
    padding: 3px 6px;
  }
  .model-price {
    margin: 4px 0;
    gap: 2px;
  }
  .price-label {
    font-size: 9px;
  }
  .price-amount {
    font-size: 13px;
  }
  .price-duration {
    font-size: 9px;
  }
  .profile-verify-small {
    padding: 3px 8px;
    font-size: 10px;
  }
  .favorite-btn {
    width: 35px;
    height: 35px;
    top: 10px;
    left: 10px;
  }
  .favorite-btn i {
    font-size: 16px;
  }
  .availability-indicator {
    top: 8px;
    right: 8px;
  }
  .status-available,
  .status-unavailable {
    font-size: 9px;
    padding: 3px 6px;
  }
  .contact-buttons {
    bottom: 8px;
    right: 8px;
    gap: 6px;
  }
  .contact-btn {
    width: 28px;
    height: 28px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  .contact-btn::before {
    width: 14px;
    height: 14px;
  }
  .filter-toggle {
    display: block;
  }
  .filter-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    transition: all 0.4s ease;
  }
  .filter-content.active {
    max-height: 800px;
    padding: 20px;
    opacity: 1;
  }
  .filters-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sorting-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 12px;
  }
  header {
    padding: 10px 0;
  }
  .logo img {
    height: 26px;
  }
  .logo h1 {
    font-size: 18px;
  }
  .contact-info {
    display: none;
  }
  .social-icons a {
    margin-left: 12px;
    font-size: 18px;
  }
  .language-selector {
    margin-left: 12px;
  }
  .language-flag {
    width: 20px;
    height: 20px;
  }
  .hero {
    height: 70vh;
    text-align: center;
  }
  .hero-content {
    padding: 0 15px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 15px;
  }
  .hero-btn {
    padding: 10px 25px;
    font-size: 15px;
  }
  .models-section {
    padding: 40px 0 60px;
  }
  .section-header {
    margin-bottom: 30px;
  }
  .section-header h2 {
    font-size: 26px;
  }
  .section-header p {
    font-size: 14px;
    padding: 0 10px;
  }
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .model-card-wrapper {
    height: 380px;
    border-radius: 12px;
  }
  .model-info-fixed {
    padding: 10px;
  }
  .model-name {
    margin-bottom: 3px;
    align-items: center;
  }
  .model-name h3 {
    font-size: 16px;
    line-height: 1.1;
  }
  .model-name span {
    font-size: 11px;
    padding: 2px 5px;
  }
  .model-price {
    margin: 3px 0;
    gap: 1px;
  }
  .price-label {
    font-size: 8px;
  }
  .price-amount {
    font-size: 12px;
  }
  .price-duration {
    font-size: 8px;
  }
  .profile-verify-small {
    padding: 2px 6px;
    font-size: 9px;
    margin-top: 4px;
  }
  .favorite-btn {
    width: 32px;
    height: 32px;
    top: 8px;
    left: 8px;
  }
  .favorite-btn i {
    font-size: 14px;
  }
  .availability-indicator {
    top: 6px;
    right: 6px;
  }
  .status-available,
  .status-unavailable {
    font-size: 8px;
    padding: 2px 4px;
    border-radius: 10px;
  }
  .contact-buttons {
    bottom: 6px;
    right: 6px;
    gap: 4px;
  }
  .contact-btn {
    width: 26px;
    height: 26px;
  }
  .contact-btn::before {
    width: 12px;
    height: 12px;
  }
  .filter-header h3 {
    font-size: 16px;
  }
  .filter-group label {
    font-size: 13px;
  }
  .filter-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .filter-button {
    width: 100%;
    padding: 10px 20px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  .models-grid {
    gap: 10px;
  }
  .model-card-wrapper {
    height: 360px;
    border-radius: 10px;
  }
  .model-info-fixed {
    padding: 8px;
  }
  .model-name h3 {
    font-size: 15px;
  }
  .model-name span {
    font-size: 10px;
    padding: 2px 4px;
  }
  .price-amount {
    font-size: 11px;
  }
  .price-label,
  .price-duration {
    font-size: 7px;
  }
  .profile-verify-small {
    font-size: 8px;
    padding: 2px 5px;
  }
  .favorite-btn {
    width: 30px;
    height: 30px;
    top: 6px;
    left: 6px;
  }
  .favorite-btn i {
    font-size: 13px;
  }
  .contact-buttons {
    bottom: 5px;
    right: 5px;
    gap: 3px;
  }
  .contact-btn {
    width: 24px;
    height: 24px;
  }
  .contact-btn::before {
    width: 11px;
    height: 11px;
  }
}
@media (max-width: 360px) {
  .models-grid {
    gap: 8px;
  }
  .model-card-wrapper {
    height: 340px;
  }
  .model-info-fixed {
    padding: 6px;
  }
  .model-name h3 {
    font-size: 14px;
  }
  .model-name span {
    font-size: 9px;
    padding: 1px 3px;
  }
  .price-amount {
    font-size: 10px;
  }
  .price-label,
  .price-duration {
    font-size: 6px;
  }
  .profile-verify-small {
    font-size: 7px;
    padding: 1px 4px;
  }
  .favorite-btn {
    width: 28px;
    height: 28px;
  }
  .favorite-btn i {
    font-size: 12px;
  }
  .contact-btn {
    width: 22px;
    height: 22px;
  }
  .contact-btn::before {
    width: 10px;
    height: 10px;
  }
}
.favorites-nav-btn {
  margin-right: 15px;
}
.language-nav-btn {
  margin-right: 15px;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-favorites-link,
.nav-language-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 25px;
  color: #d4af37;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}
.nav-favorites-link:hover,
.nav-language-link:hover {
  background-color: #d4af37;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
.icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
}
.social-icons .icon {
  width: 18px;
  height: 18px;
}
.favorites-text,
.language-text {
  font-weight: 600;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .favorites-text,
  .language-text {
    display: none;
  }
  .nav-favorites-link,
  .nav-language-link {
    padding: 8px 12px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
  }
  .favorites-nav-btn,
  .language-nav-btn {
    margin-right: 10px;
  }
}
@media (max-width: 576px) {
  .nav-favorites-link,
  .nav-language-link {
    width: 36px;
    height: 36px;
    padding: 6px;
  }
  .nav-favorites-link .icon,
  .nav-language-link .icon {
    width: 14px;
    height: 14px;
  }
  .favorites-nav-btn,
  .language-nav-btn {
    margin-right: 8px;
  }
}
@media (max-width: 480px) {
  .header-container {
    padding: 0 10px;
  }
}
.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.video-indicator {
  position: absolute;
  top: 3px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  z-index: 2;
  transition: all 0.3s ease;
  left: 8px;
}
.video-indicator i {
  color: #d4af37;
}
.video-indicator:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}
.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;
  }
}
.icon.play-circle {
  width: 24px;
  height: 24px;
}
.filter-container {
  background-color: #1a1a1a;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.filter-header {
  background-color: #0c0c0c;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-header h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  position: relative;
  display: inline-block;
}
.filter-headerh3:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: #d4af37;
  bottom: -5px;
  left: 0;
}
.filter-toggle {
  display: none;
  background: none;
  border: none;
  color: #d4af37;
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s;
}
.filter-toggle:hover {
  background-color: rgba(212, 175, 55, 0.1);
}
.filter-content {
  padding: 20px;
}
.filters-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.filter-group {
  display: flex;
  flex-direction: column;
}
.filter-group label {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.sorting-row {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.sort-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sort-group label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}
.sort-select {
  background-color: #2a2a2a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s;
}
.sort-select:hover,
.sort-select:focus {
  border-color: #d4af37;
  background-color: #333;
}
.range-slider {
  position: relative;
  margin: 15px 0;
  height: 6px;
}
.range-track {
  position: absolute;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  top: 0;
}
.range-fill {
  position: absolute;
  height: 6px;
  background: linear-gradient(90deg, #d4af37, #e5c352);
  border-radius: 3px;
  top: 0;
  transition: all 0.3s ease;
}
.range-input {
  position: absolute;
  width: 100%;
  height: 6px;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  pointer-events: none;
  top: 0;
}
.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d4af37;
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 3px 8px rgba(212, 175, 55, 0.4);
  transition: all 0.2s ease;
  border: 2px solid #fff;
}
.range-input::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.6);
  background: #e5c352;
}
.range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d4af37;
  cursor: pointer;
  pointer-events: all;
  border: 2px solid #fff;
  box-shadow: 0 3px 8px rgba(212, 175, 55, 0.4);
  transition: all 0.2s ease;
}
.range-input::-moz-range-track {
  background: transparent;
  border: none;
}
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.filter-button {
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.apply-filter {
  background-color: #d4af37;
  color: #000;
}
.apply-filter:hover {
  background-color: #e5c352;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
.reset-filter {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}
.reset-filter:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.pagination-container {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination-btn {
  padding: 12px 16px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  background: transparent;
  color: #fff;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.pagination-btn:hover {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}
.pagination-btn.active {
  background: linear-gradient(135deg, #d4af37, #e5c352);
  color: #000;
  border-color: #d4af37;
  font-weight: 700;
}
.pagination-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.pagination-btn.dots {
  border: none;
  background: none;
  cursor: default;
  pointer-events: none;
}
.pagination-info {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.results-info {
  margin: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}
.loading-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  gap: 15px;
}
.loading-indicator .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(212, 175, 55, 0.3);
  border-top: 4px solid #d4af37;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loading-indicator span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1200px) {
  .filters-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .filter-toggle {
    display: block;
  }
  .filter-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    transition: all 0.4s ease;
  }
  .filter-content.active {
    max-height: 800px;
    padding: 20px;
    opacity: 1;
  }
  .filters-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sorting-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .pagination-btn {
    padding: 10px 12px;
    font-size: 13px;
    min-width: 40px;
  }
  .pagination {
    gap: 6px;
  }
}
@media (max-width: 576px) {
  .filter-header h3 {
    font-size: 16px;
  }
  .filter-group label {
    font-size: 13px;
  }
  .filter-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .filter-button {
    width: 100%;
    padding: 10px 20px;
  }
  .pagination-btn {
    padding: 8px 10px;
    font-size: 12px;
    min-width: 36px;
  }
}
.favorites-nav-btn {
  margin-right: 15px;
}
.language-nav-btn {
  margin-right: 15px;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-favorites-link,
.nav-language-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 25px;
  color: #d4af37;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}
.nav-favorites-link:hover,
.nav-language-link:hover {
  background-color: #d4af37;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
.icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
}
.social-icons .icon {
  width: 18px;
  height: 18px;
}
.favorites-text,
.language-text {
  font-weight: 600;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .favorites-text,
  .language-text {
    display: none;
  }
  .nav-favorites-link,
  .nav-language-link {
    padding: 8px 12px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
  }
  .favorites-nav-btn,
  .language-nav-btn {
    margin-right: 10px;
  }
}
@media (max-width: 576px) {
  .nav-favorites-link,
  .nav-language-link {
    width: 36px;
    height: 36px;
    padding: 6px;
  }
  .nav-favorites-link .icon,
  .nav-language-link .icon {
    width: 14px;
    height: 14px;
  }
  .favorites-nav-btn,
  .language-nav-btn {
    margin-right: 8px;
  }
}
@media (max-width: 480px) {
  .header-container {
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 12px;
  }
  header {
    padding: 10px 0;
  }
  .logo h1 {
    font-size: 18px;
  }
  .contact-info {
    display: none;
  }
  .social-icons a {
    margin-left: 12px;
    font-size: 18px;
  }
  .models-section {
    padding: 40px 0 60px;
  }
  .section-header {
    margin-bottom: 30px;
  }
  .section-header h2 {
    font-size: 26px;
  }
  .section-header p {
    font-size: 14px;
    padding: 0 10px;
  }
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .model-card-wrapper {
    height: 380px;
    border-radius: 12px;
  }
  .availability-indicator {
    top: 6px;
    right: 6px;
  }
  .filter-header h3 {
    font-size: 16px;
  }
  .filter-group label {
    font-size: 13px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Montserrat, sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #121212;
  overflow-x: hidden;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
a {
  text-decoration: none;
  color: inherit;
}
header {
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
}
.logo h1 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #fff;
  letter-spacing: 1px;
}
.logo span {
  color: #d4af37;
  font-weight: 400;
}
.header-right {
  display: flex;
  align-items: center;
}
.contact-info {
  display: flex;
  align-items: center;
  margin-right: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.social-icons a {
  margin-left: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
}
.whatsapp {
  color: #25d366 !important;
}
.telegram {
  color: #08c !important;
}
.mobile-menu-toggle {
  display: none;
  color: #fff;
  font-size: 24px;
}
.models-section {
  padding: 80px 0 100px;
  background-color: #121212;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-header h2:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #d4af37;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.section-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  margin-top: 20px;
}
.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.model-card-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-color: #1a1a1a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  height: 650px;
}
.model-card {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.model-image {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.availability-indicator {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}
.contact-btn span {
  display: none;
}
.filter-container {
  background-color: #1a1a1a;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.filter-header {
  background-color: #0c0c0c;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-header h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  position: relative;
  display: inline-block;
}
.filter-header h3:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: #d4af37;
  bottom: -5px;
  left: 0;
}
.filter-toggle {
  display: none;
  background: 0 0;
  border: none;
  color: #d4af37;
  font-size: 20px;
  padding: 5px;
  border-radius: 5px;
}
.filter-content {
  padding: 20px;
}
.filters-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.filter-group {
  display: flex;
  flex-direction: column;
}
.filter-group label {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.sorting-row {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.sort-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sort-group label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}
.sort-select {
  background-color: #2a2a2a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  outline: 0;
}
.range-slider {
  position: relative;
  margin: 15px 0;
  height: 6px;
}
.range-track {
  position: absolute;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  top: 0;
}
.range-fill {
  position: absolute;
  height: 6px;
  background: linear-gradient(90deg, #d4af37, #e5c352);
  border-radius: 3px;
  top: 0;
}
.range-input {
  position: absolute;
  width: 100%;
  height: 6px;
  background: 0 0;
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
  top: 0;
}
.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d4af37;
  box-shadow: 0 3px 8px rgba(212, 175, 55, 0.4);
  border: 2px solid #fff;
}
.range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d4af37;
  border: 2px solid #fff;
  box-shadow: 0 3px 8px rgba(212, 175, 55, 0.4);
}
.range-input::-moz-range-track {
  background: 0 0;
  border: none;
}
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.filter-button {
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.apply-filter {
  background-color: #d4af37;
  color: #000;
}
.reset-filter {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}
.loading-indicator {
  text-align: center;
  padding: 20px 0;
  margin: 20px 0;
}
.spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  border-top-color: #d4af37;
  animation: 1s ease-in-out infinite spin;
  margin: 0 auto;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 1200px) {
  .models-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .filters-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .model-card-wrapper {
    height: 580px;
  }
}
@media (max-width: 991px) {
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .contact-info span {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-right: 15px;
  }
  .header-right {
    justify-content: flex-end;
  }
  .model-card-wrapper {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  header {
    padding: 12px 0;
  }
  .header-container {
    align-items: center;
  }
  .logo {
    flex-direction: row;
    align-items: center;
  }
  .logo h1 {
    font-size: 20px;
  }
  .social-icons a {
    margin-left: 15px;
  }
  .section-header h2 {
    font-size: 30px;
  }
  .models-section {
    padding: 60px 0;
  }
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .model-card-wrapper {
    height: 420px;
  }
  .availability-indicator {
    top: 8px;
    right: 8px;
  }
  .filter-toggle {
    display: block;
  }
  .filter-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
  }
  .filters-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sorting-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 12px;
  }
  header {
    padding: 10px 0;
  }
  .logo h1 {
    font-size: 18px;
  }
  .contact-info {
    display: none;
  }
  .social-icons a {
    margin-left: 12px;
    font-size: 18px;
  }
  .models-section {
    padding: 40px 0 60px;
  }
  .section-header {
    margin-bottom: 30px;
  }
  .section-header h2 {
    font-size: 26px;
  }
  .section-header p {
    font-size: 14px;
    padding: 0 10px;
  }
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .model-card-wrapper {
    height: 380px;
    border-radius: 12px;
  }
  .availability-indicator {
    top: 6px;
    right: 6px;
  }
  .filter-header h3 {
    font-size: 16px;
  }
  .filter-group label {
    font-size: 13px;
  }
  .filter-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .filter-button {
    width: 100%;
    padding: 10px 20px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  .models-grid {
    gap: 10px;
  }
  .model-card-wrapper {
    height: 360px;
    border-radius: 10px;
  }
}
@media (max-width: 360px) {
  .models-grid {
    gap: 8px;
  }
  .model-card-wrapper {
    height: 340px;
  }
}
.favorites-nav-btn {
  margin-right: 15px;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-favorites-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 25px;
  color: #d4af37;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
}
.social-icons .icon {
  width: 18px;
  height: 18px;
}
.favorites-text {
  font-weight: 600;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .favorites-text {
    display: none;
  }
  .nav-favorites-link {
    padding: 8px 12px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
  }
  .favorites-nav-btn {
    margin-right: 10px;
  }
}
@media (max-width: 576px) {
  .nav-favorites-link {
    width: 36px;
    height: 36px;
    padding: 6px;
  }
  .nav-favorites-link .icon {
    width: 14px;
    height: 14px;
  }
  .favorites-nav-btn {
    margin-right: 8px;
  }
}
@media (max-width: 480px) {
  .header-container {
    padding: 0 10px;
  }
}
.unique-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #1f1f1f;
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  max-width: 260px;
}
.unique-widget-link {
  color: #fff;
  text-decoration: none;
  display: block;
}
.unique-widget-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.unique-widget-text {
  font-size: 14px;
  font-weight: 600;
  color: #f1c40f;
  line-height: 1.4;
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
}
.timed-popup-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 400px;
  max-width: 90%;
  max-height: 90vh;
  background: linear-gradient(135deg, #1a1a1a 0, #2a2a2a 100%);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  overflow: hidden;
  z-index: 9999;
  color: #fff;
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
}
.timed-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.timed-popup-close:after,
.timed-popup-close:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background: currentColor;
}
.timed-popup-close:before {
  transform: rotate(45deg);
}
.timed-popup-close:after {
  transform: rotate(-45deg);
}
.timed-popup-header {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0c0c0c;
  border-bottom: 2px solid #d4af37;
}
.timed-popup-header img {
  width: 100%;
  display: block;
  height: auto;
  max-height: 450px;
  object-fit: cover;
}
.timed-popup-content {
  padding: 25px;
  background: linear-gradient(135deg, #1a1a1a 0, #2a2a2a 100%);
  position: relative;
}
.timed-popup-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #e5c352, #d4af37);
}
.timed-popup-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #d4af37;
  font-family: "Playfair Display", serif;
  text-align: center;
  position: relative;
}
.timed-popup-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: #d4af37;
}
.timed-popup-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: center;
}
.timed-popup-button {
  display: block;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #d4af37, #e5c352);
  color: #000;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  font-size: 15px;
  position: relative;
  overflow: hidden;
}
.timed-popup-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}
@media (max-width: 768px) {
  .timed-popup-header img {
    max-height: 180px;
    width: 100%;
    object-fit: cover;
  }
  .timed-popup-content {
    padding: 18px;
  }
  .timed-popup-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .timed-popup-text {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .timed-popup-button {
    padding: 12px;
    font-size: 13px;
  }
  .timed-popup-close {
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
  }
  .timed-popup-close:after,
  .timed-popup-close:before {
    width: 12px;
  }
}
@media (max-width: 480px) {
  .timed-popup-header img {
    max-height: 280px;
    width: 100%;
    object-fit: cover;
  }
  .timed-popup-content {
    padding: 15px;
  }
  .timed-popup-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .timed-popup-text {
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.5;
  }
  .timed-popup-button {
    padding: 10px;
    font-size: 12px;
  }
  .timed-popup-close {
    width: 26px;
    height: 26px;
    top: 8px;
    right: 8px;
  }
  .timed-popup-close:after,
  .timed-popup-close:before {
    width: 10px;
  }
}
@media (max-width: 360px) {
  .timed-popup-container {
    max-width: 260px;
  }
  .timed-popup-content {
    padding: 12px;
  }
  .timed-popup-title {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .timed-popup-text {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .timed-popup-button {
    padding: 8px;
    font-size: 11px;
  }
}
.timed-popup-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
}

/* СТИЛИ ПЛАШКИ AVAILABLE ДОБАВЛЕНЫ СЮДА ДЛЯ КОРРЕКТНОГО ОТОБРАЖЕНИЯ */
.status-available {
  background: linear-gradient(135deg, #28a745, #218838);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.4);
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Стили для кнопки избранного */
.favorite-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* Если есть видео индикатор - сдвигаем кнопку избранного вправо */
.model-image:has(.video-indicator) .favorite-btn {
  left: 60px;
}

.favorite-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.favorite-btn i {
  font-size: 20px;
  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 (заполненная звезда) */
}

/* Анимация при добавлении в избранное */
@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: 35px;
    height: 35px;
    top: 8px;
    left: 8px;
  }

  /* Если есть видео - сдвигаем */
  .model-image:has(.video-indicator) .favorite-btn {
    left: 53px;
  }

  .favorite-btn i {
    font-size: 16px;
  }

  .favorite-notification {
    right: 10px;
    top: 10px;
    font-size: 14px;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .favorite-btn {
    width: 32px;
    height: 32px;
    top: 6px;
    left: 6px;
  }

  /* Если есть видео - сдвигаем */
  .model-image:has(.video-indicator) .favorite-btn {
    left: 53px;
  }

  .favorite-btn i {
    font-size: 14px;
  }
}

.favorites-nav-btn {
  margin-right: 15px;
}

.language-nav-btn {
  margin-right: 15px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-favorites-link,
.nav-language-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 25px;
  color: #d4af37;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-favorites-link:hover,
.nav-language-link:hover {
  background-color: #d4af37;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.social-icons .icon {
  width: 18px;
  height: 18px;
}

.favorites-text,
.language-text {
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Мобильные иконки рядом с бургером */
.mobile-header-icons {
  display: none;
  align-items: center;
  gap: 12px;
}

.mobile-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-icon-link.whatsapp {
  background-color: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.mobile-icon-link.whatsapp:hover {
  background-color: #25d366;
  transform: scale(1.1);
}

.mobile-icon-link.whatsapp .icon {
  color: #25d366;
}

.mobile-icon-link.whatsapp:hover .icon {
  color: #fff;
}

.mobile-icon-link.telegram {
  background-color: rgba(0, 136, 204, 0.1);
  border: 1px solid rgba(0, 136, 204, 0.3);
}

.mobile-icon-link.telegram:hover {
  background-color: #0088cc;
  transform: scale(1.1);
}

.mobile-icon-link.telegram .icon {
  color: #0088cc;
}

.mobile-icon-link.telegram:hover .icon {
  color: #fff;
}

.mobile-icon-link .icon {
  width: 20px;
  height: 20px;
}

.mobile-menu-toggle {
  display: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
  color: #d4af37;
}

/* Overlay для затемнения фона */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Само меню */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background-color: #1a1a1a;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  display: none;
}

.mobile-menu.active {
display: block;
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header h2 {
  color: #d4af37;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.mobile-menu-close {
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-close i {
  font-size: 24px;
  color: #d4af37;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover i {
  color: #e5c352;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  color: #d4af37;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background-color: #d4af37;
  color: #000;
  transform: translateX(5px);
}

.mobile-nav-link .icon {
  width: 20px;
  height: 20px;
}

.mobile-nav-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 10px 0;
}

/* Медиа-запросы */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .mobile-header-icons {
    display: flex;
  }

  .header-right {
    display: none;
  }

  .header-container {
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .mobile-menu {
    width: 260px;
  }

  .mobile-nav-link {
    padding: 12px 15px;
    font-size: 15px;
  }

  .mobile-icon-link {
    width: 38px;
    height: 38px;
  }

  .mobile-icon-link .icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 10px;
  }

  .mobile-menu {
    width: 250px;
  }

  .mobile-nav-link {
    padding: 10px 12px;
    font-size: 14px;
  }

  .mobile-nav-link .icon {
    width: 18px;
    height: 18px;
  }

  .mobile-header-icons {
    gap: 8px;
  }

  .mobile-icon-link {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 360px) {
  .mobile-menu {
    width: 220px;
  }

  .mobile-icon-link {
    width: 34px;
    height: 34px;
  }

  .mobile-icon-link .icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 440px) {
.status-available{
    padding: 6px ;
    font-size: 9px;
    border-radius: 12px;
}
}
