/* Lumiere global header — one consistent luxury navigation across every page. */
:root {
    --lumiere-header-dark: #15120f;
    --lumiere-header-gold: #15120f;
    --lumiere-header-cream: #f7f0e5;
    --lumiere-header-line: rgba(21,18,15,.22);
}

/* Hide any parent-theme header that may still be injected by Astra. */
#masthead,
.ast-primary-header-bar,
.ast-mobile-header-wrap,
.ast-desktop-header-content {
    display: none !important;
}

.lumiere-site-header {
    position: sticky;
    top: 0;
    z-index: 9998;
    width: 100%;
    background: rgba(21,18,15,.985);
    border-bottom: 1px solid var(--lumiere-header-line);
    box-shadow: 0 12px 34px rgba(0,0,0,.12);
    backdrop-filter: blur(12px);
}

body.admin-bar .lumiere-site-header { top: 32px; }

.lumiere-header__inner {
    width: min(1480px, calc(100% - 56px));
    min-height: 94px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
}

.lumiere-header__brand {
    display: flex;
    align-items: center;
    min-width: 0;
}

.lumiere-header__brand .custom-logo-link {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.lumiere-header__brand .custom-logo {
    display: block;
    width: auto;
    max-width: 176px;
    max-height: 68px;
    object-fit: contain;
}

.lumiere-header__site-name {
    color: var(--lumiere-header-gold) !important;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 28px;
    text-decoration: none !important;
}

.lumiere-primary-nav {
    min-width: 0;
    justify-self: center;
}

.lumiere-menu,
.lumiere-primary-nav .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2.1vw, 38px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.lumiere-menu > li,
.lumiere-primary-nav .menu > li {
    position: relative;
    margin: 0;
}

.lumiere-menu a,
.lumiere-primary-nav .menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0;
    color: var(--lumiere-header-cream) !important;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .055em;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: color .25s ease;
}

.lumiere-menu > li > a::after,
.lumiere-primary-nav .menu > li > a::after {
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 0;
    height: 1px;
    content: "";
    background: var(--lumiere-header-gold);
    transform: translateX(-50%);
    transition: width .28s ease;
}

.lumiere-menu > li:hover > a,
.lumiere-menu > li.current-menu-item > a,
.lumiere-menu > li.current-menu-ancestor > a,
.lumiere-primary-nav .menu > li:hover > a,
.lumiere-primary-nav .menu > li.current-menu-item > a,
.lumiere-primary-nav .menu > li.current-menu-ancestor > a {
    color: var(--lumiere-header-gold) !important;
}

.lumiere-menu > li:hover > a::after,
.lumiere-menu > li.current-menu-item > a::after,
.lumiere-menu > li.current-menu-ancestor > a::after,
.lumiere-primary-nav .menu > li:hover > a::after,
.lumiere-primary-nav .menu > li.current-menu-item > a::after,
.lumiere-primary-nav .menu > li.current-menu-ancestor > a::after {
    width: 100%;
}

/* Dropdowns */
.lumiere-menu .sub-menu,
.lumiere-primary-nav .menu .sub-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    z-index: 20;
    width: max-content;
    min-width: 220px;
    max-width: 310px;
    margin: 0;
    padding: 12px;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    transform: translate(-50%, 8px);
    background: var(--lumiere-header-dark);
    border: 1px solid rgba(21,18,15,.24);
    border-radius: 14px;
    box-shadow: 0 20px 48px rgba(0,0,0,.34);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.lumiere-menu .sub-menu::before,
.lumiere-primary-nav .menu .sub-menu::before {
    position: absolute;
    top: -18px;
    left: 0;
    width: 100%;
    height: 18px;
    content: "";
}

.lumiere-menu li:hover > .sub-menu,
.lumiere-menu li:focus-within > .sub-menu,
.lumiere-primary-nav .menu li:hover > .sub-menu,
.lumiere-primary-nav .menu li:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.lumiere-menu .sub-menu li,
.lumiere-primary-nav .menu .sub-menu li {
    position: relative;
    margin: 0;
    padding: 0;
}

.lumiere-menu .sub-menu a,
.lumiere-primary-nav .menu .sub-menu a {
    width: 100%;
    min-height: 40px;
    padding: 10px 12px;
    border-radius: 9px;
    color: #eee6d9 !important;
    font-size: 10px;
    letter-spacing: .07em;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease, padding-left .2s ease;
}

.lumiere-menu .sub-menu a:hover,
.lumiere-menu .sub-menu .current-menu-item > a,
.lumiere-primary-nav .menu .sub-menu a:hover,
.lumiere-primary-nav .menu .sub-menu .current-menu-item > a {
    padding-left: 16px;
    background: rgba(21,18,15,.12);
    color: var(--lumiere-header-gold) !important;
}

.lumiere-menu .sub-menu .sub-menu,
.lumiere-primary-nav .menu .sub-menu .sub-menu {
    top: -12px;
    left: calc(100% + 10px);
    transform: translate(8px,0);
}

.lumiere-menu .sub-menu li:hover > .sub-menu,
.lumiere-menu .sub-menu li:focus-within > .sub-menu,
.lumiere-primary-nav .menu .sub-menu li:hover > .sub-menu,
.lumiere-primary-nav .menu .sub-menu li:focus-within > .sub-menu {
    transform: translate(0,0);
}

