/* Cookie Notice Banner */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-notice-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.cookie-notice-text p {
    color: #fff;
    margin: 0;
    margin-bottom: 8px;
}

.cookie-notice-text a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-notice-text a:hover {
    opacity: 0.8;
}

.cookie-notice-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-notice-btn {
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-notice-btn:hover {
    background: #fff;
    color: #000;
}

.cookie-notice-btn.primary {
    background: #fff;
    color: #000;
}

.cookie-notice-btn.primary:hover {
    background: transparent;
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-notice-container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-notice-text {
        font-size: 13px;
    }

    .cookie-notice-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-notice-btn {
        width: 100%;
    }
}
