/* Cookie-consent banner — "Hartmann layout, Katzbach charter": white card,
   espresso ink, espresso primary action pill, hairline border and a soft
   espresso-tinted shadow. */
.kk-consent {
    position: fixed;
    inset-inline: 16px;
    bottom: 16px;
    z-index: 2147483000;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-items: center;
    justify-content: space-between;
    max-width: 720px;
    margin-inline: auto;
    padding: 18px 22px;
    background: #FFFFFF;
    border: 1px solid rgba(28, 16, 9, .12);
    border-radius: 18px;
    box-shadow: 0 2px 4px rgba(28, 16, 9, .06), 0 16px 40px -12px rgba(28, 16, 9, .18);
    font-family: 'Hanken Grotesk', -apple-system, sans-serif;
    color: #1C1009;
}

.kk-consent-text {
    margin: 0;
    font-size: .9rem;
    line-height: 1.5;
    flex: 1 1 320px;
}

.kk-consent-text a {
    color: #82613C;
}

.kk-consent-actions {
    display: flex;
    gap: 10px;
}

.kk-consent-accept,
.kk-consent-decline {
    min-height: 44px;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .9rem;
    cursor: pointer;
    border: 1.5px solid #1C1009;
    box-shadow: 0 1px 2px rgba(28, 16, 9, .08);
    font-family: 'Archivo', 'Hanken Grotesk', -apple-system, sans-serif;
}

.kk-consent-accept {
    background: #1C1009;
    border-color: #1C1009;
    color: #fff;
}

.kk-consent-accept:hover {
    background: #2B1D12;
}

.kk-consent-decline {
    background: #fff;
    color: #1C1009;
}

@media (max-width: 480px) {
    .kk-consent {
        inset-inline: 8px;
        bottom: 8px;
    }

    .kk-consent-actions {
        width: 100%;
    }

    .kk-consent-accept,
    .kk-consent-decline {
        flex: 1;
    }
}