.lumiere-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
}

.lumiere-header__icon-button,
.lumiere-mobile-toggle {
    position: relative;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(21,18,15,.22);
    border-radius: 50%;
    background: transparent;
    color: var(--lumiere-header-cream) !important;
    text-decoration: none !important;
    cursor: pointer;
    transition: background .24s ease, color .24s ease, border-color .24s ease, transform .24s ease;
}

.lumiere-header__icon-button:hover,
.lumiere-mobile-toggle:hover {
    border-color: var(--lumiere-header-gold);
    background: var(--lumiere-header-gold);
    color: var(--lumiere-header-dark) !important;
    transform: translateY(-1px);
}

.lumiere-header__icon-button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lumiere-cart-count {
    position: absolute;
    top: -5px;
    right: -4px;
    display: grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border: 2px solid var(--lumiere-header-dark);
    border-radius: 999px;
    background: var(--lumiere-header-gold);
    color: var(--lumiere-header-dark);
    font: 700 9px/1 Montserrat, Arial, sans-serif;
}

.lumiere-mobile-toggle { display: none; }
.lumiere-mobile-toggle span {
    display: block;
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: transform .25s ease, opacity .25s ease;
}
.lumiere-mobile-toggle span + span { margin-top: 4px; }
.lumiere-mobile-toggle.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.lumiere-mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.lumiere-mobile-toggle.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Search panel */
.lumiere-search-panel {
    border-top: 1px solid rgba(21,18,15,.18);
    background: #1a1612;
}
.lumiere-search-panel[hidden] { display: none !important; }
.lumiere-search-panel__inner {
    width: min(880px, calc(100% - 40px));
    margin: 0 auto;
    padding: 20px 0 24px;
}
.lumiere-search-panel form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}
.lumiere-search-panel input {
    height: 48px;
    margin: 0;
    padding: 0 18px;
    border: 1px solid rgba(21,18,15,.28) !important;
    border-radius: 999px !important;
    outline: none;
    background: rgba(255,255,255,.05) !important;
    color: #fff !important;
    font: 400 13px/1 Montserrat, Arial, sans-serif;
}
.lumiere-search-panel input::placeholder { color: rgba(255,255,255,.55); }
.lumiere-search-panel input:focus { border-color: var(--lumiere-header-gold) !important; }
.lumiere-search-panel button {
    min-width: 120px;
    height: 48px;
    margin: 0;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: var(--lumiere-header-gold);
    color: var(--lumiere-header-dark);
    font: 700 10px/1 Montserrat,Arial,sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
}

/* Once the custom header is in normal flow, remove legacy transparent-header offsets. */
.lumiere-wrap-page,
.lumiere-contact-page,
.lumiere-brand-page,
.lumiere-new-in-page,
.lumiere-clearance-page {
    margin-top: 0 !important;
}
body.page-template-page-wrap-as-a-gift .lumiere-wrap-page,
body.page-template-page-wrap-as-a-gift-php .lumiere-wrap-page,
body.page-template-page-contact .lumiere-contact-page,
body.page-template-page-contact-php .lumiere-contact-page {
    padding-top: 0 !important;
}



/* Elegant submenu chevrons on desktop. JS inserts the button so we fully style it here. */
.lumiere-submenu-toggle {
    position: relative;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 0 0 0 5px;
    padding: 0;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--lumiere-header-gold) !important;
    vertical-align: middle;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}
.lumiere-submenu-toggle::before {
    width: 6px;
    height: 6px;
    content: "";
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .22s ease, color .22s ease;
}
.lumiere-menu > li:hover > .lumiere-submenu-toggle::before,
.lumiere-primary-nav .menu > li:hover > .lumiere-submenu-toggle::before,
.lumiere-submenu-toggle:hover::before {
    transform: translateY(0) rotate(45deg);
}
.lumiere-menu .sub-menu .lumiere-submenu-toggle::before,
.lumiere-primary-nav .menu .sub-menu .lumiere-submenu-toggle::before {
    transform: translateX(-2px) rotate(-45deg);
}

@media (max-width: 1180px) {
    .lumiere-header__inner {
        width: min(100% - 36px, 1480px);
        grid-template-columns: minmax(140px,190px) 1fr auto;
        gap: 18px;
    }
    .lumiere-menu,
    .lumiere-primary-nav .menu { gap: 18px; }
    .lumiere-menu a,
    .lumiere-primary-nav .menu a { font-size: 10.5px; }
}

