.product-card {
    position: relative;
}



.store-badge {
    .store-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: red;
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
    z-index: 10;
}
}

.store-badge {
    position: absolute;
    top: 15px;
    right: -10px;
    background: linear-gradient(45deg, #ff512f, #dd2476);
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: pulse 1.8s infinite;
    
}

.move-down {
    top: 60px;
}

.move-left{
    
    left: 60px;
}

/* Subtle pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(221,36,118,0.6);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(221,36,118,0);
    }
    100% {
        transform: scale(1);
    }
}