/* ─── Gloow Cookie Banner ───────────────────────────────────────────── */

#gloow-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: #03011F;
    border-top: 1px solid rgba(205, 203, 255, 0.15);
    padding: 18px 24px;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease, transform 0.35s ease;
    box-shadow: 0 -4px 32px rgba(0,0,0,0.35);
}

#gloow-cookie-banner.gcb-visible {
    display: flex;
}

.gcb-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}

.gcb-text {
    flex: 1;
    min-width: 200px;
}

.gcb-title {
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.gcb-msg {
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.gcb-link {
    color: #cdcbff;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.15s;
}

.gcb-link:hover {
    opacity: 0.8;
}

.gcb-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.gcb-btn {
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.15s;
    white-space: nowrap;
    line-height: 1;
}

.gcb-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.gcb-btn:active {
    transform: translateY(0);
}

.gcb-btn-accept {
    background: #cdcbff;
    color: #03011F;
}

.gcb-btn-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.gcb-btn-decline:hover {
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

/* Mobile */
@media (max-width: 640px) {
    #gloow-cookie-banner {
        padding: 16px;
    }

    .gcb-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .gcb-actions {
        width: 100%;
    }

    .gcb-btn {
        flex: 1;
        text-align: center;
        padding: 11px 16px;
    }
}