@media (max-width: 980px) {
    body.admin-bar .lumiere-site-header { top: 32px; }
    .lumiere-header__inner {
        position: relative;
        min-height: 80px;
        grid-template-columns: 1fr auto;
    }
    .lumiere-header__brand .custom-logo { max-width: 148px; max-height: 58px; }
    .lumiere-mobile-toggle { display: grid; }
    .lumiere-primary-nav {
        position: absolute;
        top: 100%;
        left: -18px;
        right: -18px;
        z-index: 99;
        display: none;
        max-height: calc(100vh - 116px);
        overflow-y: auto;
        padding: 18px;
        background: var(--lumiere-header-dark);
        border-top: 1px solid var(--lumiere-header-line);
        box-shadow: 0 22px 40px rgba(0,0,0,.3);
    }
    .lumiere-primary-nav.is-open { display: block; }
    .lumiere-menu,
    .lumiere-primary-nav .menu {
        display: block;
        width: 100%;
    }
    .lumiere-menu > li,
    .lumiere-primary-nav .menu > li {
        border-bottom: 1px solid rgba(21,18,15,.12);
    }
    .lumiere-menu > li > a,
    .lumiere-primary-nav .menu > li > a {
        width: calc(100% - 44px);
        min-height: 48px;
        font-size: 11px;
    }
    .lumiere-menu > li > a::after,
    .lumiere-primary-nav .menu > li > a::after { display: none; }
    .lumiere-menu .sub-menu,
    .lumiere-primary-nav .menu .sub-menu,
    .lumiere-menu .sub-menu .sub-menu,
    .lumiere-primary-nav .menu .sub-menu .sub-menu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        max-width: none;
        margin: 0 0 10px;
        padding: 6px 0 8px 14px;
        visibility: visible;
        opacity: 1;
        transform: none !important;
        background: transparent;
        border: 0;
        border-left: 1px solid rgba(21,18,15,.24);
        border-radius: 0;
        box-shadow: none;
    }
    .lumiere-menu li.submenu-open > .sub-menu,
    .lumiere-primary-nav .menu li.submenu-open > .sub-menu { display: block; }
    .lumiere-menu .sub-menu a,
    .lumiere-primary-nav .menu .sub-menu a {
        min-height: 38px;
        padding: 8px 12px;
        white-space: normal;
    }
    .lumiere-submenu-toggle {
        position: absolute;
        top: 6px;
        right: 0;
        display: grid;
        place-items: center;
        width: 36px;
        height: 36px;
        margin: 0;
        padding: 0;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: var(--lumiere-header-gold) !important;
        cursor: pointer;
    }
    .lumiere-submenu-toggle::before {
        width: 7px;
        height: 7px;
        content: "";
        border-right: 1.5px solid currentColor;
        border-bottom: 1.5px solid currentColor;
        transform: translateY(-2px) rotate(45deg);
    }
    .submenu-open > .lumiere-submenu-toggle::before {
        transform: translateY(2px) rotate(225deg);
    }
}

@media (max-width: 782px) {
    body.admin-bar .lumiere-site-header { top: 46px; }
}

@media (max-width: 560px) {
    .lumiere-header__inner {
        width: calc(100% - 24px);
        min-height: 72px;
    }
    .lumiere-header__brand .custom-logo { max-width: 128px; max-height: 52px; }
    .lumiere-header__actions { gap: 6px; }
    .lumiere-header__icon-button,
    .lumiere-mobile-toggle { width: 38px; height: 38px; }
    .lumiere-search-panel form { grid-template-columns: 1fr; }
    .lumiere-search-panel button { width: 100%; }
}

/* v6.2.2: desktop dropdown indicators are pure CSS chevrons, never button pills. */
@media (min-width: 981px) {
    .lumiere-primary-nav .lumiere-submenu-toggle {
        display: none !important;
    }

    .lumiere-primary-nav .menu > li.menu-item-has-children > a,
    .lumiere-menu > li.menu-item-has-children > a {
        padding-right: 16px !important;
    }

    .lumiere-primary-nav .menu > li.menu-item-has-children::after,
    .lumiere-menu > li.menu-item-has-children::after {
        position: absolute;
        top: 50%;
        right: 1px;
        width: 6px;
        height: 6px;
        content: "";
        pointer-events: none;
        border-right: 1.4px solid var(--lumiere-header-gold);
        border-bottom: 1.4px solid var(--lumiere-header-gold);
        transform: translateY(-65%) rotate(45deg);
        transition: transform .22s ease, border-color .22s ease;
    }

    .lumiere-primary-nav .menu > li.menu-item-has-children:hover::after,
    .lumiere-menu > li.menu-item-has-children:hover::after {
        transform: translateY(-35%) rotate(45deg);
    }

    .lumiere-primary-nav .menu .sub-menu li.menu-item-has-children > a,
    .lumiere-menu .sub-menu li.menu-item-has-children > a {
        padding-right: 30px !important;
    }

    .lumiere-primary-nav .menu .sub-menu li.menu-item-has-children::after,
    .lumiere-menu .sub-menu li.menu-item-has-children::after {
        position: absolute;
        top: 50%;
        right: 16px;
        width: 6px;
        height: 6px;
        content: "";
        pointer-events: none;
        border-right: 1.4px solid var(--lumiere-header-gold);
        border-bottom: 1.4px solid var(--lumiere-header-gold);
        transform: translateY(-50%) rotate(-45deg);
    }
}


/* v6.4.2 SAFE: desktop submenu toggles are never rendered as buttons/pills. */
@media (min-width: 981px) {
    #lumiere-primary-nav .lumiere-submenu-toggle { display: none !important; }
    #lumiere-primary-nav .menu-item-has-children { position: relative; }
    #lumiere-primary-nav > .lumiere-menu > .menu-item-has-children > a { padding-right: 17px !important; }
    #lumiere-primary-nav > .lumiere-menu > .menu-item-has-children::after {
        content: "";
        position: absolute;
        right: 1px;
        top: 50%;
        width: 6px;
        height: 6px;
        border-right: 1.4px solid var(--lumiere-header-gold);
        border-bottom: 1.4px solid var(--lumiere-header-gold);
        transform: translateY(-65%) rotate(45deg);
        pointer-events: none;
    }
}


