/* Cookie Info Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f172a;
    color: #e2e8f0;
    padding: 1rem 2rem;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    transition: opacity 0.3s;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    min-width: 240px;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-close {
    padding: 0.6rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s;
    font-family: inherit;
}

.cookie-close:hover {
    background-color: var(--primary-hover);
}

@media (max-width: 600px) {
    .cookie-banner {
        padding: 1rem 1.25rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-close {
        width: 100%;
    }
}
