﻿.modern-discount-banner {
    background: linear-gradient(135deg, #f83600 0%, #f9d423 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0 0 12px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center; /* center text on small screens */
}

    .modern-discount-banner img {
        width: 40px;
        height: 40px;
        margin-right: 0.75rem;
        animation: bounce 2s infinite;
        flex-shrink: 0;
    }

.modern-discount-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

    .modern-discount-text strong {
        color: #ffeb3b;
    }

.modern-discount-banner a {
    margin-left: 1rem;
    color: #fff176;
    text-decoration: underline;
    font-weight: bold;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .modern-discount-banner {
        flex-direction: column;
        padding: 0.75rem 1rem;
        border-radius: 0 0 8px 8px;
    }

        .modern-discount-banner img {
            margin: 0 0 0.5rem 0;
        }

    .modern-discount-text {
        font-size: 1rem;
    }

    .modern-discount-banner a {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}