/* v6.6: Shop category flyouts — hover a Shop category to see all its WooCommerce subcategories to the right. */
@media (min-width: 981px) {
    #lumiere-primary-nav > .lumiere-menu > li > .sub-menu > li.lumiere-category-parent {
        position: relative;
    }

    #lumiere-primary-nav > .lumiere-menu > li > .sub-menu > li.lumiere-category-parent > a {
        padding-right: 34px !important;
    }

    #lumiere-primary-nav > .lumiere-menu > li > .sub-menu > li.lumiere-category-parent::after {
        position: absolute;
        top: 50%;
        right: 14px;
        width: 6px;
        height: 6px;
        border-top: 1.5px solid var(--lumiere-header-gold);
        border-right: 1.5px solid var(--lumiere-header-gold);
        content: "";
        pointer-events: none;
        transform: translateY(-50%) rotate(45deg);
        transition: transform .2s ease, border-color .2s ease;
    }

    #lumiere-primary-nav > .lumiere-menu > li > .sub-menu > li.lumiere-category-parent:hover::after,
    #lumiere-primary-nav > .lumiere-menu > li > .sub-menu > li.lumiere-category-parent:focus-within::after {
        border-color: #fff;
        transform: translate(2px,-50%) rotate(45deg);
    }

    #lumiere-primary-nav .lumiere-category-flyout {
        top: -12px !important;
        left: calc(100% + 12px) !important;
        width: 250px !important;
        min-width: 250px !important;
        max-width: 300px !important;
        max-height: min(70vh, 560px);
        overflow-y: auto;
        overflow-x: hidden;
        padding: 12px !important;
        transform: translate(10px,0) !important;
        border-color: rgba(21,18,15,.28) !important;
        background: #15120f !important;
        box-shadow: 0 24px 56px rgba(0,0,0,.42) !important;
        scrollbar-width: thin;
        scrollbar-color: rgba(21,18,15,.55) transparent;
    }

    #lumiere-primary-nav .lumiere-category-flyout::before {
        top: 0 !important;
        left: -13px !important;
        width: 13px !important;
        height: 100% !important;
    }

    #lumiere-primary-nav li.lumiere-category-parent:hover > .lumiere-category-flyout,
    #lumiere-primary-nav li.lumiere-category-parent:focus-within > .lumiere-category-flyout {
        visibility: visible !important;
        opacity: 1 !important;
        transform: translate(0,0) !important;
    }

    #lumiere-primary-nav .lumiere-category-flyout > li > a {
        min-height: 38px !important;
        padding: 9px 12px !important;
        color: #eee6d9 !important;
        font-size: 10px !important;
        letter-spacing: .065em !important;
        border-radius: 8px !important;
    }

    #lumiere-primary-nav .lumiere-category-flyout > li > a:hover,
    #lumiere-primary-nav .lumiere-category-flyout > li.current-menu-item > a {
        padding-left: 16px !important;
        color: var(--lumiere-header-gold) !important;
        background: rgba(21,18,15,.12) !important;
    }
}

/* Mobile: auto-generated category children behave like the other nested menu levels. */
@media (max-width: 980px) {
    #lumiere-primary-nav .lumiere-category-flyout {
        margin-left: 14px !important;
        padding-left: 10px !important;
        border-left: 1px solid rgba(21,18,15,.22) !important;
    }
}

