@media (min-width: 1024px) {
  .mobile-icon-link {
    display: block; /* Чтобы кнопка могла принимать ширину 100% */
    width: 100%;
    box-sizing: border-box; /* Оставляем border-box, чтобы кнопка не вылезла за края изза отступов */
    width: auto !important;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ========================================================
   DUBAI DARK THEME VARIABLES
======================================================== */
:root {
  --dubai-gold: #D4AF37;
  --dubai-dark-bg: #0a0a0c;
  --dubai-card-bg: #141414;
  --dubai-text: #ffffff;
  
  --btn-purple: #7B61FF;
  --btn-whatsapp: #25D366;
  --btn-telegram: #2b2b2b;
}
@media (min-width: 1024px) {
  * {
    box-sizing: content-box;
  }
}
.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: #e32472;
  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: #e32472;
}
.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: #e32472;
  transform: translateY(-2px);
}
.whatsapp {
  color: #25d366 !important;
}
.telegram {
  color: #0088cc !important;
}
.mobile-menu-toggle {
  display: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.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: #e32472;
  color: #000;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  border: 2px solid #e32472;
}
.hero-btn:hover {
  background-color: transparent;
  color: #e32472;
}
.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: #e32472;
  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: 22px;
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(227, 36, 114, 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: #e32472;
  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: 10px;
  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: #1a1602d6;
  transform: scale(1.1);
}

.favorite-btn:hover i,
.favorite-btn.active i {
  color: #000;
}
.favorite-btn.active {
  background-color: #1a1602d6;
}
.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: #e32472;
  bottom: -5px;
  left: 0;
}
.filter-toggle {
  display: none;
  background: none;
  border: none;
  color: #e32472;
  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);
 
  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: #e32472;
  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, #e32472, #e32472);
  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:hover {
  transform: scale(1.15);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.6);
  background: #e32472;
}
.range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e32472;
  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: #e32472;
  color: #000;
}
.apply-filter:hover {
  background-color: #e32472;
  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: #e32472;
  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 #e32472;
}
.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: #e32472;
  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: #e32472;
  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: var(--dubai-gold);
  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: #e32472;
  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);
   
  }
  .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: 22px;
    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;
  
  }
  .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: 22px;
    line-height: 1.1;
  }
  .model-name span {
    font-size: 18px;
    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: 10px;
    left: 8px;
  }
  .favorite-btn i {
    font-size: 14px;
  }
  .availability-indicator {
    top: 6px;
    right: 6px;
  }
  .status-available,
  .status-unavailable {
    font-size: 12px;
    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: 22px;
  }
  .model-name span {
    font-size: 18px;
    padding: 2px 4px;
  }
  .price-amount {
    font-size: 20px;
  }
  .price-label,
  .price-duration {
    font-size: 15px;
  }
  .profile-verify-small {
    font-size: 8px;
    padding: 2px 5px;
  }
  .favorite-btn {
    width: 30px;
    height: 30px;
    top: 10px;
    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: 20px;
  }
  .model-name span {
    font-size: 15px;
    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: #e32472;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}
.nav-favorites-link:hover,
.nav-language-link:hover {
  background-color: #e32472;
  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: 10px;
  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: #e32472;
}
.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: #e32472;
  bottom: -5px;
  left: 0;
}
.filter-toggle {
  display: none;
  background: none;
  border: none;
  color: #e32472;
  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);
 
  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: #c6e324;
  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, #e32472, #e32472);
  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:hover {
  transform: scale(1.15);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.6);
  background: #e32472;
}
.range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e32472;
  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: #e32472;
  color: #000;
}
.apply-filter:hover {
  background-color: #e32472;
  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 var(--dubai-gold);
  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: var(--dubai-gold);
  background: #fff;
  transform: translateY(-2px);
}
.pagination-btn.active {
  background:   rgb(48, 50, 12);
  color: #fff;
  border-color: var(--dubai-gold);
  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 #e32472;
  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);
   
  }
}
@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;
    
  }
  .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: #e32472;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}
.nav-favorites-link:hover,
.nav-language-link:hover {
  background-color: #e32472;
  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(1, 1fr);
    gap: 12px;
  }

  .model-card-wrapper {
    height: 550px;
    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;
 
  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: var(--dubai-gold);
  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: var(--dubai-gold);
  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: var(--dubai-gold);
  bottom: -5px;
  left: 0;
}

.filter-toggle {
  display: none;
  background: 0 0;
  border: none;
  color: var(--dubai-gold);
  font-size: 20px;
  padding: 5px;
  border-radius: 5px;
}

.filter-content {
  padding: 20px;
}

