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