/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark, #152a45);
    color: white;
    padding: 1.25rem 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.cookie-notice-text {
    flex: 1;
    min-width: 300px;
}

.cookie-notice-text p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-notice-text a {
    color: var(--secondary-color, #2d9cdb);
    text-decoration: underline;
}

.cookie-notice-text a:hover {
    color: white;
}

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

.cookie-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--accent-color, #27ae60);
    color: white;
}

.cookie-btn-accept:hover {
    background-color: #229954;
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

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

    .cookie-notice-buttons {
        width: 100%;
        justify-content: center;
    }
}
