/* KALICI RENK PALETİ - Steel Gray & Gray */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Custom Color Palette - KALICI */
    --steel-gray: #1F1C2C;
    --gray: #928DAB;
    --gray-light: #B8B3CA;
    --gray-dark: #6B6782;
    
    /* Main Theme Colors - KALICI KOYU TEMA */
    --bg-primary: #1F1C2C;
    --bg-secondary: #2A2738;
    --bg-tertiary: #353244;
    --bg-light: #3F3C50;
    
    --text-primary: #FFFFFF;
    --text-secondary: #E5E3ED;
    --text-muted: #928DAB;
    --text-dark: #6B6782;
    
    --border-color: rgba(146, 141, 171, 0.25);
    --border-light: rgba(146, 141, 171, 0.15);
    --border-strong: rgba(146, 141, 171, 0.4);
    
    --shadow: 0 2px 8px rgba(31, 28, 44, 0.4);
    --shadow-md: 0 4px 16px rgba(31, 28, 44, 0.5);
    --shadow-lg: 0 8px 32px rgba(31, 28, 44, 0.6);
    --shadow-xl: 0 16px 48px rgba(31, 28, 44, 0.7);
    
    --accent-color: #928DAB;
    --accent-hover: #B8B3CA;
    --accent-active: #A8A3BD;
    
    --success-color: #6EBF8B;
    --warning-color: #FFB74D;
    --error-color: #E57373;
    --info-color: #64B5F6;
    
    --glow-primary: 0 0 20px rgba(146, 141, 171, 0.4);
    --glow-strong: 0 0 40px rgba(146, 141, 171, 0.6);
    
    --gradient-primary: linear-gradient(135deg, #928DAB, #B8B3CA);
    --gradient-accent: linear-gradient(135deg, #6B6782, #928DAB);
}

/* Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary) !important;
    background: var(--bg-primary) !important;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.container {
    max-width: 1400px; /* Hero slider ile aynı genişlik */
    margin: 0 auto;
    padding: 0 20px; /* Hero slider wrapper ile aynı padding */
    box-sizing: border-box; /* Padding dahil hesaplama */
}

/* Mobile Container Padding Override */
@media (max-width: 768px) {
    .container {
        padding: 0 15px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px !important;
    }
}

/* Featured models container - tam 1360px içerik genişliği */
.featured-models .container {
    max-width: 1400px;
    padding: 0 20px;
    box-sizing: border-box;
}

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

/* Navbar - Steel Gray Theme */
.navbar {
    background: #2A2738 !important;
    background-color: #2A2738 !important;
    border-bottom: 1px solid rgba(146, 141, 171, 0.2) !important;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Mobil menü overlay - sayfa içeriğini kapatmak için */
.nav-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.nav-menu-overlay.active {
    display: block;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    background: transparent !important;
}

.nav-logo h2 {
    color: #928DAB !important;
    font-size: 1.75rem;
    font-weight: 700;
    background: transparent !important;
    letter-spacing: -0.02em;
}

.nav-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

/* Logo image margin override */
.nav-logo .logo-image {
    margin-right: 10px !important;
}

.nav-logo .logo-icon {
    font-size: 1.75rem;
}

.nav-logo .logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #928DAB !important;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
    background: transparent !important;
    flex: 1;
    justify-content: center;
    margin: 0 20px;
    overflow: hidden;
}

