/* Пагинация Pastel Pill - без стрелок, только цифры */

.pagination-pastel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.page-pill {
    min-width: 2.5rem;
    height: 2.5rem;
    border-radius: 40px;
    background: #f5efe9;
    color: #836e5c;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.15s ease;
    cursor: pointer;
    border: none;
}

.page-pill:hover:not(.active) {
    background: #f0e4d8;
    transform: scale(0.94);
}

.page-pill.active {
    background: #b47c5e;
    color: #fff6ed;
    box-shadow: 0 4px 12px rgba(180, 124, 94, 0.3);
    cursor: default;
}

.page-pill.first,
.page-pill.last {
    font-size: 0.9rem;
    padding: 0 0.75rem;
    min-width: auto;
}

.page-ellipsis {
    color: #b47c5e;
    font-size: 1.2rem;
    padding: 0 0.25rem;
    user-select: none;
}

/* Адаптивность для мобильных */
@media (max-width: 680px) {
    .pagination-pastel {
        gap: 0.3rem;
        margin: 1.5rem 0;
    }
    
    .page-pill {
        min-width: 2.2rem;
        height: 2.2rem;
        font-size: 0.9rem;
    }
    
    .page-pill.first,
    .page-pill.last {
        min-width: auto;
        padding: 0 0.5rem;
        font-size: 0.85rem;
    }
}
