
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--line, rgba(255,255,255,.12));
    padding: 20px 24px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-consent .wrap {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent .text {
    color: var(--text, #f5f2ec);
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
    min-width: 200px;
}

.cookie-consent .text a {
    color: var(--accent, #d9906b);
    text-decoration: underline;
}

.cookie-consent .buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-consent .btn-consent {
    padding: 10px 28px;
    border: none;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s ease;
    font-family: inherit;
    background: var(--accent, #d9906b);
    color: #0a0a0a;
}

.cookie-consent .btn-consent:hover {
    opacity: .8;
}

.cookie-consent .btn-decline {
    padding: 10px 28px;
    border: 1px solid var(--line, rgba(255,255,255,.12));
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity .2s ease;
    font-family: inherit;
    background: transparent;
    color: var(--muted, rgba(245,242,236,.62));
}

.cookie-consent .btn-decline:hover {
    opacity: .8;
    color: var(--text, #f5f2ec);
}

@media (max-width: 600px) {
    .cookie-consent .wrap {
        flex-direction: column;
        text-align: center;
    }
    .cookie-consent .buttons {
        justify-content: center;
    }
    .cookie-consent {
        padding: 16px 16px;
    }
    .cookie-consent .text {
        font-size: 13px;
    }
}