@charset "UTF-8";
/* ========================================
   СТРАНИЦЫ АВТОРИЗАЦИИ - Современный дизайн
   ======================================== */
/* Обёртка страницы */
.auth-wrapper {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: #fff;
}

/* Контейнер */
.auth-container {
  width: 100%;
  max-width: 480px;
}

/* Сообщения */
.auth-messages {
  margin-bottom: 20px;
}

.auth-message {
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-message-success {
  background: rgba(72, 199, 116, 0.2);
  color: #2f855a;
  border: 1px solid rgba(72, 199, 116, 0.3);
}

.auth-message-error,
.auth-message-danger {
  background: rgba(241, 70, 104, 0.2);
  color: #c53030;
  border: 1px solid rgba(241, 70, 104, 0.3);
}

.auth-message-warning {
  background: rgba(255, 221, 87, 0.2);
  color: #b7791f;
  border: 1px solid rgba(255, 221, 87, 0.3);
}

.auth-message-info {
  background: rgba(50, 152, 220, 0.2);
  color: #2b6cb0;
  border: 1px solid rgba(50, 152, 220, 0.3);
}

/* Карточка авторизации */
.auth-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Заголовок */
.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-logo {
  margin-bottom: 20px;
}

.auth-logo-img {
  max-width: 180px;
  height: auto;
}

.auth-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 8px 0;
}

.auth-subtitle {
  font-size: 15px;
  color: #718096;
  margin: 0;
}

/* Социальные кнопки */
.auth-social {
  margin-bottom: 24px;
}

.auth-social-text {
  font-size: 14px;
  color: #718096;
  text-align: center;
  margin-bottom: 16px;
}

.auth-social-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.auth-social-buttons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
}

.auth-social-buttons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f7fafc;
  border: 2px solid #e2e8f0;
  transition: all 0.2s ease;
}

.auth-social-buttons li a:hover {
  border-color: #718ea7;
  background: #f0f5f8;
  transform: translateY(-2px);
}

/* VK кнопка */
.auth-btn-vk {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  background: #0077ff;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.auth-btn-vk:hover {
  background: #0066dd;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 119, 255, 0.3);
  text-decoration: none;
}

.auth-btn-vk svg {
  flex-shrink: 0;
}

.auth-btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: #f7fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: all 0.2s;
}

.auth-btn-social:hover {
  border-color: #718ea7;
  background: #f0f5f8;
  transform: translateY(-1px);
  text-decoration: none;
}

/* Разделитель */
.auth-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.auth-divider span {
  padding: 0 16px;
  color: #a0aec0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Форма */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Поле формы */
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auth-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
}

.auth-icon {
  color: #718ea7;
}

/* Поля ввода */
.auth-field input[type=text],
.auth-field input[type=email],
.auth-field input[type=password],
.auth-form input[type=text],
.auth-form input[type=email],
.auth-form input[type=password] {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #f7fafc;
  color: #2d3748;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.auth-field input:focus,
.auth-form input:focus {
  outline: none;
  border-color: #718ea7;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(113, 142, 167, 0.1);
}

.auth-field input::placeholder {
  color: #a0aec0;
}

/* Чекбокс */
.auth-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-checkbox-wrapper input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #718ea7;
  cursor: pointer;
}

.auth-checkbox-label {
  font-size: 14px;
  color: #4a5568;
}

/* Капча */
.auth-captcha-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.auth-captcha-wrapper img {
  border-radius: 8px;
  border: 2px solid #e2e8f0;
}

.auth-captcha-wrapper input {
  flex: 1;
  min-width: 120px;
  padding: 14px 18px;
  font-size: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #f7fafc;
  color: #2d3748;
  transition: all 0.2s ease;
}

.auth-captcha-wrapper input:focus {
  outline: none;
  border-color: #718ea7;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(113, 142, 167, 0.1);
}

