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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Wrapper - Top Menu ve Navbar birlikte sticky */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
}

/* Top Menu - Giriş Yapan Kullanıcılar İçin */
.top-menu {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

.top-menu .container {
    display: flex;
    justify-content: flex-end;
    padding: 0 20px;
}

.top-menu-items {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.top-menu-items li {
    margin: 0;
}

.top-menu-items a {
    color: #fff;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 13px;
    opacity: 0.9;
}

.top-menu-items a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    opacity: 1;
}

.top-menu-user {
    color: #fff;
    padding: 8px 14px;
    font-weight: 500;
    font-size: 13px;
    opacity: 0.9;
}

.top-menu-user span {
    color: #fff;
}

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 15px 20px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-brand a:hover {
    opacity: 0.8;
}

.site-logo {
    height: 83px;
    width: auto;
    object-fit: contain;
}

.site-name {
    font-size: 1.75rem;
    font-weight: bold;
    color: #d4af37;
    white-space: nowrap;
}

/* Arama Çubuğu */
.search-container {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.search-form {
    width: 100%;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 24px;
    padding: 8px 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.search-wrapper:focus-within {
    background: #fff;
    border-color: #d4af37;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    padding: 8px 12px;
    outline: none;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: #d4af37;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s;
    margin-left: 8px;
    flex-shrink: 0;
}

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

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-height: 500px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.search-results.active {
    display: block;
}

.search-results-section {
    padding: 12px 0;
}

.search-results-section-title {
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.5px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
    gap: 12px;
}

.search-result-item:hover {
    background: #f8f8f8;
}

.search-result-item-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.search-result-item-image.producer {
    border-radius: 50%;
}

.search-result-item-info {
    flex: 1;
    min-width: 0;
}

.search-result-item-name {
    font-weight: 500;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-item-meta {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-item .badge {
    background: #27ae60;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
}

.search-no-results {
    padding: 30px 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.search-loading {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.nav-menu a:hover {
    background: #f5f5f5;
    color: #d4af37;
}

@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .search-container {
        order: 3;
        max-width: 100%;
        width: 100%;
    }
    
    .nav-menu {
        order: 2;
    }
    
    .nav-brand {
        order: 1;
    }
}

/* Alerts */
.alert {
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary {
    background: #d4af37;
    color: #fff;
}

.btn-primary:hover {
    background: #b8941f;
}

.btn-secondary {
    background: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-danger {
    background: #dc3545;
    color: #fff;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

.btn-sm.btn-primary {
    padding: 6px 12px;
    font-size: 13px;
}

.btn-sm.btn-secondary {
    padding: 6px 12px;
    font-size: 13px;
}

.btn-sm.btn-danger {
    padding: 6px 12px;
    font-size: 13px;
}

/* Forms */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

/* Auth */
.auth-container {
    max-width: 500px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.auth-link {
    margin-top: 15px;
    text-align: center;
}

.auth-link a {
    color: #d4af37;
    text-decoration: none;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.product-card .no-image {
    width: 100%;
    height: 200px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.product-info {
    padding: 15px;
}

.product-info h3 {
    margin-bottom: 8px;
    color: #333;
}

.product-info .producer {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.product-info .gold-type {
    color: #d4af37;
    font-weight: 500;
}

.product-card a {
    text-decoration: none;
    color: inherit;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 8px;
    background: #e9ecef;
    color: #495057;
    border-radius: 4px;
    font-size: 0.85rem;
    margin: 2px;
}

.badge.verified {
    background: #d4af37;
    color: #fff;
}

.badge.pending {
    background: #6c757d;
    color: #fff;
}

/* Product Detail */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.primary-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.image-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.image-thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
}

.image-thumbnails img:hover {
    border-color: #d4af37;
}

.product-specs {
    margin: 20px 0;
}

.product-specs p {
    margin: 10px 0;
}

.product-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

/* Filters */
.filters {
    background: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.filter-form {
    width: 100%;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin: 30px 0;
}

.pagination a {
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.pagination a.active,
.pagination a:hover {
    background: #d4af37;
    color: #fff;
    border-color: #d4af37;
}

/* Footer - Minimal */
.footer {
    background: #fff;
    border-top: 1px solid #e9ecef;
    padding: 40px 20px 15px;
    margin-top: 20px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-left {
    flex: 1;
    max-width: 500px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 15px;
    transition: opacity 0.3s;
}

.footer-logo a:hover {
    opacity: 0.8;
}

.footer-logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

.footer-site-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4af37;
}

.footer-about {
    margin-top: 15px;
}

.footer-about p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

.footer-right {
    flex: 1;
    max-width: 400px;
}

.footer-email h4 {
    margin-bottom: 12px;
    color: #333;
    font-size: 16px;
}

.email-subscribe-form {
    margin-top: 15px;
}

.email-input-group {
    display: flex;
    gap: 8px;
}

.email-input-group input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.email-input-group input:focus {
    border-color: #d4af37;
}

.btn-subscribe {
    padding: 10px 20px;
    background: #d4af37;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.btn-subscribe:hover {
    background: #b8941f;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #666;
    padding-top: 15px;
    margin-bottom: 0;
}

.footer-bottom-left,
.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #d4af37;
}

.footer-bottom span {
    color: #ccc;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #fff;
    border-radius: 8px;
    margin: 30px 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.category-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card h3 {
    margin-bottom: 10px;
}

/* Producers Grid */
.producers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.producer-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.producer-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Dashboard */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.stat-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: all 0.2s;
    border-left: 3px solid #d4af37;
}

.stat-card:hover {
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.15);
}

.stat-card h3 {
    color: #d4af37;
    font-size: 1.75rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.stat-card p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

/* Dashboard Actions */
.dashboard-actions {
    margin-top: 25px;
}

.dashboard-actions h2 {
    color: #333;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.dashboard-actions .btn {
    transition: all 0.2s;
    font-size: 14px;
    padding: 8px 16px;
}

.dashboard-actions .btn:hover {
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
}

/* Page Header */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.page-header h1 {
    color: #333;
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.page-header p {
    color: #666;
    margin: 5px 0 0 0;
    font-size: 14px;
}

/* Admin Section */
.admin-section {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.admin-section h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 8px;
}

/* Table */
table {
    width: 100%;
    background: #fff;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

table th,
table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

table thead {
    background: #f8f9fa;
}

table thead th {
    font-weight: 600;
    border-bottom: none;
    color: #333;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

table tbody tr:hover {
    background: #f8f9fa;
}

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

/* Admin Table */
.admin-table {
    width: 100%;
    background: #fff;
    border-collapse: collapse;
    margin: 15px 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.admin-table thead {
    background: #f8f9fa;
}

.admin-table thead th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.admin-table tbody tr:hover {
    background: #f8f9fa;
}

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

table th {
    background: #f8f9fa;
    font-weight: 600;
}

/* Upload Info Box */
.upload-info {
    background: #f8f9fa;
    border-left: 4px solid #d4af37;
    padding: 15px;
    margin-top: 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.upload-info h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1rem;
}

.upload-info ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: none;
}

.upload-info ul li {
    margin-bottom: 6px;
    line-height: 1.5;
    position: relative;
    padding-left: 15px;
}

.upload-info ul li:before {
    content: "•";
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.upload-info ul li strong {
    color: #555;
}

/* Banner Section */
.home-banners {
    margin: 20px 0;
}

.home-banners .container {
    padding: 0 20px;
}

.banner-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.banner-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.banner-slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.banner-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Banner Navigation */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    line-height: 1;
}

.banner-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.banner-prev {
    left: 15px;
}

.banner-next {
    right: 15px;
}

/* Banner Dots */
.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.banner-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.banner-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin: 40px 0 30px;
}

.section-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.section-description {
    color: #666;
    font-size: 1rem;
}

.section-footer {
    text-align: center;
    margin: 30px 0;
}

/* Featured Models Section */
/* Öne Çıkan Modeller - 2 Kolonlu Küçük Banner */
.featured-models-grid-banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.featured-model-banner {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-model-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.featured-banner-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

.featured-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.featured-model-banner:hover .featured-banner-image img {
    transform: scale(1.05);
}

.featured-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    display: flex;
    align-items: flex-start;
    padding: 20px;
}

.featured-banner-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.featured-banner-content {
    padding: 20px;
    flex: 1;
}

.featured-banner-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.featured-banner-text {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.featured-banner-button {
    color: #d4af37;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    transition: color 0.2s;
}

.featured-model-banner:hover .featured-banner-button {
    color: #b8941f;
}

@media (max-width: 768px) {
    .featured-models-grid-banner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-banner-image {
        height: 200px;
    }
    
    .featured-banner-title {
        font-size: 20px;
    }
    
    .featured-banner-content {
        padding: 15px;
    }
    
    .featured-banner-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .featured-banner-text {
        font-size: 14px;
    }
    
    .featured-banner-button {
        align-self: flex-end;
    }
}

.featured-models-section {
    margin: 40px 0;
}

@media (max-width: 768px) {
    .featured-models-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-model-image {
        height: 250px;
    }
}

/* Categories Section */
.categories-section {
    margin: 40px 0;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0 20px 0;
    text-align: center;
    color: #fff;
}

.about-content h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
    margin-bottom: 20px;
}

.about-content p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Email Marketing Section */
.email-marketing-section {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
    color: #fff;
}

.email-marketing-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.email-marketing-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.email-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.email-form .form-group {
    margin-bottom: 0;
}

.email-form .form-control {
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.email-form .btn {
    padding: 12px 30px;
    font-size: 1rem;
}

/* Filter Improvements - Single Row */
.filter-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.filter-group {
    flex: 0 1 auto;
    min-width: 0;
}

.filter-group select {
    width: 100%;
    padding: 10px 35px 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: all 0.3s;
    color: #333;
}

.filter-group select:hover {
    border-color: #d4af37;
}

.filter-group select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.filter-group select option {
    padding: 8px;
}

.filter-search {
    flex: 1;
    min-width: 180px;
    max-width: 300px;
}

.filter-search input {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.filter-search input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.filter-checkbox {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.filter-checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin: 0;
    font-size: 14px;
    color: #333;
    user-select: none;
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #d4af37;
}

.filter-actions {
    flex: 0 0 auto;
    display: flex;
    gap: 8px;
    white-space: nowrap;
}

.filter-actions .btn {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 8px;
    font-weight: 500;
    white-space: nowrap;
}

.filter-actions .btn-primary {
    background: #d4af37;
    border: none;
}

.filter-actions .btn-primary:hover {
    background: #b8941f;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.filter-actions .btn-secondary {
    background: #6c757d;
    border: none;
    color: #fff;
}

.filter-actions .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* Footer Improvements */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    text-align: left;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #d4af37;
}

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

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

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

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

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

.footer-bottom a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #b8941f;
    text-decoration: underline;
}

/* Location Badge */
.location {
    color: #666;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* ============================================
   BLOG DÜZENİ - Sol Menü + Sağ İçerik
   ============================================ */

.blog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin: 30px 0;
}

/* Sol Menü - Sidebar */
.sidebar-menu {
    position: sticky;
    top: 100px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-section {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #f5f5f5;
}

/* Kategori Navigasyonu */
.category-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.category-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    text-decoration: none;
    color: #555;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.category-nav-item:hover {
    background: #f8f4e8;
    color: #333;
}

.category-nav-item.active {
    background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
    color: #fff;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.category-nav-item.active .nav-count {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.nav-text {
    flex: 1;
    font-size: 14px;
}

.nav-count {
    background: #f0f0f0;
    color: #666;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
}

/* Sidebar Üreticiler */
.sidebar-producers {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-producer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    transition: all 0.2s;
    background: #fafafa;
}

.sidebar-producer-item:hover {
    background: #f8f4e8;
    transform: translateX(3px);
}

.producer-logo-mini {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.producer-logo-mini.no-logo {
    background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.producer-info-mini {
    flex: 1;
    min-width: 0;
}

.producer-info-mini .producer-name {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.producer-info-mini .producer-location {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

.verified-badge {
    background: #27ae60;
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.sidebar-link {
    display: block;
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    color: #d4af37;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s;
}

.sidebar-link:hover {
    background: #f8f4e8;
    color: #b8941f;
}

/* Ana İçerik */
.main-content {
    min-width: 0;
}

.content-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.content-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.content-description {
    color: #666;
    font-size: 15px;
    margin: 0 0 10px 0;
}

.content-meta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.product-count {
    color: #888;
    font-size: 13px;
}

/* Blog Ürün Grid - Masaüstü görünümünde 3 sütun */
.products-grid-blog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card-blog {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-card-blog:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #d4af37;
}

.product-card-blog a {
    text-decoration: none;
    color: inherit;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f8f8;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-blog:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-image-wrapper .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ddd;
    background: #f5f5f5;
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge-gold {
    background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.badge-verified {
    background: #27ae60;
    color: #fff;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
}

.product-details {
    padding: 15px;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-producer {
    font-size: 13px;
    color: #666;
    margin: 0 0 5px 0;
}

.product-location {
    font-size: 12px;
    color: #888;
    margin: 0 0 5px 0;
}

.product-weight {
    font-size: 12px;
    color: #d4af37;
    margin: 0;
    font-weight: 500;
}

/* Anasayfa: her 12 üründe "Yeni Ürünler" bölümü */
.products-section-block {
    margin-bottom: 32px;
}
.products-section-block:last-of-type {
    margin-bottom: 0;
}
.section-title-new {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #d4af37;
}
.view-all-products-wrap {
    text-align: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}
.btn-view-all {
    padding: 12px 28px;
    font-size: 15px;
}

/* Ürün Yok Durumu */
.no-products {
    text-align: center;
    padding: 60px 30px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.no-products-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.no-products h3 {
    font-size: 20px;
    color: #333;
    margin: 0 0 10px 0;
}

.no-products p {
    color: #666;
    margin: 0 0 20px 0;
}

/* Daha Fazla Yükle */
.load-more-section {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.btn-lg {
    padding: 14px 35px;
    font-size: 15px;
}

/* Responsive - Blog Layout */
@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 240px 1fr;
        gap: 20px;
    }
    
    .products-grid-blog {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sidebar-menu {
        position: relative;
        top: 0;
        order: -1;
    }
    
    .category-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .category-nav-item {
        padding: 8px 12px;
        flex: 0 0 auto;
    }
    
    .nav-count {
        display: none;
    }
    
    .sidebar-producers {
        display: none;
    }
    
    .products-grid-blog {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image-wrapper {
        height: 160px;
    }
    
    .content-header h1 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .products-grid-blog {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-image-wrapper {
        height: 160px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - TÜM EKRAN BOYUTLARI
   ============================================ */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.mobile-menu-toggle:hover {
    color: #d4af37;
}

/* ============================================
   MOBILE SMALL (320px - 480px)
   ============================================ */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 12px;
        max-width: 100%;
    }
    
    /* Header - Mobile Small */
    
    .header-wrapper {
        position: relative;
    }
    
    /* Top Menu - Mobilde Tek Satırda */
    #topMenuMobile {
        padding: 6px 0;
        font-size: 11px;
    }
    
    #topMenuMobile .container {
        padding: 0 8px;
    }
    
    #topMenuItemsMobile {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    
    #topMenuItemsMobile li {
        flex: 0 0 auto;
        width: auto;
    }
    
    #topMenuItemsMobile a {
        display: inline-block;
        padding: 4px 8px;
        text-align: center;
        font-size: 10px;
        white-space: nowrap;
    }
    
    #topMenuUserMobile {
        width: auto;
        flex: 0 0 auto;
        text-align: center;
        padding: 4px 8px;
        border-top: none;
        margin-top: 0;
        font-size: 10px;
    }
    
    #topMenuUserMobile span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 120px;
        display: inline-block;
    }
    
    #topMenuLogoutMobile {
        flex: 0 0 auto;
    }
    
    #topMenuLogoutMobile a {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    /* Navbar - Mobile Small */
    
    .navbar .container {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 12px;
    }
    
    .nav-brand {
        order: 1;
        flex: 1;
    }
    
    .site-logo {
        height: 50px;
    }
    
    .site-name {
        font-size: 1.2rem;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    .nav-menu {
        order: 3;
        flex-direction: column;
        width: 100%;
        display: none;
        gap: 8px;
        margin-top: 10px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px;
        text-align: center;
        font-size: 14px;
    }
    
    /* Search - Mobile Small */
    
    .search-container {
        max-width: 100%;
        width: 100%;
    }
    
    .search-wrapper {
        padding: 6px 12px;
    }
    
    .search-input {
        font-size: 14px;
        padding: 6px 10px;
    }
    
    .search-btn {
        width: 32px;
        height: 32px;
    }
    
    /* Products Grid - Mobile Small */
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .products-grid-blog {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card,
    .product-card-blog {
        margin: 0;
    }
    
    .product-card img,
    .product-image-wrapper {
        height: 180px;
    }
    
    /* Categories Grid - Mobile Small */
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Producers Grid - Mobile Small */
    
    .producers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Dashboard Stats - Mobile Small */
    #dashboard-stats-mobile-small {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-card h3 {
        font-size: 1.5rem;
    }
    
    .stat-card p {
        font-size: 12px;
    }
    
    /* Product Detail - Mobile Small */
    
    .product-detail {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }
    
    .primary-image img {
        max-height: 300px;
    }
    
    .image-thumbnails {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .image-thumbnails img {
        width: 60px;
        height: 60px;
    }
    
    /* Hero - Mobile Small */
    
    .hero {
        padding: 30px 15px;
        margin: 20px 0;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    /* Banner - Mobile Small */
    
    .banner-slider-wrapper {
        min-height: 200px;
        max-height: 300px;
    }
    
    .banner-nav {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .banner-prev {
        left: 8px;
    }
    
    .banner-next {
        right: 8px;
    }
    
    .banner-dots {
        bottom: 10px;
        gap: 6px;
    }
    
    .banner-dot {
        width: 8px;
        height: 8px;
    }
    
    /* Footer - Mobile Small */
    #footer-mobile-small {
        padding: 25px 15px 10px;
    }
    
    .footer {
        padding: 25px 15px 10px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-site-name {
        font-size: 1.2rem;
    }
    
    .footer-about p {
        font-size: 13px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        font-size: 11px;
    }
    
    .email-input-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-subscribe {
        width: 100%;
    }
    
    /* Filters - Mobile Small */
    
    .filters {
        padding: 12px 15px;
    }
    
    .filter-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-group {
        width: 100%;
        min-width: 100%;
    }
    
    .filter-search {
        width: 100%;
        max-width: 100%;
    }
    
    .filter-checkbox {
        width: 100%;
        justify-content: flex-start;
    }
    
    .filter-actions {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }
    
    .filter-actions .btn {
        width: 100%;
    }
    
    /* Forms - Mobile Small */
    .auth-container {
        margin: 20px auto;
        padding: 20px 15px;
        max-width: 100%;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
    }
    
    /* Tables - Mobile Small */
    
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        font-size: 12px;
    }
    
    table th,
    table td {
        padding: 8px 10px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    /* Blog Layout - Mobile Small */
    
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .sidebar-menu {
        position: relative;
        top: 0;
        order: -1;
    }
    
    .category-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .category-nav-item {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .nav-count {
        display: none;
    }
    
    .content-header h1 {
        font-size: 18px;
    }
    
    .content-description {
        font-size: 13px;
    }
    
    /* Section Headers - Mobile Small */
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .about-content h2,
    .email-marketing-content h2 {
        font-size: 1.3rem;
    }
    
    .about-section,
    .email-marketing-section {
        padding: 25px 15px;
    }
    
    .about-content p,
    .email-marketing-content p {
        font-size: 14px;
    }
    
    /* Featured Models - Mobile Small */
    .featured-models-grid-banner {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .featured-banner-image {
        height: 180px;
    }
    
    .featured-banner-title {
        font-size: 18px;
    }
    
    .featured-banner-content {
        padding: 12px;
    }
    
    /* Buttons - Mobile Small */
    .btn {
        padding: 10px 16px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
    
    .btn-sm {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    /* Page Header - Mobile Small */
    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .page-header h1 {
        font-size: 18px;
    }
    
    .page-header p {
        font-size: 12px;
    }
}

/* ============================================
   MOBILE LARGE (481px - 768px)
   ============================================ */
@media (min-width: 481px) and (max-width: 768px) {
    /* Container */
    .container {
        padding: 15px;
        max-width: 100%;
    }
    
    /* Header - Mobile Large */
    
    #topMenuMobile {
        padding: 8px 0;
        font-size: 12px;
    }
    
    #topMenuMobile .container {
        padding: 0 12px;
    }
    
    #topMenuItemsMobile {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        align-items: center;
    }
    
    #topMenuItemsMobile a {
        padding: 6px 10px;
        font-size: 11px;
        white-space: nowrap;
    }
    
    #topMenuUserMobile {
        width: auto;
        flex: 0 0 auto;
        text-align: center;
        padding: 6px 10px;
        border-top: none;
        margin-top: 0;
        font-size: 11px;
    }
    
    #topMenuUserMobile span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 150px;
        display: inline-block;
    }
    
    #topMenuLogoutMobile {
        flex: 0 0 auto;
    }
    
    #topMenuLogoutMobile a {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    /* Navbar - Mobile Large */
    #navbar-mobile-large {
        padding: 12px 15px;
    }
    
    .navbar .container {
        flex-wrap: wrap;
        gap: 15px;
        padding: 12px 15px;
    }
    
    .nav-brand {
        order: 1;
    }
    
    .site-logo {
        height: 65px;
    }
    
    .site-name {
        font-size: 1.4rem;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    .nav-menu {
        order: 3;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        display: none;
        gap: 8px;
        margin-top: 10px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    /* Search - Mobile Large */
    
    .search-container {
        max-width: 100%;
        width: 100%;
    }
    
    /* Products Grid - Mobile Large */
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .products-grid-blog {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .product-card img,
    .product-image-wrapper {
        height: 200px;
    }
    
    /* Categories Grid - Mobile Large */
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Producers Grid - Mobile Large */
    
    .producers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    /* Dashboard Stats - Mobile Large */
    
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Product Detail - Mobile Large */
    
    .product-detail {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px;
    }
    
    /* Hero - Mobile Large */
    #hero-mobile-large {
        padding: 40px 20px;
    }
    
    .hero {
        padding: 40px 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    /* Banner - Mobile Large */
    
    .banner-slider-wrapper {
        min-height: 300px;
        max-height: 450px;
    }
    
    /* Footer - Mobile Large */
    
    .footer {
        padding: 30px 20px 15px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 25px;
    }
    
    /* Filters - Mobile Large */
    
    .filters {
        padding: 15px 18px;
    }
    
    .filter-row {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .filter-group {
        flex: 1 1 calc(50% - 6px);
        min-width: 150px;
    }
    
    .filter-search {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .filter-actions {
        flex: 1 1 100%;
        justify-content: stretch;
        gap: 10px;
    }
    
    .filter-actions .btn {
        flex: 1;
    }
    
    /* Blog Layout - Mobile Large */
    
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sidebar-menu {
        position: relative;
        top: 0;
        order: -1;
    }
    
    .category-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .content-header h1 {
        font-size: 24px;
    }
    
    /* Featured Models - Mobile Large */
    .featured-models-grid-banner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-banner-image {
        height: 220px;
    }
    
    /* Section Headers - Mobile Large */
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .about-content h2,
    .email-marketing-content h2 {
        font-size: 1.7rem;
    }
}

/* ============================================
   TABLET (769px - 1024px)
   ============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Container */
    .container {
        padding: 18px;
        max-width: 100%;
    }
    
    /* Header - Tablet */
    
    .top-menu {
        padding: 10px 0;
    }
    
    /* Navbar - Tablet */
    
    .navbar .container {
        gap: 20px;
        padding: 15px 18px;
    }
    
    .site-logo {
        height: 75px;
    }
    
    .site-name {
        font-size: 1.6rem;
    }
    
    .nav-menu {
        gap: 6px;
    }
    
    .nav-menu a {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .search-container {
        max-width: 500px;
    }
    
    /* Products Grid - Tablet */
    #products-grid-tablet {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .products-grid-blog {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    /* Categories Grid - Tablet */
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    /* Producers Grid - Tablet */
    
    .producers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    /* Dashboard Stats - Tablet */
    
    .dashboard-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    /* Product Detail - Tablet */
    
    .product-detail {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        padding: 25px;
    }
    
    /* Banner - Tablet */
    
    .banner-slider-wrapper {
        min-height: 350px;
        max-height: 500px;
    }
    
    /* Footer - Tablet */
    #footer-tablet {
        padding: 35px 20px 15px;
    }
    
    .footer-main {
        gap: 30px;
    }
    
    /* Blog Layout - Tablet */
    
    .blog-layout {
        grid-template-columns: 240px 1fr;
        gap: 25px;
    }
    
    .products-grid-blog {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Featured Models - Tablet */
    .featured-models-grid-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .featured-banner-image {
        height: 240px;
    }
}

/* ============================================
   DESKTOP (1025px - 1440px)
   ============================================ */
@media (min-width: 1025px) and (max-width: 1440px) {
    /* Container */
    .container {
        max-width: 1200px;
        padding: 20px;
    }
    
    /* Header - Desktop */
    
    /* Navbar - Desktop */
    
    .navbar .container {
        gap: 30px;
        padding: 15px 20px;
    }
    
    .site-logo {
        height: 83px;
    }
    
    .site-name {
        font-size: 1.75rem;
    }
    
    .search-container {
        max-width: 600px;
    }
    
    /* Products Grid - Desktop */
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .products-grid-blog {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    /* Categories Grid - Desktop */
    
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    /* Producers Grid - Desktop */
    
    .producers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    /* Dashboard Stats - Desktop */
    
    .dashboard-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    /* Product Detail - Desktop */
    
    .product-detail {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    /* Banner - Desktop */
    
    .banner-slider-wrapper {
        min-height: 400px;
        max-height: 600px;
    }
    
    /* Blog Layout - Desktop */
    
    .blog-layout {
        grid-template-columns: 280px 1fr;
        gap: 30px;
    }
    
    .products-grid-blog {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Featured Models - Desktop */
    .featured-models-grid-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .featured-banner-image {
        height: 250px;
    }
}

/* ============================================
   LARGE DESKTOP (1441px+)
   ============================================ */
@media (min-width: 1441px) {
    /* Container */
    .container {
        max-width: 1400px;
        padding: 25px;
    }
    
    /* Header - Large Desktop */
    
    /* Navbar - Large Desktop */
    
    .navbar .container {
        gap: 40px;
        padding: 18px 25px;
    }
    
    .site-logo {
        height: 90px;
    }
    
    .site-name {
        font-size: 2rem;
    }
    
    .search-container {
        max-width: 700px;
    }
    
    /* Products Grid - Large Desktop */
    
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }
    
    .products-grid-blog {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    /* Categories Grid - Large Desktop */
    
    .categories-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }
    
    /* Producers Grid - Large Desktop */
    
    .producers-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }
    
    /* Dashboard Stats - Large Desktop */
    
    .dashboard-stats {
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }
    
    /* Product Detail - Large Desktop */
    
    .product-detail {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    /* Banner - Large Desktop */
    
    .banner-slider-wrapper {
        min-height: 500px;
        max-height: 700px;
    }
    
    /* Blog Layout - Large Desktop */
    
    .blog-layout {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }
    
    .products-grid-blog {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Featured Models - Large Desktop */
    .featured-models-grid-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .featured-banner-image {
        height: 280px;
    }
}

/* ============================================
   ADMIN & PRODUCER PANELS - RESPONSIVE
   ============================================ */

/* Admin Panel - Mobile */
@media (max-width: 768px) {
    
    .admin-sidebar {
        width: 100%;
        max-width: 280px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .admin-sidebar.active {
        transform: translateX(0);
    }
    
    .admin-content {
        margin-left: 0;
        padding: 10px;
        width: 100%;
    }
    
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 15px;
    }
    
    .admin-user-info {
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
    }
    
    .admin-user-info a {
        flex: 1;
        text-align: center;
        min-width: 120px;
    }
    
    /* Admin Mobile Menu Toggle */
    .admin-mobile-toggle {
        display: block;
        position: fixed;
        top: 15px;
        left: 15px;
        z-index: 1001;
        background: #d4af37;
        color: #fff;
        border: none;
        padding: 10px 15px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 18px;
    }
    
    .admin-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .admin-overlay.active {
        display: block;
    }
    
    /* Admin Tables - Mobile */
    .admin-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .admin-table {
        min-width: 600px;
        font-size: 12px;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* Producer Panel - Mobile */
@media (max-width: 768px) {
    
    .producer-sidebar {
        width: 100%;
        max-width: 280px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .producer-sidebar.active {
        transform: translateX(0);
    }
    
    .producer-content {
        margin-left: 0;
        padding: 10px;
        width: 100%;
    }
    
    .producer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 15px;
    }
    
    .producer-user-info {
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
    }
    
    .producer-user-info a {
        flex: 1;
        text-align: center;
        min-width: 120px;
    }
    
    /* Producer Mobile Menu Toggle */
    .producer-mobile-toggle {
        display: block;
        position: fixed;
        top: 15px;
        left: 15px;
        z-index: 1001;
        background: #d4af37;
        color: #fff;
        border: none;
        padding: 10px 15px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 18px;
    }
    
    .producer-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .producer-overlay.active {
        display: block;
    }
}

/* Admin & Producer Panels - Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .admin-sidebar,
    .producer-sidebar {
        width: 180px;
    }
    
    .admin-content,
    .producer-content {
        margin-left: 180px;
        padding: 15px;
    }
}

/* Admin & Producer Panels - Desktop */
@media (min-width: 1025px) {
    .admin-mobile-toggle,
    .producer-mobile-toggle {
        display: none;
    }
    
    .admin-overlay,
    .producer-overlay {
        display: none !important;
    }
}

/* ============================================
   MOBİL İÇİN ÖNE ÇIKAN ÜRETİCİLER
   ============================================ */

/* Öne Çıkan Üreticiler - Mobilde Slider Altında */
.featured-producers-mobile {
    display: none;
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.featured-producers-mobile .container {
    max-width: 100%;
}

.section-title-mobile {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    text-align: center;
}

.producers-grid-mobile {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 15px;
}

.producer-card-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
    position: relative;
}

.producer-card-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
}

.producer-logo-mobile {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 8px;
    border: 2px solid #d4af37;
}

.producer-logo-mobile.no-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 8px;
}

.producer-info-mobile {
    text-align: center;
    width: 100%;
}

.producer-name-mobile {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.producer-location-mobile {
    display: block;
    font-size: 11px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.verified-badge-mobile {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.view-all-producers-mobile {
    text-align: center;
    margin-top: 15px;
}

/* Sidebar Üreticiler - Sadece Masaüstünde */
@media (min-width: 769px) {
    .featured-producers-mobile {
        display: none !important;
    }
    
    .sidebar-producers-desktop {
        display: block;
    }
}

/* Mobilde Öne Çıkan Üreticileri Göster */
@media (max-width: 768px) {
    .featured-producers-mobile {
        display: block;
    }
    
    .sidebar-producers-desktop {
        display: none;
    }
    
    .producers-grid-mobile {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .producer-card-mobile {
        padding: 10px;
    }
    
    .producer-logo-mobile {
        width: 50px;
        height: 50px;
    }
    
    .producer-logo-mobile.no-logo {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .producer-name-mobile {
        font-size: 12px;
    }
    
    .producer-location-mobile {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .featured-producers-mobile {
        padding: 15px 0;
    }
    
    .section-title-mobile {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .producers-grid-mobile {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .producer-card-mobile {
        padding: 8px;
    }
    
    .producer-logo-mobile {
        width: 45px;
        height: 45px;
    }
    
    .producer-logo-mobile.no-logo {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
    
    .producer-name-mobile {
        font-size: 11px;
    }
    
    .producer-location-mobile {
        font-size: 9px;
    }
    
    .verified-badge-mobile {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: 6px;
        right: 6px;
    }
}

/* ============================================
   MOBİL: KATEGORİLER ÜRÜNLERİN ÜSTÜNDE YATAY MENÜ
   ============================================ */

@media (max-width: 768px) {
    #blogLayoutMobile {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* Kategori bar: ürünlerin hemen üstünde, menü barı */
    #sidebarMenuMobile {
        order: 1;
        width: 100%;
        position: relative;
        top: 0;
        padding: 0;
        margin: 0;
        background: #fff;
        border-bottom: 1px solid #e5e5e5;
        box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    }

    #sidebarMenuMobile .sidebar-categories {
        margin: 0;
        padding: 10px 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    #sidebarMenuMobile .sidebar-title-categories {
        display: none;
    }

    #sidebarMenuMobile .sidebar-producers-desktop {
        display: none;
    }

    /* Yatay menü: scrollbar gizli, elle kaydırma (meta görünüm) */
    #categoryNav {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        padding: 0 12px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        min-height: 44px;
        align-items: center;
    }
    #categoryNav::-webkit-scrollbar {
        display: none;
    }

    #categoryNav .category-nav-item {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 24px;
        background: #fff;
        border: 1px solid #e0e0e0;
        color: #555;
        text-decoration: none;
        transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    #categoryNav .category-nav-item:hover,
    #categoryNav .category-nav-item.active {
        background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
        color: #fff;
        border-color: #d4af37;
    }

    #categoryNav .nav-count {
        display: none;
    }

    #mainContentMobile {
        order: 2;
        margin-top: 0;
    }

    /* Mobilde başlık/açıklama yok, menü barının hemen altında ürünler */
    #contentHeader {
        display: none;
    }

    #productsGrid {
        width: 100%;
        margin-top: 0;
    }

    .products-section-block {
        margin-bottom: 20px;
        margin-top: 0;
        padding-top: 0;
    }

    /* Mobilde "Yeni Ürünler" yazısı yok */
    .section-title-new {
        display: none;
    }

    .products-grid-blog {
        gap: 12px;
    }

    .product-card-blog {
        border-radius: 8px;
        overflow: hidden;
    }

    .product-image-wrapper {
        height: 180px;
    }
}

@media (max-width: 480px) {
    #categoryNav {
        gap: 8px;
        padding: 0 10px;
    }

    #categoryNav .category-nav-item {
        padding: 8px 14px;
        font-size: 13px;
    }

    .products-grid-blog {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-image-wrapper {
        height: 160px;
    }
}
