@media (min-width: 769px) {
  /* Контейнер пагинации на ПК */
  .pagination {
    display: flex !important;
    justify-content: flex-end; /* Например, прижать к правому краю на ПК */
    gap: 12px;
    margin-top: 50px;
  }
  .page-number,
  .pagination-btn {
    width: 40px !important;
    height: 40px !important;
    background-color: #a30e0e !important;
    border: 1px solid #444 !important;
    border-radius: 0 !important; /* Строгий квадрат */
    margin: 30px auto !important; /* ДОБАВЛЕНО: Центрирует сам блок пагинации по горизонтали */
  }

  /* Активная кнопка - заливка цветом */
  .page-number.active {
    background-color: #ff2600 !important;
    border-color: #ff2600 !important;
  }

  /* Черный блок с точками без зазоров */
  .pagination-dots {
    width: 50px;
    height: 50px;
    background: #ffffff !important;
    color: #000 !important;
    border: none !important;
  }
}

.pagination-dots {
  width: 50px;
  height: 50px;
  background: #ffffff !important;
  color: #000 !important;
  border: none !important;
}

body {
  font-family: "Segoe UI", Roboto, Helvetica, sans-serif;
  color: #ffffff;
  background-color: #132137;
}

.badge,
.info-header h2,
.section-title {
  font-weight: 700;
  text-transform: uppercase;
}

.models-section {
  padding: 40px 10px;
  position: relative;
  z-index: 2; /* Робимо її верхнім шаром */

  /* За бажанням: можна додати тінь зверху, щоб ефект наїзду був об'ємнішим */
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
  background-color: #132137;
}
.info-container {
  display: grid;
}

.info-container,
.models-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 28px;
  color: #ffffff;
  letter-spacing: 2px;
  position: relative;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff2600, #fc5130);
}
@media (max-width: 769px) {
  .section-title {
    font-size: 23px;
  }
}
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.pagination-number.active {
  background-color: #ff2600 !important; /* Красный фон */
  color: white !important; /* Белый текст */
  border-color: #ff2600 !important;
  cursor: default !important; /* Обычный курсор вместо пальца */
  pointer-events: none !important; /* Запрещаем клик */
  font-weight: bold;
}

/* Стили для неактивных стрелок (disabled), если они есть */
.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.model-image {
  width: 100%;
  height: 500px;
  position: relative;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.model-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}
.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 5px;
  border: 3px solid #f54747;
  text-decoration: none;
  color: #fff; /* Белый текст */
  background-color: transparent;
  transition: all 0.3s ease;
  border-radius: 4px;
}

/* КЛАСС ДЛЯ АКТИВНОЙ СТРАНИЦЫ */
.pagination a.active,
.pagination span.active {
  background-color: #ff2600 !important; /* Твой красный цвет */
  border-color: #ff2600 !important;
  color: white !important;
  font-weight: bold;
}

/* Эффект при наведении на обычную кнопку */

@media screen and (max-width: 768px) {
  .model-info {
    position: absolute !important;
    bottom: 25px !important;
    width: 100% !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
    z-index: 10 !important;

    /* Выравниваем в одну строку */
  }

  .info-row-pc {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
}

.buttons-wrapper-model-card {
  display: flex;
  align-items: center;
  gap: 10px;
}
.buttons-wrapper-model-card > * {
  flex: 1 1 auto;
}
.button-model-card {
  text-decoration: none;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 50%;
  border: 1px solid rgba(42, 171, 238, 0.25);
  width: 100%;
}
.button-model-card__wa {
  box-shadow: 0 0 13px rgba(0, 255, 0, 0.3);
  color: #059669;
}
.button-model-card__tg {
  box-shadow: 0 0 40px rgba(0, 114, 255, 0.6);
  color: #2aabee;
}

/* --- СТИЛИ ДЛЯ ПК (экран от 769px) --- */
.model-info {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  /* Увеличиваем градиент, чтобы цена на светлом фоне не терялась */
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    transparent 100%
  ) !important;
  padding: 20px 15px !important;
  box-sizing: border-box !important;
  z-index: 10 !important;
}
@media screen and (min-width: 769px) {
  .info-row-pc {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    width: 100% !important;
    /* ДОБАВЛЕНО: небольшой отступ между именем и ценой, чтобы не слипались */
    gap: 20px !important;
  }

  .model-name {
    font-family: inherit !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    padding-bottom: 2px !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    text-transform: uppercase !important;
    /* ДОБАВЛЕНО: если имя слишком длинное, оно не налезет на цену */
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    flex-shrink: 1 !important;
  }

  .model-price {
    font-family: inherit !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    /* ИСПРАВЛЕНО: добавляем отступ справа, чтобы цена не прилипала к краю карточки */
    padding: 0 5px 2px 0 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    text-align: right !important;
    /* ДОБАВЛЕНО: акцент на цену цветом, если нужно (например, красный как в пагинации) */
    /* color: #ff2600 !important; */
  }
}
.model-description {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
  max-width: 90%;
}

.filters-section,
.sticky-btn {
  backdrop-filter: blur(20px);
}

.info-header h2,
.model-name {
  font-size: 20px;
  letter-spacing: 1px;
}

