/* Promotion and CTA Styles */

/* Pricing Display */
.sp-pricing-display {
    text-align: center;
    margin: 20px 0;
}

/* Promotion Badge */
.sp-promotion-badge {
    display: inline-block;
    background: #dc3545;
    color: white;
    font-weight: 700;
    font-size: 0.9em;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Price Container */
.sp-price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 15px 0;
}

/* Original Price (crossed out) */
.sp-original-price {
    font-size: 1.3em;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

/* Current Price */
.sp-current-price {
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
}

/* Sale Price (with promotion) */
.sp-sale-price {
    color: #dc3545;
}

/* Countdown Timer */
.sp-countdown-timer {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.sp-timer-label {
    font-size: 0.9em;
    font-weight: 600;
    color: #856404;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sp-timer-display {
    font-size: 1.5em;
    font-weight: 700;
    color: #856404;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.sp-timer-expired {
    color: #721c24;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 4px;
    font-weight: 600;
}

/* Urgency Message */
.sp-urgency-message {
    background: #d1ecf1;
    color: #0c5460;
    padding: 10px 15px;
    border-radius: 6px;
    margin: 10px 0;
    font-weight: 600;
    font-size: 0.95em;
}

/* CTA Wrapper */
.sp-cta-wrapper {
    text-align: center;
    margin: 20px 0;
}

/* CTA Button */
.sp-cta-button {
    display: inline-block;
    background-color: #b60f0a;
    color: #FFFFFF;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    box-shadow: 0 4px 12px rgba(182, 15, 10, 0.3);
}

.sp-cta-button:hover,
.sp-cta-button:focus {
    background-color: #9d0d08;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(182, 15, 10, 0.4);
}

/* Guarantee Text */
.sp-guarantee-text {
    margin-top: 12px;
    color: #666;
    font-size: 0.9em;
}

.sp-guarantee-text small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sp-guarantee-text small:before {
    content: "✓";
    color: #28a745;
    font-weight: 700;
    font-size: 1.2em;
}

/* CTA Section */
.sp-cta-section {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.sp-cta-headline {
    font-size: 1.8em;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sp-current-price {
        font-size: 2em;
    }

    .sp-original-price {
        font-size: 1.1em;
    }

    .sp-timer-display {
        font-size: 1.2em;
    }

    .sp-cta-button {
        font-size: 1em;
        padding: 14px 30px;
    }

    .sp-price-container {
        flex-direction: column;
        gap: 8px;
    }
}

/* Animation for new CTAs */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sp-cta-section {
    animation: slideIn 0.5s ease-out;
}
