/* Custom Amazon Store Ads - Sunutri Seeds */

.sticky-ad-banner {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #000000;
    padding: 5px 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-ad-banner:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.sticky-ad-banner:active {
    transform: scale(0.98);
}

.ad-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Slide animation */
.slide-in {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