.filters-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
 
  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: var(--dubai-gold);
  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::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e32472;
  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: var(--dubai-gold);
  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: #e32472;
  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);
  }

  .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: 40px;
  }

  .social-icons a {
    margin-left: 15px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .models-section {
    padding: 60px 0;
  }

  .models-grid {
    grid-template-columns: repeat(1, 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;
    
  }

  .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: 30px;
  }

  .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(1, 1fr);
    gap: 12px;
  }

  .model-card-wrapper {
    height: 550px;
    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: 550px;
    border-radius: 10px;
  }
}

@media (max-width: 360px) {
  .models-grid {
    gap: 8px;
  }

  .model-card-wrapper {
    height: 550px;
  }
}

.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(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  color: #e32472;
  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 #e32472;
}

.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, #e32472, #e32472, #e32472);
}

.timed-popup-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #e32472;
  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: #e32472;
}

.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, #e32472, #e32472);
  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%;
}

/* Стили для кнопки избранного */
.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: #e32472;
  transform: scale(1.1);
}

.favorite-btn i {
  font-size: 20px;
  color: #fff;
  transition: all 0.3s ease;
}

.favorite-btn.active i {
  color: var(--dubai-gold);
  font-weight: 700;
}



/* Анимация при добавлении в избранное */
@keyframes favoriteAdded {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

.favorite-btn.adding {
  animation: favoriteAdded 8.4s ease;
}

/* Всплывающее уведомление */
.favorite-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #0d0106a7, #15030bb1);
  color: var(--dubai-gold);
  padding: 15px 25px;
  border-radius: 8px;
  z-index: 10000;
  font-weight: bold;
  box-shadow: 0 4px 20px var(--dubai-gold);
  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: 10px;
    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: 10px;
    left: 6px;
  }

  /* Если есть видео - сдвигаем */
  .model-image:has(.video-indicator) .favorite-btn {
    left: 53px;
  }

  .favorite-btn i {
    font-size: 14px;
  }
}
.botim-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 25px 0 15px;
}

.botim-btn-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 8px 22px;
  font-size: 16px;
  font-weight: 500;

  color: #dbe9f4;
  /* светлый холодный текст */
  background: transparent;

  border: 2px solid #0129c2;
  /* глубокий тёмно-синий Botim */
  border-radius: 6px;

  text-decoration: none;

  transition: all 0.25s ease;
}

.botim-btn-dark svg {
  width: 18px;
  height: 18px;
  color: #dbe9f4;
}

.botim-btn-dark:hover {
  background: rgba(11, 74, 111, 0.2);
  /* лёгкое затемнение при наведение */
  border-color: #0c5a88;
}

.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;
}

.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%);
}

/* ===== Sticky bar (только для model-rates-section) ===== */
@media (max-width: 520px) {
  /* чтобы фикс-бар не перекрывал контент внизу страницы */
  body {
    padding-bottom: 86px;
    /* под высоту бара */
  }

  .model-rates-sticky-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 9999;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    padding: 10px;
    display: none;
    /* управляет JS */
  }

  .model-rates-sticky-bar.is-visible {
    display: block;
  }

  /* стили внутри бара — только для клона строки */
  .model-rates-sticky-bar .rates-table-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: center;
    padding: 0;
    border: 0;
  }

  .model-rates-sticky-bar .time-cell {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }

  .model-rates-sticky-bar .order-cell {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
  }

  .model-rates-sticky-bar .order-btn {
    flex: 1 1 calc(50% - 5px);
    max-width: calc(50% - 5px);
  }
}

@media (max-width: 520px) {
  /* Кнопки в sticky bar */
  .model-rates-sticky-bar .order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);

    transition:
      transform 0.12s ease,
      opacity 0.12s ease;
  }

  .model-rates-sticky-bar .order-btn:hover {
    transform: translateY(-1px);
    opacity: 0.96;
  }

  .model-rates-sticky-bar .order-btn:active {
    transform: translateY(0);
    opacity: 0.9;
  }

  .model-rates-sticky-bar .order-btn--wa {
    background: rgba(37, 211, 102, 0.22);
  }

  .model-rates-sticky-bar .order-btn--tg {
    background: rgba(0, 136, 204, 0.22);
  }
}

/* ===== Model Rates (scoped) ===== */
.model-rates-section {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
}

.model-rates-section .rates-header {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.model-rates-section .rates-header h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.model-rates-section .rates-table {
  width: 100%;
}

.model-rates-section .rates-table-body {
  display: block;
}

.model-rates-section .rates-table-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(227, 36, 114);
}

.model-rates-section .rates-table-row:last-child {
  border-bottom: 0;
}