/* v6.6.2: Single-container Shop mega menu with clean inline chevrons and a populated default state. */
@media (min-width: 981px) {
    #lumiere-primary-nav > .lumiere-menu > li.lumiere-shop-menu-item > .lumiere-shop-mega {
        width: 780px !important;
        min-width: 780px !important;
        max-width: min(780px, calc(100vw - 48px)) !important;
        min-height: 420px;
        padding: 12px !important;
        overflow: visible !important;
        background: #15120f !important;
        border: 1px solid rgba(21,18,15,.24) !important;
        border-radius: 14px !important;
        box-shadow: 0 20px 48px rgba(0,0,0,.34) !important;
    }

    /* Left category rail. */
    #lumiere-primary-nav .lumiere-shop-mega > li {
        position: static !important;
        width: 220px;
    }

    #lumiere-primary-nav .lumiere-shop-mega > li > a {
        position: relative !important;
        width: 220px !important;
        padding-right: 38px !important;
    }

    /* Clean > chevron anchored inside the parent row itself. */
    #lumiere-primary-nav .lumiere-shop-mega > li.lumiere-category-parent::after {
        display: none !important;
        content: none !important;
    }

    #lumiere-primary-nav .lumiere-shop-mega > li.lumiere-category-parent > a::after {
        position: absolute !important;
        top: 50% !important;
        right: 15px !important;
        width: 7px !important;
        height: 7px !important;
        margin: 0 !important;
        border: 0 !important;
        border-right: 1.5px solid var(--lumiere-header-gold) !important;
        border-bottom: 1.5px solid var(--lumiere-header-gold) !important;
        content: "" !important;
        transform: translateY(-50%) rotate(-45deg) !important;
        pointer-events: none;
        transition: right .18s ease, border-color .18s ease !important;
    }

    #lumiere-primary-nav .lumiere-shop-mega > li.lumiere-category-parent.is-mega-active > a::after,
    #lumiere-primary-nav .lumiere-shop-mega > li.lumiere-category-parent > a:hover::after,
    #lumiere-primary-nav .lumiere-shop-mega > li.lumiere-category-parent > a:focus::after {
        right: 12px !important;
        border-color: #fff !important;
    }

    /* Children remain inside the SAME dropdown shell. */
    #lumiere-primary-nav .lumiere-shop-mega > li > .lumiere-category-flyout {
        position: absolute !important;
        top: 12px !important;
        left: 244px !important;
        right: 12px !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 4px 0 4px 22px !important;
        overflow: visible !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr);
        align-content: start;
        column-gap: 12px;
        row-gap: 2px;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        background: transparent !important;
        border: 0 !important;
        border-left: 1px solid rgba(21,18,15,.18) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        transform: none !important;
        transition: opacity .14s ease, visibility .14s ease !important;
    }

    #lumiere-primary-nav .lumiere-shop-mega > li > .lumiere-category-flyout::before {
        display: none !important;
    }

    #lumiere-primary-nav .lumiere-shop-mega > li.lumiere-category-parent.is-mega-active > .lumiere-category-flyout {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    #lumiere-primary-nav .lumiere-shop-mega .lumiere-category-flyout > li {
        min-width: 0;
    }

    #lumiere-primary-nav .lumiere-shop-mega .lumiere-category-flyout > li > a {
        min-height: 38px !important;
        padding: 9px 10px !important;
        white-space: normal !important;
        line-height: 1.25 !important;
        border-radius: 8px !important;
    }

    #lumiere-primary-nav .lumiere-shop-mega .lumiere-category-flyout > li > a:hover {
        padding-left: 14px !important;
    }
}


/* v6.6.5: strict Shop hover gate.
   The mega menu cannot be triggered by hovering the page area beneath it. */
@media (min-width: 981px) {
    #lumiere-primary-nav > .lumiere-menu > li.lumiere-shop-menu-item > .lumiere-shop-mega {
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translate(-50%, 8px) !important;
    }

    /* v6.9.1: ONLY the JS-open class may reveal Shop on desktop.
       No :hover or :focus-within selector is allowed to expose the panel. */
    #lumiere-primary-nav > .lumiere-menu > li.lumiere-shop-menu-item.is-shop-open > .lumiere-shop-mega {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translate(-50%, 0) !important;
    }

    /* Disable the generic hover selector for Shop specifically; JS controls it. */
    #lumiere-primary-nav > .lumiere-menu > li.lumiere-shop-menu-item:not(.is-shop-open):hover > .lumiere-shop-mega {
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}


/* v6.9.1 final Shop mega-menu hover isolation. */
@media (min-width: 981px) {
    #lumiere-primary-nav > .lumiere-menu > li.lumiere-shop-menu-item:not(.is-shop-open) > .lumiere-shop-mega,
    #lumiere-primary-nav > .lumiere-menu > li.lumiere-shop-menu-item:not(.is-shop-open):hover > .lumiere-shop-mega,
    #lumiere-primary-nav > .lumiere-menu > li.lumiere-shop-menu-item:not(.is-shop-open):focus-within > .lumiere-shop-mega {
        display: block !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}


/* v6.9.2 TRUE Shop hover isolation.
   Desktop mega-menu is portaled outside the Shop <li>, so its invisible box can never
   extend the Shop hover/click area into the page. */