.badge.vip {
  background: linear-gradient(45deg, #ff6b00, #ff8500);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

@keyframes pulseAvailable {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.model-name {
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.model-details {
  margin-top: 2px;
  color: #ccc;
  font-size: 14px;
  margin-bottom: 12px;
}

.info-card h3,
.service-tag {
  color: #ff2600;
  text-transform: uppercase;
}

.model-services {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-tag {
  background: rgba(220, 38, 38, 0.05);
  padding: 5px 10px;
  font-size: 11px;
  border: 1px solid rgba(255, 38, 0, 0.2);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.service-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(220, 38, 38, 0.1);
  transition: left 0.3s;
}

.info-section {
  padding: 0px 20px 40px;
}

.info-card,
.info-header {
  background: #0b1422;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.info-header {
  border: 1px solid #ff2600;
}
.faq-section::before,
.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}
.text-element {
  border-top: 15px solid transparent; /* Это создаст разрыв, который нельзя «сломать» */
  background-clip: padding-box; /* Чтобы фон не залез на границу */
  margin-bottom: 20px;
}

.info-header {
  padding: 15px 25px;
  margin-bottom: 30px;
  gap: 15px;
}

.info-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 15px;
}

.info-card {
  padding: 25px;
  transition: 0.3s;
}

.info-card::before,
.info-cta {
  background: linear-gradient(45deg, #ff2600, #fc5130);
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.info-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.info-card p {
  color: #ccc;
  line-height: 1.6;
  font-size: 13px;
}

.info-center {
  margin-top: 30px;
  z-index: 1;
}

.info-center p {
  color: #333 !important;
  font-weight: 500;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.footer-section h3,
.info-cta {
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 12px;
}

.info-cta {
  display: inline-block;
  color: #fff;
  padding: 12px 30px;
  text-transform: uppercase;
  transition: 0.3s;
  font-size: 14px;
}

.faq-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.faq-item,
.faq-question {
  background: #0b1422;
}

.faq-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 1;
}

.clear-filters,
.filter-select {
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.faq-item {
  margin-bottom: 8px;
  z-index: 1;
  position: relative;
}

.faq-question {
  color: #fff;
  padding: 15px 25px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  border: none;
  width: 100%;
  text-align: left;
  transition: 0.3s;
}
.faq-answer p {
  color: #ccc;
  line-height: 1.6;
  font-size: 14px;
  margin: 0;
}
.faq-answer p {
  opacity: 0;
  visibility: hidden;
}
.faq-item.active > .faq-answer p {
  opacity: 1;
  visibility: visible;
}
.footer {
  background: rgba(0, 0, 0, 0.98);
  color: #fff;
  border-top: 1px solid rgba(255, 38, 0, 0.3);
  position: relative;
  z-index: 2;
  padding-bottom: 85px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto 30px;
  padding: 30px 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-section h3 {
  color: #ff2600;
  font-size: 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-section a,
.footer-section p {
  color: #ccc;
  text-decoration: none;
  line-height: 1.8;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
  color: #666;
  font-size: 11px;
}

.faq-question {
  padding-right: 40px;
}

.faq-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  background: #0b1422;
  transition:
    max-height 0.3s,
    padding 0.3s;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px 40px 20px 25px;
}

.faq-item.active .faq-icon {
  transform: translateY(-50%) rotate(45deg);
}

.sticky-btn {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.4s;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
}

.sticky-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.4s;
  z-index: -1;
}

.sticky-btn:active {
  transform: scale(0.95);
}

.sticky-btn svg {
  width: 24px;
  height: 24px;
  z-index: 1;
}

.sticky-telegram {
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  animation: 3s ease-in-out infinite telegramPulse;
}

@keyframes telegramPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
  }
}

.sticky-telegram::before,
.telegram-btn::before,
.telegram-channel::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.3),
    transparent
  );
}

.sticky-whatsapp {
  background: linear-gradient(45deg, #10b981, #059669);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  animation: 3s ease-in-out 1.5s infinite whatsappPulse;
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
  }
}

.sticky-whatsapp::before,
.whatsapp-btn::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.3),
    transparent
  );
}

@media (min-width: 769px) {
  .nav-links {
    display: flex !important;
    width: 100%;
    justify-content: flex-end;
  }

  .nav-links li:first-child {
    margin-left: auto;
  }
}