.nav-link {
    text-decoration: none;
    color: #E5E3ED !important;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    padding: 10px 14px;
    background: transparent !important;
    border-radius: 10px;
    letter-spacing: -0.01em;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link:hover {
    color: #FFFFFF !important;
    background: rgba(146, 141, 171, 0.1) !important;
    transform: translateY(-1px);
}

.nav-link.active {
    color: #FFFFFF !important;
    font-weight: 700;
    background: rgba(146, 141, 171, 0.15) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #928DAB, transparent);
    border-radius: 2px;
}

.nav-buttons {
    display: flex;
    gap: 4px;
    align-items: center;
    background: transparent !important;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-buttons .btn {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 18px;
    letter-spacing: -0.01em;
    border-radius: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-buttons .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(146, 141, 171, 0.3);
}

/* Navbar Profile Link - Sadece Metin, Resim YOK */
.nav-profile-link-text {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 40px;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.nav-profile-link-text:hover {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-1px);
}

/* "Profilim" Yazısı */
.nav-profile-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #928DAB;
    line-height: 1.2;
}

/* Kullanıcı Adı */
.nav-user-name {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #E5E3ED;
    white-space: nowrap;
    line-height: 1.2;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-profile-link-text:hover .nav-user-name {
    color: #FFFFFF;
}

.nav-profile-link-text:hover .nav-profile-label {
    color: #FFFFFF;
}

/* Avatar gösterilmemeli! */
.nav-profile-link-text img,
.nav-profile-link-text .nav-user-avatar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.theme-toggle {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

.theme-toggle:hover {
    background-color: var(--bg-secondary);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

/* User Menu Styles */
.user-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent !important;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: #E5E3ED !important;
    background: transparent !important;
}

/* Profile Button Styles */
.profile-link {
    padding: 8px 12px !important;
    min-width: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.profile-link .btn-icon {
    font-size: 18px;
    margin: 0 !important;
}

.profile-link .btn-text {
    display: none !important;
}

/* Logout Button Styles */
.logout-btn {
    padding: 8px 12px !important;
    min-width: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ef4444 !important;
    border: 1px solid #dc2626 !important;
    color: white !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.logout-btn:hover {
    background: #dc2626 !important;
    border-color: #b91c1c !important;
}

.logout-btn .btn-icon {
    font-size: 18px;
    margin: 0 !important;
}

.user-dropdown {
    position: relative;
}

.dropdown-toggle {
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    border: none;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.dropdown-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-toggle:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 130, 246, 0.4);
}

.dropdown-toggle:hover::before {
    opacity: 1;
}

.dropdown-toggle:active {
    transform: translateY(0) scale(0.98);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    z-index: 1000;
    display: none;
    padding: 16px 0;
    backdrop-filter: blur(20px);
    animation: dropdownFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.user-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    position: relative;
    border-radius: 0;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    border-radius: 0 2px 2px 0;
    transition: height 0.3s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
    color: var(--accent-color);
    transform: translateX(4px);
}

.dropdown-item:hover::before {
    height: 60%;
}

.dropdown-item-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
    opacity: 0.8;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.dropdown-item:hover .dropdown-item-icon {
    opacity: 1;
    transform: scale(1.1);
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.dropdown-item-title {
    font-size: 14px;
    font-weight: 600;
    color: inherit;
    line-height: 1.2;
}

.dropdown-item-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.2;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.dropdown-item:hover .dropdown-item-subtitle {
    opacity: 1;
}

.dropdown-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 8px 0;
    opacity: 0.5;
}

.dropdown-item.logout {
    color: var(--error-color);
    margin-top: 4px;
}

.dropdown-item.logout:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(220, 38, 38, 0.08));
    color: var(--error-color);
}

.dropdown-item.logout .dropdown-item-icon {
    color: var(--error-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-muted);
    transition: 0.3s;
}

/* Buttons */
.btn {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.btn:hover {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gray), var(--gray-light));
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(146, 141, 171, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(146, 141, 171, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--text-primary);
    border-color: var(--accent-color);
}

.btn-large {
    padding: 12px 24px;
    font-size: 1rem;
}

/* Page Header */
.page-header {
    padding: 100px 0 60px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0 50px;
    min-height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 1;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    margin-top: 0 !important;
}

/* Old hero overlay removed - clean modern design */

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    margin-top: 15px;
    color: var(--text-primary);
    background: linear-gradient(135deg, #FFFFFF, var(--gray-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    margin-top: 0;
    line-height: 1.7;
    padding: 0 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Old model preview gallery removed - no longer used */

/* Old gallery animation removed - no longer needed */

/* Animations removed - optimized */

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-image {
    position: relative;
    height: 400px;
}

.hero-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.card-text {
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Section Title */
.section-title {
    font-size: 1.5rem; /* Reduced from 2rem */
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    position: relative;
    z-index: 100;
}

/* Section Header - Başlık ve Filtreler yan yana */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

/* Center section header for homepage grids - same as featured-models */
.categories-section .section-header {
    justify-content: center;
    margin-bottom: 30px;
}

/* Featured Models Section */
.featured-models {
    padding: 30px 0; /* Reduced from 80px */
    background: var(--bg-primary);
    position: relative;
    z-index: 50;
}

/* Featured models container - padding kaldırıldı, grid kendi padding'ini yönetecek */
.featured-models .container {
    max-width: 1400px;
    padding: 0; /* Padding kaldırıldı */
    box-sizing: border-box;
}

/* Global Product Grid System */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 kolon */
    gap: 1.5rem; /* Gap değeri artırıldı */
    margin-bottom: 2rem;
    align-items: stretch;
    justify-items: stretch; /* Kartlar hizalanacak */
    width: 100%; /* Tam genişlik kullan */
    max-width: 1800px; /* Toplam genişlik artırıldı - 4 kart için */
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px; /* Hero slider wrapper ile aynı padding */
    box-sizing: border-box;
    justify-content: center;
}

/* Product Card - Global Component */
.product-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: var(--shadow-md);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 30px rgba(146, 141, 171, 0.4);
    border-color: var(--accent-color);
    text-decoration: none;
    color: inherit;
}

.product-card-image {
    width: 100%;
    height: 240px; /* Yükseklik biraz azaltıldı, genişlik öncelikli */
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--gray), var(--gray-light));
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(146, 141, 171, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-badge.free {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.product-card-badge.paid {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Ana sayfa model kartları için fiyat badge'i */
.model-price-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.model-price-badge.free {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.model-price-badge.paid {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Arama vurgulama */
.search-highlight {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: var(--text-primary);
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

/* Arama çubuğu temizleme butonu */
.clear-search-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.clear-search-btn:hover {
    background: #dc2626;
    transform: scale(1.05);
}

/* Filtre butonları */
.filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.filter-btn {
    background: var(--bg-secondary);
    color: #374151;
    border: 2px solid #e5e7eb;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--gray), var(--gray-light));
    color: white;
    border-color: var(--gray);
    box-shadow: 0 4px 12px rgba(146, 141, 171, 0.4);
}

.filter-btn.active:hover {
    background: linear-gradient(135deg, var(--gray-dark), var(--gray));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(146, 141, 171, 0.5);
}

.filter-btn-text {
    margin-right: 8px;
}

.filter-btn-count {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.filter-btn:not(.active) .filter-btn-count {
    background: #e5e7eb;
    color: var(--text-muted);
}

/* Ürün kartı kullanıcı adı */
.product-card-author-name {
    color: var(--text-muted);
    font-weight: 500;
}

/* Kullanıcı bilgi metni */
.user-info-text {
    color: #928DAB !important;
    font-size: 0.875rem;
    font-style: italic;
    background: transparent !important;
}

/* Ürün kartı düzenleme butonları */
.product-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.product-card-actions .btn {
    flex: 1;
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.product-card-actions .btn-outline {
    background: var(--bg-secondary);
    color: #374151;
    border: 1px solid #d1d5db;
}

.product-card-actions .btn-outline:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

.product-card-actions .btn-danger {
    background: var(--bg-secondary);
    color: #dc2626;
    border: 1px solid #fecaca;
}

.product-card-actions .btn-danger:hover {
    background: var(--bg-secondary);
    border-color: #f87171;
}

.product-card-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-author {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-card-author-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.product-card-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.product-card-stat {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    color: var(--text-muted);
}

.product-card-stat-icon {
    font-size: 0.875rem;
}

.product-card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.product-card-tag {
    background: var(--bg-secondary);
    color: #374151;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: clamp(0.625rem, 1.5vw, 0.75rem);
    font-weight: 500;
}


/* Legacy support for existing classes */
.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 kolon */
    gap: 1rem; /* Gap değeri */
    margin-bottom: 2rem;
    align-items: stretch;
    justify-items: stretch; /* Kartlar hizalanacak */
    width: 100%; /* Tam genişlik kullan */
    max-width: 1360px; /* Toplam genişlik 1360px - hero slider ile aynı */
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px; /* Hero slider wrapper ile aynı padding */
    box-sizing: border-box;
}

.model-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.model-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.model-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 30px rgba(146, 141, 171, 0.4);
    border-color: var(--accent-color);
    text-decoration: none;
    color: inherit;
}

.model-image {
    position: relative;
    height: 200px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.placeholder-image {
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.7;
}

.model-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.model-badge.paid {
    background: #8250df;
}

.model-badge.free {
    background: #28a745;
}

.model-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
    overflow: hidden;
    background: var(--bg-secondary);
}

.model-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.model-author {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.model-stats {
    display: flex;
    gap: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.model-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.model-stats .stat-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.model-stats .stat-value {
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--gray-dark), var(--gray));
    color: white;
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: var(--bg-primary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-md);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gray) 0%, var(--gray-light) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 40px rgba(146, 141, 171, 0.4);
    border-color: var(--accent-color);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover .category-icon,
.category-card:hover h3,
.category-card:hover p {
    color: white;
    position: relative;
    z-index: 1;
}

.category-icon {
    display: none !important;
    font-size: 3rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.category-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.category-card p {
    opacity: 0.7;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.category-card::after {
    content: '→';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
    z-index: 1;
}

.category-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Recent Models Filters */
.recent-filters {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin: 0;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    background: var(--bg-secondary);
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.filter-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Forum Section */
.forum {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.forum-preview {
    max-width: 800px;
    margin: 0 auto 40px;
}

.forum-post {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-secondary);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.forum-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.post-avatar {
    width: 50px;
    height: 50px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.post-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.post-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
}

.post-meta {
    display: flex;
    gap: 20px;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.about-list {
    list-style: none;
}

.about-list li {
    padding: 15px 0;
    font-size: 1.1rem;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.about-list li:last-child {
    border-bottom: none;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.about-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.about-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--steel-gray);
    color: var(--text-secondary);
    padding: 60px 0 20px;
    position: relative;
    z-index: 5;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2563eb;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Medium Desktop Responsive (3 cards) */
@media (max-width: 1400px) and (min-width: 1025px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .models-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* Tablet Responsive (2 cards) */
/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 1px;
        margin: 0 20px;
    }
    
    .nav-link {
        font-size: 0.9375rem;
        padding: 10px 16px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
}

/* Mobil Tasarım */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { justify-content: center; flex-wrap: wrap; }
    .about-content { grid-template-columns: 1fr; text-align: center; }
    .categories-grid { 
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
        gap: 20px;
    }
    
    .category-card {
        padding: 24px 16px;
        border-radius: 16px;
    }
    
    .category-icon {
        display: none !important;
        font-size: 2.5rem;
        margin-bottom: 16px;
    }
    
    .category-card h3 {
        font-size: 1.125rem;
        margin-bottom: 8px;
    }
    
    .category-card p {
        font-size: 0.875rem;
    }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Search and Filters */
.search-filters {
    padding: 40px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.search-bar {
    display: flex;
    max-width: 600px;
    margin: 0 auto 32px;
    position: relative;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px 0 0 6px;
    font-size: 1rem;
    outline: none;
}

.search-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(9, 105, 218, 0.1);
}

.search-btn {
    padding: 12px 16px;
    background: var(--accent-color);
    color: white;
    border: 1px solid var(--accent-color);
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-size: 1rem;
}

.filters {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.875rem;
    background: var(--bg-secondary);
    min-width: 150px;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.category-card {
    text-align: center;
    padding: 24px 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.category-icon {
    display: none !important;
    font-size: 2rem;
    margin-bottom: 12px;
}

.category-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.category-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Models Section */
.models-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.view-toggle {
    display: flex;
    gap: 4px;
}

.view-btn {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.view-btn:first-child {
    border-radius: 6px 0 0 6px;
}

.view-btn:last-child {
    border-radius: 0 6px 6px 0;
}

.view-btn.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

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

.page-numbers {
    display: flex;
    gap: 4px;
}

.page-btn {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.page-btn:hover {
    background: var(--bg-secondary);
}

.page-btn.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Upload Form */
.upload-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.upload-container {
    max-width: 800px;
    margin: 0 auto;
}

.upload-form {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    background: var(--bg-secondary);
    transition: all 0.2s ease;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(9, 105, 218, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* File Upload */
.file-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 48px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.file-upload-area:hover {
    border-color: var(--accent-color);
    background: var(--bg-secondary);
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.upload-link {
    color: var(--accent-color);
    text-decoration: underline;
}

.upload-info {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Pricing Options */
.pricing-options {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--accent-color);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}

/* Checkbox */
.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 0.875rem;
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 1px;
    color: white;
    font-size: 0.875rem;
    font-weight: bold;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

/* File List */
.file-list {
    margin-top: 16px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 8px;
}

.file-name {
    flex: 1;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.file-size {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.remove-file {
    background: #d73a49;
    color: white;
    border: none;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image Preview */
.image-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.image-preview-item {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.image-preview-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.remove-image {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(215, 58, 73, 0.8);
    color: white;
    border: none;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Print Settings */
.print-settings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.setting-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.setting-item label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Terms Links */
.terms-link {
    color: var(--accent-color);
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Auth Pages */
.auth-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    min-height: calc(100vh - 200px);
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.auth-form-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.forgot-password {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-submit {
    width: 100%;
    margin-top: 8px;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 24px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    background: var(--bg-secondary);
    padding: 0 16px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-social:hover {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

.btn-social.google:hover {
    border-color: #db4437;
    color: #db4437;
}

.btn-social.github:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.social-icon {
    font-size: 1.125rem;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.auth-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-info {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.info-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.info-content > p {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.stats-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

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

.stats-preview .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.stats-preview .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Password Input */
.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-muted);
    padding: 4px;
}

.password-toggle:hover {
    color: var(--text-primary);
}

/* Password Strength */
.password-strength {
    margin-top: 8px;
}

.strength-bar {
    width: 100%;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 4px;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-fill.weak {
    width: 25%;
    background: #d73a49;
}

.strength-fill.fair {
    width: 50%;
    background: var(--bg-secondary);
}

.strength-fill.good {
    width: 75%;
    background: var(--bg-secondary);
}

.strength-fill.strong {
    width: 100%;
    background: #28a745;
}

.strength-text {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Input Hints */
.input-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
    background: var(--bg-secondary);
    min-height: calc(100vh - 200px);
}

.legal-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-sidebar {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.legal-sidebar h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.legal-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-nav li {
    margin-bottom: 8px;
}

.legal-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.legal-nav a:hover {
    background: var(--bg-secondary);
    color: var(--accent-color);
}

.legal-main {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f6f8fa;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 12px 0;
}

.legal-section p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.legal-section ul {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-section a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Help Page */
.help-content {
    padding: 80px 0;
    background: var(--bg-secondary);
    min-height: calc(100vh - 200px);
}

.help-search {
    margin-bottom: 48px;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.help-search-input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--bg-secondary);
    transition: all 0.2s ease;
}

.help-search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(9, 105, 218, 0.1);
}

.help-search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-muted);
    padding: 8px;
}

.help-search-btn:hover {
    color: var(--accent-color);
}

.quick-links {
    margin-bottom: 64px;
}

.quick-links h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.quick-link {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    display: block;
}

.quick-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.quick-link-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.quick-link h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.quick-link p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

.help-faq {
    margin-bottom: 64px;
}

.help-faq h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 48px;
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.faq-category {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
}

.faq-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f6f8fa;
}

.contact-support {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 48px;
    text-align: center;
}

.contact-support h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.contact-support p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.125rem;
}

.support-options {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cookie Table */
.cookie-table {
    margin: 24px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.cookie-table td {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-consent-banner {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    text-align: center;
}

.cookie-consent-banner h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cookie-consent-banner p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Collections */
.collections-actions {
    padding: 40px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.collections-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.collection-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.collection-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.collection-header {
    position: relative;
    height: 120px;
    background: var(--bg-secondary);
}

.collection-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.preview-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.preview-image:nth-child(2n) {
    border-right: none;
}

.preview-image:nth-child(n+3) {
    border-bottom: none;
}

.collection-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.collection-card:hover .collection-actions {
    opacity: 1;
}

.action-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-color);
}

.collection-info {
    padding: 16px;
}

.collection-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.collection-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.collection-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.collection-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: var(--bg-secondary);
    color: var(--text-muted);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    border: 1px solid var(--border-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);

    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--bg-secondary);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
}

.modal-form {
    padding: 0 24px 24px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

/* About Page */
.mission-section, .vision-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.mission-content, .vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2, .vision-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.mission-text p, .vision-text p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.mission-placeholder, .vision-placeholder {
    width: 300px;
    height: 300px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

.mission-icon, .vision-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.mission-placeholder p, .vision-placeholder p {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
}

.values-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.value-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.2s ease;
}

.value-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.team-member {
    text-align: center;
    padding: 24px;
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 16px;
}

.team-member h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.member-role {
    font-size: 0.875rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 12px;
}

.member-bio {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.timeline-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.timeline {
    max-width: 600px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 60px;
    top: 40px;
    width: 2px;
    height: calc(100% + 16px);
    background: var(--border-color);
}

.timeline-date {
    width: 80px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.timeline-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: var(--accent-color);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-outline:hover {
    background: var(--bg-secondary);
    color: var(--accent-color);
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.method-icon {
    width: 100px;
    height: 100px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    flex-shrink: 0;
    position: relative;
    min-width: 100px;
}

.map-icon {
    width: 100px;
    height: 100px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    margin: 0 auto 20px;
}

.method-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.method-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.social-link:hover {
    color: #0860ca;
    transform: translateY(-2px);
}

.social-link[title="Facebook"]:hover {
    color: #1877f2;
}

.social-link[title="Twitter"]:hover {
    color: #1da1f2;
}

.social-link[title="Instagram"]:hover {
    color: #e4405f;
}

.social-link[title="LinkedIn"]:hover {
    color: #0077b5;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 24px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    height: 300px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.map-placeholder p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* Footer Updates */
.footer {
    background: #24292f;
    color: white;
    padding: 60px 0 20px;
}

.footer-section h3 {
    color: var(--accent-color);
}

.footer-section h4 {
    color: white;
}

.footer-section p, .footer-section ul li a {
    color: #8b949e;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #30363d;
    color: #8b949e;
}

/* Model Detail Page Styles */
.breadcrumb {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    margin-top: 64px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.breadcrumb-nav a {
    color: var(--accent-color);
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--text-muted);
}

.breadcrumb-current {
    color: var(--text-primary);
    font-weight: 500;
}

.model-detail-section {
    padding: 40px 0;
    background: var(--bg-secondary);
}

.model-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.model-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.image-placeholder {
    text-align: center;
    color: var(--text-muted);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 16px;
    display: block;
}

.image-placeholder p {
    font-size: 1.125rem;
    font-weight: 500;
}

.image-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: var(--bg-secondary);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.thumbnail {
    aspect-ratio: 1;
    background: var(--bg-secondary);
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.thumbnail:hover {
    border-color: var(--border-color);
}

.thumbnail.active {
    border-color: var(--accent-color);
}

.thumbnail-placeholder {
    color: var(--text-muted);
    font-size: 1.5rem;
}

.model-info {
    padding-left: 20px;
}

.model-header {
    margin-bottom: 32px;
}

.model-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

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

.author-avatar {
    width: 20px;
    height: 20px;
    background: var(--text-muted);
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    margin-right: 6px;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    color: var(--accent-color);
}

.model-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

.model-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

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

.stat-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 8px;
    display: block;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Comments Section */
.comments-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.rating-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 40px;
}

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

.rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: #ffc107;
    font-size: 1.25rem;
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.rating-label {
    width: 30px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.bar {
    flex: 1;
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: var(--bg-secondary);
    transition: width 0.3s ease;
}

.comment-form {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 40px;
}

.comment-form h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.rating-input {
    margin-bottom: 20px;
}

.rating-input label {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.star-rating {
    display: flex;
    gap: 4px;
    direction: rtl;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--border-color);
    transition: color 0.2s ease;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #ffc107;
}

.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
    margin-bottom: 20px;
}

.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(9, 105, 218, 0.1);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comment-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

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

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

.commenter-avatar {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.commenter-name {
    font-weight: 600;
    color: var(--text-primary);
}

.comment-rating {
    display: flex;
    gap: 2px;
    margin-top: 4px;
}

.comment-rating i {
    color: #ffc107;
    font-size: 0.875rem;
}

.comment-date {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.comment-content {
    margin-bottom: 16px;
}

.comment-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.comment-actions {
    display: flex;
    gap: 16px;
}

.comment-actions .action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.875rem;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.comment-actions .action-btn:hover {
    background: var(--bg-secondary);
    color: var(--accent-color);
}

.load-more-comments {
    text-align: center;
    margin-top: 32px;
}

/* Related Models Section */
.related-models-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

/* Upload Form Styles */
.upload-container {
    max-width: 1000px;
    margin: 0 auto;
}

.upload-form {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
}

.form-section {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #f6f8fa;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section .section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f6f8fa;
}

.form-section .section-title i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.print-settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.time-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-separator {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dimensions-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.dimension-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dimension-input label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.license-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.license-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.license-option:hover {
    border-color: var(--accent-color);
    background: var(--bg-secondary);
}

.license-option input[type="radio"]:checked + .radio-custom + .license-info {
    color: var(--accent-color);
}

.license-info {
    flex: 1;
}

.license-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    display: block;
}

.license-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.terms-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
}

.terms-section .checkbox-option {
    margin-bottom: 16px;
}

.terms-section .checkbox-option:last-child {
    margin-bottom: 0;
}

/* Upload Guidelines */
.upload-guidelines {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.guideline-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.guideline-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.guideline-card:first-child .guideline-icon {
    color: #28a745;
}

.guideline-card:nth-child(2) .guideline-icon {
    color: #d73a49;
}

.guideline-card:nth-child(3) .guideline-icon {
    color: #ffc107;
}

.guideline-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.guideline-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.guideline-card li {
    padding: 8px 0;
    color: var(--text-muted);
    border-bottom: 1px solid #f6f8fa;
}

.guideline-card li:last-child {
    border-bottom: none;
}

.guideline-card li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 8px;
}

/* Mobile Menu */
@media (max-width: 768px) {
    /* Container ve Genel Düzenlemeler */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .container {
        padding: 0 15px !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 70px;
    }
    
    .nav-logo h2,
    .nav-logo .logo-text {
        font-size: 1.25rem !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-secondary) !important;
        background-color: var(--bg-secondary) !important;
        border: 1px solid var(--border-color);
        border-top: none;
        flex-direction: column;
        padding: 20px 15px;
        display: none;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4);
        margin: 0;
        z-index: 9999;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        opacity: 0.98;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu .nav-link {
        padding: 14px 16px;
        border-bottom: 1px solid rgba(146, 141, 171, 0.3);
        font-size: 1rem;
        color: var(--text-primary) !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 8px;
        margin-bottom: 8px;
        transition: all 0.3s ease;
        font-weight: 500;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(146, 141, 171, 0.15) !important;
        color: var(--text-primary) !important;
        transform: translateX(4px);
    }
    
    .nav-menu .nav-link.active {
        background: rgba(146, 141, 171, 0.2) !important;
        color: var(--text-primary) !important;
        font-weight: 700;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    /* Nav-container'ı flex-start yap ve gap'i sıfırla */
    .nav-container {
        justify-content: flex-start !important;
        gap: 0px !important;
    }
    
    /* Nav-logo'yu sola hizala */
    .nav-logo {
        flex-shrink: 0;
        margin-right: auto;
    }
    
    /* Nav-menu'yu gizle (mobilde) */
    .nav-menu {
        display: none !important;
    }
    
    /* Nav-buttons ve mobile-menu-toggle'ı sağa hizala ve yan yana getir */
    .nav-buttons,
    #auth-nav {
        display: flex !important;
        align-items: center;
        gap: 0px !important;
        margin-left: auto !important;
        margin-right: 0px !important;
        flex-shrink: 0;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        margin-left: 4px !important;
        margin-right: 0px !important;
        flex-shrink: 0;
    }
    
    /* Nav-buttons ile mobile-menu-toggle arasındaki boşluk - 4px */
    #auth-nav ~ .mobile-menu-toggle,
    .nav-buttons ~ .mobile-menu-toggle,
    .nav-container > #auth-nav + .mobile-menu-toggle,
    .nav-container > .nav-buttons + .mobile-menu-toggle {
        margin-left: 4px !important;
    }
    
    .nav-buttons .btn {
        padding: 8px 14px;
        font-size: 0.8125rem;
    }
    
    /* Favoriler butonunu mobilde gizle */
    .nav-buttons a[href="/favorites.html"],
    .nav-buttons a[href*="favorites"],
    .nav-buttons .btn[href="/favorites.html"],
    .nav-buttons .btn[href*="favorites"],
    #auth-nav a[href="/favorites.html"],
    #auth-nav a[href*="favorites"],
    .nav-buttons a[title="Favorilerim"],
    #auth-nav a[title="Favorilerim"] {
        display: none !important;
    }
    
    .nav-profile-link-text {
        padding: 6px 10px;
        font-size: 0.75rem;
        margin-right: 0px !important;
        margin-left: 0px !important;
    }
    
    /* Profilim butonu ile diğer butonlar arasında minimal boşluk - 5'te 4 azaltıldı */
    #auth-nav {
        gap: 0px !important;
        display: flex !important;
        align-items: center;
        margin-left: auto !important;
        margin-right: 0px !important;
    }
    
    #auth-nav .nav-profile-link-text + .btn,
    #auth-nav .btn + .nav-profile-link-text {
        margin-left: 0px !important;
    }
    
    /* Profilim butonu ile mobile menu toggle arasındaki boşluk - minimal */
    #auth-nav + .mobile-menu-toggle,
    .nav-buttons + .mobile-menu-toggle {
        margin-left: 0px !important;
    }
    
    /* Nav-buttons ve mobile-menu-toggle arasındaki boşluğu minimize et */
    .nav-buttons,
    #auth-nav {
        margin-right: 0px !important;
    }
    
    /* Logo ve web adı arasındaki boşluğu azalt */
    .nav-logo .logo-link {
        gap: 4px !important;
    }
    
    .nav-logo .logo-image {
        margin-right: 4px !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    .nav-user-name {
        max-width: 80px;
        font-size: 0.75rem;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero Section */
    .hero {
        min-height: 400px;
        padding: 80px 0 10px;
    }
    
    .hero-section {
        padding-bottom: 10px !important;
        margin-bottom: 0 !important;
    }
    
    /* Hero slider wrapper boşluğunu azalt */
    .hero-slider-wrapper {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .hero-title {
        font-size: 1.875rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 0 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.9375rem;
    }
    
    /* Section Headers */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 1.25rem !important;
        margin-bottom: 0;
    }
    
    .recent-filters {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8125rem;
    }
    
    /* Featured Models Section - Hero ile arasındaki boşluğu azalt */
    .featured-models {
        padding: 5px 0 20px;
        margin-top: 0 !important;
    }
    
    /* Hero section'dan sonraki ilk section'ın margin'ini kaldır */
    .hero-section + .featured-models,
    .hero + .featured-models,
    section.hero-section + section.featured-models {
        margin-top: 0 !important;
        padding-top: 5px !important;
    }
    
    /* Hero search container boşluğunu azalt */
    .hero-search-container {
        margin-bottom: 10px !important;
    }
    
    /* Hero slider wrapper boşluğunu azalt */
    .hero-slider-wrapper {
        margin-bottom: 0 !important;
    }
    
    /* Kategori emojilerini tüm ekranlarda gizle */
    .category-icon {
        display: none !important;
    }
    
    .category-card {
        gap: 0px !important;
        padding-left: 16px !important;
    }
    
    .category-info {
        flex: 1;
    }
    
    /* Responsive Product Grid - 1 kolon mobilde (alt alta) */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .product-grid > *,
    .models-grid > * {
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .product-card {
        border-radius: 10px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        position: relative;
        height: auto;
    }
    
    .product-card-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
        flex-shrink: 0;
        position: relative;
    }
    
    .product-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .product-card-content {
        padding: 0.875rem;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 0;
    }
    
    .product-card-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
        -webkit-line-clamp: 2;
        word-wrap: break-word;
        overflow: hidden;
        width: 100%;
        flex-shrink: 0;
    }
    
    .product-card-author {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
        flex-shrink: 0;
    }
    
    .product-card-stats {
        gap: 0.75rem;
        margin-bottom: 0.5rem;
        flex-wrap: wrap;
        flex-shrink: 0;
    }
    
    .product-card-stat {
        font-size: 0.8125rem;
    }
    
    .product-card-stat-icon {
        font-size: 0.8125rem;
    }
    
    .product-card-tags {
        gap: 0.5rem;
        margin-top: auto;
        flex-shrink: 0;
    }
    
    .product-card-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    .product-card-badge,
    .model-price-badge {
        font-size: 0.8125rem;
        padding: 6px 12px;
        top: 10px;
        right: 10px;
    }
    
    .model-price-badge {
        left: 10px;
        right: auto;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 15px;
    }
    
    .category-card {
        padding: 20px 12px;
        border-radius: 12px;
    }
    
    .category-icon {
        display: none !important;
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .category-card {
        gap: 0px !important;
    }
    
    .category-card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .category-card p {
        font-size: 0.8125rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9375rem;
    }
    
    /* Page Header */
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    /* Sections */
    section {
        padding: 40px 0 !important;
    }
    
    .categories-section,
    .recent-models,
    .services-section {
        padding: 40px 0 !important;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        padding: 10px 14px;
        font-size: 0.9375rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-content, .vision-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .values-grid, .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .filters {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-select {
        width: 100%;
        min-width: auto;
    }
    
    .models-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .actions-bar {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .actions-bar .btn {
        width: 100%;
    }
    
    /* Search Bar */
    .search-bar {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }
    
    .search-input {
        border-radius: 6px;
        width: 100%;
    }
    
    .search-btn {
        border-radius: 6px;
        width: 100%;
    }
    
    /* Auth Pages */
    .auth-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .auth-section {
        padding: 40px 0 !important;
    }
    
    .auth-form-container,
    .auth-info {
        padding: 20px;
    }
    
    .auth-header h2 {
        font-size: 1.5rem;
    }
    
    .form-options {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .stats-preview {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }
    
    /* Legal Pages */
    .legal-content {
        padding: 40px 0 !important;
    }
    
    .legal-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .legal-sidebar {
        position: static;
        order: 2;
        padding: 20px;
    }
    
    .legal-main {
        padding: 20px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.125rem;
    }
    
    /* Help Page */
    .help-content {
        padding: 40px 0 !important;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .support-options {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .support-options .btn {
        width: 100%;
    }
    
    .cookie-table {
        font-size: 0.75rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 8px 10px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .footer-section h3 {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    /* Collections */
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Filaments & Printers Grid - 1 kolon mobilde (alt alta) */
    .filaments-grid,
    .printers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .filaments-grid > *,
    .printers-grid > * {
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Homepage Banners */
    .banner-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 15px;
    }
    
    /* Hero Search */
    .hero-search-container {
        padding: 0 15px;
    }
    
    .search-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-input {
        border-radius: 6px;
    }
    
    .search-btn {
        border-radius: 6px;
        width: 100%;
    }
    
    /* Model Detail Mobile Styles */
    .model-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .model-gallery {
        position: static;
    }
    
    .model-info {
        padding-left: 0;
    }
    
    .model-title {
        font-size: 1.75rem;
    }
    
    .model-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .model-actions {
        flex-direction: column;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .description-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .rating-summary {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Upload Form Mobile Styles */
    .upload-form {
        padding: 24px 16px;
    }
    
    .form-section .section-title {
        font-size: 1.25rem;
    }
    
    .print-settings-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .dimensions-group {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .time-input-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .license-options {
        gap: 16px;
    }
    
    .license-option {
        padding: 12px;
    }
    
    .guidelines-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    /* Text Center Buttons */
    .text-center .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Extra Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .container {
        padding: 0 12px !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Mobil menü 480px için ek düzenlemeler */
    .nav-menu {
        top: 65px;
        padding: 15px 12px;
        max-height: calc(100vh - 65px);
    }
    
    .nav-menu .nav-link {
        padding: 12px 14px;
        font-size: 0.9375rem;
    }
    
    /* Nav-container'ı flex-start yap ve gap'i sıfırla (480px) */
    .nav-container {
        padding: 0 12px;
        height: 65px;
        justify-content: flex-start !important;
        gap: 0px !important;
    }
    
    .nav-logo h2,
    .nav-logo .logo-text {
        font-size: 1.125rem !important;
    }
    
    /* Nav-logo'yu sola hizala (480px) */
    .nav-logo {
        flex-shrink: 0;
        margin-right: auto;
    }
    
    /* Nav-menu'yu gizle (mobilde 480px) */
    .nav-menu {
        display: none !important;
    }
    
    /* Nav-buttons ve mobile-menu-toggle'ı sağa hizala ve yan yana getir (480px) */
    .nav-buttons,
    #auth-nav {
        display: flex !important;
        align-items: center;
        gap: 0px !important;
        margin-left: auto !important;
        margin-right: 0px !important;
        flex-shrink: 0;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        margin-left: 4px !important;
        margin-right: 0px !important;
        flex-shrink: 0;
    }
    
    /* Nav-buttons ile mobile-menu-toggle arasındaki boşluk - 4px (480px) */
    #auth-nav ~ .mobile-menu-toggle,
    .nav-buttons ~ .mobile-menu-toggle,
    .nav-container > #auth-nav + .mobile-menu-toggle,
    .nav-container > .nav-buttons + .mobile-menu-toggle {
        margin-left: 4px !important;
    }
    
    .nav-buttons .btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    /* Favoriler butonunu mobilde gizle (480px) */
    .nav-buttons a[href="/favorites.html"],
    .nav-buttons a[href*="favorites"],
    .nav-buttons .btn[href="/favorites.html"],
    .nav-buttons .btn[href*="favorites"],
    #auth-nav a[href="/favorites.html"],
    #auth-nav a[href*="favorites"],
    .nav-buttons a[title="Favorilerim"],
    #auth-nav a[title="Favorilerim"] {
        display: none !important;
    }
    
    .nav-profile-link-text {
        padding: 5px 8px;
        font-size: 0.6875rem;
        margin-right: 0px !important;
        margin-left: 0px !important;
    }
    
    /* Profilim butonu ile diğer butonlar arasında minimal boşluk - 5'te 4 azaltıldı (480px) */
    #auth-nav {
        gap: 0px !important;
        display: flex !important;
        align-items: center;
        margin-left: auto !important;
        margin-right: 0px !important;
    }
    
    #auth-nav .nav-profile-link-text + .btn,
    #auth-nav .btn + .nav-profile-link-text {
        margin-left: 0px !important;
    }
    
    /* Profilim butonu ile mobile menu toggle arasındaki boşluk - minimal (480px) */
    #auth-nav + .mobile-menu-toggle,
    .nav-buttons + .mobile-menu-toggle {
        margin-left: 0px !important;
    }
    
    /* Nav-buttons ve mobile-menu-toggle arasındaki boşluğu minimize et (480px) */
    .nav-buttons,
    #auth-nav {
        margin-right: 0px !important;
    }
    
    /* Logo ve web adı arasındaki boşluğu azalt (480px) */
    .nav-logo .logo-link {
        gap: 3px !important;
    }
    
    .nav-logo .logo-image {
        margin-right: 3px !important;
        width: 45px !important;
        height: 45px !important;
    }
    
    .nav-user-name {
        max-width: 60px;
        font-size: 0.6875rem;
    }
    
    .hero {
        min-height: 350px;
        padding: 70px 0 5px;
    }
    
    .hero-section {
        padding-bottom: 5px !important;
        margin-bottom: 0 !important;
    }
    
    .hero-slider-wrapper {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .hero-title {
        font-size: 1.625rem;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        padding: 0 8px;
        margin-bottom: 18px;
    }
    
    .hero-buttons .btn,
    .btn-large {
        max-width: 100%;
        padding: 10px 18px;
        font-size: 0.875rem;
    }
    
    .section-title {
        font-size: 1.125rem !important;
    }
    
    .page-header {
        padding: 70px 0 30px;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .page-header p {
        font-size: 0.9375rem;
    }
    
    .product-grid,
    .models-grid {
        gap: 0.875rem;
        padding: 0 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .product-card-image {
        height: 180px;
    }
    
    .product-card-content {
        padding: 0.75rem;
    }
    
    .product-card-title {
        font-size: 0.9375rem;
        line-height: 1.4;
    }
    
    .product-card-author {
        font-size: 0.8125rem;
    }
    
    .product-card-stat {
        font-size: 0.75rem;
    }
    
    .product-card-stat-icon {
        font-size: 0.75rem;
    }
    
    .product-card-tag {
        font-size: 0.6875rem;
        padding: 0.1875rem 0.4375rem;
    }
    
    .product-card-badge,
    .model-price-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
        top: 8px;
        right: 8px;
    }
    
    .model-price-badge {
        left: 8px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 12px;
    }
    
    .category-card {
        padding: 16px 10px;
    }
    
    .category-icon {
        display: none !important;
        font-size: 1.75rem;
        margin-bottom: 10px;
    }
    
    .category-card {
        gap: 0px !important;
    }
    
    .category-card h3 {
        font-size: 0.9375rem;
    }
    
    .category-card p {
        font-size: 0.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 12px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .filter-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .auth-form-container,
    .auth-info {
        padding: 16px;
    }
    
    .auth-header h2 {
        font-size: 1.375rem;
    }
    
    .legal-main,
    .legal-sidebar {
        padding: 16px;
    }
    
    .legal-section h2 {
        font-size: 1.375rem;
    }
    
    .legal-section h3 {
        font-size: 1rem;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        padding: 0 12px;
        gap: 24px;
    }
    
    .footer-section h3 {
        font-size: 1.125rem;
    }
    
    .footer-section h4 {
        font-size: 0.9375rem;
    }
    
    .footer-section p,
    .footer-section ul li a {
        font-size: 0.875rem;
    }
    
    .model-title {
        font-size: 1.5rem;
    }
    
    .model-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .upload-form {
        padding: 20px 12px;
    }
    
    .form-section .section-title {
        font-size: 1.125rem;
    }
    
    .guidelines-grid {
        gap: 16px;
    }
    
    .guideline-card {
        padding: 24px 16px;
    }
    
    .guideline-icon {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
    
    .guideline-card h3 {
        font-size: 1.125rem;
    }
    
    .banner-grid {
        gap: 10px;
        padding: 0 12px;
    }
    
    .hero-search-container {
        padding: 0 12px;
    }
    
    .search-wrapper {
        gap: 8px;
    }
    
    .text-center .btn {
        max-width: 100%;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 300px;
        padding: 60px 0 5px;
    }
    
    .hero-section {
        padding-bottom: 5px !important;
        margin-bottom: 0 !important;
    }
    
    .hero-slider-wrapper {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .hero-search-container {
        margin-bottom: 8px !important;
    }
    
    /* Featured Models Section - Hero ile arasındaki boşluğu azalt (480px) */
    .featured-models {
        padding: 5px 0 20px;
        margin-top: 0 !important;
    }
    
    .hero-section + .featured-models,
    .hero + .featured-models,
    section.hero-section + section.featured-models {
        margin-top: 0 !important;
        padding-top: 5px !important;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .nav-container {
        height: 65px;
    }
}

/* Like Button Animation */
.like-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.like-btn i {
  color: #bbb; /* ilk hali gri */
  transition: color 0.2s;
}

.like-btn:hover {
  background: rgba(9, 105, 218, 0.1);
  border-color: var(--accent-color);
}

.like-btn.active {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.like-btn .btn-text {
  display: none;
}

.like-btn:hover .btn-text {
  display: inline;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Products Actions */
.products-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.products-actions .btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
}