/* Ошибки */
.auth-field-error {
  font-size: 13px;
  color: #e53e3e;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.auth-errors {
  background: rgba(229, 62, 62, 0.1);
  border: 1px solid rgba(229, 62, 62, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
}

.auth-error {
  font-size: 14px;
  color: #c53030;
}

/* Кнопки */
.auth-actions {
  margin-top: 8px;
}

.auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.auth-btn-primary {
  background: #718ea7;
  color: #fff;
  box-shadow: 0 4px 15px rgba(113, 142, 167, 0.4);
}

.auth-btn-primary:hover {
  background: #5a7a91;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(113, 142, 167, 0.5);
}

.auth-btn-secondary {
  background: #f7fafc;
  color: #4a5568;
  border: 2px solid #e2e8f0;
}

.auth-btn-secondary:hover {
  background: #edf2f7;
  border-color: #cbd5e0;
  color: #2d3748;
}

/* Ссылки */
.auth-links {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.auth-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #718ea7;
  text-decoration: none;
  transition: all 0.2s ease;
}

.auth-link:hover {
  color: #5a7a91;
  text-decoration: underline;
}

/* Футер карточки */
.auth-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.auth-footer p {
  font-size: 14px;
  color: #718096;
  margin: 0 0 16px 0;
}

/* ========================================
   ТЁМНАЯ ТЕМА
   ======================================== */
@media (prefers-color-scheme: dark) {
  .auth-wrapper {
    background: #1a202c;
  }
  .auth-card {
    background: #2d2d2d;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  }
  .auth-title {
    color: #e2e8f0;
  }
  .auth-subtitle {
    color: #a0aec0;
  }
  .auth-label {
    color: #e2e8f0;
  }
  .auth-field input,
  .auth-form input,
  .auth-captcha-wrapper input {
    background: #1a202c;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  .auth-field input:focus,
  .auth-form input:focus,
  .auth-captcha-wrapper input:focus {
    background: #2d3748;
    border-color: #8fa8bb;
    box-shadow: 0 0 0 4px rgba(113, 142, 167, 0.2);
  }
  .auth-field input::placeholder {
    color: #718096;
  }
  .auth-checkbox-label {
    color: #e2e8f0;
  }
  .auth-divider::before,
  .auth-divider::after {
    background: #4a5568;
  }
  .auth-divider span {
    color: #718096;
  }
  .auth-social-buttons li a {
    background: #1a202c;
    border-color: #4a5568;
  }
  .auth-social-buttons li a:hover {
    background: #2d3748;
    border-color: #8fa8bb;
  }
  .auth-btn-secondary {
    background: #1a202c;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  .auth-btn-secondary:hover {
    background: #2d3748;
    border-color: #718096;
    color: #fff;
  }
  .auth-link {
    color: #8fa8bb;
  }
  .auth-link:hover {
    color: #a8c0d0;
  }
  .auth-footer {
    border-top-color: #4a5568;
  }
  .auth-footer p {
    color: #a0aec0;
  }
  .auth-message-success {
    background: rgba(72, 199, 116, 0.15);
    color: #68d391;
    border-color: rgba(72, 199, 116, 0.3);
  }
  .auth-message-error,
  .auth-message-danger {
    background: rgba(241, 70, 104, 0.15);
    color: #fc8181;
    border-color: rgba(241, 70, 104, 0.3);
  }
  .auth-captcha-wrapper img {
    border-color: #4a5568;
  }
  .auth-errors {
    background: rgba(229, 62, 62, 0.15);
    border-color: rgba(229, 62, 62, 0.3);
  }
  .auth-error {
    color: #fc8181;
  }
  .auth-field-error {
    color: #fc8181;
  }
}
/* ========================================
   АДАПТИВНОСТЬ
   ======================================== */
@media (max-width: 540px) {
  .auth-wrapper {
    padding: 20px 16px;
  }
  .auth-card {
    padding: 28px 20px;
    border-radius: 20px;
  }
  .auth-title {
    font-size: 24px;
  }
  .auth-subtitle {
    font-size: 14px;
  }
  .auth-btn {
    padding: 14px 20px;
    font-size: 15px;
  }
  .auth-captcha-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  .auth-captcha-wrapper img {
    align-self: center;
  }
}
/* ========================================
   ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ ALLAUTH
   ======================================== */
/* Стилизация стандартных элементов allauth */
.auth-form p {
  margin: 0;
}

.auth-form p label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
}

@media (prefers-color-scheme: dark) {
  .auth-form p label {
    color: #e2e8f0;
  }
}
/* Скрываем helptext */
.auth-form .helptext {
  font-size: 12px;
  color: #718096;
  margin-top: 4px;
}

/* Стилизация списка ошибок */
.auth-form ul.errorlist {
  list-style: none;
  padding: 0;
  margin: 4px 0 0 0;
}

.auth-form ul.errorlist li {
  font-size: 13px;
  color: #e53e3e;
}

@media (prefers-color-scheme: dark) {
  .auth-form ul.errorlist li {
    color: #fc8181;
  }
}
/* Тёмная тема (data-bs-theme="dark") */
[data-bs-theme=dark] .auth-wrapper {
  background: #1a1d23;
}

[data-bs-theme=dark] .auth-card {
  background: #2d3139;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

[data-bs-theme=dark] .auth-title {
  color: #e2e8f0;
}

[data-bs-theme=dark] .auth-subtitle {
  color: #94a3b8;
}

[data-bs-theme=dark] .auth-field input,
[data-bs-theme=dark] .auth-field select {
  background: #1a1d23;
  border-color: #4a5568;
  color: #e2e8f0;
}

[data-bs-theme=dark] .auth-label {
  color: #cbd5e0;
}

[data-bs-theme=dark] .auth-btn-secondary {
  background: #374151;
  border-color: #4b5563;
  color: #e2e8f0;
}

[data-bs-theme=dark] .auth-btn-secondary:hover {
  background: #4b5563;
}

[data-bs-theme=dark] .auth-link {
  color: #63b3ed;
}

[data-bs-theme=dark] .auth-divider span {
  color: #718096;
  background: #2d3139;
}

[data-bs-theme=dark] .auth-divider::before,
[data-bs-theme=dark] .auth-divider::after {
  background: #4a5568;
}

[data-bs-theme=dark] .auth-footer p {
  color: #94a3b8;
}

[data-bs-theme=dark] .auth-message {
  background: #374151;
  color: #e2e8f0;
}

/**
 * Cattery page styles
 * Стили для страницы списка котят в админке питомника
 */
/* Компактные кнопки действий */
.kitten-card-actions .btn-group {
  display: flex;
  justify-content: center;
  gap: 2px;
}

.kitten-card-actions .btn {
  padding: 6px 10px;
  font-size: 13px;
}

.kitten-card-actions .btn i {
  font-size: 12px;
}

.kitten-card-actions .dropdown-toggle::after {
  display: none;
}

/* Компактное выпадающее меню */
.dropdown-menu-compact {
  min-width: 140px;
  padding: 4px 0;
  font-size: 13px;
}

.dropdown-menu-compact .dropdown-item {
  padding: 6px 12px;
}

.dropdown-menu-compact .dropdown-item i {
  width: 16px;
  text-align: center;
}

/* Баннер-подсказка для загрузки видео */
.video-nudge-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
  border: 1px solid #ffc107;
  border-left: 4px solid #ff8f00;
  border-radius: 8px;
  padding: 14px 16px;
}

.video-nudge-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.video-nudge-text {
  flex: 1;
  color: #5d4037;
  font-size: 14px;
  line-height: 1.5;
}

.video-nudge-text strong {
  display: block;
  font-size: 15px;
  color: #e65100;
  margin-bottom: 4px;
}

/* Sticky action bar с учётом высоты top-navbar (~56px) */
.sticky-actions {
  position: sticky;
  top: 56px; /* высота .top-navbar */
  z-index: 1020;
  background: var(--bs-body-bg, #f3f4f6);
  border-bottom: 1px solid var(--bs-border-color, #dee2e6);
  padding: 8px 0;
  margin-bottom: 16px;
}

/* При открытом сайдбаре — sticky header ниже overlay (z-index fix для iOS Safari) */
body.sidebar-open .sticky-actions {
  z-index: 1 !important;
}

/* TinyMCE: скрываем menubar на мобиле — слишком много пунктов для маленького экрана */
@media (max-width: 767px) {
  .tox-tinymce .tox-menubar {
    display: none !important;
  }
  /* Показываем только первую строку тулбара (bold/italic/списки) */
  .tox-tinymce .tox-toolbar-overlord .tox-toolbar:not(:first-child) {
    display: none !important;
  }
  /* Уменьшаем высоту тулбара */
  .tox-tinymce .tox-toolbar__primary {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}
/* Тёмная тема для форм питомника (Select2, inputs, textarea)
   Должна подключаться ПОСЛЕ select2-bootstrap-5-theme.min.css и form.media.css
   для корректного приоритета стилей. */
[data-bs-theme=dark] select,
[data-bs-theme=dark] .form-select,
[data-bs-theme=dark] input[type=text],
[data-bs-theme=dark] input[type=number],
[data-bs-theme=dark] textarea {
  background-color: #252930 !important;
  border-color: #3a3f4a !important;
  color: #e0e4ea !important;
}

[data-bs-theme=dark] .select2-container--default .select2-selection--single,
[data-bs-theme=dark] .select2-container--default .select2-selection--multiple,
[data-bs-theme=dark] .select2-container--bootstrap-5 .select2-selection {
  background-color: #252930 !important;
  border-color: #3a3f4a !important;
  color: #e0e4ea !important;
}

[data-bs-theme=dark] .select2-container--default .select2-selection__rendered,
[data-bs-theme=dark] .select2-container--bootstrap-5 .select2-selection__rendered,
[data-bs-theme=dark] .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered,
[data-bs-theme=dark] .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered,
[data-bs-theme=dark] .select2-container .select2-selection__rendered {
  color: #e0e4ea !important;
}

[data-bs-theme=dark] .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
  color: #8a95a3 !important;
}

[data-bs-theme=dark] .select2-container--default .select2-selection__placeholder,
[data-bs-theme=dark] .select2-container--bootstrap-5 .select2-selection__placeholder {
  color: #8a95a3 !important;
}

[data-bs-theme=dark] .select2-container--default .select2-selection__arrow b {
  border-color: #8a95a3 transparent transparent !important;
}

[data-bs-theme=dark] .select2-dropdown,
[data-bs-theme=dark] .select2-container--bootstrap-5 .select2-dropdown {
  background-color: #1e2128 !important;
  border-color: #3a3f4a !important;
}

[data-bs-theme=dark] .select2-results__option {
  color: #e0e4ea !important;
  background-color: #1e2128 !important;
}

[data-bs-theme=dark] .select2-results__option--highlighted,
[data-bs-theme=dark] .select2-results__option[aria-selected=true] {
  background-color: #2a3a4a !important;
  color: #fff !important;
}

[data-bs-theme=dark] .select2-search--dropdown .select2-search__field {
  background-color: #252930 !important;
  border-color: #3a3f4a !important;
  color: #e0e4ea !important;
}

.kitten-notfound-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: inherit;
}

.notfound-hero {
  text-align: center;
  padding: 50px 20px 40px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 20px;
  color: #fff;
  margin-bottom: 40px;
}

.notfound-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.notfound-subtitle {
  font-size: 16px;
  color: #a0aec0;
  margin-bottom: 12px;
}

.notfound-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f6ad55, #ed8936);
  color: #1a1a2e;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(246, 173, 85, 0.4);
  margin-top: 16px;
}

.notfound-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(246, 173, 85, 0.5);
  text-decoration: none;
  color: #1a1a2e;
}

.notfound-similar {
  margin-bottom: 40px;
}

.notfound-similar h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #e2e8f0;
  text-align: center;
}