@media (max-width: 1024px) {
  .sticky-btn {
    width: 48px;
    height: 48px;
  }

  .sticky-btn svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .search-title {
    font-size: 22px;
  }

  .quick-filters {
    gap: 8px;
  }

  .checkbox-filters {
    justify-content: center;
    gap: 10px;
  }

  .sticky-btn {
    width: 44px;
    height: 44px;
    clip-path: polygon(
      0 0,
      calc(100% - 30px) 0,
      100% 50px,
      100% 100%,
      8px 100%,
      0 calc(100% - 50px)
    );
  }

  .sticky-btn svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 600px) {
  .channel-name {
    font-size: 14px;
  }

  .banner-section {
    padding: 15px;
  }

  .banner-image {
    width: 98%;
    border-radius: 8px;
  }
}
@media (max-width: 480px) {
  .search-title {
    font-size: 20px;
  }

  .filters-section,
  .search-section {
    padding: 5px 15px;
  }

  .sticky-btn {
    width: 60px;
    height: 60px;
  }

  .filters-section {
    background: rgba(0, 0, 0, 0.95);
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255, 38, 0, 0.3);
  }

  .filters-container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .filter-count {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
  }

  .clear-filters {
    color: #ff2600;
    font-size: 12px;
    padding: 6px 12px;
    border: 1px solid #ff2600;
    transition: 0.3s;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
  }

  .checkbox-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    position: relative;
    cursor: pointer;
  }

  .checkbox,
  .filter-select {
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
    cursor: pointer;
  }

  .checkbox {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #555;
    position: relative;
  }

  .filter-select,
  .pagination-btn {
    border: 1px solid rgba(255, 38, 0, 0.3);
  }

  .checkbox:checked {
    background: #ff2600;
    border-color: #ff2600;
    box-shadow: 0 0 15px rgba(255, 38, 0, 0.5);
  }

  .checkbox:checked::after {
    content: "✓";
    position: absolute;
    top: -3px;
    left: 2px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
  }

  .filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
  }

  .filter-select {
    color: #fff;
    padding: 10px 15px;
    font-size: 12px;
    outline: 0;
    font-weight: 500;
  }

  .filter-select:focus {
    border-color: #ff2600;
    box-shadow: 0 3px 20px rgba(255, 38, 0, 0.3);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
  }

  .filter-select option {
    background: #ffffff;
    color: #fff;
  }

  .mobile-filter-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
  }

  .mobile-filters-content {
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
  }

  .mobile-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
  }

  .mobile-filters-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
  }

  .mobile-close-btn {
    background: 0 0;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px;
  }

  .mobile-filters-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
  }

  .channel-button,
  .model-contact-btn {
    text-decoration: none;
    overflow: hidden;
  }

  .mobile-filter-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }

  .mobile-active-count {
    color: #666;
    font-size: 14px;
  }

  .mobile-clear-btn {
    background: 0 0;
    border: 1px solid #ff2600;
    color: #ff2600;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
  }

  .mobile-filter-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
  }

  .mobile-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    color: #333;
  }

  .mobile-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #ff2600;
  }

  .mobile-label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
  }

  .model-image {
    width: 100%;
    aspect-ratio: 3 / 4; /* Важно! Это создает рамку 300x400 еще до загрузки фото */
    background: #222; /* Цвет заглушки */
    overflow: hidden;
    position: relative;
  }
  .model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .channel-name {
    font-size: 15px;
  }

  .button-title,
  .model-price {
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .telegram-channel {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  }

  .anchor-channel {
    background: linear-gradient(45deg, #ff2600, #fc5130);
    box-shadow: 0 0 20px rgba(255, 38, 0, 0.3);
    animation: 3s ease-in-out infinite anchorPulse;
  }

  @keyframes anchorPulse {
    0%,
    100% {
      box-shadow: 0 0 20px rgba(255, 38, 0, 0.3);
    }

    50% {
      box-shadow: 0 0 30px rgba(255, 38, 0, 0.5);
    }
  }

  .anchor-channel::before {
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 38, 0, 0.3),
      transparent
    );
  }

  html {
    scroll-behavior: smooth;
  }

  .banner-section {
    width: 100%;
    padding: 20px;
    justify-content: center;
  }

  .banner-link {
    display: block;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
  }

  .banner-image {
    width: 95%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s;
  }

  .model-contact-btn,
  .page-dots,
  .page-number,
  .pagination-btn {
    width: 30px;
    height: 30px;
    display: flex;
  }

  .model-contacts {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    z-index: 5;
  }

  .model-contact-btn {
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    clip-path: polygon(
      0 0,
      calc(100% - 30px) 0,
      100% 50px,
      100% 100%,
      8px 100%,
      0 calc(100% - 50px)
    );

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  }

  .model-contact-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
    z-index: 1;
  }

  .telegram-contact {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
  }

  .whatsapp-contact {
    background: linear-gradient(45deg, #10b981, #059669);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
  }

  .model-price {
    position: absolute;
    right: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    font-family: Cinzel, serif;
    z-index: 90;
  }

  .channel-button {
    font-family:
      -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  }

  .page-number,
  .pagination-info {
    font-weight: 500;
    font-size: 14px;
  }

  .pagination-container {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 20px 0 0 !important;
    width: 100% !important;
  }

  /* Ряд со стрелками и цифрами */
  .pagination-controls {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
  }

  /* Блок только для цифр */
  .pagination-numbers {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
  }

  /* Кнопки и стрелки */
  .page-number,
  .pagination-arrow {
    width: 45px !important;
    height: 45px !important;
    background: #a30e0e !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .page-number.active {
    background: #ff2600 !important;
  }

  /* Если стрелка выключена */
  .pagination-arrow:disabled {
    background: #444 !important;
    opacity: 0.5 !important;
    cursor: not-allowed !important;
  }

  .page-number {
    width: 45px !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #a30e0e !important;
    color: white !important;
    border: none !important;
    cursor: pointer !important;
    font-weight: bold !important;
    border-radius: 4px !important;
    flex-shrink: 0 !important; /* Чтобы кнопка не сжималась */
  }

  .page-number.active {
    background: #ff2600 !important;
  }

  /* Стиль для точек ... */
  .pagination-dots {
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    font-weight: bold;
  }
  .pagination-dots {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff; /* Белый цвет точек */
    font-weight: bold;
    font-size: 20px;
  }

  /* Убираем лишние фантомные блоки (те самые ячейки снизу) */
  .pagination-container::before,
  .pagination-container::after,
  .pagination::before,
  .pagination::after {
    content: none !important;
    display: none !important;
  }

  .page-number,
  .pagination-btn {
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    margin: 30px auto !important; /* ДОБАВЛЕНО: Центрирует сам блок пагинации по горизонтали */
  }

  .page-dots,
  .pagination-info {
    color: #000;
  }

  .pagination-btn {
    justify-content: center;
    border-radius: 4px;
  }
  .page-number.active {
    background-color: #ff2600 !important; /* Твой красный цвет */
    color: #ffffff !important; /* Белый текст */
    border-color: #ff2600 !important;
    cursor: default !important; /* Обычный курсор вместо "пальца" */
    pointer-events: none !important; /* Полная блокировка кликов браузером */
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(255, 38, 0, 0.3); /* Легкое свечение для красоты */
  }
  .pagination-prev:disabled,
  .pagination-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    filter: grayscale(1);
  }

  .page-number.active {
    background: #ff2600;
    border-color: #ff2600;
    box-shadow: 0 3px 15px rgba(255, 38, 0, 0.4);
  }

  .pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }
  .colores {
    color: #000;
  }
  .pagination-page {
    display: flex;
    gap: 6px;
  }

  .page-number {
    justify-content: center;
    border: 1px solid rgba(255, 38, 0, 0.3);
    border-radius: 4px;
  }

  .page-dots {
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }

  .channel-buttons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
  }

  .channel-button {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    color: #fff;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 280px;
    flex: 1;
    max-width: 320px;
    clip-path: polygon(
      0 0,
      calc(100% - 12px) 0,
      100% 12px,
      100% 100%,
      12px 100%,
      0 calc(100% - 12px)
    );
  }

  .channel-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.5s;
    z-index: -1;
  }

  .button-icon {
    margin-right: 16px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s;
  }

  .button-content {
    flex: 1;
  }

  .button-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1;
  }

  .button-subtitle {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .button-arrow {
    margin-left: 12px;
    transition: transform 0.3s;
    opacity: 0.8;
  }

  .telegram-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
  }

  .whatsapp-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
  }
}
.model-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0, transparent 100%);
  pointer-events: none;
  border-radius: 0 0 8px 8px;
}
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .model-contact-btn {
    width: 34px;
    height: 34px;
  }

  .model-contact-btn svg {
    width: 18px;
    height: 18px;
  }

  .page-number,
  .pagination-btn {
    width: 36px;
    height: 36px;
    border-color: #ff2600;
  }

  .channel-buttons-container {
    gap: 16px;
    padding: 16px;
  }

  .channel-button {
    min-width: 240px;
    padding: 16px 20px;
    clip-path: polygon(
      0 0,
      calc(100% - 10px) 0,
      100% 10px,
      100% 100%,
      10px 100%,
      0 calc(100% - 10px)
    );
  }

  .button-title {
    font-size: 16px;
  }

  .button-subtitle {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .channel-name {
    font-size: 16px;
  }

  .channel-buttons-container {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .channel-button {
    min-width: 280px;
    max-width: 320px;
    width: 100%;
  }
}

/* ЗАЩИТА МОБИЛЬНОЙ ВЕРСИИ (Экран меньше 768px) */
@media screen and (max-width: 768px) {
  .pc-button-text {
    display: none !important; /* Прячем текст на мобиле */
  }

  /* Сбрасываем фон и обводку, чтобы на мобиле кнопки остались прежними */
  .pc-button {
    background: none !important;
    border: none !important;
    clip-path: none !important;
    padding: 0 !important;
  }
}

.mobile-contact.telegram {
  color: #08c;
}

.mobile-contact.whatsapp {
  color: #25d366;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 32px;
  justify-content: space-between;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #ccc;
  transition: 0.3s;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  position: absolute;
  top: 60px; /* Высота вашего хедера */
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.98);
  display: flex; /* Используем flex для внутреннего выравнивания */
  flex-direction: column;
  padding: 20px;
  z-index: 999;
  border-top: 1px solid rgba(255, 38, 0, 0.3);

  /* Анимация */
  transition: all 0.3s ease;
  transform: translateY(-10px);
  opacity: 0;

  /* ЭТО РЕШАЕТ ПРОБЛЕМУ: */
  visibility: hidden; /* Полностью скрывает элемент от браузера */
  pointer-events: none; /* Запрещает любые клики сквозь прозрачный блок */
}
.mobile-menu.show {
  display: flex !important;
  opacity: 1 !important;
  transform: translateY(0) !important;

  /* Возвращаем активность: */
  visibility: visible !important;
  pointer-events: auto !important;
}

