/* ==========================================================================
   VIVREFR SMART SEARCH
   Version: 1.1.8 (Mobile: prominent compact search pill)
   ========================================================================== */

/* ACCESSIBILITY: REDUCED MOTION SUPPORT */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

body {
    margin: 0;
    background: var(--vf-bg);
    font-family: var(--vf-body);
    color: var(--vf-ink);
    overflow-x: hidden;
}

/* NATIVE BROWSER DECORATION STRIP */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
}

/* INLINE SEARCH CAPSULE */
.vf-search-inline-container {
    flex: 1;
    max-width: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    transform: translateX(8px);
    transition: max-width .28s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity .24s ease, 
                transform .24s ease,
                visibility .24s ease,
                margin .28s ease;
}

.vf-search-trigger-box {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid var(--vf-line);
    border-radius: 999px;
    padding: 0 24px;
    height: 48px; 
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
}

.vf-search-icon {
    font-size: 18px;
    flex-shrink: 0;
    user-select: none;
}

.vf-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--vf-body);
    font-size: 16px; 
    color: var(--vf-ink);
    width: 100%;
}

.vf-search-input::placeholder { color: var(--vf-muted); }

.vf-search-close {
    width: 32px; height: 32px; border: none; border-radius: 50%;
    background: transparent; color: var(--vf-muted); cursor: pointer;
    font-size: 16px; display: flex; align-items: center; justify-content: center;
    transition: background-color .2s ease, color .2s ease; flex-shrink: 0;
}

/* VIEWPORT OVERLAY DROPDOWN LAYER */
.vf-search-dropdown-layer {
    position: absolute; top: 100%; left: 0; width: 100%; background: #ffffff;
    border-radius: 0 0 28px 28px; border: 1px solid var(--vf-line);
    box-shadow: 0 24px 50px rgba(0,0,0,.09); max-height: 75vh; overflow-y: auto;
    z-index: 99999 !important; border-top: none;
    opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-10px);
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}

.vf-search-dropdown-inner { padding: 34px; max-width: var(--vf-max); margin: 0 auto; }

/* INTERFACES, CHIPS, & TYPOGRAPHY */
.vf-search-dropdown-inner h2 { margin: 0 0 18px; font-family: var(--vf-display); font-size: 22px; font-weight: 500; color: var(--vf-ink); }
.vf-search-dropdown-inner h3 { margin: 0; font-family: var(--vf-body); font-size: 18px; font-weight: 600; color: var(--vf-ink); }
.vf-search-dropdown-inner p { margin: 8px 0 0; color: var(--vf-muted); line-height: 1.6; }
.vf-search-dropdown-inner small { display: block; margin-top: 14px; color: var(--vf-muted); }

.vf-popular-searches, .vf-category-section { margin-bottom: 36px; }
.vf-search-results { margin-top: 24px; }

.vf-chip-group { display: flex; flex-wrap: wrap; gap: 12px; }
.vf-chip { 
    display: inline-flex; align-items: center; justify-content: center; 
    padding: 10px 18px; border: 1px solid var(--vf-line); border-radius: 999px; 
    background: var(--vf-surface-soft); color: var(--vf-ink); font-family: var(--vf-body); 
    font-size: 14px; font-weight: 600; cursor: pointer; 
    transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease; 
}

.vf-category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vf-category-card { 
    display: block; text-decoration: none; color: inherit;
    background: var(--vf-surface); border: 1px solid var(--vf-line); border-radius: var(--vf-r-lg); 
    padding: 24px; cursor: pointer; box-shadow: var(--vf-shadow); 
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; 
}

.vf-card-icon { width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; border-radius: var(--vf-r-md); background: rgba(28,50,129,.06); font-size: 24px; }

.vf-search-results { display: flex; flex-direction: column; gap: 16px; }
.vf-result-card {
    display: flex; align-items: flex-start; gap: 18px; padding: 22px;
    background: var(--vf-surface); border: 1px solid var(--vf-line); border-radius: var(--vf-r-lg);
    box-shadow: var(--vf-shadow); cursor: pointer; position: relative; overflow: hidden;
    text-decoration: none; color: inherit;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.vf-result-card:focus-visible { outline: 3px solid var(--vf-navy); outline-offset: 2px; }
.vf-result-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--vf-navy); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }

