/* Banner Component Styles */
.banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001; /* Header'dan daha yüksek z-index */
    background: #A4D1B1;
    display: flex;
    padding: 16px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    transition: transform 0.3s ease; /* Yumuşak animasyon */
    width: 100%;
    box-sizing: border-box;
}

.banner-text {
    color: var(--Tom-Thumb-950, #112217);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .banner {
        padding: 16px 24px;
        gap: 8px;
    }
    
    .banner-text {
        font-size: 14px;
        line-height: 1.21;
    }
}

@media (max-width: 480px) {
    .banner {
        padding: 0.75rem 0;
    }
    
    .banner-title {
        font-size: 1.1rem;
    }
    
    .banner-description {
        font-size: 0.9rem;
    }
    
    .banner-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}