@media (min-width: 981px) {
    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal {
        position: absolute !important;
        top: var(--lumiere-shop-top, 76px) !important;
        left: var(--lumiere-shop-left, 50%) !important;
        width: 780px !important;
        min-width: 780px !important;
        max-width: min(780px, calc(100vw - 48px)) !important;
        min-height: 420px !important;
        margin: 0 !important;
        padding: 12px !important;
        display: block !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translate(-50%, 8px) !important;
        background: #15120f !important;
        border: 1px solid rgba(21,18,15,.24) !important;
        border-radius: 14px !important;
        box-shadow: 0 20px 48px rgba(0,0,0,.34) !important;
        transition: opacity .18s ease, transform .18s ease, visibility .18s !important;
        z-index: 10002 !important;
        list-style: none !important;
    }

    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal.is-shop-open-panel {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translate(-50%, 0) !important;
    }

    /* Left rail still behaves exactly like the existing mega menu after portaling. */
    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal > li {
        position: static !important;
        width: 220px !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal > li > a {
        position: relative !important;
        display: inline-flex !important;
        align-items: center !important;
        width: 220px !important;
        min-height: 40px !important;
        padding: 10px 38px 10px 12px !important;
        border-radius: 9px !important;
        color: #eee6d9 !important;
        font-family: Montserrat, Arial, sans-serif !important;
        font-size: 10px !important;
        font-weight: 500 !important;
        line-height: 1 !important;
        letter-spacing: .07em !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        white-space: nowrap !important;
    }
    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal > li > a:hover,
    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal > li.is-mega-active > a {
        background: rgba(21,18,15,.12) !important;
        color: var(--lumiere-header-gold) !important;
    }
    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal > li.lumiere-category-parent > a::after {
        position: absolute !important;
        top: 50% !important;
        right: 15px !important;
        width: 7px !important;
        height: 7px !important;
        content: "" !important;
        border-right: 1.5px solid var(--lumiere-header-gold) !important;
        border-bottom: 1.5px solid var(--lumiere-header-gold) !important;
        transform: translateY(-50%) rotate(-45deg) !important;
        pointer-events: none !important;
    }
    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal > li > .lumiere-category-flyout {
        position: absolute !important;
        top: 12px !important;
        left: 244px !important;
        right: 12px !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 4px 0 4px 22px !important;
        overflow: visible !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        align-content: start !important;
        column-gap: 12px !important;
        row-gap: 2px !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        background: transparent !important;
        border: 0 !important;
        border-left: 1px solid rgba(21,18,15,.18) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        transform: none !important;
        list-style: none !important;
    }
    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal > li.is-mega-active > .lumiere-category-flyout {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal .lumiere-category-flyout > li > a {
        display: inline-flex !important;
        align-items: center !important;
        width: 100% !important;
        min-height: 38px !important;
        padding: 9px 10px !important;
        border-radius: 8px !important;
        color: #eee6d9 !important;
        font-family: Montserrat, Arial, sans-serif !important;
        font-size: 10px !important;
        font-weight: 500 !important;
        line-height: 1.25 !important;
        letter-spacing: .065em !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        white-space: normal !important;
    }
    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal .lumiere-category-flyout > li > a:hover {
        padding-left: 14px !important;
        color: var(--lumiere-header-gold) !important;
        background: rgba(21,18,15,.12) !important;
    }

    /* Shop top-level highlight is based on the visible link / explicit open state only.
       The closed menu can no longer make the parent :hover via a descendant box. */
    #lumiere-primary-nav > .lumiere-menu > li.lumiere-shop-menu-item:not(.is-shop-open):hover > a {
        color: var(--lumiere-header-gold) !important;
    }
}
\n\n/* v6.9.3: HARD Shop mega-menu interaction gate.\n   When closed the portaled menu is removed from hit-testing entirely, including every\n   descendant flyout. This prevents invisible subcategory links from sitting over page content. */\n@media (min-width: 981px) {\n    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal[hidden],\n    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal:not(.is-shop-open-panel) {\n        display: none !important;\n        visibility: hidden !important;\n        opacity: 0 !important;\n        pointer-events: none !important;\n    }\n\n    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal:not(.is-shop-open-panel) *,\n    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal[hidden] * {\n        visibility: hidden !important;\n        pointer-events: none !important;\n    }\n\n    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal.is-shop-open-panel:not([hidden]) {\n        display: block !important;\n        visibility: visible !important;\n        opacity: 1 !important;\n        pointer-events: auto !important;\n    }\n\n    /* Do not let the generic li:hover rule highlight SHOP from any phantom parent hit-area.\n       At rest, SHOP changes only when the actual anchor is hovered/focused, or while JS has\n       explicitly opened the mega menu. */\n    #lumiere-primary-nav > .lumiere-menu > li.lumiere-shop-menu-item:not(.is-shop-open):not(.current-menu-item):not(.current-menu-ancestor) > a {\n        color: var(--lumiere-header-cream) !important;\n    }\n    #lumiere-primary-nav > .lumiere-menu > li.lumiere-shop-menu-item:not(.is-shop-open):not(.current-menu-item):not(.current-menu-ancestor) > a::after {\n        width: 0 !important;\n    }\n    #lumiere-primary-nav > .lumiere-menu > li.lumiere-shop-menu-item:not(.is-shop-open) > a:hover,\n    #lumiere-primary-nav > .lumiere-menu > li.lumiere-shop-menu-item:not(.is-shop-open) > a:focus-visible,\n    #lumiere-primary-nav > .lumiere-menu > li.lumiere-shop-menu-item.is-shop-open > a {\n        color: var(--lumiere-header-gold) !important;\n    }\n    #lumiere-primary-nav > .lumiere-menu > li.lumiere-shop-menu-item:not(.is-shop-open) > a:hover::after,\n    #lumiere-primary-nav > .lumiere-menu > li.lumiere-shop-menu-item:not(.is-shop-open) > a:focus-visible::after,\n    #lumiere-primary-nav > .lumiere-menu > li.lumiere-shop-menu-item.is-shop-open > a::after {\n        width: 100% !important;\n    }\n}\n

/* v6.10.9.4 — keep the original two-panel mega-menu shell, but show the
   hovered parent collection's children in ONE vertical column only. */
@media (min-width: 981px) {
    #lumiere-primary-nav .lumiere-shop-mega > li > .lumiere-category-flyout,
    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal > li > .lumiere-category-flyout {
        grid-template-columns: minmax(0, 1fr) !important;
        grid-auto-flow: row !important;
        column-gap: 0 !important;
    }

    #lumiere-primary-nav .lumiere-shop-mega .lumiere-category-flyout > li,
    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal .lumiere-category-flyout > li {
        width: 100% !important;
        max-width: 100% !important;
    }
}


/* v6.10.9.5 — compact Shop mega menu aligned directly under SHOP.
   Keep parent collections in the left rail and the hovered parent's children
   in one right-side column. The shell grows to contain whichever column is taller. */
@media (min-width: 981px) {
    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal {
        width: 520px !important;
        min-width: 0 !important;
        max-width: calc(100vw - 32px) !important;
        height: var(--lumiere-shop-height, 430px) !important;
        min-height: 0 !important;
        max-height: none !important;
        padding: 12px !important;
        transform: translate(0, 8px) !important;
        overflow: visible !important;
    }

    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal.is-shop-open-panel {
        transform: translate(0, 0) !important;
    }

    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal > li {
        width: 220px !important;
    }

    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal > li > a {
        width: 220px !important;
        min-height: 38px !important;
        padding-top: 9px !important;
        padding-bottom: 9px !important;
    }

    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal > li > .lumiere-category-flyout {
        top: 12px !important;
        left: 244px !important;
        right: auto !important;
        width: 252px !important;
        min-width: 252px !important;
        max-width: 252px !important;
        padding: 2px 0 2px 20px !important;
        grid-template-columns: 1fr !important;
        grid-auto-flow: row !important;
        row-gap: 0 !important;
        overflow: visible !important;
    }

    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal .lumiere-category-flyout > li,
    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal .lumiere-category-flyout > li > a {
        width: 100% !important;
        max-width: 100% !important;
    }

    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal .lumiere-category-flyout > li > a {
        min-height: 33px !important;
        padding: 7px 10px !important;
        line-height: 1.2 !important;
    }
}


/* ============================================================
   v6.12.2 — Heikaya light navigation / compact luxury contrast
   Main header + dropdowns exchange the previous dark/light roles.
   ============================================================ */
:root {
    --heikaya-nav-light: #f7f0e5;
    --heikaya-nav-dark: #15120f;
}

/* Main navigation is now light, while keeping the established gold accent. */
.lumiere-site-header {
    background: rgba(247, 240, 229, .985) !important;
    border-bottom-color: rgba(21, 18, 15, .10) !important;
    box-shadow: 0 10px 28px rgba(21, 18, 15, .08) !important;
}

/* Center the menu in the REAL space between the logo and the first action
   (search), instead of centering it relative to the whole browser window. */
.lumiere-header__inner {
    width: min(1560px, calc(100% - 48px)) !important;
    grid-template-columns: max-content minmax(0, 1fr) max-content !important;
    gap: 30px !important;
}

.lumiere-primary-nav {
    width: 100% !important;
    justify-self: stretch !important;
}

.lumiere-menu,
.lumiere-primary-nav .menu {
    width: 100% !important;
    justify-content: center !important;
    gap: clamp(26px, 2.55vw, 46px) !important;
}

.lumiere-header__site-name,
.lumiere-menu a,
.lumiere-primary-nav .menu a,
#lumiere-primary-nav > .lumiere-menu > li.lumiere-shop-menu-item:not(.is-shop-open):not(.current-menu-item):not(.current-menu-ancestor) > a {
    color: var(--heikaya-nav-dark) !important;
}

.lumiere-header__icon-button,
.lumiere-mobile-toggle {
    color: var(--heikaya-nav-dark) !important;
    border-color: rgba(21, 18, 15, .16) !important;
}

.lumiere-header__icon-button:hover,
.lumiere-header__icon-button:focus-visible,
.lumiere-mobile-toggle:hover,
.lumiere-mobile-toggle:focus-visible {
    border-color: var(--lumiere-header-gold) !important;
    background: var(--lumiere-header-gold) !important;
    color: var(--heikaya-nav-dark) !important;
}

.lumiere-cart-count,
.lumiere-wishlist-count {
    border-color: var(--heikaya-nav-light) !important;
}

/* Standard dropdowns exchange dark/light as well. */
.lumiere-menu .sub-menu,
.lumiere-primary-nav .menu .sub-menu {
    background: var(--heikaya-nav-light) !important;
    border-color: rgba(21, 18, 15, .12) !important;
    box-shadow: 0 20px 46px rgba(21, 18, 15, .16) !important;
}

.lumiere-menu .sub-menu a,
.lumiere-primary-nav .menu .sub-menu a {
    color: var(--heikaya-nav-dark) !important;
}

.lumiere-menu .sub-menu a:hover,
.lumiere-menu .sub-menu .current-menu-item > a,
.lumiere-primary-nav .menu .sub-menu a:hover,
.lumiere-primary-nav .menu .sub-menu .current-menu-item > a {
    background: rgba(21,18,15,.13) !important;
    color: var(--lumiere-header-gold) !important;
}

/* Portaled Shop mega menu. */
@media (min-width: 981px) {
    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal {
        background: var(--heikaya-nav-light) !important;
        border-color: rgba(21, 18, 15, .12) !important;
        box-shadow: 0 22px 52px rgba(21, 18, 15, .17) !important;
    }

    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal > li > a,
    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal .lumiere-category-flyout > li > a {
        color: var(--heikaya-nav-dark) !important;
    }

    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal > li > a:hover,
    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal > li.is-mega-active > a,
    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal .lumiere-category-flyout > li > a:hover {
        background: rgba(21,18,15,.13) !important;
        color: var(--lumiere-header-gold) !important;
    }

    #lumiere-site-header > .lumiere-shop-mega.lumiere-shop-mega--portal > li > .lumiere-category-flyout {
        border-left-color: rgba(21, 18, 15, .12) !important;
    }

    #lumiere-primary-nav > .lumiere-menu > li.lumiere-shop-menu-item:not(.is-shop-open):not(.current-menu-item):not(.current-menu-ancestor) > a:hover,
    #lumiere-primary-nav > .lumiere-menu > li.lumiere-shop-menu-item:not(.is-shop-open):not(.current-menu-item):not(.current-menu-ancestor) > a:focus-visible,
    #lumiere-primary-nav > .lumiere-menu > li.lumiere-shop-menu-item.is-shop-open > a {
        color: var(--lumiere-header-gold) !important;
    }
}