/* Left column: time + price */
.model-rates-section .time-cell {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.model-rates-section .time-cell .duration {
  font-size: 22px;
  opacity: 0.85;
}

.model-rates-section .time-cell .price-aed {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

/* Right column: buttons */
.model-rates-section .order-cell {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.model-rates-section .order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    transform 0.12s ease,
    opacity 0.12s ease;
}

.model-rates-section .order-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.model-rates-section .order-btn--wa {
  background: rgba(37, 211, 102, 0.8);
}

.model-rates-section .order-btn--tg {
  background: rgba(0, 136, 204, 0.8);
}

/* Mobile */
@media (max-width: 520px) {
  .model-rates-section .rates-table-row {
    grid-template-columns: 1fr;
  }

  /* Center time + price */
  .model-rates-section .time-cell {
    align-items: center;
    text-align: center;
  }

  /* 2 buttons 50/50 */
  .model-rates-section .order-cell {
    justify-content: center;
    width: 100%;
  }

  .model-rates-section .order-btn {
    flex: 1 1 calc(50% - 5px);
    max-width: calc(50% - 5px);
  }
}

.model-content-section {
  display: flex;
  flex-direction: column;
  /* Изменено с row на column */
  gap: 30px;
  margin: 20px 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);
    /* Два видео в ряд на планшетах */
  }
}

/* Стили для кнопки избранного */
.favorite-btn {
  position: absolute;
  top: 10px;
  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: #1a1602d6;
  transform: scale(1.1);
}
.fa-star:before
{ color: var(--dubai-gold);}
.favorite-btn i {
  font-size: 22px;
  color: rgb(254, 0, 0);
  transition: all 0.3s ease;
}

.favorite-btn.active i {
  color:  var(--dubai-gold);
  font-weight: 700;
}



/* Стили для полноэкранной кнопки */
.fullscreen-favorite-btn {
  position: fixed;
  top: 35px;
  left: 25px;
  background-color: rgba(20, 3, 10, 0.6);
  /* Справа от кнопки закрытия */
}

/* Анимация при добавлении в избранное */
@keyframes favoriteAdded {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

.favorite-btn.adding {
  animation: favoriteAdded 8.4s ease;
}

/* Всплывающее уведомление */
.favorite-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #0b0206b9, #100409bc);
  color: var(--dubai-gold);
  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;
  border: 2px 

}

.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 {
    left: 25px;
    top: 35px;
    z-index: 10000 !important;
  }

  .favorite-notification {
    right: 10px;
    top: 10px;
    font-size: 14px;
    padding: 12px 20px;
  }
}

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: #e32472;
}

.model-profile-section {
  padding: 0 0 80px;
}

.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: #e32472 !important;
  background-color: rgba(0, 0, 0, 0.6) !important;
  width: 30px !important;
  height: 45px !important;
  border-radius: 8px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  transition: all 0.3s ease !important;
}
.swiper-button-next:after{
    font-size: 20px !important;
}
.swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: #e32472;
  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: #e32472;
  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: #e32472;
}

.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(227, 36, 114, 0.2);
  color: #e32472;
  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 #e32472;
}

.description-quote::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 60px;
  color: rgba(227, 36, 114, 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: #e32472;
  color: #000;
  border: 2px solid #e32472;
}

.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 #e32472;
  color: #e32472;
}

.model-cta .btn-outline:hover {
  background-color: #e32472;
  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: #e32472;
}

.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 {
  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(227, 36, 114, 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: #e32472;
}

.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: #e32472;
  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: #e32472;
  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: #e32472;
  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: #e32472;
  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: #e32472;
  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 40px;
  }

  .model-attributes {
    grid-template-columns: 1fr;
  }

  .model-recommendations {
    padding: 50px 0;
  }

  .recommendations-header h2 {
    font-size: 28px;
  }

    .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;
      min-height: 600px;
}

.main-slider {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.slide {
  display: none;
  width: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumbnails {
  display: none;
  justify-content: center;
  margin-top: 10px;
  gap: 6px;
  overflow-x: auto;
  bottom: 0px;
  position: absolute;
  background-color: black;
}

.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: #e32472;
  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: 70px;
  height: 70px;
  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: 84px;
    padding: 10px;
    gap: 8px;
    max-width: 95vw;
  }

  .fullscreen-thumb {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .fullscreen-thumbnails {
    bottom: 100px;
    padding: 8px;
    gap: 6px;
  }

  .fullscreen-thumb {
    width: 60px;
    height: 60px;
  }
}

.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: rgba(0, 0, 0, 0.7);
    color: var(--dubai-gold);
    border:1px solid  var(--dubai-gold);
    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: var(--dubai-gold);
    text-decoration: none;
    white-space: nowrap;
    height: 48px;
    box-sizing: border-box;
}

.model-page-nav-button:hover {
  background: rgba(0, 0, 0, 0.7);
  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 #e32472;
}

.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: #e32472;
}

.rates-table {
  width: 100%;
}

