.product-img {
    height: 200px;
    object-fit: contain;
    padding: 1rem;
}

.card {
    transition: transform 0.2s;
}

    .card:hover {
        transform: translateY(-5px);
    }

.variant-groups {
    font-size: 0.875rem;
}

.variant-group {
    margin-bottom: 0.5rem;
}

.variant-badges {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-left: 0.25rem;
}

    .variant-badges .badge {
        font-size: 0.75rem;
        font-weight: 500;
        padding: 0.35em 0.65em;
    }
/* Boyut ve aralık */
.pagination {
    display: flex;
    gap: 8px; /* kutuların arası */
    --pg-font-size: 15px; /* kolay ayar için değişkenler */
    --pg-pad-y: 10px;
    --pg-pad-x: 14px;
    --pg-radius: 10px;
}

    /* Genel linkler */
    .pagination .page-link {
        font-size: var(--pg-font-size);
        color: #282828;
        background: #fff;
        border: 1px solid #dfe3e7;
        padding: var(--pg-pad-y) var(--pg-pad-x);
        border-radius: var(--pg-radius);
        line-height: 1;
        min-width: 40px; /* daha büyük hedef alan */
        text-align: center;
        transition: background .15s, color .15s, box-shadow .15s, border-color .15s;
        box-shadow: 0 1px 0 rgba(0,0,0,.03);
    }

        .pagination .page-link:hover {
            background: #eef5ff;
            border-color: #c9d8f0;
            color: #282828;
        }

    .pagination .page-item.active .page-link {
        background: #f8dfb8;
        border-color: #f8dfb8;
        color: #282828;
        box-shadow: 0 2px 8px rgba(10,102,204,.25);
    }

    /* Devre dışı */
    .pagination .page-item.disabled .page-link {
        color: #9aa3ad;
        background: #f5f7fa;
        border-color: #e5e9ef;
        cursor: not-allowed;
    }

    /* İlk/son (geri/ileri) butonlarını yuvarlak ikonlu yap */
    .pagination .page-item.prev .page-link,
    .pagination .page-item.next .page-link {
        width: 40px;
        min-width: 40px;
        padding: 0;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

        /* SVG ikon rengi */
        .pagination .page-item.prev .page-link svg,
        .pagination .page-item.next .page-link svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

    /* Odak (klavye erişilebilirlik) */
    .pagination .page-link:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(10,102,204,.2);
    }


@media (max-width: 768px) {
    .product-img {
        height: 150px;
    }
}


.custom-quantity-cart {
    display: flex;
    width: 100%;
    height: 36px; /* daha kısa kutu */
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.quantity-input {
    flex: 1;
    border: none;
    font-size: 15px;
    outline: none;
    padding: 0 8px;
    height: 100%; /* tam yükseklik */
}

.quantity-controls {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #ccc;
    background: #fff;
    /* Başlangıçta gizli */
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

/* Input hover'landığında göster */
.custom-quantity-cart:hover .quantity-controls {
    opacity: 1;
    visibility: visible;
}

.quantity-controls .arrow {
    padding: 0;
    font-size: 11px;
    border: none;
    background: #fff;
    width: 24px;
    height: 18px; /* daha ince butonlar */
    cursor: pointer;
}

/*.quickview__cart--btn {
    background-color: #222;
    color: #fff;
    border: none;
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #ccc;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;*/
    /* Sol taraf yuvarlak olmasın */
    /*border-top-left-radius: 0;
    border-bottom-left-radius: 0;*/
    /* Sağ taraf hala yuvarlak kalsın istiyorsan bu satırlar opsiyonel */
    /*border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}


    .quickview__cart--btn i {
        font-size: 16px;*/ /* ikonun boyutu */
        /*line-height: 1;*/ /* dikey taşmayı engeller */
    /*}*/
