.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #ffffff;
    color: #333333;
    padding: 0.8rem;
    font-size: 0.9rem;
    z-index: 1000;
    transition: bottom 0.5s ease-in-out;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eaeaea;
}

.cookie-banner.visible {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-text {
    flex: 1;
}

.cookie-btn {
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    background: #00456f;
    color: white;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: #003556;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding: 0.5rem;
    }
    
    .cookie-text {
        font-size: 0.85rem;
    }
}
