/**
 * Profile (/my-profile) — hub layout aligned with Orders / Wallet / About.
 */

body.profile-page {
    background:
        rgba(52, 211, 153, 0.09),
        #f8fafc;
}

body.mh-page.profile-page main.profile-page-hub .mh-basket-hub__toolbar-text--gfy {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    text-align: center;
}

body.mh-page.profile-page .mh-basket-hub__title {
    font-size: clamp(1.05rem, 4vw, 1.22rem);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

body.mh-page.profile-page .cprof-flash.bh-flash {
    margin: 0 0 var(--kf-space-3, 12px);
    padding: 10px 12px;
    border-radius: var(--kf-radius-md, 12px);
    font-family: var(--kf-app-font-family, inherit);
    font-size: var(--kf-app-fs-body);
    font-weight: 600;
    line-height: 1.45;
}

body.mh-page.profile-page .cprof-flash.bh-flash--err {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid rgba(248, 113, 113, 0.4);
}

body.mh-page.profile-page .cprof-flash.bh-flash--ok {
    background: #ecfdf5;
    color: #14532d;
    border: 1px solid rgba(34, 197, 94, 0.35);
}

.cprof-stage__content {
    padding: var(--kf-space-1, 4px) 0 0;
}

.cprof-form {
    display: flex;
    flex-direction: column;
    gap: var(--kf-space-3, 12px);
    margin: 0;
    padding: var(--kf-space-3, 12px);
    border-radius: var(--kf-radius-md, 12px);
    border: 1px solid rgba(15, 23, 42, 0.07);
    background: #fff;
    box-shadow: var(--kf-elev-surface, 0 1px 3px rgba(15, 23, 42, 0.06));
}

.cprof-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.cprof-field--divider {
    padding-top: var(--kf-space-2, 8px);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.cprof-section-note {
    margin: 0;
    font-family: var(--kf-app-font-family, inherit);
    font-size: var(--kf-app-fs-small);
    font-weight: 600;
    line-height: 1.45;
    color: var(--mh-muted, #64748b);
}

/* Profile subtabs */
.cprof-tabs {
    display: flex;
    gap: 4px;
    margin: 0 0 4px;
    padding: 5px;
    background: #f1f5f4;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.cprof-tabs::-webkit-scrollbar {
    display: none;
}

.cprof-tab {
    flex: 1 1 0;
    min-width: max-content;
    padding: 9px 14px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #64748b;
    font-family: var(--kf-app-font-family, inherit);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.1;
    white-space: nowrap;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition:
        background 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease;
}

.cprof-tab:hover {
    color: #15803d;
}

.cprof-tab--active {
    background: #ffffff;
    color: #15803d;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.14);
}

.cprof-tab:focus-visible {
    outline: 2px solid #15803d;
    outline-offset: 2px;
}

.cprof-panel {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-width: 0;
    animation: cprof-panel-fade 0.18s ease;
}

.cprof-panel[hidden] {
    display: none;
}

@keyframes cprof-panel-fade {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cprof-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    min-width: 0;
}

@media (max-width: 359px) {
    .cprof-row {
        grid-template-columns: 1fr;
    }
}

.cprof-label {
    font-family: var(--kf-app-font-family, inherit);
    font-size: var(--kf-type-caption-size, 0.75rem);
    font-weight: var(--kf-type-label-weight, 600);
    line-height: var(--kf-type-caption-lh, 1.35);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--mh-muted, #64748b);
}

.cprof-input {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: var(--kf-radius-md, 12px);
    background: #fff;
    font-family: var(--kf-app-font-family, inherit);
    font-size: var(--kf-app-fs-body);
    font-weight: 500;
    line-height: 1.4;
    color: var(--bh-ink, #0f172a);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.cprof-input--textarea {
    min-height: 5.5rem;
    resize: vertical;
}

.cprof-input--select {
    padding-right: 2.25rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M2.5 4.5 6 8l3.5-3.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.cprof-input--readonly {
    background: #f8fafc;
    color: var(--mh-muted, #64748b);
    cursor: default;
}

.cprof-input:focus {
    border-color: rgba(34, 197, 94, 0.45);
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.18);
}

.cprof-input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.cprof-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    padding-top: 0.35rem;
}

.cprof-submit:active:not(:disabled) {
    transform: scale(0.98);
}

.cprof-submit:disabled,
.cprof-submit.cprof-submit--inactive {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cprof-submit:active:not(:disabled) {
        transform: none;
    }
}

/* ── Profile unified chrome (/my-profile) — flat with header; divider = kph delivery strip ── */
body.profile-page-unified.profile-page {
    --kf-page-bg: #ffffff;
    --kf-earth-green: #ffffff;
    background: #ffffff;
}

body.profile-page-unified.bh-page.with-login-bottom-nav header.kph {
    margin-bottom: 0;
    box-shadow: none;
}

body.profile-page-unified.bh-page.with-login-bottom-nav .kph-hero {
    border-bottom: none;
    box-shadow: none;
}

body.profile-page-unified.mh-page main#cph-main.cph-main.profile-main[data-kf-nav='profile'] {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-block: 0;
    min-width: 0;
    background: #ffffff;
}

body.profile-page-unified.mh-page main#cph-main.profile-main[data-kf-nav='profile'] > .mh-basket-hub.profile-page {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: #ffffff;
    overflow: visible;
}

body.profile-page-unified .profile-page__toolbar {
    padding: 14px 14px 10px;
    background: transparent;
}

body.profile-page-unified .profile-page__body {
    padding: 0 14px calc(20px + env(safe-area-inset-bottom, 0px));
    background: transparent;
}

body.profile-page-unified .mh-basket-hub__chrome,
body.profile-page-unified .mh-basket-hub__divider,
body.profile-page-unified .mh-basket-hub__grab {
    display: none !important;
}

body.profile-page-unified .profile-flow {
    min-width: 0;
}

body.profile-page-unified .cprof-form {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.profile-page-unified .cprof-flash.bh-flash {
    margin-bottom: 14px;
}

body.profile-page-unified.bh-page:not(.bh-page--embed) main#cph-main.cph-main > section.mh-basket-hub.profile-page {
    padding: 0;
}

/* Profile contact layout — /my-profile (matches /subscription-contact) */
body.profile-page-unified.profile-contact-page,
body.profile-contact-page {
    --kf-page-bg: #ffffff;
    --kf-earth-green: #ffffff;
    background: #ffffff;
}

body.profile-contact-page.bh-page.with-login-bottom-nav header.kph {
    margin-bottom: 0;
    box-shadow: none;
}

body.profile-contact-page.bh-page.with-login-bottom-nav .kph-hero {
    border-bottom: none;
    box-shadow: none;
}

body.profile-contact-page main#cph-main.profile-contact-main.cph-main {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-block: 0;
    min-width: 0;
    background: #ffffff;
}

body.profile-contact-page main#cph-main.profile-contact-main > .profile-contact-page-section {
    padding: 0;
    margin: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    width: 100%;
    border: none;
    box-shadow: none;
}

