﻿
/* Ürün Resim Carousel Stilleri */
.product-images-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
    display: block;
}

    .product-image-item.active {
        opacity: 1;
        position: relative;
        z-index: 1;
    }

.product-image-carousel:hover .product-image-item.active {
    transform: scale(1.09);
}

/* Butonların navigator'un üzerinde görünmesi için */
.card-product-wrapper .list-product-btn {
    z-index: 30 !important;
}

.card-product-wrapper .size-list {
    z-index: 30 !important;
}

.product-image-nav {
    position: relative;
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: stretch;
    cursor: pointer;
    width: 100%;
    margin-top: 12px;
    z-index: 25;
    pointer-events: none;
}

.nav-dot {
    flex: 1;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 1px;
    pointer-events: auto;
    position: relative;
}

    .nav-dot.active {
        background-color: rgba(0, 0, 0, 0.6);
        height: 3px;
    }

    .nav-dot:hover {
        background-color: rgba(0, 0, 0, 0.4);
    }

/* Cart hover'da beden listesini gizle */
.card-product:hover .size-list {
    display: none !important;
}

/* Cart altındaki renk listesini gizle */
.card-product .list-color-product {
    display: none !important;
}


