.site-announcement {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 0;
    text-align: center;
    z-index: 9998; /* زیر هدر اصلی */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 40px; /* ارتفاع کم */
}

.announcement-slider {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.announcement-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.announcement-slide.active {
    opacity: 1;
}

.announcement-text {
    font-size: 14px;
    font-weight: 600;
}

.announcement-highlight {
    background: #ffd700;
    color: #000;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

/* انیمیشن برای اسلاید اول - پالس روی تخفیف */
.slide-1.active .announcement-highlight {
    animation: textPulse 2s infinite;
}

/* انیمیشن برای اسلاید دوم - چشمک روی پردازش عکس */
.slide-2.active .announcement-highlight {
    animation: textBlink 1.5s infinite;
}


.announcement-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.announcement-btn:hover {
    background: #218838;
}

.close-announcement {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 0 10px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
/* انیمیشن‌های متن */
@keyframes announcementPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.01); }
    100% { transform: scale(1); }
}


@keyframes textBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
/* برای موبایل - z-index بالاتر */
@media (max-width: 768px) {
    .site-announcement {
        z-index: 100000 !important; /* بالاترین priority */
        height: 45px; /* کمی بیشتر برای موبایل */
        padding: 8px 0;
    }
    
    .announcement-text {
        font-size: 13px; /* کوچک‌تر برای موبایل */
    }
    
    .announcement-btn {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .close-announcement {
        right: 5px;
        font-size: 18px;
    }
}

/* برای صفحاتی که هدر fixed دارن */
.admin-bar .site-announcement {
    top: 32px;
}

/* برای موبایل + admin bar */
@media (max-width: 768px) {
    .admin-bar .site-announcement {
        top: 46px; /* 32px + ارتفاع اضافه برای موبایل */
    }
}
/* برای صفحاتی که هدر fixed دارن */
.admin-bar .site-announcement {
    top: 32px;
}

/* تنظیم margin برای هدر اصلی */
.site-header {
    margin-top: 40px !important; /* همون ارتفاع بنر */
}
/* انیمیشن برای همه متن اسلاید اول */
.slide-1.active .announcement-text {
    animation: textPulse 2s infinite;
}

/* انیمیشن برای همه متن اسلاید دوم */
.slide-2.active .announcement-text {
    animation: textShine 2s infinite;
}

/* انیمیشن برای دکمه اسلاید اول */
.slide-1.active .announcement-btn {
    animation: bounceIn 2s infinite;
}

/* انیمیشن برای دکمه اسلاید دوم */
.slide-2.active .announcement-btn {
    animation: pulse 2s infinite;
}

/* انیمیشن‌های اصلی برای متن */
@keyframes textPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes textShine {
    0%, 100% { 
        text-shadow: 0 0 5px rgba(255,255,255,0.5);
    }
    50% { 
        text-shadow: 0 0 15px rgba(255,255,255,0.8), 0 0 20px rgba(255,255,255,0.6);
    }
}

@keyframes bounceIn {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes pulse {
    0%, 100% { 
        background: #28a745;
        transform: scale(1);
    }
    50% { 
        background: #20c997;
        transform: scale(1.05);
    }
}