/* Cookie Consent Bar */
.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: .75rem 1.5rem;
    background: #1a1a2e;
    color: #e0e0e0;
    font-size: .875rem;
    line-height: 1.4;
    transform: translateY(100%);
    transition: transform .35s ease;
}

.cookie-consent-bar.is-visible {
    transform: translateY(0);
}

.cookie-consent-bar p {
    margin: 0;
}

.cookie-consent-actions {
    display: flex;
    gap: .5rem;
    flex-shrink: 0;
}

.cookie-consent-actions button {
    padding: .4rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: .8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s;
}

.cookie-consent-actions button:hover {
    opacity: .85;
}

#cookie-accept {
    background: #4ecca3;
    color: #1a1a2e;
}

#cookie-decline {
    background: transparent;
    color: #e0e0e0;
    border: 1px solid #555;
}

/* Settings toggle (cookie icon) */
.cookie-settings-toggle {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    z-index: 9998;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
    border: 1px solid #333;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    opacity: .7;
    transition: opacity .2s;
}

.cookie-settings-toggle:hover {
    opacity: 1;
}

/* Dark mode support */
.dark-mode .cookie-consent-bar {
    background: #0d0d1a;
}

.dark-mode .cookie-settings-toggle {
    background: #0d0d1a;
    border-color: #444;
}

/* Responsive */
@media (max-width: 600px) {
    .cookie-consent-bar {
        flex-direction: column;
        gap: .5rem;
        text-align: center;
        padding: .75rem 1rem;
    }
}