.notfound-kittens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.notfound-kitten-card {
  background: #1a1a2e;
  border: 1px solid #2d3748;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}

.notfound-kitten-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: inherit;
}

.notfound-kitten-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.notfound-kitten-no-img {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: #2d3748;
}

.notfound-kitten-name {
  padding: 10px 12px 4px;
  font-weight: 600;
  font-size: 14px;
  color: #e2e8f0;
}

.notfound-kitten-price {
  padding: 0 12px 10px;
  font-size: 13px;
  color: #f6ad55;
}

.notfound-help {
  text-align: center;
  padding: 30px;
  background: #1a1a2e;
  border: 1px solid #2d3748;
  border-radius: 16px;
  color: #a0aec0;
  font-size: 15px;
  margin-bottom: 40px;
}

.notfound-help p {
  margin: 4px 0;
}

.kitten-sold-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: inherit;
}

.sold-hero {
  text-align: center;
  padding: 50px 20px 40px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 20px;
  color: #fff;
  margin-bottom: 40px;
}

.sold-icon {
  font-size: 64px;
  margin-bottom: 16px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.sold-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.sold-subtitle {
  font-size: 16px;
  color: #a0aec0;
  margin-bottom: 24px;
}

.sold-redirect-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  color: #e2e8f0;
  margin-bottom: 20px;
}

