  #gw-consent-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2147483647;
    /* same stacking level the library uses */
    background: #fff;
    color: #2c2f31;
    border-top: 1px solid #e4eaed;
    box-shadow: 0 -2px 14px rgba(0, 0, 0, .12);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 44px;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}

#gw-consent-bar[hidden] {
    display: none;
}

.gw-cc__inner {
    position: relative;
    margin: 0 auto;
    padding: 16px 20px 24px;
}

.gw-cc__desc {
    margin: 0 0 20px;
    padding-right: 32px;
    font-size: 18px;
}


/* ---- top-right close (save & close) --------------------------------------- */

.gw-cc__close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 4px;
    background: #592d82;
    color: #FFF;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
    padding-bottom: 4px;
}

.gw-cc__close:hover,
.gw-cc__close:focus-visible {
    background: #9344d4;
    color: #FFF;
}

.gw-cc__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    margin-bottom: 20px;
}

.gw-cc__btns {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}


/* ---- pill toggle ---------------------------------------------------------- */

.gw-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}


/* visually hidden but still focusable/checkable */

.gw-toggle input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    margin: 0;
}

.gw-toggle__pill {
    position: relative;
    flex: 0 0 auto;
    width: 50px;
    height: 23px;
    border-radius: 4px;
    background: #667481;
    box-shadow: 0 0 0 1px #667481;
    transition: background-color .25s ease, box-shadow .25s ease;
}

.gw-toggle__pill::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 23px;
    height: 23px;
    border-radius: 4px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 58%;
    box-shadow: 0 1px 2px rgba(24, 32, 3, .36);
    transition: transform .25s ease, background-image .15s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667481' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19.5 4.5 4.5 19.5M4.5 4.5 19.5 19.5'/%3E%3C/svg%3E");
}

.gw-toggle input:checked+.gw-toggle__pill {
    background: #592d82;
    box-shadow: 0 0 0 1px #592d82;
}

.gw-toggle input:checked+.gw-toggle__pill::after {
    transform: translateX(27px);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23592d82' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.572 13.406 8.281 18.115 20.428 5.885'/%3E%3C/svg%3E");
}

.gw-toggle input:focus-visible+.gw-toggle__pill {
    outline: 2px solid #9344d4;
    outline-offset: 2px;
}

.gw-toggle__label {
    font-size: 14px;
    font-weight: 500;
}


/* ---- buttons -------------------------------------------------------------- */

.gw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .6em 1.5em;
    border: 1px solid #592d82;
    border-radius: 4px;
    background: #592d82;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease;
}

.gw-btn:hover,
.gw-btn:focus {
    background: #9344d4;
    border-color: #9344d4;
    color: #fff;
    text-decoration: none;
}


/* ---- mobile --------------------------------------------------------------- */

@media screen and (max-width: 640px) {
    .gw-cc__grid {
        grid-template-columns: 1fr;
        gap: .55rem;
    }
    .gw-cc__btns {
        flex-direction: column-reverse;
        /* Save & Continue on top */
    }
    .gw-btn {
        width: 100%;
    }
}