/* ===================================================================
 * GDPR Cookie Notice
 * ------------------------------------------------------------------- */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 2rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
    font-size: 1.5rem;
    line-height: 1.6;
}

.cookie-link {
    color: var(--color-primary);
    text-decoration: underline;
    margin-left: 0.5rem;
}

.cookie-link:hover {
    color: var(--color-secondary);
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-buttons .btn {
    margin: 0;
    white-space: nowrap;
}

.btn--small {
    padding: 0.8rem 1.5rem;
    font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}