/* Cookie notice bar */

.cookie-notice {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: none;
    padding: 1rem;
    background: #1a1a1a;
    color: #fff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

.cookie-notice.active {
    display: block;
}

.cookie-notice-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-notice-text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #fff;
}

.cookie-notice-actions {
    display: flex;
    flex-shrink: 0;
    gap: 0.75rem;
}

.cookie-notice-button {
    padding: 0.5rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}

.cookie-notice-button-decline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.cookie-notice-button-accept {
    background: #fff;
    color: #1a1a1a;
}

@media (min-width: 768px) {
    .cookie-notice-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-notice-text {
        flex: 1;
        padding-right: 1.5rem;
    }
}