/* استایل ویجت المنتور */
.psl-badge-elementor {
    display: inline-block;
    background-color: #ff0000;
    color: #ffffff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    z-index: 10;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* انیمیشن‌ها */
@keyframes pslFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pslPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pslShake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

@keyframes pslBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* کلاس‌های انیمیشن */
.psl-animation-fade-in {
    animation: pslFadeIn 0.5s ease-in;
}

.psl-animation-pulse {
    animation: pslPulse 2s infinite;
}

.psl-animation-pulse:hover {
    animation-play-state: paused;
}

.psl-animation-shake {
    animation: pslShake 0.5s;
}

.psl-animation-bounce {
    animation: pslBounce 1s infinite;
}

/* حالت هاور */
.psl-badge-elementor:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* پشتیبانی از راست‌چین */
.rtl .psl-badge-elementor {
    right: auto;
    left: 10px;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .psl-badge-elementor {
        font-size: 10px;
        padding: 3px 6px;
    }
}

/* حالت ویرایش المنتور */
.elementor-editor-active .psl-badge-elementor {
    outline: 2px dashed #ff0000;
    outline-offset: 2px;
}