/* Container ayarı */
.woocommerce-product-gallery {
    /* JS ile de ekliyoruz ama CSS ile garantiye alalım */
    position: relative !important; 
}

/* Overlay Kutusu */
.wgc-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1 !important; 
    
    background-color: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    
    /* Tema stillerinden etkilenmemesi için reset */
    line-height: normal;
    text-align: left;
}

.wgc-overlay.visible {
    opacity: 1;
    transform: translateY(0);
    display: block !important; /* JS ile gizlendiyse göster */
}

/* Başlık */
#wgc-title {
    margin: 0 0 5px 0 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111 !important;
    background: none !important;
    padding: 0 !important;
    border: none !important;
}

/* Alt Yazı */
#wgc-caption {
    margin: 0 0 8px 0 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #6d28d9 !important; /* Purple */
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Açıklama */
#wgc-description {
    font-size: 13px !important;
    color: #555 !important;
    line-height: 1.5 !important;
    border-top: 1px solid #eee !important;
    padding-top: 8px !important;
    margin-top: 5px !important;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .wgc-overlay {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 10px;
    }
    #wgc-description {
        display: none !important; /* Mobilde uzun yazıyı gizle */
    }
}