/* Cookie-consent banner — matches the site palette (amber on cream). */
.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: #fff7ee;
    border: 1px solid #e8ddd6;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(60, 20, 0, .10);
    font-family: 'Inter', -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: #b45309;
}

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

.kk-consent-accept,
.kk-consent-decline {
    padding: 10px 22px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    border: 2px solid #b45309;
}

.kk-consent-accept {
    background: #b45309;
    color: #fff;
    box-shadow: 0 8px 24px rgba(180, 83, 9, .28);
}

.kk-consent-accept:hover {
    background: #92400e;
}

.kk-consent-decline {
    background: transparent;
    color: #b45309;
}

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

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

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