/* ========================================
   KATEGORİ SAYFASI
   ======================================== */

/* Kategori Header */
.category-header-section {
    padding: 30px 0;
    background: white;
}

.category-header {
    text-align: center;
    margin-bottom: 30px;
}

.category-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.category-count {
    font-size: 16px;
    color: #6c757d;
}

/* Filtre ve Sıralama */
.category-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 12px;
}

.filter-left,
.filter-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 2px solid #E9ECEF;
    border-radius: 8px;
    color: #495057;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-toggle:hover {
    border-color: #06D6A0;
    color: #06D6A0;
}

.filter-toggle i {
    font-size: 20px;
}

.filter-right label {
    font-weight: 600;
    color: #495057;
}

.sort-select {
    padding: 10px 16px;
    border: 2px solid #E9ECEF;
    border-radius: 8px;
    background: white;
    color: #495057;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.sort-select:focus {
    outline: none;
    border-color: #06D6A0;
}

/* Kategori Ürünler */
.category-products-section {
    padding: 40px 0 60px;
    background: white;
}

/* Boş Kategori */
.empty-category {
    text-align: center;
    padding: 100px 20px;
}

.empty-category i {
    font-size: 120px;
    color: #CED4DA;
    margin-bottom: 30px;
}

.empty-category h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.empty-category p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 30px;
}

/* Kategori Açıklaması */
.category-description-section {
    padding: 60px 0;
    background: #F8F9FA;
}

.category-desc-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.category-desc-box h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.category-desc-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .category-header h1 {
        font-size: 28px;
    }
    
    .category-filters {
        flex-direction: column;
        gap: 16px;
    }
    
    .filter-left,
    .filter-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .sort-select {
        flex: 1;
    }
    
    .category-desc-box {
        padding: 30px 20px;
    }
}