.rates-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  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(227, 36, 114, 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;
  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: #e32472;
  text-transform: capitalize;
}

.price-aed {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  display: block;
}

.rates-table-row:first-child .duration {
  color: #e32472;
  font-weight: 700;
}

.rates-table-row:first-child .price-aed {
  color: #e32472;
}

.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: 0px 0px;
  }

  .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 h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .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, #e32472, #e32472);
  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, #e32472, #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: #e32472;
  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-index-top{
top: 10px;
    width: 40px;
    height: 40px;
}

    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .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: #080601;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 25px;
        color: #fd0000;;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .nav-favorites-link:hover,
    .nav-language-link:hover {
        background-color: #9b7b14;
        color: #ffffff;
        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: #e32472;
    }

    /* 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;
    }

    .mobile-menu.active {
        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: var(--dubai-gold);
        font-size: 20px;
        font-weight: 600;
        margin: 0;
    }

    .mobile-menu-close {
        cursor: pointer;
        padding: 5px;
    }

    .mobile-menu-close i {
        font-size: 24px;
        color: var(--dubai-gold);
        transition: all 0.3s ease;
    }

    .mobile-menu-close:hover i {
        color:var(--dubai-gold);
        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: var(--dubai-dark-bg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        color: var(--dubai-gold);
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:active {
        background-color: var(--dubai-dark-bg);;
        color: var(--dubai-gold);
        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: 20px;
        }

        .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;
        }
    }
    /* ========================================================
   НОВЫЕ СТИЛИ: КАРУСЕЛЬ И КАРТОЧКИ (DUBAI THEME)
======================================================== */
.top-carousel-section {
    
    padding: 30px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-models-swiper {
    width: 100%;
    padding: 0 15px;
}
.carousel-card {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.carousel-image-wrapper {
    width: 100%;
    height: 100%;
}
.carousel-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-name-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px 15px 15px;
    /* Градиент станет полностью прозрачным уже на середине блока (50%) */
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 20%);
}
.carousel-name-overlay span {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
}
.carousel-discover-block {
    text-align: center;
    margin-top: 30px;
    padding: 0 20px;
}
.carousel-discover-block p {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}
.carousel-discover-block p em {
    color: var(--btn-purple);
    font-style: italic;
}
.carousel-browse-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--btn-purple);
    color: #fff;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.carousel-browse-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 97, 255, 0.4);
}

/* --- СЕТКА НОВЫХ КАРТОЧЕК --- */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.model-list-item {
    display: flex;
    flex-direction: row;
    background: #1f1d1d;
    border-radius: 16px;
    padding: 12px;
    gap: 15px;
    margin-bottom: 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.model-list-item:hover {
    transform: translateY(-5px);
}

.model-list-image-container {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
}

.model-list-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-list-info-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.model-list-header {
    text-align: left;
    margin-bottom: 12px;
}

.model-list-header h3 {
    color: #ffffff;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.model-list-divider {
    height: 1px;
    background: #eaeaea;
    margin: 10px 0 15px;
}

.model-list-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.list-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    border-radius: 20px;
    text-decoration: none;
    transition: transform 0.2s;
    font-size: 16px;
}

.list-btn:hover {
    transform: scale(1.03);
}

.view-btn {
    border: 1px solid var(--btn-purple);
    color: var(--btn-purple);
    background: transparent;
}

.wa-btn {
    background: var(--btn-whatsapp);
    color: #fff;
    border: none;
}

.tg-btn {
    background: #0064ff;
    color: #fff;
    border: none;
}

/* АДАПТИВНОСТЬ ДЛЯ НОВЫХ КАРТОЧЕК */
@media (max-width: 1200px) {
    .models-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
    .models-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 576px) {
    .model-list-item { 
        flex-direction: column; 
        padding: 10px;
        border: 2px solid var(--dubai-gold);
    }
    .model-list-image-container { 
        flex: 0 0 auto; 
        border-radius: 12px 12px 0 0; 
    }
    .model-list-info-container { 
        padding: 10px 5px; 
    }
    .list-btn { 
        height: 42px; 
    }
}
/* ========================================================
   DUBAI DARK THEME VARIABLES (ОБНОВЛЕНО ПОД БАННЕР)
======================================================== */
:root {
  /* Базовый золотой взят с центральной кнопки баннера */
  --dubai-gold: #e5c352; 
  --dubai-gold-dark: #b89327; /* Темный золотой для теней и ховеров */
  
  /* Фоновые цвета с баннера (мраморно-черный) */
  --dubai-dark-bg: #050505; 
  --dubai-card-bg: #111111; 
  --dubai-text: #ffffff;
  
  --btn-purple: #7B61FF;
  --btn-whatsapp: #25D366;
  --btn-telegram: #2b2b2b;
}
/* ========================================================
   СТИЛИ ДЛЯ ПРЕМИУМ БАННЕРА (TELEGRAM)
======================================================== */
.premium-banner-section {
    background-color: var(--dubai-dark-bg);
    padding: 30px 0 10px 0;
    text-align: center;
}

