/* ===== VELVET CYAN - Modern Light Theme ===== */

/* ===== CSS Variables ===== */
:root {
    /* Light palette */
    --bg-dark: #ffffff;
    --bg-surface: #f8f9fb;
    --bg-elevated: #f0f3f8;
    --bg-glass: rgba(248, 249, 251, 0.95);
    
    /* Accent colors - Cyan / Electric Blue */
    --accent-primary: #0db1f2;
    --accent-secondary: #5ccfff;
    --accent-glow: rgba(13, 177, 242, 0.4);
    --accent-light: #8ee0ff;
    --accent-dim: #0891c7;
    
    /* Text colors */
    --text-primary: #171923;
    --text-secondary: rgba(23, 25, 35, 0.75);
    --text-muted: rgba(23, 25, 35, 0.55);
    --text-inverse: #ffffff;
    
    /* Borders & Dividers */
    --border-subtle: rgba(23, 25, 35, 0.08);
    --border-accent: rgba(13, 177, 242, 0.35);
    
    /* Gradients */
    --gradient-hero: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
    --gradient-card: linear-gradient(145deg, rgba(248, 249, 251, 0.9) 0%, rgba(240, 243, 248, 0.95) 100%);
    --gradient-accent: linear-gradient(135deg, #0db1f2 0%, #5ccfff 50%, #8ee0ff 100%);
    --gradient-btn: linear-gradient(135deg, #0db1f2 0%, #0891c7 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(13, 177, 242, 0.15);
    --shadow-glow-hover: 0 0 60px rgba(13, 177, 242, 0.25);
    
    /* Spacing & Sizing */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Reset & Base Styles ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 90px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

::selection {
    background: var(--accent-primary);
    color: var(--text-inverse);
}

/* ===== Typography ===== */
h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* ===== Container ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== Header ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-accent);
    transition: width var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== Dropdown Menu ===== */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    z-index: 1000;
    min-width: 720px;
    padding: 32px;
    backdrop-filter: blur(20px);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 24px;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
}

.dropdown-section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.dropdown-tags-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dropdown-tag-link {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    line-height: 1.4;
}

.dropdown-tag-link:hover {
    color: var(--text-primary);
    padding-left: 8px;
}

.dropdown-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.dropdown-view-all {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.dropdown-view-all:hover {
    color: var(--accent-secondary);
}

.dropdown-updated {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== Header Search ===== */
.header-search-form {
    flex: 1;
    max-width: 480px;
    margin: 0 48px;
    position: relative;
}

.header-search-box {
    display: flex;
    background: var(--bg-surface);
    border-radius: 100px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-fast);
}

.header-search-box:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(13, 177, 242, 0.15);
}

.header-search-input {
    flex: 1;
    padding: 14px 24px;
    border: none;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    background: transparent;
    color: var(--text-primary);
}

.header-search-input::placeholder {
    color: var(--text-muted);
}

.header-search-btn {
    padding: 14px 28px;
    background: var(--accent-primary);
    color: var(--text-inverse);
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
    letter-spacing: 0.02em;
}

.header-search-btn:hover {
    background: var(--accent-dim);
    transform: scale(1.02);
}

/* ===== Search Categories Dropdown ===== */
.search-categories-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-smooth);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    backdrop-filter: blur(20px);
}

.search-form .search-categories-dropdown {
    left: 0;
    right: 0;
    width: 100%;
}

.search-form:focus-within .search-categories-dropdown,
.header-search-form:focus-within .search-categories-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-categories-content {
    padding: 24px;
}

.search-categories-trending {
    display: flex;
    flex-direction: column;
}

.search-categories-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.search-categories-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-category-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.search-category-tag:hover {
    background: var(--accent-primary);
    color: var(--text-inverse);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 177, 242, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 0;
        border-left: 1px solid var(--border-subtle);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-smooth);
        z-index: 100;
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 16px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border-subtle);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        min-width: 100%;
        padding: 16px 0;
        box-shadow: none;
        border: none;
        background: transparent;
        display: none;
        margin-top: 0;
    }
    
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-content-columns {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .dropdown-column {
        padding-left: 16px;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 90;
    }
}