/* Search panel belongs visually to the menu, so it follows the same exchange. */
.lumiere-search-panel {
    background: var(--heikaya-nav-light) !important;
    border-top-color: rgba(21, 18, 15, .10) !important;
}

.lumiere-search-panel input {
    background: rgba(255,255,255,.62) !important;
    border-color: rgba(21,18,15,.16) !important;
    color: var(--heikaya-nav-dark) !important;
}

.lumiere-search-panel input::placeholder {
    color: rgba(21,18,15,.48) !important;
}

/* Mobile navigation uses the same light palette. */
@media (max-width: 1180px) and (min-width: 981px) {
    .lumiere-header__inner {
        width: calc(100% - 34px) !important;
        gap: 20px !important;
    }

    .lumiere-menu,
    .lumiere-primary-nav .menu {
        gap: 20px !important;
    }
}

@media (max-width: 980px) {
    .lumiere-header__inner {
        grid-template-columns: 1fr auto !important;
    }

    .lumiere-primary-nav {
        background: var(--heikaya-nav-light) !important;
        border-top-color: rgba(21, 18, 15, .10) !important;
        box-shadow: 0 20px 38px rgba(21,18,15,.15) !important;
    }

    .lumiere-menu > li,
    .lumiere-primary-nav .menu > li {
        border-bottom-color: rgba(21,18,15,.09) !important;
    }

    .lumiere-menu .sub-menu,
    .lumiere-primary-nav .menu .sub-menu,
    .lumiere-menu .sub-menu .sub-menu,
    .lumiere-primary-nav .menu .sub-menu .sub-menu {
        background: transparent !important;
        border-left-color: rgba(21,18,15,.12) !important;
        box-shadow: none !important;
    }
}


