/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-consent__inner {
    max-width: 900px;
    margin: 0 auto 20px;
    background: rgba(30, 20, 60, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}

.cookie-consent__text {
    flex: 1;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-family-base);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-consent__text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-consent__text a:hover {
    color: #fff;
}

.cookie-consent__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent__btn {
    font-family: var(--font-family-base);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
}

.cookie-consent__btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cookie-consent__btn--accept {
    background: var(--color-primary);
    color: #fff;
}

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

.cookie-consent__btn--decline:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile */
@media (max-width: 576px) {
    .cookie-consent__inner {
        flex-direction: column;
        margin: 0 10px 10px;
        padding: 16px 20px;
        gap: 14px;
    }

    .cookie-consent__text {
        font-size: 13px;
        text-align: center;
    }

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