/* ============================================
   ILGIN KUYUMCULUK - Ürün Kartı Hover Efekti
   İkinci fotoğraf smooth geçiş + minimal sepet
   ============================================ */

/* Kart container */
.woocommerce ul.products li.product .post_featured {
    position: relative !important;
    overflow: hidden !important;
}

/* İkinci fotoğraf - başlangıçta gizli */
.post_featured .ilgin-hover-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 0;
    transition: opacity 0.45s ease !important;
    z-index: 1;
}

/* Hover'da ikinci fotoğraf belir */
.post_featured:hover .ilgin-hover-img {
    opacity: 1;
}

/* Büyük mask overlay'i kaldır */
.post_featured .mask {
    display: none !important;
}

/* Mevcut icons container'ı sağ alta küçük konumlandır */
.woocommerce ul.products li.product .post_featured .icons {
    position: absolute !important;
    bottom: 12px !important;
    right: 12px !important;
    top: auto !important;
    left: auto !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    z-index: 2;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease !important;
}

/* Hover'da sepet ikonu belir */
.post_featured:hover .icons {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Sepet ve link butonlarını küçük yuvarlak yap */
.woocommerce ul.products li.product .post_featured .icons a {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: #fff !important;
    color: #1E1E1E !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15) !important;
    font-size: 14px !important;
    border: none !important;
    padding: 0 !important;
    transition: background 0.2s ease, color 0.2s ease !important;
}

.woocommerce ul.products li.product .post_featured .icons a:hover {
    background: #C9788A !important;
    color: #fff !important;
}

/* Görüntüle linkini gizle — sadece sepet ikonu kalsın */
.post_featured .icons .shop_link {
    display: none !important;
}