.premium-banner-link {
    display: block;
    max-width: 1200px; /* Ограничиваем ширину для больших мониторов */
    margin: 0 auto;
    border-radius: 8px; /* Небольшое скругление, чтобы вписаться в дизайн */
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(229, 195, 82, 0.3); /* Легкая золотая рамка */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.premium-banner-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(229, 195, 82, 0.2); /* Золотое свечение при наведении */
    border-color: var(--dubai-gold);
}

.premium-banner-img {
    width: 100%;
    height: auto; /* Делает изображение резиновым (адаптивным) */
    display: block;
    object-fit: contain;
}

/* Микро-настройки отступов для мобильных телефонов */
@media (max-width: 768px) {
    .premium-banner-section {
        padding: 20px 0 0 0;
    }
    .premium-banner-link {
        border-radius: 4px;
    }
}
/* ========================================================
   КОРРЕКЦИЯ ОТСТУПОВ И ПЛАВНАЯ ПРОКРУТКА КАРУСЕЛИ
======================================================== */

/* 1. Делаем прокрутку карусели идеально плавной (без рывков) */
.top-models-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* 2. Убираем лишний отступ снизу у бегущей дорожки */
.top-carousel-section {
    padding-bottom: 15px !important;
}

/* 3. Уменьшаем отступы вокруг премиум-баннера */
.premium-banner-section {
    padding: 10px 0 15px 0 !important;
}

/* 4. Значительно уменьшаем огромный отступ сверху у сетки моделей */
.models-section {
    padding-top: 15px !important; 
}

/* Микро-коррекция заголовка "Models Portfolio", если он есть */
.models-section .section-header {
    margin-bottom: 30px !important;
}
/* ========================================================
   ЖЕСТКАЯ ФИКСАЦИЯ ВЫСОТЫ КАРУСЕЛИ (РОВНО 200px)
======================================================== */
.top-carousel-section {
    height: 250px !important;
    padding: 10px 0 !important; /* Оставляем по 10px сверху и снизу для "воздуха" */
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
}

.top-models-swiper {
    height: 100% !important; /* Свайпер занимает всю доступную высоту (180px) */
}

.top-models-swiper .swiper-wrapper {
    height: 100% !important;
    align-items: center !important;
}

.carousel-card {
    height: 100% !important; /* Карточка строго вписывается по высоте */
    aspect-ratio: auto !important; /* Отключаем жесткие пропорции */
    display: block;
}

.carousel-image-wrapper {
    height: 100% !important;
}

.carousel-image-wrapper img {
    height: 100% !important;
    object-fit: cover !important; /* Фотография сама правильно обрежется без искажений */
}

/* Корректировка текста внутри карточки для новой высоты */
.carousel-name-overlay {
    padding: 20px 10px 10px !important; 
}
.carousel-name-overlay span {
    font-size: 15px !important; /* Чуть уменьшаем шрифт, так как карточка стала ниже */
}
.swiper-fraction-badge { 
            position: absolute; 
            top: 15px; /* Перенесли наверх */
            right: 15px; 
            background: rgba(0,0,0,0.7); 
            backdrop-filter: blur(5px); 
            color: var(--dubai-gold); 
            font-weight: 700; 
            font-size: 12px; /* Уменьшили шрифт */
            padding: 4px 10px; /* Уменьшили отступы */
            border-radius: 20px; 
            z-index: 10; 
            border: 1px solid rgba(229,195,82,0.5); 
            letter-spacing: 1px; 
            pointer-events: none; 
        }
/* ========================================================
   DUBAI DARK THEME VARIABLES: POLISHED GRANITE EDITION
======================================================== */
:root {
  /* Фирменное Дубайское золото */
  --dubai-gold: #ff0000; 
  --dubai-gold-dark: #ff0000; 
  
  /* Базовые цвета каменной породы */
  --dubai-dark-bg: #0a0a0c; 
  
  /* ПРОФЕССОРСКОЕ РЕШЕНИЕ: Полупрозрачный фон карточек (85%), 
     чтобы текстура гранита благородно просвечивала сквозь них */
  --dubai-card-bg: rgba(20, 20, 22, 0.85); 
  --dubai-text: #ffffff;
  
  /* Цвета кнопок */
  --btn-purple: #7B61FF;
  --btn-whatsapp: #25D366;
  --btn-telegram: #2b2b2b;
}

