/* Product Banner Styles */
#productBanner {
    background: linear-gradient(135deg, #091f3f 0%, #0a65d9 100%) !important;
    animation: bannerPulse 3s ease-in-out infinite;
    justify-content: center !important;
}

#productBanner > div {
    justify-content: center !important;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#productBanner span {
    color: white !important;
    font-weight: 500;
}

#productBanner a {
    color: white !important;
    background-color: #ff9900 !important;
}

@keyframes bannerPulse {
    0%, 100% {
        background: linear-gradient(135deg, #091f3f 0%, #0a2549 100%);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    }
    50% {
        background: linear-gradient(135deg, #0a2549 0%, #0d2f5a 100%);
        box-shadow: 0 -2px 20px rgba(255, 153, 0, 0.4), 0 -4px 30px rgba(255, 153, 0, 0.2);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #productBanner {
        padding: 0.8rem 1rem !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        max-width: 100%;
        box-sizing: border-box;
        justify-content: center !important;
    }
    
    #productBanner > div {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    #productBanner span {
        font-size: 0.9rem;
        text-align: center;
    }
    
    #productBanner a {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    #productBanner button {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        z-index: 10002 !important;
        min-width: 44px;
        min-height: 44px;
        pointer-events: auto !important;
        cursor: pointer !important;
    }

    /* Add padding to body to prevent content overlap */
    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    #productBanner {
        padding: 0.7rem 0.8rem !important;
    }
    
    #productBanner span {
        font-size: 0.85rem;
        text-align: center;
    }
    
    #productBanner a {
        padding: 0.6rem 1.1rem;
        font-size: 0.85rem;
        min-height: 44px;
    }
    
    #productBanner button {
        top: 0.4rem;
        right: 0.4rem;
        min-width: 44px;
        min-height: 44px;
        font-size: 1.3rem;
        z-index: 10002 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
    }

    body {
        padding-bottom: 70px;
    }
}

