/* Tesselo — banner cookie consent (on-brand) */
.tesselo-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    font-family: "Poppins", system-ui, sans-serif;
    background: var(--ts-cream, #FFF8F0);
    border-top: 3px solid var(--ts-coral, #E85F24);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, .14);
    color: var(--ts-navy, #1B2A4A);
}

.tesselo-consent__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tesselo-consent__text strong {
    display: block;
    font-family: "Lilita One", "Poppins", sans-serif;
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--ts-coral, #E85F24);
}

.tesselo-consent__text p {
    margin: 0;
    font-size: .92rem;
    line-height: 1.45;
}

.tesselo-consent__text a {
    color: var(--ts-teal, #1D9E75);
    font-weight: 600;
    text-decoration: underline;
}

.tesselo-consent__prefs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid rgba(27, 42, 74, .12);
    border-radius: 14px;
}

.tesselo-consent__row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .92rem;
    cursor: pointer;
}

.tesselo-consent__cb {
    width: 18px;
    height: 18px;
    accent-color: var(--ts-teal, #1D9E75);
}

.tesselo-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.tesselo-consent__btn {
    border: 0;
    border-radius: 14px;
    padding: 11px 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: transform .08s ease, filter .15s ease;
}

.tesselo-consent__btn:hover {
    filter: brightness(1.05);
}

.tesselo-consent__btn:active {
    transform: translateY(1px);
}

.tesselo-consent__btn--primary {
    background: var(--ts-coral, #E85F24);
    color: #fff;
}

.tesselo-consent__btn--save {
    background: var(--ts-teal, #1D9E75);
    color: #fff;
}

.tesselo-consent__btn--ghost {
    background: transparent;
    color: var(--ts-navy, #1B2A4A);
    border: 1.5px solid rgba(27, 42, 74, .25);
}

@media (min-width: 720px) {
    .tesselo-consent__inner {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
    .tesselo-consent__text {
        flex: 1 1 340px;
    }
    .tesselo-consent__prefs {
        flex: 1 1 100%;
        order: 3;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 18px;
    }
    .tesselo-consent__actions {
        flex: 0 0 auto;
    }
}