/* Keyboard / hover selection state (replaces inline styles from JS) */
.vf-result-card.is-selected {
    border-color: var(--vf-navy);
    box-shadow: 0 0 0 3px rgba(28,50,129,.12);
}

.vf-result-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: rgba(28,50,129,.06); border-radius: var(--vf-r-md); font-size: 24px; }
.vf-result-content { flex: 1; min-width: 0; }
.vf-result-content h3 { margin: 0 0 4px; font-size: 18px; }
.vf-result-subtitle { display: block; margin: 0 0 10px; font-size: 13px; color: var(--vf-muted); font-weight: 500; }
.vf-result-content p { margin: 12px 0 0; font-size: 14px; line-height: 1.6; color: var(--vf-muted); }
.vf-badge { display: inline-flex; align-items: center; justify-content: center; padding: 5px 12px; border-radius: 999px; background: rgba(28,50,129,.08); color: var(--vf-navy); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.vf-result-arrow { display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--vf-muted); transition: color .22s ease, transform .22s ease; }

.vf-no-results { display: none; text-align: center; padding: 50px 20px; }
.vf-no-results h2 { margin-bottom: 12px; }
.vf-no-results p { max-width: 420px; margin: 0 auto 24px; }
.vf-clear-search { 
    display: inline-flex; align-items: center; justify-content: center; min-height: 46px; 
    padding: 0 24px; border: none; border-radius: 999px; background: var(--vf-navy); color: #fff; 
    font-weight: 700; cursor: pointer; transition: background-color .22s ease, transform .22s ease; 
}

mark { background:#FFF3A3; color:inherit; padding:0 2px; border-radius:4px; font-weight:700; }
.vf-search-meta { display:flex; justify-content:flex-end; margin-bottom:18px; }
.vf-result-count { font-size:13px; font-weight:600; color:var(--vf-muted); }

/* GLOBAL HEADER SHELL */
.vf-nav__link--flat { justify-content: flex-start !important; }
.vf-nav__link--last { border-bottom: none !important; }
.vf-header-wrapper {
    font-family: var(--vf-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--vf-ink);
    position: relative;
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    width: 100%;
}
.vf-header { background: var(--vf-brand-beige); position: relative; overflow: visible; }
.vf-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 100px; padding: 16px 0; position: relative; }
.vf-logo { display: inline-flex; align-items: center; flex-shrink: 0; position: relative; z-index: 101; }
.vf-logo img { max-height: 70px; width: auto; object-fit: contain; transition: max-height 0.3s ease; }

.vf-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; max-width: 1200px; transition: max-width .28s cubic-bezier(0.4, 0, 0.2, 1), opacity .2s ease, visibility .2s ease, padding .2s ease; }
.vf-nav__item { position: relative; }
.vf-nav__link { display: flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: var(--vf-r-sm); font-size: 16px; font-weight: 500; color: var(--vf-ink); background: transparent; border: none; font-family: inherit; text-decoration: none; transition: background-color .18s ease, color .18s ease; cursor: pointer; white-space: nowrap; }
.vf-nav__link svg { width: 14px; height: 14px; opacity: .6; transition: transform .2s ease, opacity .2s ease; }

/* HOVER BRIDGE FIX: Invisible ::before to catch the mouse across the 10px gap */
.vf-dropdown { display: none; position: absolute; top: 100%; margin-top: 10px; left: 50%; transform: translateX(-50%); min-width: 220px; background: var(--vf-surface); border: 1px solid var(--vf-line); border-radius: var(--vf-r-md); box-shadow: var(--vf-shadow-hover); padding: 8px; z-index: 200; }
.vf-dropdown::before { content: ""; position: absolute; top: -15px; left: 0; width: 100%; height: 15px; background: transparent; }
.vf-nav__item:hover .vf-dropdown { display: block; }

.vf-dropdown a { display: block; padding: 10px 14px; border-radius: var(--vf-r-sm); font-size: 14px; font-weight: 500; color: var(--vf-muted); transition: background-color .15s ease, color .15s ease; }
.vf-dropdown--cities { min-width: 380px; padding: 12px; }
.vf-dropdown__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.vf-dropdown__divider { height: 1px; background: var(--vf-line); margin: 8px 6px; }
.vf-dropdown__all { display: block; padding: 10px 14px; border-radius: var(--vf-r-sm); font-size: 14px; font-weight: 500 !important; color: var(--vf-navy) !important; }

.vf-mobile-actions { display: none; }
.vf-header__actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; flex-shrink: 0; position: relative; z-index: 101; }

