﻿/* PAGINATION STİLLERİ */
.butcher-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    gap: 0.5rem;
}

.pagination-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 1rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
    background: white;
    border: 2px solid #e5e5e5;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.pagination-item:hover {
    background: #900000;
    color: white;
    border-color: #900000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(144, 0, 0, 0.2);
}

.pagination-item.active {
    background: linear-gradient(135deg, #900000, #700000);
    color: white;
    border-color: #900000;
    box-shadow: 0 5px 15px rgba(144, 0, 0, 0.3);
}

.pagination-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    font-size: 1.2rem;
    color: #777;
    font-weight: 700;
}

.pagination-arrow {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    color: #900000;
    font-size: 1.3rem;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pagination-arrow:hover {
    background: #900000;
    color: white;
    border-color: #900000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(144, 0, 0, 0.2);
}

.pagination-info {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
}

.pagination-info span {
    color: #900000;
    font-weight: 700;
}

/* Responsive pagination */
@media (max-width: 576px) {
    .butcher-pagination {
        gap: 0.3rem;
        padding: 1.5rem 0;
        flex-wrap: wrap;
    }

    .pagination-item {
        min-width: 35px;
        height: 35px;
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .pagination-arrow {
        min-width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .pagination-dots {
        min-width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .pagination-info {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .butcher-pagination {
        gap: 0.4rem;
    }

    .pagination-item {
        min-width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .pagination-arrow {
        min-width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}