.floating-ad {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    padding: 12px 0 8px;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
    transition: transform 0.4s ease;
}

/* Arrow Button */
.ad-toggle {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    border: none;
    width: 40px;
    height: 24px;
    border-radius: 8px 8px 0 0;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
}

/* Ad responsive */
.floating-ad img {
    max-width: 100%;
    height: auto;
}

/* Hidden animation */
.floating-ad.hide {
    transform: translateY(100%);
}

/* MOBILE */
@media (max-width: 768px) {
    .floating-ad {
        padding: 6px 0;
    }

    .ad-close {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }
    
    
}