.vf-search-launcher {
    display: flex; align-items: center; gap: 12px; min-width: 220px; max-width: 300px; 
    height: 48px; padding: 0 18px; border: 1px solid var(--vf-line); border-radius: 999px; 
    background: rgba(255,255,255,.55); cursor: pointer; overflow: hidden; white-space: nowrap;
    transition: max-width .28s cubic-bezier(0.4, 0, 0.2, 1), min-width .28s ease, opacity .24s ease, visibility .24s ease, padding .28s ease, border-width .28s ease;
}

.vf-mobile-toggle { display: none; background: transparent; border: none; padding: 8px; cursor: pointer; color: var(--vf-ink); transition: opacity .2s ease, visibility .2s ease; }
.vf-mobile-toggle svg { width: 28px; height: 28px; }

/* Hamburger ↔ X icon swap */
.vf-mobile-toggle .vf-icon-close { display: none; }
.vf-mobile-toggle.is-active .vf-icon-menu { display: none; }
.vf-mobile-toggle.is-active .vf-icon-close { display: block; }

/* GLOBAL SEARCH STATE HIDING UTILS */
.vf-header-wrapper.vf-header--search .vf-search-launcher,
.vf-header-wrapper.vf-tablet-search .vf-search-launcher,
.vf-header-wrapper.vf-mobile-search .vf-search-launcher {
    min-width: 0; max-width: 0; opacity: 0; visibility: hidden; pointer-events: none; padding: 0; margin: 0; border-width: 0;
}