/* ===== Hero Section ===== */
.hero {
    background: var(--gradient-hero);
    color: var(--text-primary);
    padding: 120px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(13, 177, 242, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(92, 207, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title span {
    display: inline;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.search-form {
    max-width: 680px;
    margin: 0 auto 72px;
    position: relative;
}

.search-box {
    display: flex;
    background: var(--bg-surface);
    border-radius: 100px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-fast);
}

.search-box:focus-within {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(13, 177, 242, 0.2);
}

.search-input {
    flex: 1;
    padding: 22px 32px;
    border: none;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    color: var(--text-primary);
    background: transparent;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    padding: 22px 48px;
    background: var(--accent-primary);
    color: var(--text-inverse);
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 16px;
    letter-spacing: 0.02em;
}

.search-btn:hover {
    background: var(--accent-dim);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(13, 177, 242, 0.3);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== Featured Section (Trusted & Secure) ===== */
.featured-section {
    padding: 64px 0;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    margin-top: -1px;
}

.featured-header {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.featured-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.featured-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-item::before {
    content: '✓';
    color: var(--accent-secondary);
    font-size: 12px;
}

.featured-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--border-subtle);
    border-radius: 50%;
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
}

.bg-light {
    background: var(--bg-surface);
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 17px;
    margin-bottom: 56px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.section-header .section-title {
    text-align: left;
    margin-bottom: 0;
}

/* ===== Tabs ===== */
.tabs {
    display: flex;
    gap: 8px;
}

.tab {
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.tab:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.tab.active {
    background: var(--accent-primary);
    color: var(--text-inverse);
    border-color: transparent;
}

/* ===== Models Grid ===== */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

/* ===== Carousel ===== */
.carousel-wrapper {
    position: relative;
    margin-top: 40px;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-slide {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    animation: fadeSlide 0.5s ease-out;
}

.carousel-slide.active {
    display: grid;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
}

.carousel-btn {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--accent-primary);
    color: var(--text-inverse);
    border-color: var(--accent-primary);
    transform: scale(1.08);
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-subtle);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--accent-primary);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--accent-secondary);
}

/* ===== Model Card ===== */
.model-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    min-height: 480px;
    backdrop-filter: blur(10px);
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow-hover);
    border-color: var(--border-accent);
}

.model-card-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.model-photo {
    position: relative;
    width: 100%;
    padding-top: 110%;
    background: var(--bg-surface);
    overflow: hidden;
}

.model-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.model-card:hover .model-photo img {
    transform: scale(1.05);
}

.no-photo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-muted);
    font-size: 14px;
}

/* View Profile Button */
.model-card-view-profile-btn {
    display: block;
    width: 100%;
    padding: 16px 20px;
    background: var(--accent-primary);
    color: var(--text-inverse);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.model-card-view-profile-btn:hover {
    background: var(--accent-dim);
}

.model-likes {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    display: none;
}

.free-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #10b981;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Text Info Section */
.model-info {
    padding: 16px 18px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    background: transparent;
}

.model-header {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.model-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    line-height: 1.3;
}

.model-username {
    font-size: 13px;
    color: var(--accent-secondary);
    font-weight: 500;
    margin: 2px 0 8px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.model-tag {
    font-size: 10px;
    background: var(--accent-primary);
    color: var(--text-inverse);
    padding: 3px 10px;
    border-radius: 100px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.model-bio {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.model-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
}

.model-free-badge {
    font-size: 11px;
    color: #10b981;
    font-weight: 700;
    margin-bottom: 8px;
    display: inline-block;
    letter-spacing: 0.05em;
}

.tag {
    padding: 4px 10px;
    background: var(--bg-surface);
    border-radius: 100px;
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== Steps Grid ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 64px;
}

.step-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
}

.step-number {
    width: 72px;
    height: 72px;
    background: var(--gradient-btn);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
    box-shadow: 0 8px 32px rgba(13, 177, 242, 0.25);
}

.step-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: var(--accent-primary);
    color: var(--text-inverse);
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: var(--accent-dim);
}

.btn-visit {
    width: 100%;
    text-align: center;
    margin: 24px 0;
}

/* ===== Search Page ===== */
.search-page, .category-page, .best-models-page, .free-models-page, .categories-page, .page-content {
    padding: 60px 0 80px;
    min-height: 70vh;
    background: var(--bg-dark);
}

/* ===== Page Content ===== */
.page-article {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-surface);
    padding: 56px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}

.page-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.page-body {
    line-height: 1.8;
    color: var(--text-secondary);
}

.page-body h1,
.page-body h2,
.page-body h3,
.page-body h4 {
    font-family: 'Playfair Display', Georgia, serif;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 400;
}

.page-body h1 { font-size: 36px; }
.page-body h2 { font-size: 30px; }
.page-body h3 { font-size: 24px; }

.page-body p {
    margin-bottom: 20px;
}

.page-body ul,
.page-body ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.page-body li {
    margin-bottom: 10px;
}

.page-body a {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.page-body a:hover {
    color: var(--accent-light);
}

.search-header, .category-header, .page-header {
    text-align: center;
    margin-bottom: 48px;
}

.search-header h1, .category-header h1, .page-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.results-count, .category-description, .page-subtitle {
    color: var(--text-secondary);
    font-size: 17px;
}

/* ===== Categories Page ===== */
.categories-header-new {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 64px;
}

.categories-header-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-btn);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(13, 177, 242, 0.25);
}