body.profile-contact-page .profile-contact-body {
    width: 100%;
    max-width: 26rem;
    margin: 0 auto;
    padding: 18px 14px calc(20px + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
    text-align: center;
}

body.profile-contact-page .profile-contact-body .sub-start-panel__eyebrow,
body.profile-contact-page .profile-contact-body .sub-start-panel__title,
body.profile-contact-page .profile-contact-body .sub-start-panel__title-line,
body.profile-contact-page .profile-contact-body .sub-start-panel__lede,
body.profile-contact-page .profile-contact-body .profile-contact-panel__hint {
    text-align: center;
}

body.profile-contact-page .profile-contact-body .sub-start-panel__eyebrow {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
}

body.profile-contact-page .profile-contact-flash.bh-flash {
    margin: 1rem auto 0;
    max-width: 22rem;
    text-align: left;
}

body.profile-contact-page .profile-contact-form.cprof-form {
    margin: 1.25rem auto 0;
    padding: 0;
    max-width: 22rem;
    width: 100%;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: left;
}

body.profile-contact-page .profile-contact-form .cprof-field {
    text-align: left;
}

body.profile-contact-page .profile-contact-form .cprof-label {
    color: var(--mh-muted, #64748b);
}

body.profile-contact-page .profile-contact-form .cprof-input {
    border-radius: var(--kf-radius-md, 12px);
    border-color: rgba(15, 23, 42, 0.1);
    background: #ffffff;
}

body.profile-contact-page .profile-contact-form .cprof-input:focus {
    border-color: rgba(34, 197, 94, 0.45);
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.18);
    outline: none;
}

body.profile-contact-page .profile-contact-form .cprof-input--readonly {
    background: #f8fafc;
    color: #475569;
}

body.profile-contact-page .profile-contact-panel__hint {
    margin: 0;
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--sub-muted, #64748b);
    text-align: center;
}

body.profile-contact-page .profile-contact-form .sub-contact-panel__cta-wrap {
    margin: 1.35rem auto 0;
    max-width: 22rem;
    width: 100%;
    padding-top: 0;
}

body.profile-contact-page .profile-contact-form .mh-greet__harvest-cta-wrap {
    margin-left: auto;
    margin-right: auto;
}

body.profile-contact-page .profile-contact-form .sub-contact-panel__cta-wrap .cprof-submit {
    width: auto;
    max-width: min(100%, var(--kf-portal-cta-max-w, 20rem));
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
}

/* ── Profile (/my-profile) — lively one-screen (Home / Subscription contact parity) ── */
body.profile-page-lively.profile-contact-page {
    --kf-page-bg: var(--kf-nature-page, #f7faf8);
    --kf-earth-green: var(--kf-nature-surface, #f8fcfa);
    background: var(--kf-nature-page-bg, #f8fcfa);
    background-size: 100% 100%;
}

body.profile-page-lively.bh-page.with-login-bottom-nav header.kph {
    margin-bottom: 0;
    box-shadow: none;
}

body.profile-page-lively.bh-page.with-login-bottom-nav .kph-hero {
    border-bottom: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.92);
}

body.profile-page-lively main#cph-main.profile-lively-main.cph-main {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-block: 0;
    padding-inline: 0;
    min-width: 0;
    background: transparent;
}

body.profile-page-lively.bh-page:not(.bh-page--embed) main#cph-main.cph-main[data-kf-nav='profile'] > section.cprof-hub {
    padding: 0;
    margin: 0;
    max-width: none;
    width: 100%;
    border: none;
    box-shadow: none;
    background: transparent;
    overflow: visible;
    flex: 1;
    display: flex;
    flex-direction: column;
}

body.profile-page-lively .cprof-hub,
body.profile-page-lively .cprof-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    box-shadow: none;
    background: transparent;
    overflow: visible;
}

