﻿body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    color: #111827;
}

.brand-gradient {
    background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
}

.btn-amazon {
    background-color: #ffa41c;
    color: #131921;
    transition: background-color 0.2s;
}

.btn-amazon:hover {
    background-color: #f59100;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.pagination-section ul,
.pagination-section nav {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}
.pagination-section a,
.pagination-section span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
}
.pagination-section .active span,
.pagination-section a:hover {
    background-color: #2563eb;
    color: white;
    border-color: #2563eb;
}
.page-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb; /* gray-200 */
    border-radius: 12px; /* rounded-xl */
    color: #9ca3af; /* gray-400 */
    text-decoration: none;
    transition: all 0.2s ease;
    background-color: white;
}

    .page-link:hover {
        border-color: #2563eb; /* blue-600 */
        color: #2563eb; /* blue-600 */
        background-color: #eff6ff; /* blue-50 */
    }

.page-item.active .page-link {
    background-color: #2563eb; /* blue-600 */
    border-color: #2563eb;
    color: white !important;
    font-weight: 900;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

.page-link i.ion-chevron-left::before {
    content: "❮";
    font-family: Arial, sans-serif;
    font-style: normal;
    font-weight: bold;
}

.page-link i.ion-chevron-right::after {
    content: "❯";
    font-family: Arial, sans-serif;
    font-style: normal;
    font-weight: bold;
}