.categories-header-text {
    flex: 1;
}

.categories-title-main {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.1;
}

.title-blue {
    color: var(--accent-secondary);
}

.title-black {
    color: var(--text-primary);
}

.categories-subtitle-new {
    font-size: 18px;
    color: var(--text-secondary);
}

.categories-section-new {
    margin-bottom: 72px;
}

.categories-section-title-new {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 32px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-icon {
    font-size: 24px;
}

.categories-grid-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.category-button-new {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    font-size: 14px;
    font-weight: 500;
}

.category-button-new:hover {
    border-color: var(--accent-primary);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.category-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.category-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.categories-footer-note {
    text-align: center;
    margin-top: 72px;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
}

.categories-footer-note p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== CTA Search Block ===== */
.cta-search-block {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 80px 48px;
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.cta-search-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(13, 177, 242, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-search-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-search-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-highlight {
    color: var(--accent-secondary);
}

.cta-search-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-search-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-primary);
    color: var(--text-inverse);
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-fast);
    text-decoration: none;
    cursor: pointer;
}

.cta-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: var(--accent-dim);
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 72px;
}

.pagination-btn {
    padding: 14px 32px;
    background: var(--accent-primary);
    color: var(--text-inverse);
    border-radius: 100px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.pagination-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: var(--accent-dim);
}

.pagination-info {
    font-weight: 500;
    color: var(--text-secondary);
}

/* ===== No Results ===== */
.no-results {
    text-align: center;
    padding: 100px 24px;
}

.no-results h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
}

.no-results p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 17px;
}

/* ===== Model Detail Page ===== */
.model-detail-page {
    padding: 60px 0;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 40px;
    transition: color var(--transition-fast);
}

.back-btn:hover {
    color: var(--accent-primary);
}

.model-profile {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    margin-bottom: 100px;
}

.model-profile-photo {
    position: sticky;
    top: 120px;
}

.profile-photo {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.no-photo-large {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 18px;
}

.profile-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 24px;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.profile-tag {
    padding: 10px 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
    transition: all var(--transition-fast);
}

.profile-tag:hover {
    background: var(--accent-primary);
    color: var(--text-inverse);
    border-color: var(--accent-primary);
    box-shadow: 0 4px 12px rgba(13, 177, 242, 0.3);
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    padding: 24px;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-subtle);
}

.stat-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--accent-secondary);
}

.profile-bio {
    margin-bottom: 40px;
}

.profile-bio h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
}

.profile-bio p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.similar-section {
    margin-top: 100px;
}

/* ===== Custom Content Styles ===== */
.page-after-content-section {
    padding: 48px 0 64px;
}

.category-custom-content,
.category-after-content,
.model-custom-content,
.model-after-content,
.page-after-content {
    margin: 56px 0 !important;
    padding: 32px !important;
    background: var(--bg-surface) !important;
    border-radius: var(--radius-md) !important;
    border: 1px solid var(--border-subtle) !important;
    line-height: 1.8 !important;
    color: var(--text-secondary) !important;
    font-size: 16px !important;
    font-family: 'DM Sans', sans-serif !important;
}

.category-custom-content h1,
.category-after-content h1,
.model-custom-content h1,
.model-after-content h1,
.page-after-content h1 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 36px !important;
    margin-top: 0 !important;
    margin-bottom: 24px !important;
    font-weight: 400 !important;
    color: var(--text-primary) !important;
}

.category-custom-content h2,
.category-after-content h2,
.model-custom-content h2,
.model-after-content h2,
.page-after-content h2 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 28px !important;
    margin-top: 40px !important;
    margin-bottom: 16px !important;
    font-weight: 400 !important;
    color: var(--text-primary) !important;
}

.category-custom-content h3,
.category-after-content h3,
.model-custom-content h3,
.model-after-content h3,
.page-after-content h3 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 22px !important;
    margin-top: 32px !important;
    margin-bottom: 12px !important;
    font-weight: 400 !important;
    color: var(--text-primary) !important;
}

.category-custom-content p,
.category-after-content p,
.model-custom-content p,
.model-after-content p,
.page-after-content p {
    margin-bottom: 20px !important;
    color: var(--text-secondary) !important;
}

.category-custom-content a,
.category-after-content a,
.model-custom-content a,
.model-after-content a,
.page-after-content a {
    color: var(--accent-secondary) !important;
    text-decoration: underline !important;
}

.category-custom-content a:hover,
.category-after-content a:hover,
.model-custom-content a:hover,
.model-after-content a:hover,
.page-after-content a:hover {
    color: var(--accent-light) !important;
}