@media (max-width: 767.98px) {
    body.profile-page-lively .cprof-hub {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
}

body.profile-page-lively .cprof-flow > * {
    background: transparent;
    border: none;
    box-shadow: none;
}

body.profile-page-lively .cprof-page-hero--strip {
    position: relative;
    overflow: hidden;
    margin: 0 0 0.35rem;
    padding: 0.4rem 0.75rem !important;
    text-align: center;
    border: none;
    border-radius: 0;
    background: #fef3c7 !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    min-height: 0 !important;
}

body.profile-page-lively .cprof-page-hero--strip .cprof-page-hero__title {
    position: relative;
    z-index: 1;
    margin: 0 !important;
    text-align: center;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.3 !important;
    color: #92400e !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #92400e !important;
}

body.profile-page-lively .cprof-page-hero__blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

body.profile-page-lively .cprof-page-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.8;
}

body.profile-page-lively .cprof-page-hero__blob--a {
    width: 130px;
    height: 130px;
    top: -32px;
    left: -24px;
    background: rgba(74, 222, 128, 0.58);
}

body.profile-page-lively .cprof-page-hero__blob--b {
    width: 110px;
    height: 110px;
    top: -8px;
    right: -18px;
    background: rgba(251, 191, 36, 0.55);
}

body.profile-page-lively .cprof-page-hero__blob--c {
    width: 90px;
    height: 90px;
    bottom: -22px;
    left: 40%;
    background: rgba(45, 212, 191, 0.5);
}

@media (prefers-reduced-motion: no-preference) {
    body.profile-page-lively .cprof-page-hero__blob--a {
        animation: cprof-page-blob-drift 7s ease-in-out infinite;
    }

    body.profile-page-lively .cprof-page-hero__blob--b {
        animation: cprof-page-blob-drift 8s ease-in-out infinite 0.8s;
    }

    body.profile-page-lively .cprof-page-hero__blob--c {
        animation: cprof-page-blob-drift 6.5s ease-in-out infinite 1.4s;
    }
}

@keyframes cprof-page-blob-drift {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(6px, -8px) scale(1.06);
    }
}

body.profile-page-lively .cprof-page-hero__top {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

body.profile-page-lively .cprof-page-hero__eyebrow {
    margin: 0;
    padding: 5px 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #047857;
    background: #ecfdf5;
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

body.profile-page-lively .cprof-page-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 6px 12px 6px 10px;
    border-radius: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #7c2d12;
    background: #fff7ed;
    border: 1px solid rgba(251, 146, 60, 0.45);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.18);
}

body.profile-page-lively .cprof-page-hero__chip-icon {
    font-size: 1rem;
    line-height: 1;
}

body.profile-page-lively .cprof-page-hero__title {
    position: relative;
    z-index: 1;
    margin: 0;
    text-align: center;
    background: #065f46;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.profile-page-lively .cprof-page-hero__title-accent {
    display: inline;
    background: #059669;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    body.profile-page-lively .cprof-page-hero__title,
    body.profile-page-lively .cprof-page-hero__title-accent {
        color: #065f46;
        background: none;
        -webkit-text-fill-color: unset;
    }
}

body.profile-page-lively .cprof-page-hero__sub {
    position: relative;
    z-index: 1;
    margin: 10px auto 0;
    max-width: 38ch;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.45;
    color: rgba(15, 23, 42, 0.74);
    text-align: center;
}

