/* ============================================================
   KAMPIO — Cookie consent bar (Airbnb-style bottom bar)
   ============================================================ */

.kampio-cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1300;
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
    background: #F8F7F2;
    border-top: 1px solid rgba(6, 43, 53, 0.1);
    box-shadow: 0 -8px 28px rgba(6, 43, 53, 0.08);
    color: #062B35;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.kampio-cookie-consent[hidden] {
    display: none !important;
}

.kampio-cookie-consent__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.kampio-cookie-consent__content {
    flex: 1 1 auto;
    min-width: 0;
}

.kampio-cookie-consent__title {
    margin: 0 0 4px;
    font-size: 0.92rem;
    line-height: 1.3;
    font-weight: 800;
    color: #062B35;
}

.kampio-cookie-consent__text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    font-weight: 550;
    color: rgba(6, 43, 53, 0.72);
}

.kampio-cookie-consent__text a {
    color: #062B35;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.kampio-cookie-consent__text a:hover,
.kampio-cookie-consent__text a:focus-visible {
    color: rgba(6, 43, 53, 0.85);
    outline: none;
}

.kampio-cookie-consent__actions {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 10px;
}

.kampio-cookie-consent__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 0.88rem;
    line-height: 1.2;
    font-weight: 750;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.kampio-cookie-consent__btn:focus-visible {
    outline: 2px solid rgba(6, 43, 53, 0.35);
    outline-offset: 2px;
}

.kampio-cookie-consent__btn--primary {
    background: linear-gradient(180deg, #FDC65E 0%, #FDBB3A 54%, #F2AC22 100%);
    border-color: rgba(6, 43, 53, 0.08);
    color: #062B35;
    box-shadow: 0 8px 18px rgba(253, 187, 58, 0.22);
}

.kampio-cookie-consent__btn--primary:hover {
    background: #F2AC22;
}

.kampio-cookie-consent__btn--secondary {
    background: transparent;
    border-color: rgba(6, 43, 53, 0.18);
    color: #062B35;
}

.kampio-cookie-consent__btn--secondary:hover {
    background: rgba(6, 43, 53, 0.04);
    border-color: rgba(6, 43, 53, 0.28);
}

.site-footer-v2__cookie-prefs {
    display: flex;
    width: fit-content;
    margin-top: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(6, 43, 53, 0.72);
    font-family: inherit;
    font-size: 0.94rem;
    line-height: 1.25;
    font-weight: 650;
    text-decoration: none;
    cursor: pointer;
}

.site-footer-v2__cookie-prefs:hover,
.site-footer-v2__cookie-prefs:focus-visible {
    color: #062B35;
    text-decoration: underline;
    text-underline-offset: 4px;
    outline: none;
}

@media (max-width: 767px) {
    body.kampio-cookie-consent-open .kampio-cookie-consent {
        bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }

    .kampio-cookie-consent__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .kampio-cookie-consent__actions {
        flex-direction: column-reverse;
        width: 100%;
    }

    .kampio-cookie-consent__btn {
        width: 100%;
        min-height: 44px;
    }
}