.sold-countdown {
  font-size: 22px;
  font-weight: 700;
  color: #f6ad55;
  min-width: 28px;
  display: inline-block;
  text-align: center;
}

.sold-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f6ad55, #ed8936);
  color: #1a1a2e;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(246, 173, 85, 0.4);
}

.sold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(246, 173, 85, 0.5);
  text-decoration: none;
  color: #1a1a2e;
}

.sold-facts-section {
  text-align: center;
  margin-bottom: 40px;
}

.sold-facts-section h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #e2e8f0;
}

.sold-fact-card {
  background: #1a1a2e;
  border: 1px solid #2d3748;
  border-radius: 16px;
  padding: 30px 40px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: opacity 0.4s;
  margin-bottom: 16px;
}

.fact-icon {
  font-size: 40px;
}

.fact-text {
  font-size: 17px;
  color: #e2e8f0;
  line-height: 1.6;
  max-width: 620px;
  margin: 0;
}

.fact-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.fact-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4a5568;
  cursor: pointer;
  transition: background 0.3s;
}

.fact-dot.active {
  background: #f6ad55;
}

.sold-similar h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #e2e8f0;
}

.sold-kittens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.sold-kitten-card {
  background: #1a1a2e;
  border: 1px solid #2d3748;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}

.sold-kitten-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: inherit;
}

.sold-kitten-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.sold-kitten-no-img {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: #2d3748;
}

.sold-kitten-name {
  padding: 10px 12px 4px;
  font-weight: 600;
  font-size: 14px;
  color: #e2e8f0;
}

.sold-kitten-price {
  padding: 0 12px 10px;
  font-size: 13px;
  color: #f6ad55;
}

/*# sourceMappingURL=pages.css.map */