body {
  font-family: Montserrat, sans-serif;
  line-height: 1.6;
  color: var(--dubai-text);
  /* Сложное фоновое свечение (Mesh Gradient) */
  background: 
    radial-gradient(circle at 0% 0%, rgba(229, 195, 82, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(123, 97, 255, 0.05) 0%, transparent 50%),
    #050505;
  background-color:#121212;
  background-attachment: fixed;
  overflow-x: hidden;
}
/* =========================================
   SYSTEMIC REDESIGN: LUXURY CONTROL PANEL
   ========================================= */

.filter-container {
    background: #0f0f11; /* Глубокий черный */
    border-radius: 24px;
    padding: 8px;
    border: 1px solid #1a1a1e;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    margin-bottom: 15px;
}

/* Шапка как панель управления */
.filter-header {
    background: #16161a;
    border-radius: 18px;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #222;
}

.filter-header h3 {
    font-size: 14px;
    letter-spacing: 2px;
    color: #555; /* Приглушенный заголовок */
    text-transform: uppercase;
}

/* Визуальные модули фильтров */
.filter-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    padding: 12px;
}

.filter-group {
    background: #16161a;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #1f1f24;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-group:hover {
    border-color: rgba(229,195,82,0.3);
    background: #1c1c22;
}

.filter-group label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Цифровое табло значений */
.filter-group label span {
    font-size: 20px;
    color: #fff;
    font-family: 'Courier New', monospace; /* Эффект цифрового табло */
    text-shadow: 0 0 10px rgba(229,195,82,0.2);
}

/* НОВАЯ СИСТЕМА СЛАЙДЕРА: "Deep Track" */
.range-slider {
    position: relative;
    height: 12px; /* Широкий трек */
    background: #0a0a0c; /* Вдавленный фон */
    border-radius: 10px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
    margin: 10px 0;
}

.range-fill {
    position: absolute;
    height: 100%;
    background: var(--dubai-gold);
    border-radius: 10px;
    
}

/* Ползунки как физические переключатели */
.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    background: var(--dubai-gold);
    border: 6px solid #000;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: 0.2s;
}

.range-input::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    border-color: #e5c352;
}

/* Блок сортировки на всю ширину */
.sorting-row {
    grid-column: 1 / -1;
    background: #16161a;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #1f1f24;
    display: flex;
    align-items: center;
    gap: 20px;
}

