/* WP Easy Scarcity - Frontend Styles */

/* Default inline mode - no extra styling */
.wpes-scarcity-message.wpes-inline {
    display: inline;
    margin: 0;
    padding: 0;
}

/* Styled box mode - only when enabled */
.wpes-scarcity-message.wpes-styled-box {
    display: block;
    margin: 20px 0;
    padding: 15px 20px;
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.6;
}

/* Number element styling */
.wpes-scarcity-message .wpes-number {
    display: inline-block;
    transition: transform 0.3s ease;
    text-decoration: inherit; /* Inherit underline/strikethrough from parent */
}

/* Pulse Animation */
@keyframes wpes-pulse-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.wpes-scarcity-message .wpes-number.wpes-pulse {
    animation: wpes-pulse-animation 0.3s ease;
}

/* Responsive for styled box only */
@media (max-width: 768px) {
    .wpes-scarcity-message.wpes-styled-box {
        padding: 12px 15px;
        font-size: 14px;
    }
}
