/* Default hide for Desktop */
#appBanner {
    display: none;
}

@media screen and (max-width: 1500px) {
    #appBanner {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        z-index: 1000000;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid #eeeeee;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    .banner-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 12px;
        height: 64px; /* Standard App Banner Height */
        position: relative;
    }

    /* Close Button - Temu Style (Top Left) */
    .banner-close {
        position: absolute;
        top: 23px;
        left: 4px;
        background: #f5f5f5;
        border: none;
        color: #999;
        cursor: pointer;
        padding: 2px;
        line-height: 0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner-left {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
        margin-left: 15px; /* Space for the close button */
    }

    .logo-container {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    .banner-logo {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        object-fit: contain;
        background-color: #f4a51c; /* Sub Dukan Theme */
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .banner-content {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .banner-title {
        font-size: 13px;
        font-weight: 700;
        color: #000000;
        margin: 0;
        line-height: 1.2;
    }

    .banner-subtitle {
        font-size: 10px;
        color: #666666;
        margin: 0;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* GET Button - Blue color like Temu screenshot */
    .banner-button {
        background: #f4a51c; 
        color: white !important;
        text-decoration: none;
        padding: 6px 16px;
        border-radius: 20px;
        font-weight: 700;
        font-size: 13px;
        flex-shrink: 0;
        text-align: center;
        margin-left: 8px;
    }

    #appBanner.hidden {
        display: none !important;
    }
}