.mobile-menu-contacts {
  display: flex;
  align-items: center;
  gap: 25px;
}

.mobile-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

/* HEADER */

.filters-section,
.header,
.search-section {
  backdrop-filter: blur(20px);
}

.clear-filters,
.mobile-contact,
.model-card,
.nav-menu a,
.sticky-btn {
  text-decoration: none;
}

.model-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-image img {
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-link {
  min-height: 200px;
}

.model-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  color: #ff2600;
}

.model-card {
  min-height: 400px;
  display: block;
}

.filters-section {
  min-height: 120px;
}

.filters-container {
  min-height: 80px;
}

.mobile-filter-button {
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  transform: translateZ(0);
}

.search-section {
  min-height: 60px;
}

.search-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}

@media (max-width: 768px) {
  .model-card {
    min-height: 350px;
  }

  .banner-link {
    min-height: 150px;
  }

  .mobile-filter-button {
    display: flex !important;
  }
  .mobile-menu-contacts {
    gap: 15px;
  }
}

.model-card-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: 1.5s infinite loading;
  min-height: 400px;
  border-radius: 8px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.models-section {
  min-height: 500px;
}

.models-container {
  min-height: 450px;
}

.no-models-message {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px;
  color: #666;
  font-size: 18px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.elite,
.nav-menu a.active {
  color: #ff2600;
}

.nav-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  white-space: nowrap;
}

