/* Patlangaç görselinin stilini ayarlıyoruz */
.patlangaç-etiketi-loop {
    position: absolute;
	top: 10px;
	right: 10px;
	width: 80px;
	height: 80px;
	background-image: url(https://ageekmarketer.net/themes/ecommerce-shop/wp-content/uploads/2025/03/Orijinal-Urun-Logo.webp);
	background-size: cover;
	background-position: center;
	z-index: 10;
    animation: explodeAnimation 2s forwards; /* infinite; */ 
}

/* Animasyon efektini tanımlıyoruz */
@keyframes explodeAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}