/* ===== Creators & Agencies Section ===== */
.creators-section {
    background: var(--bg-surface);
    color: var(--text-primary);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.creators-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(13, 177, 242, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(92, 207, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.creators-header {
    text-align: center;
    margin-bottom: 72px;
    position: relative;
    z-index: 1;
}

.creators-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.creators-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.creators-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-bottom: 72px;
    position: relative;
    z-index: 1;
}

.creator-feature {
    text-align: center;
    padding: 40px 32px;
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-smooth);
}

.creator-feature:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.creator-feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.creator-feature-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.creator-feature-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Testimonial Block ===== */
.testimonial-block {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 48px;
    margin: 72px auto;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.testimonial-quote-icon {
    position: absolute;
    top: 24px;
    left: 32px;
    font-size: 80px;
    font-weight: 700;
    color: var(--accent-secondary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 2px solid var(--accent-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.testimonial-author-title {
    font-size: 14px;
    color: var(--accent-secondary);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
}

/* ===== Promote Button ===== */
.btn-promote {
    display: inline-block;
    padding: 18px 48px;
    background: var(--accent-primary);
    color: var(--text-inverse);
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.btn-promote:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-hover);
    background: var(--accent-dim);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-surface);
    color: var(--text-primary);
    padding: 80px 0 32px;
    margin-top: 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 56px;
}

.footer-section h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--accent-secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

/* ===== Wishlist Page ===== */
.wishlist-page {
    padding: 60px 0 80px;
    min-height: 70vh;
}

.wishlist-header {
    text-align: center;
    margin-bottom: 48px;
}

.wishlist-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
}

.wishlist-empty {
    text-align: center;
    padding: 100px 24px;
}

.wishlist-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    opacity: 0.5;
}

.wishlist-empty-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.5);
}

.wishlist-empty h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 32px;
    color: var(--text-secondary);
}

/* ===== Bottom Navigation Bar ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0;
    z-index: 99;
    height: 80px;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 24px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    flex: 1;
    height: 100%;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.bottom-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 2px;
    background: var(--accent-primary);
    transition: transform var(--transition-fast);
}

.bottom-nav-item:hover {
    color: var(--text-primary);
}

.bottom-nav-item:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.bottom-nav-item.active {
    color: var(--accent-primary);
}

.bottom-nav-item.active::before {
    transform: translateX(-50%) scaleX(1);
}

.bottom-nav-icon {
    font-size: 24px;
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
    color: inherit;
    stroke: currentColor;
    transition: all var(--transition-fast);
}

.bottom-nav-item:hover .bottom-nav-icon,
.bottom-nav-item.active .bottom-nav-icon {
    filter: none;
    color: var(--accent-primary);
}

.bottom-nav-label {
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Wishlist count badge */
.wishlist-count-badge {
    position: absolute;
    top: 12px;
    right: calc(50% - 24px);
    background: var(--accent-primary);
    color: var(--text-inverse);
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 100px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 8px rgba(13, 177, 242, 0.4);
}

/* ===== Wishlist Button ===== */
.wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
    color: var(--text-primary);
}

.wishlist-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.wishlist-btn.in-wishlist {
    background: var(--accent-primary);
    color: var(--text-inverse);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .categories-grid-new {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .carousel-slide {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .model-profile {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .model-profile-photo {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .categories-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .dropdown-content-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-search-form {
        display: none;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 80px 0 100px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section {
        padding: 64px 0;
    }
    
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .model-card {
        min-height: 380px;
    }
    
    .carousel-slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
    }
    
    .profile-name {
        font-size: 32px;
    }
    
    .creators-section {
        padding: 80px 0;
    }
    
    .creators-title {
        font-size: 36px;
    }
    
    .creators-features {
        gap: 24px;
    }
    
    .testimonial-block {
        padding: 32px 24px;
        margin: 48px 16px;
    }
    
    .categories-title-main {
        font-size: 36px;
    }
    
    .categories-header-new {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .categories-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .page-header h1,
    .search-header h1,
    .category-header h1 {
        font-size: 36px;
    }
    
    .page-article {
        padding: 32px 24px;
    }
    
    .cta-search-block {
        padding: 56px 24px;
    }
    
    .cta-search-title {
        font-size: 32px;
    }
    
    .dropdown-menu {
        min-width: 90vw;
        padding: 24px;
        left: 50%;
    }
    
    .dropdown-content-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wishlist-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .featured-items {
        flex-direction: column;
        gap: 16px;
    }
    
    .featured-item:not(:last-child)::after {
        display: none;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-slide {
        grid-template-columns: 1fr;
    }
    
    .categories-grid-new {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}
