/* ===========================
   PAGINATION STYLES - SHARED
   =========================== */

.pagination-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.page-item {
    margin: 0;
}

.page-link {
    display: block;
    padding: 8px 12px;
    color: #6b5432 !important;
    text-decoration: none;
    border: 2px solid #eee !important;
    border-radius: 8px;
    background: #fff !important;
    transition: all 0.2s ease;
    min-width: 40px;
    text-align: center;
    font-weight: 600;
}

.page-link:hover {
    background: #f39200 !important;
    color: #fff !important;
    border-color: #f39200 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(243, 146, 0, 0.25) !important;
}

.page-item.active .page-link {
    background: #f39200 !important;
    color: #fff !important;
    border-color: #f39200 !important;
    box-shadow: 0 2px 8px rgba(243, 146, 0, 0.3) !important;
}

.pagination-info {
    color: var(--text-light);
    font-size: 0.9em;
    font-weight: 600;
}

/* ===========================
   RESPONSIVE PAGINATION
   =========================== */

@media (max-width: 768px) {
    .pagination-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .page-link {
        padding: 6px 10px;
        font-size: 0.9em;
        min-width: 35px;
    }
}

@media (max-width: 480px) {
    .pagination {
        gap: 3px;
    }
    
    .page-link {
        padding: 5px 8px;
        font-size: 0.8em;
        min-width: 30px;
    }
    
    .pagination-info {
        font-size: 0.8em;
        text-align: center;
    }
}
