/* Cookie Notice - Non-blocking informational bar (conversion-friendly) */

/* Bump floating CTA up when cookie bar is visible to prevent overlap */
body.cookie-notice-visible .floating-cta {
    bottom: 70px;
}
@media (max-width: 768px) {
    body.cookie-notice-visible .floating-cta {
        bottom: 60px;
    }
}

.cookie-notice-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 12px 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    animation: cookieSlideUp 0.3s ease;
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-notice-bar p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.cookie-notice-bar a {
    color: #0078d4;
    text-decoration: underline;
}

.cookie-notice-bar a:hover {
    color: #106ebe;
}

.cookie-notice-dismiss {
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 20px;
    line-height: 1;
}

.cookie-notice-dismiss:hover {
    color: #333;
}

/* Dark mode */
.dark-mode .cookie-notice-bar {
    background: #1e1e1e;
    border-top-color: #333;
}

.dark-mode .cookie-notice-bar p {
    color: #c8c6c4;
}

.dark-mode .cookie-notice-bar a {
    color: #4da6ff;
}

.dark-mode .cookie-notice-dismiss {
    color: #999;
}

.dark-mode .cookie-notice-dismiss:hover {
    color: #fff;
}
