@font-face {
    font-family: "DM Sans";
    src: url("https://iopgokphqerqsnqfkogz.supabase.co/storage/v1/object/public/lighty/fonts/DMSans-Regular.ttf")
        format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
#cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 380px;
    max-width: calc(100vw - 48px);
    background: #f7f5f0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    display: none;
    font-family: "DM Sans", sans-serif;
}

#cookie-banner.active {
    display: block;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cb-title {
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.cb-text {
    font-size: 14px;
    line-height: 1.5;
    color: #6b6760;
    margin-bottom: 20px;
}

.cb-links {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.cb-link {
    font-size: 13px;
    color: #6b6760;
    text-decoration: underline;
}

.cb-buttons {
    display: flex;
    gap: 10px;
}

.cb-btn {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-align: center;
}

.cb-allow {
    background: #1d1d1f;
    color: white;
}

.cb-allow:hover {
    background: #000;
    transform: translateY(-1px);
}

.cb-deny {
    background: rgba(0, 0, 0, 0.04);
    color: #1d1d1f;
}

.cb-deny:hover {
    background: rgba(0, 0, 0, 0.08);
}