.sort-select {
    background: #0a0a0c;
    border: 1px solid #222;
    color: var(--dubai-gold);
    padding: 12px 20px;
    border-radius: 12px;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

/* Кнопки как финальный аккорд */
.filter-buttons {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
}

.filter-button {
    flex: 1;
    padding: 18px;
    border-radius: 14px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.reset-filter {
    background: transparent;
    border: 1px solid #333;
    color: #555;
}

.apply-filter {
    background: #000;
    color: var(--dubai-gold);
    border: none;
}

.apply-filter:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
}
header, .header {
    position: sticky;      /* Включаем "липкий" режим */
    top: 0;               /* Прижимаем к самому верху */
    z-index: 1000;        /* Поднимаем над каруселью и карточками (у них z-index до 6) */
    
    /* Профессорский штрих: добавляем фон и размытие, чтобы контент под хедером не мешал чтению */
    background: rgba(10, 10, 12, 0.95); 
    backdrop-filter: blur(10px); 
    border-bottom: 1px solid rgba(229, 195, 82, 0.2);
    
    transition: all 0.3s ease; /* Для плавной анимации, если решим менять высоту при скролле */
}
/* Профессорское закрепление хедера */
header, .header {
    position: fixed;      /* Фиксируем относительно экрана, а не документа */
    top: 0;               /* Прижимаем к верхнему краю */
    left: 0;              /* Растягиваем от левого края... */
    width: 100%;          /* ...до правого края */
    z-index: 1100;        /* Поднимаем выше всех карточек и фильтров */
    
    /* Начальный стиль (до скролла) */
    background: rgba(10, 10, 12, 0.95); 
    backdrop-filter: blur(10px); 
    padding: 15px 0;
    transition: all 0.3s ease-in-out; /* Плавность для JS-эффекта */
    border-bottom: 1px solid rgba(229, 195, 82, 0.1);
}

/* 
*/
body {
    padding-top: 80px; /* Настройте это число под реальную высоту вашего хедера */
}

.image-banner-section {
    padding: 10px 0 40px 0; /* Отступы сверху и снизу */
}

.photo-banner-link {
    display: block;
    width: 100%;
    border-radius: 24px; /* Совпадает с вашими новыми фильтрами */
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(229, 195, 82, 0.15); /* Тонкая золотая рамка */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-banner-link:hover {
    transform: scale(1.01); /* Легкое увеличение при наведении */
    box-shadow: 0 15px 50px rgba(229, 195, 82, 0.2);
    border-color: var(--dubai-gold);
}

.main-photo-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* Убираем возможные зазоры снизу */
    vertical-align: middle;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .image-banner-section {
        padding: 10px 0 0px 0;
    }
    .photo-banner-link {
        border-radius: 16px; /* Чуть меньше скругление для мобилок */
    }
}
.feed-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #1DA1F2; /* Классический цвет верификации */
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(29, 161, 242, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(29, 161, 242, 0.3);
}
    /* ==========================================
           ПРОФЕССОРСКАЯ СЕТКА: АДАПТАЦИЯ ПОД ВСЕ ЭКРАНЫ
           ========================================== */
        .container {
            max-width: 1440px; /* Расширяем контейнер для ПК */
            margin: 0 auto;
            padding: 0 15px;
            
        }

        .feed-grid {
            display: grid;
            grid-template-columns: 1fr; /* Моб: 1 колонка */
            gap: 15px;
            margin: 0 auto;
            width: 100%;
        }

        /* Планшеты */
        @media (min-width: 768px) {
            .feed-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        /* Ноутбуки и небольшие ПК */
        @media (min-width: 1024px) {
            .feed-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }
        }

        /* Большие мониторы */
        @media (min-width: 1400px) {
            .feed-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Контейнер самой карточки */
        .feed-card {
            background: var(--dubai-gold); 
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.4);
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(229,195,82,0.3);
            text-decoration: none;
            color: #111;
            transition: transform 0.3s ease, box-shadow 0.3s ease; /* Анимация наведения для ПК */
        }

        /* Эффект наведения только для ПК (где есть мышка) */
        @media (hover: hover) {
            .feed-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 30px rgba(229,195,82,0.3);
            }
        }

        /* Шапка карточки (Топ бар) */
        .feed-header {
            background: linear-gradient(90deg, #111, #222); 
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .feed-agency-name { color: var(--dubai-gold); font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
        .feed-avatar { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--dubai-gold); overflow: hidden; }
        .feed-avatar img { width: 100%; height: 120%; object-fit: cover; }

        /* Главное фото */
        .feed-main-photo {
            position: relative; 
            width: 100%;
            height: 350px;
            aspect-ratio: 4/3;
            background: #000;
            overflow: hidden; /* Важно для ПК, чтобы картинка не вылезала при анимации */
        }

        .feed-main-photo img { 
            width: 100%; 
            height: 450px; /* Фикс для ПК: чтобы фото заполняло контейнер, а не вытягивалось */
            object-fit: cover; 
            display: block; 
            transition: transform 0.5s ease;
        }

        @media (hover: hover) {
            .feed-card:hover .feed-main-photo img {
                transform: scale(1.05); /* Легкий зум при наведении */
            }
        }

        /* Стиль для видео-индикатора */
        .feed-badge-vid { 
            background: rgba(0,0,0,0.6); 
            color: #fff; 
            width: 28px; /* Чуть увеличим для кликабельности */
            height: 28px; 
            border-radius: 50%; 
            display: flex; 
            justify-content: center; 
            align-items: center; 
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .feed-badges-left { 
            position: absolute; 
            bottom: 12px; 
            left: 12px; 
            display: flex; 
            gap: 8px; 
            z-index: 5; 
            pointer-events: none;
        }

        /* Плашка Available */
        .feed-badge-avail { 
            position: absolute; 
            bottom: 12px; 
            right: 12px; 
            background: #000; 
            color: red; 
            font-weight: 800; 
            font-size: 11px; 
            padding: 4px 12px; 
            border-radius: 16px; 
            text-transform: uppercase;
            z-index: 6; 
            white-space: nowrap;
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
            pointer-events: none;
        }

        .feed-photo-count {
            position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.8); color: #fff;
            font-weight: 600; font-size: 12px; padding: 4px 12px; border-radius: 16px; z-index: 5; pointer-events: none;
        }

        /* 3 Миниатюры (Тамбнейлы) */
        .feed-thumbnails {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            background: #fff;
            padding-top: 2px;
        }
        .feed-thumb { width: 100%; aspect-ratio: 4/3; background: #eee; overflow: hidden; }
        .feed-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

        /* Инфо-блок */
        .feed-info { 
          max-height: 350px;
            padding: 15px; 
            display: flex; 
            flex-direction: column; 
            gap: 8px; 
            background: linear-gradient(90deg, #111, #222); 
            flex-grow: 1; /* Чтобы карточки были одной высоты на ПК */
        }
        
        .feed-price-row { display: flex;gap: 5px; justify-content: space-between; align-items: center; }
        .feed-price { font-size: 18px; font-weight: 800; color: #fff; }
        .feed-price small { font-size: 14px; color: #666; font-weight: 600; }
        
        .feed-icons { display: flex; gap: 15px; align-items: center; }
        .feed-icon-btn { background: none; border: none; font-size: 22px; color: #666; cursor: pointer; padding: 0; transition: 0.3s;}
        .feed-icon-btn:hover { color: var(--dubai-gold); }
        .feed-icon-btn.active { color: var(--dubai-gold); }
        .feed-icon-link { color: red; font-size: 22px; text-decoration: none; transition: 0.3s;}
        .feed-icon-link:hover { color: #fff; }

        /* Текст */
        .feed-title { 
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            font-size: 25px; 
            font-weight: 700; 
            color: var(--dubai-gold); 
            margin: 5px 0 auto 0; /* auto выталкивает кнопки вниз, если имена разной длины */
            width: 100%;
        }
        .model-meta-right { 
            font-size: 12px; 
            color: #fff; 
            font-weight: 500; 
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Кнопки мессенджеров */
        .feed-actions { display: flex; gap: 10px; margin-top: 10px;}
        .feed-btn {
            flex: 1; height: 38px; border-radius: 6px; display: flex; justify-content: center; align-items: center; gap: 6px;
            font-size: 13px; font-weight: 700; text-decoration: none; color: #fff; text-transform: uppercase; transition: opacity 0.3s;
        }
        .feed-btn:hover { opacity: 0.9; }
        .feed-btn.wa { background: #25D366; }
        .feed-btn.tg { background: #0088cc; }
        
        /* Пагинация */
        .pagination { display: flex; gap: 5px; justify-content: center; flex-wrap: wrap; margin: 0px 0;}
        .pagination-btn { background: #111; border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 8px 10px; border-radius: 8px; cursor: pointer; transition: 0.3s; font-weight: 600; min-width: 10px; }
        .pagination-btn:hover { background: rgba(229,195,82,0.2); border-color: var(--dubai-gold); color: var(--dubai-gold); }
        .pagination-btn.active { background: var(--dubai-gold); color: #000; font-weight: 800; border-color: var(--dubai-gold); }
        .pagination-btn.disabled { opacity: 0.3; pointer-events: none; }
        .pagination-btn.dots { background: none; border: none; pointer-events: none; }

        /* ==========================================
           АДАПТАЦИЯ ФИЛЬТРОВ ПОД ПК
           ========================================== */
        @media (min-width: 1024px) {
            .filter-container {
                margin-bottom: 40px !important;
            }
            .filter-header {
                display: none !important; /* На ПК фильтры всегда открыты, заголовок не нужен */
            }
            .filter-content {
                display: block !important; /* Принудительно показываем */
                padding: 25px !important;
                background: rgba(20,20,22,0.9);
                border-radius: 16px;
            }
            .filters-row {
                display: grid;
                grid-template-columns: repeat(4, 1fr) 200px; /* 4 ползунка + 1 селект в один ряд */
                gap: 20px;
                align-items: center;
            }
            .filter-group {
                margin-bottom: 0;
            }
            .filter-buttons {
                justify-content: flex-end; /* Кнопки прижимаем вправо */
                margin-top: 20px;
            }
            .filter-buttons button {
                flex: none !important;
                width: 200px;
            }
        }
    /* ХИРУРГИЧЕСКИЙ ФИКС ХЕДЕРА */
        .feed-header {
            background: linear-gradient(90deg, #111, #222); 
            padding: 0 15px; /* Убрали вертикальный паддинг для точного контроля высоты */
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 54px;
            position: relative;
        }

        .header-right-group {
            display: flex;
            align-items: center;
            gap: 10px; /* Четкий зазор между сердцем и аватаром */
            height: 100%;
        }

        .header-favorite-btn {
            /* ОБНУЛЕНИЕ */
            position: static !important; /* Отменяем absolute, встает в поток flex */
            transform: none !important;
            box-shadow: none !important;
            background: none !important;
            border: none !important;
            
            /* СТИЛИЗАЦИЯ */
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            padding: 0;
            transition: color 0.2s ease, transform 0.2s ease;
        }

        .header-favorite-btn.active {
            color: #ff0000 !important;
        }

        .header-favorite-btn:hover {
            color: #fff !important;
            transform: scale(1.1);
        }

        .feed-avatar { 
            width: 36px; 
            height: 36px; 
            border-radius: 50%; 
            border: 1.5px solid var(--dubai-gold); 
            overflow: hidden;
            display: block;
        }
        
        .feed-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #fff;
    padding-top: 2px;
}
.feed-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    background: #222;
    overflow: hidden;
}
.feed-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
}
/* Показываем фото, когда Lazy Load сработал */
.feed-thumb img.loaded, .feed-thumb img[src^="http"], .feed-thumb img[src^="/proxy"] {
    opacity: 1;
}
 @media (max-width: 450px){
.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 20px !important;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
  }


 }