.checkbox-group,
.model-card,
.model-image,
.sticky-btn {
  overflow: hidden;
}

.sticky-btn svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Глобальне скидання стилів для списків */
ul,
ol {
  list-style: none; /* Прибирає крапки та цифри */
  margin: 0; /* Прибирає зовнішні відступи браузера */
  padding: 0; /* Прибирає внутрішні відступи зліва */
}

.nav-menu a::after,
.particle {
  background: #ff2600;
  position: absolute;
}

.search-section {
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(255, 38, 0, 0.3);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(255, 38, 0, 0.3);
}

.nav-menu a,
.search-box,
.search-section {
  position: relative;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 15px;
}

.checkbox-group,
.search-container {
  align-items: center;
}

.nav-menu a,
.search-btn {
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
}

.nav-menu a {
  color: #ccc;
  font-weight: 500;
  font-size: 13px;
}

.nav-menu a::after {
  content: "";
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
}

.nav-menu a.active::after {
  width: 100%;
}

.search-section {
  padding: 10px 0;
}

.search-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: center;
}

.search-box {
  max-width: 450px;
}

.search-input {
  width: 100%;
  padding: 8px 60px 8px 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 38, 0, 0.2);
  color: #333;
  font-size: 13px;
  outline: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.model-card,
.search-btn {
  border: none;
}

.search-btn {
  position: absolute;
  right: 2px;
  top: 2px;
  bottom: 2px;
  background: linear-gradient(45deg, #ff2600, #fc5130);
  color: #fff;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 600;
}

.checkbox-group::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 38, 0, 0.2),
    transparent
  );
}

.checkbox-group span {
  color: #fff;
  font-weight: 500;
  font-size: 13px;
}

.models-section {
  padding: 40px 10px;
  position: relative;
}

.models-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.model-card {
  background: 0 0;
  position: relative;
  border-radius: 35px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.model-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}

.filters-section,
.sticky-btn {
  backdrop-filter: blur(20px);
}

.sticky-telegram {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  animation: 3s ease-in-out infinite telegramPulse;
}

.clear-filters,
.filter-select {
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mobile-filter-button,
.mobile-nav-menu a {
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mobile-sticky-buttons {
  position: fixed;
  right: 15px;
  top: 40%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.sticky-btn {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
}

.sticky-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.sticky-btn svg {
  width: 24px;
  height: 24px;
  z-index: 1;
}

@keyframes telegramPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
  }
}

.sticky-telegram::before,
.telegram-channel::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.3),
    transparent
  );
}

.sticky-whatsapp {
  background: linear-gradient(45deg, #10b981, #059669);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  animation: 3s ease-in-out 1.5s infinite whatsappPulse;
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
  }
}

.whatsapp-channel::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.3),
    transparent
  );
}

@media (max-width: 1024px) {
  .mobile-sticky-buttons {
    right: 12px;
  }

  .sticky-btn {
    width: 48px;
    height: 48px;
  }

  .sticky-btn svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .checkbox-filters {
    justify-content: center;
    gap: 10px;
  }

  .models-grid {
    gap: 10px;
  }

  .mobile-sticky-buttons {
    right: 8px;
    gap: 8px;
  }

  .sticky-btn {
    width: 44px;
    height: 44px;
    clip-path: polygon(
      0 0,
      calc(100% - 30px) 0,
      100% 50px,
      100% 100%,
      8px 100%,
      0 calc(100% - 50px)
    );
  }
  .sticky-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .filters-section,
  .search-section {
    padding: 20px 15px;
  }

  .mobile-sticky-buttons {
    right: 6px;
    top: 38%;
    gap: 6px;
  }

  .sticky-btn {
    width: 40px;
    height: 40px;
  }

  .sticky-btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 550px) {
  .info-main-model__button {
    padding: 7px;
  }
}

.filters-section {
  background: rgba(0, 0, 0, 0.95);
  padding: 25px 20px;
  border-bottom: 1px solid rgba(255, 38, 0, 0.3);
}

