.becute-pagination-nav {
    direction: ltr;
}

.becute-pagination {
    --becute-primary: #004650;
    --becute-primary-soft: #e6f2f3;
    --becute-border: #c6d9dc;
    --becute-text: #35575b;
    --becute-muted: #86a2a6;
    --becute-white: #ffffff;
    --becute-shadow: 0 8px 24px rgba(0, 70, 80, 0.14);

    padding: 0.75rem 1rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(20, 20, 43, 0.06);
    flex-wrap: wrap;
}


.becute-pagination__item {
    list-style: none;
}

.becute-pagination__link {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 14px !important;
    border: 1px solid var(--becute-border) !important;
    background-color: var(--becute-white) !important;
    color: var(--becute-text) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    text-decoration: none !important;
}

.becute-pagination__link:hover {
    color: var(--becute-primary) !important;
    background-color: var(--becute-primary-soft) !important;
    border-color: rgba(0, 70, 80, 0.18) !important;
    transform: translateY(-2px);
    box-shadow: var(--becute-shadow);
}

.becute-pagination__link--active {
    background: linear-gradient(135deg, #004650, #00606d) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(0, 70, 80, 0.28);
}

.becute-pagination__link--active:hover {
    color: #fff !important;
    transform: translateY(-1px);
}

.becute-pagination__link--arrow {
    padding: 0;
}

.becute-pagination__link--arrow svg {
    width: 18px;
    height: 18px;
}

.becute-pagination__dots {
    background-color: #fff !important;
    color: var(--becute-muted) !important;
    border-style: dashed !important;
    cursor: default;
}

.becute-pagination .disabled .becute-pagination__link {
    color: #d2bcc3 !important;
    background-color: #fcf8f9 !important;
    border-color: #f2e4e8 !important;
    opacity: 1;
    pointer-events: none;
    box-shadow: none !important;
    transform: none !important;
}

@media (max-width: 576px) {
    .becute-pagination {
        gap: 0.35rem !important;
        padding: 0.6rem 0.75rem;
        border-radius: 16px;
    }

    .becute-pagination__link {
        min-width: 38px;
        height: 38px;
        border-radius: 12px !important;
        font-size: 0.88rem;
        padding: 0 10px;
    }

    .becute-pagination__link--arrow svg {
        width: 16px;
        height: 16px;
    }
}
