.discount-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    right: auto;
    left: 20px;
    background-color: #eecb30;
    color: #333;
    width: 300px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1000;

    @media(min-width: 649px) {
        right: 20px;
        left: auto;
    }

    @media(min-width: 720px) {
        width: 480px;
    }

    h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .cta-link {
        color: #007bff;
        text-decoration: none;
        font-weight: bold;
        display: inline-block;
        margin-top: 10px;
    }

    .cta-link:hover {
        text-decoration: underline;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 18px;
        color: #333;
        cursor: pointer;
    }

    .close-btn:hover {
        color: #000;
    }
}