.filters-container {
  max-width: 1400px;
  margin: 0 auto;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.filter-count {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.clear-filters {
  color: #ff2600;
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid #ff2600;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.3);
}

.checkbox-filters {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.checkbox,
.filter-select {
  background: rgba(0, 0, 0, 0.8);
}

.checkbox {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #555;
  position: relative;
}

.filter-select {
  border: 1px solid rgba(255, 38, 0, 0.3);
  color: #fff;
  padding: 10px 15px;
  font-size: 12px;
  outline: 0;
  font-weight: 500;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
}

.filter-select option {
  background: #ffffff;
  color: #fff;
}

.mobile-filter-button {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: linear-gradient(45deg, #ff2600, #fc5130);
  color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(255, 38, 0, 0.4);
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.mobile-filter-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.mobile-filters-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  transform: translateX(-100%);
}

.mobile-filters-content {
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.mobile-filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
}

.mobile-filters-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.mobile-close-btn {
  background: 0 0;
  border: none;
  font-size: 24px;
  color: #666;
  padding: 5px;
}

.mobile-filters-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.model-contact-btn {
  text-decoration: none;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.mobile-filter-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.mobile-active-count {
  color: #666;
  font-size: 14px;
}

.mobile-clear-btn {
  background: 0 0;
  border: 1px solid #ff2600;
  color: #ff2600;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.mobile-filter-item {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #333;
}

.mobile-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #ff2600;
}

.mobile-label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.mobile-select {
  width: 100%;
  background: #f8f9fa;
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 6px;
  color: #333;
  font-size: 14px;
}

.channel-name {
  font-size: 15px;
}

.telegram-channel {
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.anchor-channel {
  background: linear-gradient(45deg, #ff2600, #fc5130);
  box-shadow: 0 0 20px rgba(255, 38, 0, 0.3);
  animation: 3s ease-in-out infinite anchorPulse;
}

@keyframes anchorPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 38, 0, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(255, 38, 0, 0.5);
  }
}

.anchor-channel::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 38, 0, 0.3),
    transparent
  );
}

html {
  scroll-behavior: smooth;
}

.banner-section {
  width: 100%;
  padding: 20px;
  justify-content: center;
}

.banner-link {
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
}

.banner-image {
  width: 95%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 600px) {
  .channel-name {
    font-size: 14px;
  }

  .channels-buttons {
    gap: 15px;
    max-width: 100%;
  }

  .banner-section {
    padding: 15px;
  }

  .banner-image {
    width: 98%;
    border-radius: 8px;
  }
}

.model-contacts {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.model-contact-btn {
  align-items: center;
  position: relative;
}

.model-contact-btn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  clip-path: polygon(
    0 0,
    calc(100% - 8px) 0,
    100% 8px,
    100% 100%,
    8px 100%,
    0 calc(100% - 8px)
  );
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.model-contact-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
  z-index: 1;
}

.telegram-contact {
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.whatsapp-contact {
  background: linear-gradient(45deg, #10b981, #059669);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.model-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0, transparent 100%);
  border-radius: 0 0 8px 8px;
}

@media (max-width: 480px) {
  .channel-name {
    font-size: 16px;
  }
}

.mobile-nav-menu a {
  color: #ccc;
  display: block;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-height: 600px) {
  .mobile-sticky-buttons {
    top: 50%;
  }
}

.mobile-contact.telegram {
  color: #08c;
}

.mobile-contact.whatsapp {
  color: #25d366;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: 0 0;
  border: none;
  padding: 8px;
  width: 40px;
  height: 32px;
  justify-content: space-between;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #ccc;
  transform-origin: center;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 38, 0, 0.3);
  padding: 20px;
  opacity: 0;
  transform: translateY(-20px);
  visibility: hidden;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-menu li {
  margin-bottom: 15px;
}

.mobile-nav-menu a.active {
  color: #ff2600;
  padding-left: 15px;
}

.mobile-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-filter-button {
    display: flex !important;
  }

  .mobile-filters-modal {
    display: block !important;
  }

  .model-contact-btn {
    width: 34px;
    height: 34px;
  }

  .model-contact-btn svg {
    width: 18px;
    height: 18px;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }
}

/* Контейнер для посилання (фіксований розмір) */
.telergam-channel {
  display: inline-block; /* Щоб відступи працювали коректно */
  max-height: 450px;
  max-width: 600px;
  position: relative;
  border-radius: 10px; /* Скруглимо кути для стилю */
  overflow: hidden; /* Щоб анімація не виходила за межі */
  padding: 5px; /* Товщина рамки */
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5); /* Зовнішнє неонове світіння */
  margin: 0 10px 30px;
}

/* Створення бігаючої смуги через псевдоелемент */
.telergam-channel::before {
  content: "";
  position: absolute;
  /* Розміри більші за контейнер, щоб при обертанні не було порожнеч */
  width: 200%;
  height: 200%;
  /* Ваш неоновий градієнт */
  background: conic-gradient(
    transparent,
    #00ffff,
    /* Блакитний неон */ #ff00de,
    /* Рожевий неон */ transparent 30%
  );
  /* Центрування та запуск анімації */
  top: -50%;
  left: -50%;
  animation: rotateNeon 4s linear infinite;
  z-index: 1;
}

/* Створення фону під картинкою, щоб перекрити центр градієнта */
.telergam-channel::after {
  content: "";
  position: absolute;
  inset: 5px; /* Має збігатися з padding контейнера */
  background: #fff; /* Колір фону вашого сайту */
  border-radius: 5px;
  z-index: 2;
}

/* Стилі для самої картинки */
.poster-telegram {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 3; /* Картинка поверх усього */
}

/* Анімація обертання */
@keyframes rotateNeon {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.channel-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(42, 171, 238, 0.25);
  color: #2aabee;
  padding: 7px 22px;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 20px;
}

.channel-btn svg {
  width: 22px;
  height: 22px;
}

.channels-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  z-index: 1;
}
.whatsapp-channel {
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  color: #059669;
}

