/* Kategori Filtre Stilleri */
.category-filter-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.category-filter-wrapper:hover {
    box-shadow: 0 10px 30px rgba(107, 62, 38, 0.1) !important;
}

.category-buttons {
    gap: 10px;
}

.category-btn {
    padding: 10px 20px;
    border: 2px solid #e4e4e4;
    border-radius: 30px;
    background: #fff;
    color: #262b35;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.category-btn:hover {
    background: #6b3e26;
    color: #fff;
    border-color: #6b3e26;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 62, 38, 0.2);
}

.category-btn.active {
    background: #6b3e26;
    color: #fff;
    border-color: #6b3e26;
    box-shadow: 0 5px 15px rgba(107, 62, 38, 0.3);
}

.category-btn .count {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 500;
}

/* Pagination Stilleri */
.pagination-wrapper {
    margin-top: 50px;
}

.pagination-style-01 {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination-style-01 .page-item {
    list-style: none;
}

.pagination-style-01 .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 12px;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    color: #262b35;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-style-01 .page-link:hover {
    background-color: #6b3e26;
    color: #fff;
    border-color: #6b3e26;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 62, 38, 0.2);
}

.pagination-style-01 .page-item.active .page-link {
    background-color: #6b3e26;
    color: #fff;
    border-color: #6b3e26;
}

.pagination-style-01 .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Ürün Badge Stilleri */
.product-badge {
    z-index: 1;
}

.product-badge .badge {
    padding: 5px 12px;
    border-radius: 4px;
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .category-filter-wrapper {
        padding: 20px 15px !important;
        margin-top: 30px;
    }
    
    .category-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
}

@media (max-width: 767px) {
    .category-filter-wrapper {
        margin-top: 40px;
        padding: 20px 15px !important;
    }
    
    .category-filter-wrapper .fs-18 {
        font-size: 16px !important;
        width: 100%;
        text-align: center;
        margin-bottom: 15px !important;
    }
    
    .category-buttons {
        width: 100%;
        justify-content: center !important;
    }
    
    .category-btn {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .category-btn .count {
        font-size: 11px;
    }
    
    .pagination-style-01 .page-link {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
        padding: 0 10px;
    }
    
    .pagination-wrapper {
        margin-top: 30px;
    }
    
    .pagination-style-01 {
        gap: 5px;
    }
}

@media (max-width: 575px) {
    .category-filter-wrapper {
        margin-top: 50px;
        padding: 15px 10px !important;
    }
    
    .category-btn {
        font-size: 11px;
        padding: 6px 12px;
    }
}