/*
Theme Name: MRMNDL Minimal Shop
Author: Senin Adın
Version: 1.0.0
Description: Vite ve Tailwind ile güçlendirilmiş minimal bir tema.
*/

/* Sayfalama (Pagination) Tasarımı */
.mrmndl-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.mrmndl-pagination .page-numbers {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #ffffff;
    color: #0e407f; /* Logo Mavisi */
    font-weight: 800;
    font-size: 14px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

/* Üzerine gelince (Hover) */
.mrmndl-pagination a.page-numbers:hover {
    background: #0e407f;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(14, 64, 127, 0.2);
}

/* Aktif Sayfa (Current) */
.mrmndl-pagination .page-numbers.current {
    background: #edba0b; /* Tercih ettiğin turuncu */
    color: #ffffff;
    border-color: #edba0b;
    box-shadow: 0 5px 15px rgba(237, 186, 11, 0.3);
}

/* Önceki/Sonraki Butonları */
.mrmndl-pagination .prev, .mrmndl-pagination .next {
    background: #ffffff;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .mrmndl-pagination .page-numbers {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
}