/* ============================================================
   v6.13.8 — Taller main navigation/header
   ============================================================ */
@media (min-width: 981px) {
    .lumiere-header__inner {
        min-height: 118px !important;
    }

    .lumiere-primary-nav,
    .lumiere-menu,
    .lumiere-primary-nav .menu {
        min-height: 118px !important;
        align-items: center !important;
    }

    .lumiere-header__brand {
        display: flex !important;
        align-items: center !important;
    }

    .lumiere-header__actions {
        align-self: stretch !important;
        align-items: center !important;
    }
}

@media (max-width: 980px) {
    .lumiere-header__inner {
        min-height: 82px !important;
    }
}

@media (max-width: 560px) {
    .lumiere-header__inner {
        min-height: 78px !important;
    }
}


/* ============================================================
   v6.13.9 — Extra-tall main navigation/header
   ============================================================ */
@media (min-width: 981px) {
    .lumiere-header__inner {
        min-height: 142px !important;
    }

    .lumiere-primary-nav,
    .lumiere-menu,
    .lumiere-primary-nav .menu {
        min-height: 142px !important;
        align-items: center !important;
    }

    .lumiere-header__brand,
    .lumiere-header__actions {
        min-height: 142px !important;
        align-items: center !important;
    }

    .lumiere-header__brand {
        display: flex !important;
    }

    .lumiere-header__actions {
        display: flex !important;
    }
}

@media (max-width: 980px) {
    .lumiere-header__inner {
        min-height: 90px !important;
    }
}

@media (max-width: 560px) {
    .lumiere-header__inner {
        min-height: 84px !important;
    }
}


/* ============================================================
   v6.14.0 — CACHE-SAFE TRUE TALL HEADER
   Exact height, not only min-height.
   ============================================================ */
@media (min-width: 981px) {
    #lumiere-site-header .lumiere-header__inner {
        height: 130px !important;
        min-height: 130px !important;
        max-height: none !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        align-items: center !important;
    }

    #lumiere-site-header .lumiere-header__brand,
    #lumiere-site-header .lumiere-primary-nav,
    #lumiere-site-header .lumiere-header__actions {
        height: 130px !important;
        min-height: 130px !important;
        max-height: none !important;
        align-items: center !important;
    }

    #lumiere-site-header .lumiere-menu,
    #lumiere-site-header .lumiere-primary-nav .menu {
        height: 130px !important;
        min-height: 130px !important;
        align-items: center !important;
    }

    #lumiere-site-header .lumiere-header__brand .custom-logo {
        max-height: 72px !important;
        max-width: 205px !important;
    }
}

@media (max-width: 980px) {
    #lumiere-site-header .lumiere-header__inner {
        height: 96px !important;
        min-height: 96px !important;
    }
}

@media (max-width: 560px) {
    #lumiere-site-header .lumiere-header__inner {
        height: 90px !important;
        min-height: 90px !important;
    }
}
