/* cookie-consent.css */

.cookie-consent-bar {
    position:         fixed;
    bottom:           0;
    left:             0;
    right:            0;
    z-index:          10050;
    background:       var(--color-surface, #1a1d27);
    color:            var(--color-text, #e2e8f0);
    border-top:       1px solid var(--color-border, #2e3347);
    padding:          0.85rem 1.5rem;
    box-shadow:       0 -4px 20px rgba(0,0,0,.2);
    animation:        slideUpCookie 0.4s ease;
}

@keyframes slideUpCookie {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.cookie-text {
    font-size: 0.875rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--color-primary, #60a5fa);
    text-decoration: underline;
}

@media (max-width: 576px) {
    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
    .cookie-text {
        font-size: 0.8rem;
    }
}