.whatsapp-channel > svg,
.whatsapp-channel > .channel-name {
  color: #059669;
}

.channels-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.badge {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(42, 171, 238, 0.25);
  color: #2aabee;
  padding: 7px 18px;
  font-size: 0.62rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 20px;
  /* box-shadow: 0 0 15px rgba(0, 114, 255, 0.6) ; */
  max-width: fit-content;
}

.badge.verified {
  background: rgba(0, 0, 0, 0.6);
  color: #2aabee;
  box-shadow: 0 0 15px rgba(0, 114, 255, 0.6);
}

.badge.video {
  color: #ff2600;
  box-shadow: 0 0 20px rgb(220, 38, 38, 0.5);
}
/* Основний стилі для бейджа */
.badge.online {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  box-shadow: 0 0 20px rgb(0, 255, 0, 0.4);

  gap: 8px; /* Відстань між крапкою та текстом */
  /* Ваша існуюча анімація для всього бейджа */
  animation: pulseAvailable 2s infinite;
  color: #00ff00;
}

/* Створення зеленої крапки через псевдоелемент */
.badge.online::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #00ff00; /* Яскраво-зелений неон */
  border-radius: 50%; /* Робимо коло */
  display: inline-block;
  /* Тінь для ефекту світіння */
  box-shadow:
    0 0 8px #00ff00,
    0 0 12px rgba(0, 255, 0, 0.6);
  /* Окрема анімація блимання */
  animation: dotBlink 1.5s infinite ease-in-out;
}

/* Анімація блимання для крапки */
@keyframes dotBlink {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3; /* Крапка не зникає зовсім, а пригасає */
    transform: scale(0.8); /* Легке зменшення для динаміки */
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Приклад вашої анімації pulseAvailable, якщо вона ще не визначена */
@keyframes pulseAvailable {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.header-button-social {
  justify-content: center;
  max-width: fit-content;
  padding: 9px 25px;
  box-shadow: 0 0 40px rgba(0, 114, 255, 0.6);
}
.header-button-social-whatsapp {
  box-shadow: 0 0 13px rgba(0, 255, 0, 0.3);
}

@media (max-width: 550px) {
  .header-button-social-text {
    display: none;
    padding: 10px;
  }

  .channel-btn {
    padding: 7px 14px;
    letter-spacing: 1px;
  }
  .header-button-social {
    padding: 10px;
  }
}

.main-model__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
}
.main-model__wrapper-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-model__title {
  font-size: 26px;
  letter-spacing: 1px;
  color: #2aabee;
}
.main-model__wrappper-icons-starr {
  display: flex;
  align-items: center;
  /* gap: 3px; */
}

.model-card-featured {
  position: absolute;
  right: -66px;
  top: 30px;
  padding: 4px 70px;
  z-index: 1000;
  background-color: rgb(0, 0, 0, 0.7);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.9);
  color: #2aabee;
  font-weight: 700;
  letter-spacing: 2px;
}
.main-model__border-line {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  height: 2px;
  width: 100%;
  background-color: #2aabee;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.9);
}
.info-main-model__button {
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  flex: 1 1 auto;
}

.main-model__wrappper-price {
  display: flex;
  align-items: end;
  flex-direction: column;
}
.main-model__price-format {
  font-size: 13px;
}
.info-main-model__info-border {
  height: 30px;
  width: 1px;
  border-radius: 50%;
  background-color: #2aabee;
}
.info-main-model {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  gap: 10px;
}
.info-main-model__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.info-main-model__info-value {
  font-weight: 700;
  color: #2aabee;
  font-size: 20px;
}
.info-main-model__info-key {
  font-size: 11px;
}
.info-main-model__info-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: rgb(0, 0, 0, 0.6);
  border-radius: 13px;
  padding: 5px 10px;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.4);
}
.main-model__main-price {
  font-size: 24px;
  font-weight: 700;
  color: #2aabee;
}
.logo {
  width: 199px;
  height: 40px;
  overflow: hidden;
}
.logo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.5);
}

/* Стиль кнопки */
.popap-btn-trigger {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgb(252, 81, 48, 0.3);
  color: #fc5130;
  padding: 8px 22px;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 20px;
  box-shadow: 0 0 20px rgb(252, 81, 48, 0.3);
}