body.profile-page-lively .cprof-flash.bh-flash {
    width: 100%;
    max-width: 26rem;
    margin: 0 auto 10px;
    padding: 0 14px;
    box-sizing: border-box;
    border-radius: 0;
    text-align: left;
}

body.profile-page-lively .cprof-form {
    width: 100%;
    max-width: 26rem;
    margin: 0 auto;
    padding: 4px 14px calc(14px + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
    text-align: left;
    gap: 0.45rem;
}

body.profile-page-lively .cprof-form .cprof-field {
    margin-top: 0;
    text-align: left;
}

body.profile-page-lively .cprof-form .cprof-field:first-of-type {
    margin-top: 0;
}

body.profile-page-lively .cprof-panel {
    gap: 0.55rem;
}

body.profile-page-lively .cprof-panel > .cprof-field:first-child,
body.profile-page-lively .cprof-panel > .cprof-pw-note:first-child {
    margin-top: 0;
}

body.profile-page-lively .cprof-form .cprof-label {
    color: rgba(15, 23, 42, 0.72);
    font-weight: 700;
    font-size: 0.78rem;
}

body.profile-page-lively .cprof-form .cprof-input {
    border-radius: 0;
    border-color: rgba(16, 185, 129, 0.25);
    background: rgba(255, 255, 255, 0.92);
}

body.profile-page-lively .cprof-form .cprof-input:focus {
    border-color: rgba(13, 148, 136, 0.55);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
    outline: none;
}

body.profile-page-lively .cprof-form .cprof-input--readonly {
    background: rgba(248, 250, 252, 0.95);
    color: #475569;
}

body.profile-page-lively .cprof-pw-note {
    margin: 0.35rem 0 0;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
    color: rgba(15, 23, 42, 0.62);
    text-align: center;
}

body.profile-page-lively .cprof-actions {
    margin-top: 0.55rem;
    width: 100%;
}

body.profile-page-lively .cprof-actions .mh-greet__harvest-cta-wrap {
    width: auto;
    max-width: min(100%, var(--kf-portal-cta-max-w, 20rem));
    margin-left: auto;
    margin-right: auto;
}

body.profile-page-lively .cprof-logout {
    margin: 0.15rem 0 0;
}

body.profile-page-lively .cprof-page-hero__eyebrow,
body.profile-page-lively .cprof-page-hero__chip,
body.profile-page-lively .cprof-flash,
body.profile-page-lively .cprof-form .cprof-input {
    border-radius: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
    body.profile-page-lively .cprof-page-hero__blob {
        animation: none !important;
    }
}

.cprof-logout {
    margin: 0.15rem 0 0;
    text-align: center;
}

.cprof-logout__link {
    display: inline;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    font-family: var(--kf-app-font-family, inherit);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.4;
    color: #64748b;
    text-decoration: underline;
    text-decoration-color: rgba(100, 116, 139, 0.45);
    text-underline-offset: 2px;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.cprof-logout__link:hover,
.cprof-logout__link:focus-visible {
    color: #475569;
    text-decoration-color: rgba(71, 85, 105, 0.75);
    outline: none;
}

.cprof-req {
    color: #b91c1c;
    font-weight: 700;
}

.cprof-field-hint {
    margin: 6px 0 0;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #64748b;
}

.cprof-field-hint--pin {
    margin: 0 0 0.45rem;
}

#cprof-panel-pin .kf-address-map__canvas {
    min-height: 260px;
    border-radius: 14px;
}

#cprof-panel-pin .kf-address-map__search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: stretch;
}

#cprof-panel-pin .kf-address-map__locate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 100%;
    min-height: 44px;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(22, 101, 52, 0.28);
    background: #ecfdf5;
    color: #14532d;
    font: inherit;
    font-weight: 700;
    border-radius: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

#cprof-panel-pin .kf-address-map__locate:hover {
    background: #dcfce7;
    border-color: rgba(22, 101, 52, 0.4);
}

#cprof-panel-pin .kf-address-map__locate:disabled {
    opacity: 0.7;
    cursor: wait;
}

.cprof-field--locate {
    margin-bottom: 4px;
}

.cprof-locate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(22, 101, 52, 0.28);
    background: #ecfdf5;
    color: #14532d;
    font: inherit;
    font-weight: 700;
    border-radius: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.cprof-locate-btn:hover {
    background: #dcfce7;
    border-color: rgba(22, 101, 52, 0.4);
}

.cprof-locate-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

body.profile-page-lively .visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Legacy white profile contact (if lively class omitted) */
body.profile-contact-page:not(.profile-page-lively) {
    --kf-page-bg: #ffffff;
    --kf-earth-green: #ffffff;
    background: #ffffff;
}