/* POINTER ISOLATION */
@media (hover: hover) {
    .vf-search-close:hover { background: var(--vf-surface-soft); color: var(--vf-red-ui); }
    .vf-chip:hover { background: var(--vf-navy); color: #ffffff; border-color: var(--vf-navy); transform: translateY(-2px); box-shadow: var(--vf-shadow-hover); }
    .vf-category-card:hover { transform: translateY(-4px); box-shadow: var(--vf-shadow-hover); border-color: rgba(28,50,129,.18); }
    .vf-result-card:hover { transform: translateY(-3px); border-color: rgba(28,50,129,.18); box-shadow: var(--vf-shadow-hover); }
    .vf-result-card:hover::before { transform: scaleX(1); }
    .vf-result-card:hover .vf-result-arrow { color: var(--vf-navy); transform: translateX(6px); }
    .vf-nav__link:hover { background: rgba(255,255,255,0.4); color: var(--vf-navy); }
    .vf-nav__item:hover .vf-nav__link svg { transform: rotate(180deg); opacity: 1; }
    .vf-dropdown a:hover { background: var(--vf-surface-soft); color: var(--vf-navy); }
    .vf-clear-search:hover { background-color: var(--vf-navy-dark); transform: translateY(-2px); }
}


/* ==========================================================
   BREAKPOINT SHELLS & ADAPTIVE STATES
========================================================== */

/* ----------------------------------------------------
   DESKTOP FROZEN STATE (1100px+)
---------------------------------------------------- */
@media (min-width:1100px){
    .vf-header-wrapper.vf-header--search .vf-nav { max-width: 0; opacity: 0; visibility: hidden; pointer-events: none; overflow: hidden; margin: 0; padding: 0; }
    .vf-header-wrapper.vf-header--search .vf-search-inline-container { max-width: 720px; opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(0); margin-right: 32px; }
    .vf-header-wrapper.vf-header--search .vf-search-dropdown-layer { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
}

/* ----------------------------------------------------
   MOBILE/TABLET NAV OVERRIDES (Under 1099px)
---------------------------------------------------- */
@media (max-width:1099px){
    .vf-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
    .vf-nav__link { width: 100%; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--vf-line); border-radius: 0; }
    
    .vf-dropdown {
        display: none !important; position: static; transform: none; 
        box-shadow: none; border: none; padding: 8px 0 16px 16px; 
        width: 100%; background: transparent; margin-top: 0;
    }

    /* FIX: Single Column list on Mobile/Tablet to prevent text overflow & increase touch ease */
    .vf-dropdown__grid { grid-template-columns: 1fr; gap: 0; }
    .vf-dropdown a { display: block; width: 100%; box-sizing: border-box; }

    /* Accordion Touch State Additions */
    .vf-nav__item.is-expanded .vf-dropdown { display: block !important; }
    .vf-nav__item.is-expanded .vf-nav__link { color: var(--vf-navy); border-bottom-color: transparent; }
    .vf-nav__item.is-expanded .vf-nav__link svg { transform: rotate(180deg); opacity: 1; }
}

/* ----------------------------------------------------
   TABLET ADAPTIVE STATE (769px – 1099px)
---------------------------------------------------- */
@media (min-width:769px) and (max-width:1099px){
    .vf-header__inner { min-height: 80px; }
    .vf-logo img { max-height: 55px; }
    .vf-mobile-toggle { display: flex; }
    .vf-desktop-cta { display: none !important; }
    
    .vf-nav {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--vf-surface); flex-direction: column; align-items: flex-start;
        padding: 20px 20px 40px; box-shadow: var(--vf-shadow-hover);
        border: 1px solid var(--vf-line); border-top: none;
        border-radius: 0 0 24px 24px;
        opacity: 0; visibility: hidden; transform: translateY(-10px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease; z-index: 99;
    }

    .vf-search-trigger-box { height: 56px; } 
    .vf-search-close { width: 44px; height: 44px; font-size: 18px; }
    .vf-result-card { padding: 26px; } 
    .vf-chip { padding: 12px 22px; }

    .vf-category-grid { grid-template-columns: repeat(2, 1fr); }
    .vf-search-dropdown-inner { padding: 24px; }
    
    .vf-header-wrapper.vf-tablet-search .vf-mobile-toggle { opacity: 0; visibility: hidden; pointer-events: none; }
    .vf-header-wrapper.vf-tablet-search .vf-search-inline-container { flex: 1; max-width: none; opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(0); margin-right: 0; }
    .vf-header-wrapper.vf-tablet-search .vf-search-dropdown-layer { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
}

/* ----------------------------------------------------
   MOBILE FULLSCREEN STATE (768px and below)
---------------------------------------------------- */
@media (max-width:768px){
    .vf-header__inner { gap: 12px; min-height: 65px; padding: 12px 0; }
    .vf-logo img { max-height: 40px; }
    .vf-desktop-cta { display: none !important; }
    .vf-mobile-toggle { display: flex; }
    .vf-mobile-toggle svg { width: 24px; height: 24px; }
    
    .vf-nav {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--vf-surface); flex-direction: column; align-items: flex-start;
        padding: 20px 20px 40px; box-shadow: var(--vf-shadow-hover);
        border: 1px solid var(--vf-line); border-top: none;
        border-radius: 0 0 24px 24px;
        opacity: 0; visibility: hidden; transform: translateY(-10px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease; z-index: 99;
    }
    .vf-category-grid { grid-template-columns: 1fr; gap: 16px; }

    .vf-search-close { width: 48px; height: 48px; font-size: 18px; }
    .vf-result-card { padding: 20px; }
    .vf-chip-group { gap: 8px; }
    .vf-chip { padding: 8px 14px; font-size: 13px; min-height: 36px; }

    /* Header row: logo · flexible search pill · hamburger */
    .vf-header__inner { gap: 10px; }
    .vf-logo img { max-height: 36px; }
    .vf-header__actions { gap: 8px; flex: 1; min-width: 0; justify-content: flex-end; }

    /* Prominent but compact search pill — flex-grows to fill the row */
    .vf-search-launcher {
        flex: 1 1 auto;
        min-width: 0; max-width: none; width: auto;
        height: 40px; padding: 0 14px; gap: 8px;
        border-radius: 999px;
        font-size: 14px;
        overflow: hidden;
    }
    .vf-search-launcher > * {
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .vf-search-launcher svg { width: 18px; height: 18px; flex-shrink: 0; }
    /* Hide any desktop-only trailing hint (⌘K badge, shortcut, etc.) */
    .vf-search-launcher .vf-search-launcher-hint,
    .vf-search-launcher kbd { display: none; }

    .vf-mobile-toggle { flex-shrink: 0; padding: 6px; }
    .vf-result-icon { width: 46px; height: 46px; font-size: 22px; }

    /* FIXED LAYOUT RECONSTRUCTION FOR MOBILE TAKEOVER (merged) */
    .vf-search-inline-container {
        position: fixed; top: 0; left: 0; width: 100%; max-width: 100%;
        padding: calc(env(safe-area-inset-top, 0px) + 12px) 16px 16px;
        background: #ffffff; border-bottom: 1px solid var(--vf-line);
        z-index: 100001; transform: translateY(-10px);
        transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    }

    .vf-search-trigger-box { height: 52px; background: var(--vf-surface-soft); border: none; padding: 0 20px; }

    .vf-search-dropdown-layer {
        position: fixed; top: 0; left: 0; width: 100%; 
        height: 100dvh; min-height: 100dvh; 
        border-radius: 0; border: none; box-shadow: none;
        padding-top: calc(env(safe-area-inset-top, 0px) + 85px); 
        padding-bottom: env(safe-area-inset-bottom, 24px);
        z-index: 100000; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
    }
    
    .vf-search-dropdown-inner { padding: 20px 16px; }

    .vf-header-wrapper.vf-mobile-search .vf-search-inline-container { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); margin: 0; }
    .vf-header-wrapper.vf-mobile-search .vf-search-dropdown-layer { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
}

/* ==========================================================
   STATE SEPARATIONS
========================================================== */
.vf-header-wrapper.vf-tablet-search{ overflow:visible; }
.vf-header-wrapper.vf-mobile-search{ overflow:visible; } 
.vf-header-wrapper.vf-header--search{ overflow:visible; }

/* ==========================================================
   WORDPRESS / ELEMENTOR SPACING RESET — V1.1.6 (hardened)
   Kills the white frame around the header in both classic
   Elementor Sections and newer Elementor Flexbox Containers.
========================================================== */
html,
body,
#page,
.site,
.site-wrapper,
.elementor-page {
    margin: 0 !important;
    padding: 0 !important;
}

/* Legacy theme-header wrappers */
header.site-header,
#masthead,
.elementor-header,
.elementor-theme-builder-header {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    background: var(--vf-brand-beige) !important;
}

/* Auto-scoped: any Elementor Section / Container that contains our header wrapper */
.elementor-location-header:has(.vf-header-wrapper),
.elementor-location-header:has(.vf-header-wrapper) > .elementor-section,
.elementor-location-header:has(.vf-header-wrapper) > .e-con,
.elementor-element:has(.vf-header-wrapper),
.elementor-element:has(.vf-header-wrapper) > .e-con-inner,
.e-con:has(.vf-header-wrapper),
.e-con:has(.vf-header-wrapper) > .e-con-inner,
.elementor-section:has(.vf-header-wrapper),
.elementor-section:has(.vf-header-wrapper) > .elementor-container,
.elementor-section:has(.vf-header-wrapper) .elementor-column,
.elementor-section:has(.vf-header-wrapper) .elementor-column-wrap,
.elementor-section:has(.vf-header-wrapper) .elementor-widget-wrap,
.elementor-section:has(.vf-header-wrapper) .elementor-widget-html,
.elementor-section:has(.vf-header-wrapper) .elementor-widget-html .elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    min-height: 0 !important;
    gap: 0 !important;
    --padding-top: 0 !important;
    --padding-right: 0 !important;
    --padding-bottom: 0 !important;
    --padding-left: 0 !important;
    --margin-top: 0 !important;
    --margin-right: 0 !important;
    --margin-bottom: 0 !important;
    --margin-left: 0 !important;
    --container-widget-width: 100% !important;
    --container-widget-flex-grow: 1 !important;
}

/* Direct wrapper hardening */
.vf-header-wrapper,
.vf-header,
.vf-header__inner {
    box-sizing: border-box !important;
}

.vf-header-wrapper {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
    background: var(--vf-brand-beige) !important;
}

/* Fallback for browsers without :has() support */
.elementor-location-header,
.elementor-location-header .elementor-element,
.elementor-location-header .e-con,
.elementor-location-header .e-con-inner,
.elementor-widget-html,
.elementor-widget-html .elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Paint the seam beige so any sub-pixel leak is invisible */
.elementor-location-header:has(.vf-header-wrapper),
.elementor-element:has(.vf-header-wrapper),
.e-con:has(.vf-header-wrapper),
.e-con:has(.vf-header-wrapper) > .e-con-inner,
.elementor-section:has(.vf-header-wrapper),
.elementor-section:has(.vf-header-wrapper) .elementor-column,
.elementor-section:has(.vf-header-wrapper) .elementor-widget-wrap {
    background: var(--vf-brand-beige) !important;
}

/* Page-content top-gap reset */
.site-content,
#content,
.site-main,
main,
#primary,
.elementor-page,
.elementor-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
