/* Ghazaei Pro — Banner Styles */
.ghazaei-banner {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 99999; display: flex; align-items: center;
    justify-content: center; padding: 10px 20px;
    font-family: 'IRANSans', Tahoma, Arial, sans-serif;
    direction: rtl; text-align: right;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    font-size: 14px; line-height: 1.5;
    transform: translateY(0); transition: transform .3s ease;
}
.ghazaei-banner.ghazaei-banner-hidden { transform: translateY(-100%); }
.ghazaei-banner-inner { display: flex; align-items: center; gap: 10px; flex: 1; justify-content: center; flex-wrap: wrap; }
.ghazaei-banner-emoji { font-size: 18px; }
.ghazaei-banner-msg { font-weight: 500; }
.ghazaei-banner-btn {
    display: inline-block; padding: 6px 16px; border-radius: 20px;
    text-decoration: none; font-size: 13px; font-weight: 600;
    background: rgba(0,0,0,.15); color: inherit;
    border: 1px solid rgba(0,0,0,.2); transition: background .2s;
    white-space: nowrap;
}
.ghazaei-banner-btn:hover { background: rgba(0,0,0,.25); color: inherit; }
.ghazaei-banner-close {
    background: none; border: none; cursor: pointer;
    font-size: 20px; line-height: 1; padding: 0 4px;
    color: inherit; opacity: .7; margin-right: 8px;
    flex-shrink: 0;
}
.ghazaei-banner-close:hover { opacity: 1; }

/* Push body down when banner is visible */
body.ghazaei-has-banner { margin-top: 46px !important; transition: margin-top .3s; }
body.ghazaei-has-banner.banner-closed { margin-top: 0 !important; }

/* Inline banner (shortcode) */
.ghazaei-inline-banner {
    display: flex; align-items: center; gap: 12px;
    flex-wrap: wrap; font-family: 'IRANSans', Tahoma, Arial, sans-serif;
}

/* Floating banner (bottom-right) */
.ghazaei-banner-floating {
    position: fixed; bottom: 24px; left: 24px;
    width: 320px; border-radius: 12px; padding: 16px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
    animation: ghazaei-slide-in .4s ease;
}
@keyframes ghazaei-slide-in {
    from { opacity:0; transform: translateY(40px); }
    to   { opacity:1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .ghazaei-banner { font-size: 12px; padding: 8px 12px; }
    .ghazaei-banner-btn { font-size: 11px; padding: 4px 10px; }
    body.ghazaei-has-banner { margin-top: 56px !important; }
}
