/* Ürün Görselleri için Sabit Boyutlar */
.product-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 Aspect Ratio (Kare) */
    overflow: hidden;
    background: #f3f4f6;
}

.product-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Alternatif: 4:3 Aspect Ratio için */
.product-image-container-43 {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    background: #f3f4f6;
}

.product-image-container-43 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Watermark Override - Daha İyi Görünüm */
.watermarked-image {
    position: relative;
    overflow: hidden;
    background: #1e293b;
}

.watermark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    z-index: 1;
}