/* Оверлей (фон) */
.popap-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(19, 33, 55, 0.2);
  backdrop-filter: blur(8px); /* Ефект розмиття фону */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.popap-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* Вікно попапу */
.popap-window {
  background: #0b1422;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  width: 90%;
  max-width: 400px;
  padding: 40px 30px;
  border-radius: 12px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.popap-overlay.is-active .popap-window {
  transform: translateY(0);
}

/* Кнопка закриття */
.popap-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #999;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* Вміст */
.popap-title {
  color: #fc5130;
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.popap-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popap-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.popap-link-text {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.popap-link-desc {
  color: #888;
  font-size: 12px;
  margin-top: 4px;
}

/* --- СТИЛІ ПАГІНАЦІЇ --- */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 30px auto 0;
}

.pag-numbers {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.pag-link,
.pag-btn {
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3); /* Ваш золотий відтінок */
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pag-link.active {
  background: rgb(255, 38, 0, 0.5);
  color: #000;
  border-color: #ff2600;
  cursor: default;
}

@media (max-width: 480px) {
  .pag-link,
  .pag-btn {
    font-size: 14px;
  }
}
.pagination-bradcrumbs {
  color: #ccc;
  padding: 0 5px;
  font-weight: bold;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 5px;
  font-size: 14px;
}

.hero {
  background-image: url(./img/hero.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100svh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1; /* Робимо її нижнім шаром */
  margin-top: -80px;
}
.hero::before {
  content: "";
  position: absolute;
  height: 100svh;
  width: 100%;
  background-color: rgb(0, 0, 0, 0.8);
}
.back {
}

.header-popap-btn-trigger {
  display: none;
  padding: 8px;
}

@media (max-width: 768px) {
  .header-popap-btn-trigger {
    display: flex;
  }
  .nav-container {
    gap: 15px;
  }
  .mobile-menu-contacts {
    margin-left: auto;
  }
}
.floating-buttons-container {
  background-color: #000;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.floating-buttons {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  padding: 15px;
  border-top: 1px solid rgba(220, 38, 38, 0.3);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.models-btn-fixed {
  font-size: 20px;
  padding: 10px 20px;
}
/* --- 1. Стилі Оверлею (фон, що затемнює) --- */
.timed-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  /* Глибоке затемнення */
  backdrop-filter: blur(2px);
  /* Ефект розмиття фону сайту */
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.timed-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* --- 2. Головний Контейнер Попапа --- */
.timed-popup-container.centered-popup {
  position: relative;
  bottom: auto;
  right: auto;
  transform: translateY(30px) scale(0.95);
  max-width: 380px;
  /* Трохи ширше для кращого вигляду */
  width: 90%;
  background: #0b1422;
  /* Ваш темний фон */
  border-radius: 12px;
  z-index: 9999;
  display: block;
  overflow: hidden;
  /* Щоб картинка не вилазила за радіус кутів */

  /* ЧЕРВОНИЙ НЕОНОВИЙ БОРДЕР ПОКРУГУ */
  border: 1px solid #fc5130;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.5);
}

/* Стан появи попапа (анімація) */
.timed-popup-overlay.show .timed-popup-container.centered-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

/* --- 3. Шапка з картинкою --- */
.timed-popup-header {
  width: 100%;
  max-height: 435px;
  background: #000;
  overflow: hidden;
}

.timed-popup-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

/* --- 4. Кнопка закриття ('X') --- */
.timed-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(252, 81, 48, 0.4);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* Створення 'X' через псевдоелементи */
.timed-popup-close::before,
.timed-popup-close::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background-color: #fff;
  transition: 0.3s;
}

.timed-popup-close::before {
  transform: rotate(45deg);
}

.timed-popup-close::after {
  transform: rotate(-45deg);
}

/* --- 5. Текстовий вміст --- */
.timed-popup-content {
  padding: 15px;
  color: #fff;
  /* ВИРІВНЮВАННЯ ТЕКСТУ ПО ЦЕНТРУ */
  text-align: center;
}

.timed-popup-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

/* НЕОНОВИЙ ТЕКСТ 'Want' */
.elite-text {
  color: #fc5130;
  text-shadow: 0 0 15px rgba(252, 81, 48, 0.7);
}

.timed-popup-subtitle {
  font-size: 11px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 500;
}

.timed-popup-text {
  font-size: 11px;
  line-height: 1.5;
  color: #ccc;
  margin-bottom: 15px;
  font-weight: 400;
}

/* --- 6. Блок кнопок --- */
.timed-popup-buttons {
  display: flex;
  justify-content: center;
  /* Центруємо кнопку */
}

/* ЧЕРВОНА НЕОНОВА КНОПКА TELEGRAM */
.timed-popup-button.telegram {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(42, 171, 238, 0.25);
  color: #2aabee;
  padding: 13px 22px;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 20px;
  width: 100%;
  justify-content: center;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}
.budget-info-text {
  color: #fc5130;
  padding: 8px;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.mouse-scroll {
  width: 30px;
  height: 50px;
  border: 2px solid #ffffff;
  border-radius: 15px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 2px;
  margin: 8px auto 0;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}
.CHAnnel {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  z-index: 1;
}
.CHannls {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(42, 171, 238, 0.25);

  padding: 7px 22px;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  color: #059669;
}
