:root {
    --lumiere-ink: #171514;
    --lumiere-warm: #f6f1e8;
    --lumiere-paper: #fffdf9;
    --lumiere-gold: #15120f;
    --lumiere-line: rgba(23, 21, 20, .13);
}

.lumiere-homepage {
    overflow: hidden;
    background: var(--lumiere-paper);
    color: var(--lumiere-ink);
    font-family: Montserrat, Arial, sans-serif;
}

.lumiere-homepage h1,
.lumiere-homepage h2,
.lumiere-homepage h3 {
    margin: 0;
    color: inherit;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    line-height: 1.02;
}

.lumiere-eyebrow {
    margin: 0 0 16px;
    color: var(--lumiere-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.lumiere-hero {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
    min-height: 760px;
    background: var(--lumiere-warm);
}

.lumiere-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(110px, 11vw, 180px) clamp(34px, 7vw, 115px) 90px;
}

.lumiere-hero h1 {
    max-width: 690px;
    font-size: clamp(54px, 5.5vw, 92px);
}

.lumiere-hero__text {
    max-width: 600px;
    margin: 28px 0 34px;
    font-size: 16px;
    line-height: 1.85;
}

.lumiere-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 30px;
    border: 1px solid var(--lumiere-ink);
    background: var(--lumiere-ink);
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.lumiere-button:hover {
    transform: translateY(-2px);
    background: transparent;
    color: var(--lumiere-ink) !important;
}

.lumiere-hero__gallery {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    grid-template-rows: 1fr 1fr;
    min-height: 760px;
    gap: 4px;
    padding: 4px;
    background: #fff;
}

.lumiere-hero__tile {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    background: #ddd;
}

.lumiere-hero__tile--1 {
    grid-row: 1 / 3;
}

.lumiere-hero__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s ease;
}

.lumiere-hero__tile::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(0, 0, 0, .48), transparent 48%);
}

.lumiere-hero__tile span {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 20px;
    left: 22px;
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 28px;
    font-weight: 600;
}

.lumiere-hero__tile:hover img {
    transform: scale(1.045);
}

.lumiere-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 110px 30px;
    text-align: center;
}

.lumiere-intro h2,
.lumiere-section-heading h2,
.lumiere-closing-banner h2 {
    font-size: clamp(42px, 5vw, 68px);
}

.lumiere-intro > p:last-child {
    max-width: 760px;
    margin: 26px auto 0;
    font-size: 16px;
    line-height: 1.9;
}

.lumiere-collections {
    padding: 100px clamp(24px, 6vw, 100px) 120px;
    background: #fff;
}

.lumiere-section-heading {
    max-width: 730px;
    margin-bottom: 50px;
}

.lumiere-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--lumiere-line);
    border-bottom: 1px solid var(--lumiere-line);
}

.lumiere-tab {
    position: relative;
    padding: 25px 12px;
    border: 0;
    border-right: 1px solid var(--lumiere-line);
    background: transparent;
    color: #716b63;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(25px, 2vw, 34px);
    cursor: pointer;
}

.lumiere-tab:last-child {
    border-right: 0;
}

.lumiere-tab::after {
    position: absolute;
    right: 30%;
    bottom: -1px;
    left: 30%;
    height: 2px;
    content: "";
    background: var(--lumiere-gold);
    transform: scaleX(0);
    transition: transform .25s ease;
}

.lumiere-tab.is-active {
    color: var(--lumiere-ink);
}

.lumiere-tab.is-active::after {
    transform: scaleX(1);
}

.lumiere-panel {
    padding-top: 50px;
}

.lumiere-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 22px;
}

.lumiere-category-card {
    color: var(--lumiere-ink) !important;
    text-decoration: none !important;
}

.lumiere-category-card__image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--lumiere-warm);
}

.lumiere-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.lumiere-category-card__body {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 2px 0;
}

.lumiere-category-card h3 {
    font-size: 30px;
}

.lumiere-category-card__body span {
    flex: 0 0 auto;
    color: #756e65;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.lumiere-category-card:hover img {
    transform: scale(1.045);
}

.lumiere-empty {
    padding: 70px 20px;
    background: var(--lumiere-warm);
    text-align: center;
}

.lumiere-closing-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 85px clamp(28px, 7vw, 120px);
    background: #1c1917;
    color: #fff;
}

.lumiere-closing-banner > div {
    max-width: 800px;
}

.lumiere-button--light {
    flex: 0 0 auto;
    border-color: #fff;
    background: #fff;
    color: var(--lumiere-ink) !important;
}

.lumiere-button--light:hover {
    background: transparent;
    color: #fff !important;
}

@media (max-width: 1100px) {
    .lumiere-hero {
        grid-template-columns: 1fr;
    }

    .lumiere-hero__content {
        min-height: 630px;
    }

    .lumiere-hero__gallery {
        min-height: 680px;
    }

    .lumiere-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .lumiere-hero__content {
        min-height: 570px;
        padding: 120px 24px 70px;
    }

    .lumiere-hero h1 {
        font-size: 52px;
    }

    .lumiere-hero__gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 380px 250px;
        min-height: auto;
    }

    .lumiere-hero__tile--1 {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .lumiere-tabs {
        grid-template-columns: 1fr 1fr;
    }

    .lumiere-tab:nth-child(2) {
        border-right: 0;
    }

    .lumiere-tab:nth-child(-n+2) {
        border-bottom: 1px solid var(--lumiere-line);
    }

    .lumiere-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lumiere-category-card__body {
        display: block;
    }

    .lumiere-category-card__body span {
        display: inline-block;
        margin-top: 8px;
    }

    .lumiere-closing-banner {
        display: block;
    }

    .lumiere-closing-banner .lumiere-button {
        margin-top: 32px;
    }
}

@media (max-width: 520px) {
    .lumiere-hero__gallery {
        grid-template-rows: 340px 210px;
    }

    .lumiere-hero__tile span {
        font-size: 23px;
    }

    .lumiere-intro,
    .lumiere-collections {
        padding-top: 78px;
        padding-bottom: 85px;
    }

    .lumiere-category-grid {
        gap: 24px 12px;
    }

    .lumiere-category-card h3 {
        font-size: 24px;
    }

    .lumiere-category-card__body span {
        font-size: 9px;
    }
}

/* 1.1 refinements: restore the Astra header and reduce the hero scale */
body.home .ast-theme-transparent-header #masthead,
body.home #masthead {
    position: relative !important;
    inset: auto !important;
    z-index: 1000;
    background: #15120f !important;
    border-bottom: 1px solid rgba(21,18,15,.28);
}

body.home #masthead .ast-primary-header-bar,
body.home #masthead .site-primary-header-wrap,
body.home #masthead .ast-builder-grid-row {
    background: #15120f !important;
}

body.home #masthead .site-logo-img img,
body.home #masthead .custom-logo-link img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 82px;
    width: auto;
}

body.home #masthead .main-header-menu > .menu-item > .menu-link,
body.home #masthead .ast-builder-menu-1 .menu-item > .menu-link,
body.home #masthead .ast-header-account-wrap,
body.home #masthead .ast-icon-shopping-bag,
body.home #masthead .ast-menu-toggle {
    color: #f7f0e2 !important;
}

body.home #masthead .main-header-menu > .current-menu-item > .menu-link,
body.home #masthead .main-header-menu > .menu-item > .menu-link:hover,
body.home #masthead .ast-builder-menu-1 .menu-item > .menu-link:hover {
    color: #15120f !important;
}

body.home #masthead .ast-site-header-cart .ast-addon-cart-wrap,
body.home #masthead .ast-site-header-cart .ast-cart-menu-wrap {
    color: #15120f !important;
}

body.home .site-content,
body.home #content {
    margin-top: 0 !important;
}

.lumiere-homepage {
    background:
        radial-gradient(circle at 12% 5%, rgba(21,18,15,.08), transparent 27%),
        var(--lumiere-paper);
}

.lumiere-hero {
    grid-template-columns: minmax(420px, .88fr) minmax(560px, 1.12fr);
    min-height: 610px;
    max-height: 690px;
    border-bottom: 1px solid rgba(21,18,15,.18);
    background: linear-gradient(135deg, #f8f3ea 0%, #f1e8d9 100%);
}

.lumiere-hero__content {
    position: relative;
    min-height: 610px;
    padding: 70px clamp(48px, 6vw, 96px);
}

.lumiere-hero__content::before {
    width: 64px;
    height: 1px;
    margin-bottom: 24px;
    content: "";
    background: var(--lumiere-gold);
}

.lumiere-hero h1 {
    max-width: 590px;
    font-size: clamp(48px, 4.5vw, 72px);
    letter-spacing: -.025em;
}

.lumiere-hero__text {
    max-width: 520px;
    margin: 23px 0 30px;
    color: #504a43;
    font-size: 15px;
    line-height: 1.75;
}

.lumiere-button {
    min-height: 48px;
    padding: 0 28px;
    border-color: #2a241f;
    background: #2a241f;
}

.lumiere-hero__gallery {
    min-height: 610px;
    max-height: 690px;
    gap: 2px;
    padding: 0;
    background: #15120f;
}

.lumiere-hero__tile {
    min-height: 230px;
}

.lumiere-hero__tile::after {
    background: linear-gradient(to top, rgba(15, 12, 9, .68), rgba(15, 12, 9, .03) 58%);
}

.lumiere-hero__tile span {
    right: 25px;
    bottom: 22px;
    left: 25px;
    font-size: 26px;
    letter-spacing: .01em;
}

.lumiere-intro {
    max-width: 960px;
    padding: 90px 30px 95px;
}

.lumiere-intro::after {
    display: block;
    width: 70px;
    height: 1px;
    margin: 38px auto 0;
    content: "";
    background: var(--lumiere-gold);
}

.lumiere-intro h2,
.lumiere-section-heading h2,
.lumiere-closing-banner h2 {
    font-size: clamp(40px, 4.2vw, 60px);
    letter-spacing: -.018em;
}

.lumiere-collections {
    padding-top: 85px;
    background: linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
    border-top: 1px solid rgba(21,18,15,.14);
}

.lumiere-tabs {
    background: rgba(255,255,255,.72);
    box-shadow: 0 14px 42px rgba(30, 23, 16, .045);
}

.lumiere-category-card__image {
    border: 1px solid rgba(21,18,15,.16);
    background: #f1ebe1;
    box-shadow: 0 18px 40px rgba(38, 29, 20, .075);
}

.lumiere-category-card h3 {
    font-size: 28px;
}

@media (max-width: 1100px) {
    .lumiere-hero {
        max-height: none;
        grid-template-columns: 1fr;
    }

    .lumiere-hero__content {
        min-height: 470px;
        padding: 72px clamp(30px, 7vw, 80px);
    }

    .lumiere-hero__gallery {
        min-height: 560px;
        max-height: none;
    }
}

@media (max-width: 780px) {
    body.home #masthead .site-logo-img img,
    body.home #masthead .custom-logo-link img {
        max-height: 64px;
    }

    .lumiere-hero__content {
        min-height: 430px;
        padding: 62px 24px 58px;
    }

    .lumiere-hero h1 {
        font-size: clamp(43px, 13vw, 56px);
    }

    .lumiere-hero__gallery {
        min-height: 500px;
    }
}


/* 1.6 advanced 3D collection cards */
.lumiere-category-grid {
    gap: 32px 24px;
}

.lumiere-category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 16px;
    border-radius: 28px;
    background: linear-gradient(180deg, #fffdf9 0%, #f4ebde 100%);
    box-shadow:
        0 24px 42px rgba(23, 18, 11, 0.08),
        0 8px 18px rgba(23, 18, 11, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    overflow: hidden;
    transform: perspective(1200px) translateY(0) rotateX(0) rotateY(0);
    transform-style: preserve-3d;
    transition: transform .35s ease, box-shadow .35s ease;
}

.lumiere-category-card::before {
    position: absolute;
    top: -55%;
    right: -12%;
    width: 68%;
    height: 80%;
    content: "";
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21,18,15,0.16) 0%, rgba(21,18,15,0) 72%);
    pointer-events: none;
}

.lumiere-category-card::after {
    position: absolute;
    inset: 0;
    content: "";
    border-radius: 28px;
    box-shadow: inset 0 0 0 1px rgba(21,18,15,0.12);
    pointer-events: none;
}

.lumiere-category-card__image {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 22px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(246,240,229,0.95) 100%),
        radial-gradient(circle at top left, rgba(255,255,255,0.9), rgba(255,255,255,0));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.95),
        inset 0 -14px 28px rgba(21,18,15,0.08),
        0 8px 18px rgba(23, 18, 11, 0.05);
    z-index: 1;
}

.lumiere-category-card__image::before {
    position: absolute;
    inset: 12px;
    content: "";
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255,255,255,0.55), rgba(255,255,255,0));
    pointer-events: none;
}

.lumiere-category-card__image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    filter: drop-shadow(0 14px 18px rgba(34, 26, 16, 0.18));
    transition: transform .45s ease, filter .45s ease;
}

.lumiere-category-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px 4px 4px;
}

.lumiere-category-card h3 {
    font-size: clamp(25px, 2vw, 34px);
    letter-spacing: .01em;
}

.lumiere-category-card__body span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: #6d5630;
    box-shadow: inset 0 0 0 1px rgba(21,18,15,0.28);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    white-space: nowrap;
}

.lumiere-category-card:hover {
    transform: perspective(1200px) translateY(-8px) rotateX(1.2deg) rotateY(-1.2deg);
    box-shadow:
        0 30px 54px rgba(23, 18, 11, 0.13),
        0 12px 24px rgba(23, 18, 11, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.lumiere-category-card:hover .lumiere-category-card__image img {
    transform: scale(1.03) translateY(-2px);
    filter: drop-shadow(0 18px 22px rgba(34, 26, 16, 0.24));
}

@media (max-width: 780px) {
    .lumiere-category-grid {
        gap: 22px 14px;
    }

    .lumiere-category-card {
        padding: 12px;
        border-radius: 22px;
    }

    .lumiere-category-card__image {
        padding: 14px;
        border-radius: 16px;
    }

    .lumiere-category-card__body {
        display: block;
        padding: 16px 2px 2px;
    }

    .lumiere-category-card__body span {
        margin-top: 10px;
    }
}


/* 1.7 stacked collection navigation and exact-fit image cards */
.lumiere-tabs {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 253, 249, .96);
    backdrop-filter: blur(14px);
}

.lumiere-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #716b63 !important;
    text-decoration: none !important;
}

.lumiere-tab.is-active {
    color: var(--lumiere-ink) !important;
}

.lumiere-stacked-collections {
    display: grid;
    gap: 88px;
    padding-top: 58px;
}

.lumiere-collection-section {
    scroll-margin-top: 110px;
}

.lumiere-collection-section + .lumiere-collection-section {
    padding-top: 70px;
    border-top: 1px solid rgba(21,18,15,.18);
}

.lumiere-collection-section__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.lumiere-collection-section__heading h3 {
    font-size: clamp(42px, 4vw, 62px);
}

.lumiere-collection-section__heading > a {
    flex: 0 0 auto;
    color: #6d5630 !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-decoration: none !important;
    text-transform: uppercase;
}

.lumiere-category-card {
    min-width: 0;
}

.lumiere-category-card__image {
    padding: 0;
    background: #f4ecdf;
}

.lumiere-category-card__image::before {
    display: none;
}

.lumiere-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center;
    filter: none;
}

.lumiere-category-card:hover .lumiere-category-card__image img {
    transform: scale(1.025);
    filter: none;
}

.lumiere-category-card__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.lumiere-category-card h4 {
    min-width: 0;
    margin: 0;
    color: var(--lumiere-ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(25px, 2vw, 34px);
    font-weight: 600;
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.lumiere-category-card__body span {
    max-width: 132px;
    min-width: 0;
    padding: 0 10px;
    font-size: 9px;
    letter-spacing: .1em;
    white-space: normal;
    text-align: center;
}

@media (max-width: 1100px) {
    .lumiere-category-card__body {
        grid-template-columns: 1fr;
    }

    .lumiere-category-card__body span {
        justify-self: start;
        max-width: 100%;
    }
}

@media (max-width: 780px) {
    .lumiere-tabs {
        position: static;
    }

    .lumiere-stacked-collections {
        gap: 62px;
        padding-top: 42px;
    }

    .lumiere-collection-section {
        scroll-margin-top: 24px;
    }

    .lumiere-collection-section + .lumiere-collection-section {
        padding-top: 48px;
    }

    .lumiere-collection-section__heading {
        display: block;
    }

    .lumiere-collection-section__heading > a {
        display: inline-block;
        margin-top: 14px;
    }
}


/* 1.8 small text refinements for long category names and CTA */
.lumiere-category-card h4 {
    font-size: clamp(20px, 1.7vw, 28px);
    line-height: 0.98;
}

.lumiere-category-card__body span {
    max-width: none;
    min-width: 152px;
    padding: 0 14px;
    font-size: 8px;
    letter-spacing: .08em;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .lumiere-category-card__body span {
        min-width: 140px;
    }
}

@media (max-width: 780px) {
    .lumiere-category-card h4 {
        font-size: 22px;
    }

    .lumiere-category-card__body span {
        min-width: 132px;
        font-size: 8px;
    }
}


/* 1.9 fixes: hero back to 1 large + 3 stacked, and card text/button stacked */
.lumiere-hero__gallery {
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr) !important;
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
    min-height: 610px;
    max-height: 690px;
}

.lumiere-hero__tile--1 {
    grid-column: 1;
    grid-row: 1 / 4 !important;
}

.lumiere-hero__tile--2 {
    grid-column: 2;
    grid-row: 1;
}

.lumiere-hero__tile--3 {
    grid-column: 2;
    grid-row: 2;
}

.lumiere-hero__tile--4 {
    grid-column: 2;
    grid-row: 3;
}

.lumiere-category-card__body {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 10px;
}

.lumiere-category-card h4 {
    width: 100%;
    margin: 0;
    font-size: clamp(20px, 1.65vw, 26px) !important;
    line-height: 0.98;
    word-break: break-word;
}

.lumiere-category-card__body span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: 0 !important;
    max-width: 100% !important;
    width: auto;
    padding: 0 12px !important;
    font-size: 8px !important;
    letter-spacing: .08em !important;
    white-space: nowrap !important;
}

@media (max-width: 1100px) {
    .lumiere-hero__gallery {
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: 320px 220px 220px !important;
        min-height: auto;
        max-height: none;
    }

    .lumiere-hero__tile--1 {
        grid-column: 1 / 3;
        grid-row: 1 !important;
    }

    .lumiere-hero__tile--2 {
        grid-column: 1;
        grid-row: 2;
    }

    .lumiere-hero__tile--3 {
        grid-column: 2;
        grid-row: 2;
    }

    .lumiere-hero__tile--4 {
        grid-column: 1 / 3;
        grid-row: 3;
    }
}

@media (max-width: 780px) {
    .lumiere-category-card h4 {
        font-size: 21px !important;
    }

    .lumiere-category-card__body span {
        font-size: 7.5px !important;
        padding: 0 11px !important;
    }
}


/* 2.0 final alignment override */
.lumiere-homepage .lumiere-category-card .lumiere-category-card__body {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 92px;
    gap: 11px !important;
    padding: 18px 8px 8px !important;
    text-align: center !important;
}

.lumiere-homepage .lumiere-category-card .lumiere-category-card__body h4 {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    font-size: clamp(19px, 1.55vw, 25px) !important;
    line-height: 1 !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
}

.lumiere-homepage .lumiere-category-card .lumiere-category-card__body span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    width: auto !important;
    min-width: 150px !important;
    max-width: calc(100% - 12px) !important;
    min-height: 34px !important;
    margin: 0 auto !important;
    padding: 0 12px !important;
    white-space: nowrap !important;
    text-align: center !important;
    font-size: 8px !important;
    line-height: 1 !important;
    letter-spacing: .07em !important;
}

@media (max-width: 780px) {
    .lumiere-homepage .lumiere-category-card .lumiere-category-card__body {
        min-height: 86px;
        padding: 15px 6px 7px !important;
    }

    .lumiere-homepage .lumiere-category-card .lumiere-category-card__body h4 {
        font-size: 20px !important;
    }

    .lumiere-homepage .lumiere-category-card .lumiere-category-card__body span {
        min-width: 132px !important;
        font-size: 7px !important;
    }
}


/* 2.1 browse all parent categories */
.lumiere-all-categories-action {
    display: flex;
    justify-content: center;
    padding-top: 72px;
}

.lumiere-button--gold {
    border-color: var(--lumiere-gold);
    background: var(--lumiere-gold);
    color: #fff !important;
}

.lumiere-button--gold:hover {
    border-color: var(--lumiere-gold);
    background: transparent;
    color: var(--lumiere-gold) !important;
}

.lumiere-all-categories {
    scroll-margin-top: 110px;
    padding-top: 90px;
}

.lumiere-all-categories[hidden] {
    display: none !important;
}

@media (max-width: 780px) {
    .lumiere-all-categories-action {
        padding-top: 50px;
    }

    .lumiere-all-categories {
        padding-top: 64px;
    }
}


/* 2.9 subcategory carousel: one horizontal line with automatic sliding */
.lumiere-category-slider {
    position: relative;
    width: 100%;
}

.lumiere-category-slider__viewport {
    overflow: hidden;
    width: 100%;
    padding: 10px 4px 28px;
}

.lumiere-category-slider .lumiere-category-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 24px !important;
    width: max-content;
    transform: translateZ(0);
}

.lumiere-category-slider .lumiere-category-card {
    flex: 0 0 calc((min(100vw - 200px, 1468px) - 72px) / 4);
    width: calc((min(100vw - 200px, 1468px) - 72px) / 4);
    min-width: 0;
}

.lumiere-category-slider__controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: -4px;
}

.lumiere-slider-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(21,18,15,.35);
    border-radius: 50%;
    background: #fffdf9;
    color: var(--lumiere-gold);
    box-shadow: 0 8px 22px rgba(23, 18, 11, .07);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.lumiere-slider-arrow:hover,
.lumiere-slider-arrow:focus-visible {
    transform: translateY(-2px);
    background: var(--lumiere-gold);
    color: #fff;
    box-shadow: 0 12px 28px rgba(21,18,15,.22);
}

.lumiere-category-slider:not(.is-scrollable) .lumiere-category-slider__controls {
    display: none;
}

@media (max-width: 1180px) {
    .lumiere-category-slider .lumiere-category-card {
        flex-basis: calc((100vw - 112px - 48px) / 3);
        width: calc((100vw - 112px - 48px) / 3);
    }
}

@media (max-width: 780px) {
    .lumiere-category-slider__viewport {
        overflow-x: auto;
        overflow-y: hidden;
        padding-right: 18px;
        padding-bottom: 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
    }

    .lumiere-category-slider__viewport::-webkit-scrollbar {
        display: none;
    }

    .lumiere-category-slider .lumiere-category-grid {
        gap: 14px !important;
    }

    .lumiere-category-slider .lumiere-category-card {
        flex: 0 0 min(82vw, 330px);
        width: min(82vw, 330px);
        scroll-snap-align: start;
    }

    .lumiere-category-slider__controls {
        justify-content: center;
        margin-top: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lumiere-category-slider .lumiere-category-grid,
    .lumiere-category-slider__viewport {
        scroll-behavior: auto !important;
    }
}


/* 3.0 carousel reliability + always-visible manual controls */
.lumiere-category-slider {
    position: relative;
    padding-inline: 24px;
}

.lumiere-category-slider__viewport {
    overflow-x: auto !important;
    overflow-y: visible;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-x: contain;
}

.lumiere-category-slider__viewport::-webkit-scrollbar {
    display: none;
}

.lumiere-category-slider .lumiere-category-grid {
    width: max-content !important;
}

.lumiere-category-slider__controls,
.lumiere-category-slider:not(.is-scrollable) .lumiere-category-slider__controls {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    z-index: 20;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    pointer-events: none;
    transform: translateY(-50%);
}

.lumiere-slider-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(21,18,15,.48);
    background: rgba(255, 253, 249, .96);
    box-shadow: 0 10px 30px rgba(23, 18, 11, .16);
    pointer-events: auto;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.lumiere-slider-arrow--prev {
    transform: translateX(-4px);
}

.lumiere-slider-arrow--next {
    transform: translateX(4px);
}

.lumiere-slider-arrow--prev:hover,
.lumiere-slider-arrow--prev:focus-visible {
    transform: translateX(-4px) scale(1.06);
}

.lumiere-slider-arrow--next:hover,
.lumiere-slider-arrow--next:focus-visible {
    transform: translateX(4px) scale(1.06);
}

.lumiere-category-slider .is-carousel-clone {
    pointer-events: auto;
}

@media (max-width: 780px) {
    .lumiere-category-slider {
        padding-inline: 16px;
    }

    .lumiere-category-slider__controls,
    .lumiere-category-slider:not(.is-scrollable) .lumiere-category-slider__controls {
        top: 45%;
        justify-content: space-between;
    }

    .lumiere-slider-arrow {
        width: 42px;
        height: 42px;
    }
}


/* 3.1 carousel: exactly 3 cards visible, one-card advance, premium controls */
.lumiere-category-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0 22px;
    box-sizing: border-box;
}

.lumiere-category-slider__viewport {
    width: 100%;
    max-width: 100%;
    overflow-x: auto !important;
    overflow-y: visible;
    padding: 12px 0 30px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-sizing: border-box;
}

.lumiere-category-slider__viewport::-webkit-scrollbar {
    display: none;
}

.lumiere-category-slider .lumiere-category-grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: calc((100% - 48px) / 3) !important;
    grid-template-columns: none !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

.lumiere-category-slider .lumiere-category-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: none !important;
    box-sizing: border-box;
}

.lumiere-category-slider__controls,
.lumiere-category-slider:not(.is-scrollable) .lumiere-category-slider__controls {
    position: absolute;
    top: 46%;
    right: 6px;
    left: 6px;
    z-index: 30;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    pointer-events: none;
    transform: translateY(-50%);
}

.lumiere-slider-arrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 1px solid rgba(21,18,15,.55);
    border-radius: 999px;
    background: linear-gradient(145deg, rgba(255,253,249,.98), rgba(244,235,222,.96));
    color: #15120f;
    box-shadow:
        0 14px 34px rgba(30, 23, 14, .18),
        inset 0 1px 0 rgba(255,255,255,.95),
        inset 0 0 0 5px rgba(21,18,15,.055);
    pointer-events: auto;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.lumiere-slider-arrow::after {
    position: absolute;
    inset: 5px;
    content: "";
    border: 1px solid rgba(21,18,15,.16);
    border-radius: inherit;
    pointer-events: none;
}

.lumiere-slider-arrow__icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 24px;
    height: 24px;
}

.lumiere-slider-arrow__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lumiere-slider-arrow--prev,
.lumiere-slider-arrow--next {
    transform: none;
}

.lumiere-slider-arrow:hover,
.lumiere-slider-arrow:focus-visible,
.lumiere-slider-arrow--prev:hover,
.lumiere-slider-arrow--prev:focus-visible,
.lumiere-slider-arrow--next:hover,
.lumiere-slider-arrow--next:focus-visible {
    transform: translateY(-2px) scale(1.055);
    border-color: rgba(21,18,15,.9);
    background: linear-gradient(145deg, #15120f, #15120f);
    color: #fff;
    box-shadow:
        0 18px 40px rgba(21,18,15,.28),
        inset 0 1px 0 rgba(255,255,255,.28);
}

.lumiere-slider-arrow:active {
    transform: scale(.97);
}

@media (max-width: 980px) {
    .lumiere-category-slider .lumiere-category-grid {
        grid-auto-columns: calc((100% - 18px) / 2) !important;
        gap: 18px !important;
    }

    .lumiere-category-slider {
        padding-inline: 18px;
    }

    .lumiere-slider-arrow {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 620px) {
    .lumiere-category-slider {
        padding-inline: 12px;
    }

    .lumiere-category-slider .lumiere-category-grid {
        grid-auto-columns: 84% !important;
        gap: 14px !important;
    }

    .lumiere-category-slider__controls,
    .lumiere-category-slider:not(.is-scrollable) .lumiere-category-slider__controls {
        right: 2px;
        left: 2px;
    }

    .lumiere-slider-arrow {
        width: 44px;
        height: 44px;
    }

    .lumiere-slider-arrow__icon {
        width: 20px;
        height: 20px;
    }
}


/* 3.2: arrows outside cards + full-image fit throughout homepage */
.lumiere-category-slider {
    padding-left: 76px !important;
    padding-right: 76px !important;
}

.lumiere-category-slider__controls,
.lumiere-category-slider:not(.is-scrollable) .lumiere-category-slider__controls {
    left: 10px !important;
    right: 10px !important;
    top: 46%;
}

.lumiere-slider-arrow {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, rgba(255,253,249,.99), rgba(244,235,222,.98));
    box-shadow:
        0 16px 34px rgba(30, 23, 14, .16),
        inset 0 1px 0 rgba(255,255,255,.96),
        inset 0 0 0 5px rgba(21,18,15,.05);
}

/* Never crop homepage imagery. */
.lumiere-category-card__image {
    background: #f7f1e7;
}

.lumiere-category-card__image img,
.lumiere-category-slider .lumiere-category-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
}

.lumiere-category-card:hover .lumiere-category-card__image img,
.lumiere-category-slider .lumiere-category-card:hover .lumiere-category-card__image img {
    transform: scale(1.015) !important;
}

.lumiere-hero__tile {
    background: #15120f;
}

.lumiere-hero__tile img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
}

@media (max-width: 980px) {
    .lumiere-category-slider {
        padding-left: 62px !important;
        padding-right: 62px !important;
    }

    .lumiere-category-slider__controls,
    .lumiere-category-slider:not(.is-scrollable) .lumiere-category-slider__controls {
        left: 6px !important;
        right: 6px !important;
    }
}

@media (max-width: 620px) {
    .lumiere-category-slider {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    .lumiere-slider-arrow {
        width: 40px;
        height: 40px;
    }
}


/* 6.7 Homepage hero: one large image with unlimited synchronized admin-managed slides. */
.lumiere-hero--slider {
    grid-template-columns: minmax(420px, .88fr) minmax(560px, 1.12fr) !important;
    min-height: 610px !important;
    max-height: 690px !important;
    overflow: hidden;
}

.lumiere-hero--slider .lumiere-hero__content {
    position: relative;
    z-index: 5;
    min-height: 610px !important;
    transition: opacity .38s ease, transform .38s cubic-bezier(.2,.75,.2,1), filter .38s ease;
}

.lumiere-hero--slider .lumiere-hero__content.is-changing {
    opacity: .12;
    transform: translateY(11px);
    filter: blur(1.5px);
}

.lumiere-hero__visual {
    position: relative;
    min-width: 0;
    min-height: 610px;
    max-height: 690px;
    overflow: hidden;
    background: #211c17;
    isolation: isolate;
}

.lumiere-hero__slides,
.lumiere-hero__slide {
    position: absolute;
    inset: 0;
}

.lumiere-hero__slide {
    z-index: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.025);
    transition: opacity 1.05s ease, visibility 1.05s ease, transform 6.8s cubic-bezier(.17,.67,.22,1);
}

.lumiere-hero__slide.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.lumiere-hero__slide-backdrop {
    position: absolute;
    inset: -28px;
    z-index: 0;
    background-image: var(--lumiere-hero-bg);
    background-size: cover;
    background-position: center;
    filter: blur(24px) brightness(.58) saturate(.85);
    transform: scale(1.08);
    opacity: .58;
}

.lumiere-hero__slide::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(16,13,10,.1), transparent 28%),
        linear-gradient(to top, rgba(16,13,10,.16), transparent 32%);
}

.lumiere-hero__slide-image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center;
    filter: drop-shadow(0 18px 34px rgba(0,0,0,.16));
}

.lumiere-hero__progress {
    position: absolute;
    right: 34px;
    bottom: 24px;
    left: 34px;
    z-index: 8;
    height: 2px;
    overflow: hidden;
    background: rgba(255,255,255,.26);
}

.lumiere-hero__progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: #15120f;
    transform: scaleX(0);
    transform-origin: left center;
}

.lumiere-hero__progress span.is-running {
    animation: lumiereHeroProgress 6s linear forwards;
}

@keyframes lumiereHeroProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.lumiere-hero__counter {
    position: absolute;
    top: 24px;
    right: 26px;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    background: rgba(16,13,10,.32);
    backdrop-filter: blur(9px);
    color: #fff;
    font: 600 9px/1 Montserrat,Arial,sans-serif;
    letter-spacing: .12em;
}

.lumiere-hero__counter i {
    width: 20px;
    height: 1px;
    background: rgba(255,255,255,.46);
}

@media (max-width: 1100px) {
    .lumiere-hero--slider {
        grid-template-columns: 1fr !important;
        max-height: none !important;
    }
    .lumiere-hero--slider .lumiere-hero__content {
        min-height: 520px !important;
    }
    .lumiere-hero__visual {
        min-height: 560px;
        max-height: none;
    }
}

@media (max-width: 780px) {
    .lumiere-hero--slider .lumiere-hero__content {
        min-height: 470px !important;
    }
    .lumiere-hero__visual {
        min-height: 440px;
    }
    .lumiere-hero__progress {
        right: 20px;
        bottom: 18px;
        left: 20px;
    }
    .lumiere-hero__counter {
        top: 18px;
        right: 18px;
    }
}

@media (max-width: 520px) {
    .lumiere-hero__visual {
        min-height: 360px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lumiere-hero__slide,
    .lumiere-hero--slider .lumiere-hero__content {
        transition-duration: .01ms !important;
    }
    .lumiere-hero__progress span.is-running {
        animation: none !important;
    }
}

/* 6.7.1 Hero stability: identical dimensions across every slide regardless of copy/image proportions. */
@media (min-width: 1101px) {
    .lumiere-hero--slider {
        height: 650px !important;
        min-height: 650px !important;
        max-height: 650px !important;
        align-items: stretch !important;
    }

    .lumiere-hero--slider .lumiere-hero__content,
    .lumiere-hero--slider .lumiere-hero__visual {
        height: 650px !important;
        min-height: 650px !important;
        max-height: 650px !important;
    }
}

/* Keep the copy footprint stable so a longer slide can never resize the hero. */
.lumiere-hero--slider .lumiere-hero__content {
    overflow: hidden;
}

.lumiere-hero--slider [data-hero-eyebrow],
.lumiere-hero--slider [data-hero-heading],
.lumiere-hero--slider [data-hero-text] {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.lumiere-hero--slider [data-hero-eyebrow] {
    -webkit-line-clamp: 2;
}

.lumiere-hero--slider [data-hero-heading] {
    -webkit-line-clamp: 3;
}

.lumiere-hero--slider [data-hero-text] {
    -webkit-line-clamp: 4;
}

/* Every uploaded hero image occupies the exact same visual canvas. */
.lumiere-hero--slider .lumiere-hero__slides,
.lumiere-hero--slider .lumiere-hero__slide,
.lumiere-hero--slider .lumiere-hero__slide-image {
    width: 100%;
    height: 100%;
}

.lumiere-hero--slider .lumiere-hero__slide-image {
    object-fit: contain !important;
    object-position: center center !important;
}

@media (min-width: 781px) and (max-width: 1100px) {
    .lumiere-hero--slider .lumiere-hero__content {
        height: 520px !important;
        min-height: 520px !important;
        max-height: 520px !important;
    }
    .lumiere-hero--slider .lumiere-hero__visual {
        height: 560px !important;
        min-height: 560px !important;
        max-height: 560px !important;
    }
}

@media (min-width: 521px) and (max-width: 780px) {
    .lumiere-hero--slider .lumiere-hero__content {
        height: 470px !important;
        min-height: 470px !important;
        max-height: 470px !important;
    }
    .lumiere-hero--slider .lumiere-hero__visual {
        height: 440px !important;
        min-height: 440px !important;
        max-height: 440px !important;
    }
}

@media (max-width: 520px) {
    .lumiere-hero--slider .lumiere-hero__content {
        height: 450px !important;
        min-height: 450px !important;
        max-height: 450px !important;
    }
    .lumiere-hero--slider .lumiere-hero__visual {
        height: 360px !important;
        min-height: 360px !important;
        max-height: 360px !important;
    }
}

/* 6.7.2 Mobile homepage category carousels: exactly one well-sized card per view. */
@media (max-width: 620px) {
    .lumiere-homepage .lumiere-category-slider {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    .lumiere-homepage .lumiere-category-slider__viewport {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px 0 26px !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0;
        box-sizing: border-box !important;
    }

    .lumiere-homepage .lumiere-category-slider .lumiere-category-grid {
        display: grid !important;
        grid-auto-flow: column !important;
        grid-auto-columns: 100% !important;
        grid-template-columns: none !important;
        gap: 14px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .lumiere-homepage .lumiere-category-slider .lumiere-category-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        scroll-snap-align: start;
        box-sizing: border-box !important;
    }

    .lumiere-homepage .lumiere-category-card__image {
        width: 100% !important;
        height: clamp(230px, 68vw, 320px) !important;
        min-height: 0 !important;
    }

    .lumiere-homepage .lumiere-category-card__body {
        min-height: 112px !important;
        padding: 18px 16px 20px !important;
    }

    .lumiere-homepage .lumiere-category-slider__controls,
    .lumiere-homepage .lumiere-category-slider:not(.is-scrollable) .lumiere-category-slider__controls {
        left: 2px !important;
        right: 2px !important;
        top: 45% !important;
    }

    .lumiere-homepage .lumiere-slider-arrow {
        width: 38px !important;
        height: 38px !important;
    }
}

/* 6.7.3 Mobile category carousel sizing correction: one compact card per view. */
@media (max-width: 620px) {
    .lumiere-homepage .lumiere-category-slider {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .lumiere-homepage .lumiere-category-slider__viewport {
        width: min(76vw, 290px) !important;
        max-width: min(76vw, 290px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 8px 0 22px !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        scroll-snap-type: x mandatory !important;
        box-sizing: border-box !important;
    }

    .lumiere-homepage .lumiere-category-slider .lumiere-category-grid {
        display: grid !important;
        grid-auto-flow: column !important;
        grid-auto-columns: 100% !important;
        grid-template-columns: none !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .lumiere-homepage .lumiere-category-slider .lumiere-category-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        scroll-snap-align: start !important;
        box-sizing: border-box !important;
    }

    .lumiere-homepage .lumiere-category-card__image {
        width: 100% !important;
        height: clamp(180px, 50vw, 215px) !important;
        min-height: 0 !important;
    }

    .lumiere-homepage .lumiere-category-card__body {
        min-height: 88px !important;
        padding: 13px 14px 15px !important;
    }

    .lumiere-homepage .lumiere-category-card h3 {
        font-size: clamp(22px, 6.4vw, 27px) !important;
        line-height: 1.05 !important;
        margin-bottom: 8px !important;
    }

    .lumiere-homepage .lumiere-category-card__body span {
        font-size: 10px !important;
        padding: 8px 13px !important;
    }

    .lumiere-homepage .lumiere-category-slider__controls,
    .lumiere-homepage .lumiere-category-slider:not(.is-scrollable) .lumiere-category-slider__controls {
        left: 6px !important;
        right: 6px !important;
        top: 43% !important;
    }

    .lumiere-homepage .lumiere-slider-arrow {
        width: 34px !important;
        height: 34px !important;
    }

    .lumiere-homepage .lumiere-slider-arrow__icon {
        width: 17px !important;
        height: 17px !important;
    }
}

/* 6.7.4 Mobile-only category carousel controls: compact card, professional arrows below. */
@media (max-width: 620px) {
    .lumiere-homepage .lumiere-category-slider {
        padding-left: 8px !important;
        padding-right: 8px !important;
        padding-bottom: 58px !important;
        overflow: visible !important;
    }

    .lumiere-homepage .lumiere-category-slider__viewport {
        width: min(76vw, 290px) !important;
        max-width: min(76vw, 290px) !important;
        margin-inline: auto !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
    }

    .lumiere-homepage .lumiere-category-slider__controls,
    .lumiere-homepage .lumiere-category-slider:not(.is-scrollable) .lumiere-category-slider__controls {
        top: auto !important;
        bottom: 6px !important;
        left: 50% !important;
        right: auto !important;
        width: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 14px !important;
        transform: translateX(-50%) !important;
        pointer-events: none !important;
    }

    .lumiere-homepage .lumiere-slider-arrow {
        width: 38px !important;
        height: 38px !important;
        flex: 0 0 38px !important;
        margin: 0 !important;
        pointer-events: auto !important;
        box-shadow: 0 8px 22px rgba(30, 23, 14, .12), inset 0 1px 0 rgba(255,255,255,.95) !important;
    }

    .lumiere-homepage .lumiere-slider-arrow__icon {
        width: 17px !important;
        height: 17px !important;
    }
}

/* v6.8 - Homepage featured products replaces the old Shop by Collection heading/tabs. */
.lumiere-featured-products {
    margin: 0 auto 18px;
    padding: 0 0 54px;
    border-bottom: 1px solid rgba(21,18,15,.18);
}

.lumiere-featured-products__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.lumiere-featured-products__heading .lumiere-eyebrow {
    margin: 0;
}

.lumiere-featured-products__heading > a {
    color: #6d5630 !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-decoration: none !important;
    text-transform: uppercase;
}

.lumiere-featured-products__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 28px);
}

.lumiere-featured-product {
    min-width: 0;
}

.lumiere-featured-product__image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(21,18,15,.15);
    border-radius: 18px;
    background: #f6f1e8;
    box-shadow: 0 14px 34px rgba(29, 22, 16, .055);
}

.lumiere-featured-product__image img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: contain;
    transition: transform .45s cubic-bezier(.2,.75,.2,1);
}

.lumiere-featured-product:hover .lumiere-featured-product__image img {
    transform: scale(1.025);
}

.lumiere-featured-product__body {
    padding: 13px 4px 0;
    text-align: center;
}

.lumiere-featured-product__body h3 {
    min-height: 2.5em;
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(20px, 1.65vw, 27px);
    font-weight: 500;
    line-height: 1.08;
}

.lumiere-featured-product__body h3 a {
    color: var(--lumiere-ink) !important;
    text-decoration: none !important;
}

.lumiere-featured-product__price {
    margin-top: 8px;
    color: #15120f;
    font-size: 13px;
    font-weight: 600;
}

.lumiere-featured-products + .lumiere-stacked-collections {
    padding-top: 48px;
}

@media (max-width: 980px) {
    .lumiere-featured-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .lumiere-featured-products {
        padding-bottom: 38px;
    }

    .lumiere-featured-products__heading {
        align-items: flex-end;
        margin-bottom: 18px;
    }

    .lumiere-featured-products__heading > a {
        font-size: 9px;
    }

    .lumiere-featured-products__grid {
        gap: 12px;
    }

    .lumiere-featured-product__image {
        border-radius: 13px;
    }

    .lumiere-featured-product__image img {
        padding: 6px;
    }

    .lumiere-featured-product__body {
        padding-top: 9px;
    }

    .lumiere-featured-product__body h3 {
        min-height: 2.4em;
        font-size: 18px;
    }

    .lumiere-featured-product__price {
        margin-top: 5px;
        font-size: 11px;
    }

    .lumiere-featured-products + .lumiere-stacked-collections {
        padding-top: 32px;
    }
}


/* v6.8.2 - Featured products: 3-column desktop grid with centered View All button. */
.lumiere-featured-products__heading {
    justify-content: flex-start;
}

.lumiere-featured-products__action {
    display: flex;
    justify-content: center;
    padding-top: 42px;
}

@media (max-width: 980px) {
    .lumiere-featured-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .lumiere-featured-products__grid {
        grid-template-columns: 1fr;
        max-width: 330px;
        margin-inline: auto;
    }

    .lumiere-featured-products__action {
        padding-top: 30px;
    }
}

/* v6.8.3 - Definitive Featured Selection grid/layout fix.
   Desktop must be exactly 3 products per row and the CTA belongs below the entire grid. */
.lumiere-featured-products {
    width: 100%;
}

.lumiere-featured-products__grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    gap: clamp(26px, 2.5vw, 42px) !important;
    align-items: start;
}

.lumiere-featured-product {
    width: 100%;
    min-width: 0;
    margin: 0;
}

.lumiere-featured-products__action {
    display: flex !important;
    width: 100% !important;
    clear: both;
    align-items: center;
    justify-content: center !important;
    margin: 0 !important;
    padding: 54px 0 0 !important;
    text-align: center !important;
}

.lumiere-featured-products__action .lumiere-button {
    float: none !important;
    margin: 0 auto !important;
}

@media (max-width: 980px) {
    .lumiere-featured-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 24px !important;
    }

    .lumiere-featured-products__action {
        padding-top: 42px !important;
    }
}

@media (max-width: 560px) {
    .lumiere-featured-products__grid {
        grid-template-columns: 1fr !important;
        width: min(100%, 330px) !important;
        margin-inline: auto !important;
        gap: 24px !important;
    }

    .lumiere-featured-products__action {
        padding-top: 34px !important;
    }
}


/* v6.11.0 — homepage hierarchy + 50/50 Egermann editorial feature */
.lumiere-featured-products__heading .lumiere-eyebrow {
    font-size: 15px !important;
    letter-spacing: .17em;
}

.lumiere-categories-heading {
    margin: 22px auto 4px;
    text-align: center;
}

.lumiere-categories-heading h2 {
    margin: 0;
    font-size: clamp(46px, 5vw, 72px);
    letter-spacing: -.02em;
}

.lumiere-categories-heading::after {
    display: block;
    width: 58px;
    height: 1px;
    margin: 20px auto 0;
    content: "";
    background: var(--lumiere-gold);
}

.lumiere-featured-products + .lumiere-categories-heading {
    padding-top: 42px;
}

.lumiere-categories-heading + .lumiere-stacked-collections {
    padding-top: 54px;
}

.lumiere-collection-section__heading .lumiere-eyebrow {
    display: none !important;
}

.lumiere-egermann-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
    min-height: 560px;
    background: #f7f2e9;
    border-top: 1px solid rgba(21,18,15,.14);
    border-bottom: 1px solid rgba(21,18,15,.14);
}

.lumiere-egermann-feature__copy,
.lumiere-egermann-feature__media {
    min-width: 0;
}

.lumiere-egermann-feature__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(58px, 7vw, 110px) clamp(36px, 7vw, 112px);
}

.lumiere-egermann-feature__copy h2 {
    margin: 0;
    font-size: clamp(58px, 6vw, 88px);
    letter-spacing: -.025em;
}

.lumiere-egermann-feature__copy > p:not(.lumiere-eyebrow) {
    max-width: 600px;
    margin: 26px 0 32px;
    color: #514a43;
    font-size: 16px;
    line-height: 1.9;
}

.lumiere-egermann-feature__media {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    min-height: 560px;
    overflow: hidden;
    background: #171514;
    cursor: pointer;
}

.lumiere-egermann-feature__video,
.lumiere-egermann-feature__media > img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
}

.lumiere-egermann-feature__video {
    background: #171514;
}

.lumiere-egermann-feature__play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.12));
    cursor: pointer;
    transition: background .3s ease, opacity .3s ease;
}

.lumiere-egermann-feature__play span {
    display: block;
    width: 68px;
    height: 68px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 50%;
    background: rgba(16,14,12,.38);
    box-shadow: 0 16px 36px rgba(0,0,0,.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lumiere-egermann-feature__play span::after {
    display: block;
    width: 0;
    height: 0;
    margin: 22px 0 0 27px;
    content: "";
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 17px solid #fff;
}

.lumiere-egermann-feature__media:hover .lumiere-egermann-feature__play {
    background: linear-gradient(180deg, rgba(0,0,0,.01), rgba(0,0,0,.05));
}

.lumiere-egermann-feature__media.is-playing .lumiere-egermann-feature__play {
    opacity: 0;
    pointer-events: none;
}

.lumiere-egermann-feature__admin-note {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(255,255,255,.92);
    color: #171514;
    font-size: 12px;
    text-align: center;
}

@media (max-width: 900px) {
    .lumiere-egermann-feature {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .lumiere-egermann-feature__copy {
        min-height: 430px;
        padding: 64px 30px;
    }

    .lumiere-egermann-feature__media,
    .lumiere-egermann-feature__video,
    .lumiere-egermann-feature__media > img {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 560px) {
    .lumiere-featured-products__heading .lumiere-eyebrow {
        font-size: 13px !important;
    }

    .lumiere-featured-products + .lumiere-categories-heading {
        padding-top: 30px;
    }

    .lumiere-categories-heading h2 {
        font-size: 48px;
    }

    .lumiere-categories-heading + .lumiere-stacked-collections {
        padding-top: 42px;
    }

    .lumiere-egermann-feature__copy {
        min-height: 390px;
        padding: 56px 24px;
    }

    .lumiere-egermann-feature__copy h2 {
        font-size: 58px;
    }

    .lumiere-egermann-feature__copy > p:not(.lumiere-eyebrow) {
        margin: 22px 0 28px;
        font-size: 15px;
        line-height: 1.8;
    }

    .lumiere-egermann-feature__play span {
        width: 58px;
        height: 58px;
    }

    .lumiere-egermann-feature__play span::after {
        margin: 18px 0 0 23px;
        border-top-width: 10px;
        border-bottom-width: 10px;
        border-left-width: 15px;
    }
}


/* v6.11.1 — compact Egermann editorial + homepage New Arrivals. */
/* Keep the original Crystal / Egermann / Plexi / Silver collection heading scale. */
.lumiere-collection-section__heading h3 {
    font-size: clamp(42px, 4vw, 62px) !important;
}

.lumiere-egermann-feature {
    min-height: 420px !important;
}

.lumiere-egermann-feature__copy {
    padding: clamp(38px, 4.4vw, 68px) clamp(34px, 5vw, 80px) !important;
}

.lumiere-egermann-feature__copy h2 {
    font-size: clamp(48px, 4.5vw, 66px) !important;
}

.lumiere-egermann-feature__copy > p:not(.lumiere-eyebrow) {
    max-width: 560px;
    margin: 18px 0 24px !important;
    font-size: 15px !important;
    line-height: 1.72 !important;
}

.lumiere-egermann-feature__media,
.lumiere-egermann-feature__video,
.lumiere-egermann-feature__media > img {
    min-height: 420px !important;
}

.lumiere-home-new-arrivals {
    padding: 82px clamp(24px, 6vw, 100px) 88px;
    background: #fffdf9;
}

.lumiere-home-new-arrivals .lumiere-featured-products {
    margin: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.lumiere-home-new-arrivals .lumiere-featured-products__heading .lumiere-eyebrow {
    font-size: 15px !important;
    letter-spacing: .17em;
}

@media (max-width: 900px) {
    .lumiere-egermann-feature__copy {
        min-height: 0 !important;
        padding: 48px 30px !important;
    }

    .lumiere-egermann-feature__media,
    .lumiere-egermann-feature__video,
    .lumiere-egermann-feature__media > img {
        min-height: 0 !important;
        aspect-ratio: 16 / 10;
    }

    .lumiere-home-new-arrivals {
        padding: 64px 30px 70px;
    }
}

@media (max-width: 560px) {
    .lumiere-collection-section__heading h3 {
        font-size: clamp(36px, 11vw, 48px) !important;
    }

    .lumiere-egermann-feature__copy {
        padding: 42px 24px !important;
    }

    .lumiere-egermann-feature__copy h2 {
        font-size: 50px !important;
    }

    .lumiere-egermann-feature__copy > p:not(.lumiere-eyebrow) {
        margin: 16px 0 22px !important;
        font-size: 14px !important;
        line-height: 1.7 !important;
    }

    .lumiere-home-new-arrivals {
        padding: 52px 22px 58px;
    }

    .lumiere-home-new-arrivals .lumiere-featured-products__heading .lumiere-eyebrow {
        font-size: 13px !important;
    }
}


/* v6.11.2 — Egermann feature video follows its own intrinsic dimensions. */
@media (min-width: 901px) {
    .lumiere-egermann-feature {
        min-height: 0 !important;
        align-items: start;
    }

    .lumiere-egermann-feature__media {
        align-self: start;
        min-height: 0 !important;
        height: auto !important;
        aspect-ratio: var(--lumiere-egermann-video-ratio, auto) !important;
        background: #171514;
    }

    .lumiere-egermann-feature__video {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: auto !important;
        object-fit: contain !important;
        background: #171514;
    }

    .lumiere-egermann-feature__media > img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        object-fit: contain !important;
    }

    .lumiere-egermann-feature__copy {
        min-height: 100%;
        align-self: stretch;
    }
}

@media (max-width: 900px) {
    .lumiere-egermann-feature__media {
        min-height: 0 !important;
        height: auto !important;
        aspect-ratio: var(--lumiere-egermann-video-ratio, auto) !important;
    }

    .lumiere-egermann-feature__video {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
        object-fit: contain !important;
    }
}


/* v6.11.5 — homepage feature videos use their own decoded opening frame. */
.lumiere-egermann-feature__media.has-first-frame-preview .lumiere-egermann-feature__video {
    visibility: visible !important;
    opacity: 1 !important;
}
.lumiere-egermann-feature__media:not(.is-playing) .lumiere-egermann-feature__video {
    display: block !important;
}


/* v6.12.6 — Egermann + Preciosa editorial sections: 70% video / 30% text. */
@media (min-width: 901px) {
    .lumiere-egermann-feature {
        grid-template-columns: minmax(0, 60%) minmax(0, 40%) !important;
        background: #fffdf9 !important;
    }

    .lumiere-egermann-feature__copy {
        background: transparent !important;
        padding: clamp(36px, 4vw, 60px) clamp(32px, 4vw, 58px) !important;
    }

    .lumiere-egermann-feature__media {
        width: 100% !important;
    }
}

/* Keep the text side visually identical to the website canvas on every size. */
.lumiere-egermann-feature,
.lumiere-egermann-feature__copy {
    background-color: #fffdf9 !important;
}


/* ============================================================
   v6.12.8 — HARD 60 / 40 layout for BOTH Egermann + Preciosa.
   New asset filename is used to bypass any stale 70/30 cache.
   ============================================================ */
@media (min-width: 901px) {
    body.home .lumiere-egermann-feature {
        display: grid !important;
        grid-template-columns: 3fr 2fr !important;
        grid-template-areas: "media copy" !important;
        width: 100% !important;
        max-width: none !important;
        background: #fffdf9 !important;
    }

    body.home .lumiere-egermann-feature > .lumiere-egermann-feature__media {
        grid-area: media !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
    }

    body.home .lumiere-egermann-feature > .lumiere-egermann-feature__copy {
        grid-area: copy !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        box-sizing: border-box !important;
        background: #fffdf9 !important;
        padding: clamp(38px, 4vw, 62px) clamp(34px, 4vw, 62px) !important;
    }
}


/* v6.12.9 — correct CTA colors on the dark "Made to be remembered" banner. */
.lumiere-occasion-banner .lumiere-button,
.lumiere-occasion-banner .button,
.lumiere-occasion-banner a[class*="button"],
.lumiere-home-banner .lumiere-button,
.lumiere-home-banner .button,
.lumiere-home-banner a[class*="button"] {
    background: #15120f !important;
    border: 1px solid #15120f !important;
    color: #15120f !important;
    opacity: 1 !important;
}

.lumiere-occasion-banner .lumiere-button:hover,
.lumiere-occasion-banner .lumiere-button:focus-visible,
.lumiere-occasion-banner .button:hover,
.lumiere-occasion-banner .button:focus-visible,
.lumiere-occasion-banner a[class*="button"]:hover,
.lumiere-occasion-banner a[class*="button"]:focus-visible,
.lumiere-home-banner .lumiere-button:hover,
.lumiere-home-banner .lumiere-button:focus-visible,
.lumiere-home-banner .button:hover,
.lumiere-home-banner .button:focus-visible,
.lumiere-home-banner a[class*="button"]:hover,
.lumiere-home-banner a[class*="button"]:focus-visible {
    background: transparent !important;
    border-color: #15120f !important;
    color: #15120f !important;
}


/* ============================================================
   v6.13.0 — Homepage editorial category rebuild
   ============================================================ */
:root {
    --heikaya-paper: #fffdf9;
    --heikaya-ink: #15120f;
    --heikaya-gold: #15120f;
}

/* The old intro copy has been removed from the template. */
.lumiere-homepage,
.lumiere-collections,
.lumiere-home-new-arrivals {
    background: var(--heikaya-paper) !important;
}

.lumiere-collections {
    padding-top: 72px !important;
    border-top: 0 !important;
}

/* Featured Selection + New Arrivals are real centered H2s. */
.lumiere-featured-products__heading {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 0 42px !important;
    text-align: center !important;
}

.lumiere-featured-products__heading h2 {
    margin: 0 !important;
    color: var(--heikaya-ink) !important;
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(36px, 3.1vw, 48px) !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    letter-spacing: -.015em !important;
    text-align: center !important;
    text-transform: none !important;
}

.lumiere-home-new-arrivals .lumiere-featured-products__heading h2 {
    font-size: clamp(36px, 3.1vw, 48px) !important;
}

/* One global heading before all main categories. */
.lumiere-categories-heading {
    margin: 98px auto 28px !important;
    text-align: center !important;
}

.lumiere-categories-heading h2 {
    margin: 0 !important;
    color: var(--heikaya-ink) !important;
    font-size: clamp(42px, 4vw, 58px) !important;
    text-align: center !important;
}

.lumiere-stacked-collections {
    gap: 0 !important;
    padding-top: 24px !important;
}

.lumiere-collection-section {
    padding: 76px 0 0 !important;
    border-top: 1px solid rgba(21,18,15,.08) !important;
}

.lumiere-collection-section:first-child {
    border-top: 0 !important;
    padding-top: 42px !important;
}

.lumiere-collection-section + .lumiere-collection-section {
    padding-top: 76px !important;
}

/* Parent category title: smaller, centered, clean. */
.lumiere-collection-section__heading {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin: 0 auto 32px !important;
    text-align: center !important;
}

.lumiere-collection-section__heading h3 {
    margin: 0 !important;
    color: var(--heikaya-ink) !important;
    font-size: clamp(32px, 2.8vw, 44px) !important;
    line-height: 1 !important;
    text-align: center !important;
}

.lumiere-collection-section__heading > a {
    margin: 0 !important;
    color: #15120f !important;
    font-size: 9px !important;
    letter-spacing: .16em !important;
}

/* Four subcategories per desktop slide. The visual card container is gone. */
.lumiere-category-slider {
    position: relative !important;
    padding: 0 36px !important;
}

.lumiere-category-slider__viewport {
    padding: 8px 0 28px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
}

.lumiere-category-slider .lumiere-category-grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: calc((100% - 54px) / 4) !important;
    gap: 18px !important;
    width: 100% !important;
}

.lumiere-category-slider .lumiere-category-card,
.lumiere-homepage .lumiere-category-card {
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.lumiere-category-card::before,
.lumiere-category-card::after {
    display: none !important;
}

.lumiere-category-card__image,
.lumiere-homepage .lumiere-category-card__image {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-shadow: none !important;
}

.lumiere-category-card__image img,
.lumiere-category-slider .lumiere-category-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: none !important;
}

.lumiere-category-card:hover .lumiere-category-card__image img {
    transform: scale(1.018) !important;
}

.lumiere-category-card__body,
.lumiere-homepage .lumiere-category-card .lumiere-category-card__body {
    display: block !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 14px 4px 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-align: center !important;
}

.lumiere-category-card h4,
.lumiere-homepage .lumiere-category-card .lumiere-category-card__body h4 {
    margin: 0 !important;
    color: var(--heikaya-ink) !important;
    font-size: clamp(19px, 1.45vw, 25px) !important;
    line-height: 1.05 !important;
    text-align: center !important;
}

.lumiere-category-card__body span {
    display: none !important;
}

/* Arrows are allowed over the subcategory imagery. */
.lumiere-category-slider__controls,
.lumiere-category-slider:not(.is-scrollable) .lumiere-category-slider__controls {
    top: 45% !important;
    right: 12px !important;
    left: 12px !important;
}

.lumiere-slider-arrow {
    width: 46px !important;
    height: 46px !important;
    background: rgba(255,253,249,.94) !important;
    color: #15120f !important;
    box-shadow: 0 10px 26px rgba(21,18,15,.14) !important;
}

/* Four editorial images after every main category. */
.heikaya-category-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    width: 100vw;
    margin: 52px 0 0 calc(50% - 50vw);
    padding: 0 8px;
    box-sizing: border-box;
}

.heikaya-category-gallery__item {
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    background: #f7f3ec;
}

.heikaya-category-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .45s cubic-bezier(.2,.7,.2,1);
}

.heikaya-category-gallery__item:hover img {
    transform: scale(1.025);
}

/* Full-width category video is the visual end of each category. */
.heikaya-category-video {
    position: relative;
    width: 100vw;
    aspect-ratio: 16 / 6.4;
    margin: 8px 0 0 calc(50% - 50vw);
    overflow: hidden;
    background: var(--heikaya-paper);
    cursor: pointer;
}

.heikaya-category-video__video,
.heikaya-category-video > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--heikaya-paper);
}

.heikaya-category-video__play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: linear-gradient(180deg, rgba(21,18,15,.02), rgba(21,18,15,.12));
    cursor: pointer;
    transition: opacity .25s ease, background .25s ease;
}

.heikaya-category-video__play span {
    position: relative;
    display: block;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(255,255,255,.76);
    border-radius: 50%;
    background: rgba(21,18,15,.48);
    box-shadow: 0 16px 38px rgba(0,0,0,.2);
    backdrop-filter: blur(7px);
}

.heikaya-category-video__play span::after {
    position: absolute;
    top: 50%;
    left: 53%;
    width: 0;
    height: 0;
    content: "";
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 18px solid #fff;
    transform: translate(-50%, -50%);
}

.heikaya-category-video.is-playing .heikaya-category-video__play {
    opacity: 0;
    pointer-events: none;
}

.heikaya-category-video__admin-note {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,253,249,.92);
    color: var(--heikaya-ink);
    font-size: 11px;
}

.lumiere-all-categories-action {
    padding-top: 70px !important;
    padding-bottom: 82px !important;
}

/* New Arrivals mirrors Featured Selection title treatment. */
.lumiere-home-new-arrivals {
    padding-top: 78px !important;
    padding-bottom: 86px !important;
}

/* Full-width landscape image with editable overlay copy before closing banner. */
.heikaya-home-landscape {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    min-height: clamp(440px, 48vw, 690px);
    overflow: hidden;
    background-image: var(--heikaya-landscape-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.heikaya-home-landscape__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14,12,10,.66) 0%, rgba(14,12,10,.25) 48%, rgba(14,12,10,.04) 78%);
}

.heikaya-home-landscape__content {
    position: relative;
    z-index: 2;
    width: min(760px, 70vw);
    padding: clamp(48px, 7vw, 100px);
    color: #fffdf9;
}

.heikaya-home-landscape__content .lumiere-eyebrow {
    color: #d7b766 !important;
}

.heikaya-home-landscape__content h2 {
    margin: 0;
    color: #fffdf9 !important;
    font-size: clamp(46px, 5vw, 76px);
    line-height: .98;
}

.heikaya-home-landscape__content > p:not(.lumiere-eyebrow) {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255,253,249,.88);
    font-size: 15px;
    line-height: 1.8;
}

/* Reverse the Made to be remembered block to the bright site palette. */
.lumiere-closing-banner {
    background: var(--heikaya-paper) !important;
    border-top: 1px solid rgba(21,18,15,.08) !important;
    border-bottom: 1px solid rgba(21,18,15,.08) !important;
    color: var(--heikaya-ink) !important;
}

.lumiere-closing-banner h2 {
    color: var(--heikaya-ink) !important;
}

.lumiere-closing-banner .lumiere-eyebrow {
    color: var(--heikaya-gold) !important;
}

.lumiere-closing-banner .lumiere-button,
.lumiere-closing-banner .lumiere-button--light {
    border-color: var(--heikaya-gold) !important;
    background: var(--heikaya-gold) !important;
    color: var(--heikaya-ink) !important;
}

.lumiere-closing-banner .lumiere-button:hover,
.lumiere-closing-banner .lumiere-button:focus-visible {
    border-color: var(--heikaya-ink) !important;
    background: var(--heikaya-ink) !important;
    color: var(--heikaya-paper) !important;
}

@media (max-width: 980px) {
    .lumiere-category-slider .lumiere-category-grid {
        grid-auto-columns: calc((100% - 18px) / 2) !important;
    }

    .heikaya-category-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .heikaya-category-video {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 620px) {
    .lumiere-collections {
        padding-top: 56px !important;
    }

    .lumiere-featured-products__heading h2,
    .lumiere-home-new-arrivals .lumiere-featured-products__heading h2 {
        font-size: 36px !important;
    }

    .lumiere-categories-heading {
        margin-top: 74px !important;
    }

    .lumiere-categories-heading h2 {
        font-size: 42px !important;
    }

    .lumiere-collection-section__heading h3 {
        font-size: 32px !important;
    }

    .lumiere-category-slider {
        padding-inline: 10px !important;
    }

    .lumiere-category-slider .lumiere-category-grid {
        grid-auto-columns: 78% !important;
        gap: 12px !important;
    }

    .lumiere-slider-arrow {
        width: 40px !important;
        height: 40px !important;
    }

    .heikaya-category-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px;
        padding: 0 4px;
    }

    .heikaya-category-video {
        margin-top: 4px;
        aspect-ratio: 16 / 10;
    }

    .heikaya-category-video__play span {
        width: 58px;
        height: 58px;
    }

    .heikaya-home-landscape {
        min-height: 520px;
    }

    .heikaya-home-landscape__content {
        width: 100%;
        padding: 48px 24px;
    }

    .heikaya-home-landscape__content h2 {
        font-size: 48px;
    }
}


/* ============================================================
   v6.13.1 — Exact homepage categories + standalone parent features
   ============================================================ */

.heikaya-standalone-category-feature {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    width: 100vw;
    margin: 76px 0 0 calc(50% - 50vw);
    overflow: hidden;
    border-top: 1px solid rgba(21,18,15,.09);
    border-bottom: 1px solid rgba(21,18,15,.09);
    background: #fffdf9;
}

.heikaya-standalone-category-feature__media {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #fffdf9;
    cursor: pointer;
}

.heikaya-standalone-category-feature__video,
.heikaya-standalone-category-feature__media > img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    background: #fffdf9;
}

.heikaya-standalone-category-feature__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    padding: clamp(42px, 5vw, 78px);
    background: #fffdf9;
}

.heikaya-feature-eyebrow {
    margin: 0 0 22px;
    color: #15120f;
    font: 600 10px/1 Montserrat,Arial,sans-serif;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.heikaya-standalone-category-feature__copy h3 {
    margin: 0;
    color: #15120f;
    font-family: "Cormorant Garamond",Georgia,serif;
    font-size: clamp(46px, 4.5vw, 68px);
    font-weight: 600;
    line-height: .95;
    letter-spacing: -.02em;
    text-transform: none;
}

.heikaya-standalone-category-feature__copy > p:not(.heikaya-feature-eyebrow) {
    max-width: 520px;
    margin: 22px 0 28px;
    color: #15120f;
    font: 400 14px/1.8 Montserrat,Arial,sans-serif;
}

.heikaya-standalone-category-feature__play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: opacity .25s ease;
}

.heikaya-standalone-category-feature__play span {
    position: relative;
    display: block;
    width: 66px;
    height: 66px;
    border: 1px solid rgba(255,253,249,.82);
    border-radius: 50%;
    background: rgba(21,18,15,.52);
    box-shadow: 0 14px 32px rgba(21,18,15,.18);
}

.heikaya-standalone-category-feature__play span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    content: "";
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #fffdf9;
    transform: translate(-38%,-50%);
}

.heikaya-standalone-category-feature__media.is-playing .heikaya-standalone-category-feature__play {
    opacity: 0;
    pointer-events: none;
}

/* All homepage category feature video canvases use the website background. */
.heikaya-category-video,
.heikaya-category-video__video,
.heikaya-standalone-category-feature__media,
.heikaya-standalone-category-feature__video {
    background-color: #fffdf9 !important;
}

/* Product headings on homepage are never forced to uppercase. */
.lumiere-featured-product__body h3,
.lumiere-featured-product__body h3 a,
.lumiere-homepage .woocommerce-loop-product__title {
    text-transform: none !important;
}

/* Remove remaining accent-gold treatment from homepage category controls. */
.lumiere-collection-section__heading > a,
.lumiere-slider-arrow,
.lumiere-eyebrow,
.lumiere-featured-products__heading .lumiere-eyebrow {
    color: #15120f !important;
}

.lumiere-slider-arrow {
    border-color: rgba(21,18,15,.26) !important;
    background: #fffdf9 !important;
}

.lumiere-slider-arrow:hover,
.lumiere-slider-arrow:focus-visible {
    border-color: #15120f !important;
    background: #15120f !important;
    color: #fffdf9 !important;
}

@media (max-width: 900px) {
    .heikaya-standalone-category-feature {
        grid-template-columns: 1fr;
        margin-top: 56px;
    }

    .heikaya-standalone-category-feature__copy {
        padding: 42px 28px 48px;
    }

    .heikaya-standalone-category-feature__copy h3 {
        font-size: clamp(42px, 10vw, 58px);
    }
}


/* v6.13.3 — NEW badge on homepage New Arrivals cards. */
.lumiere-home-new-arrivals .lumiere-featured-product__image {
    position: relative;
}

.lumiere-home-new-arrivals .heikaya-new-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #15120f;
    color: #fffdf9;
    font: 600 9px/1 Montserrat,Arial,sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
}


/* ============================================================
   v6.13.4 — compact Featured Selection -> Our Categories handoff
   ============================================================ */
body.home .lumiere-featured-products {
    margin-bottom: 0 !important;
    padding-bottom: 30px !important;
}

body.home .lumiere-featured-products__action {
    padding-top: 34px !important;
}

body.home .lumiere-featured-products + .lumiere-categories-heading {
    padding-top: 0 !important;
}

body.home .lumiere-categories-heading {
    margin: 42px auto 20px !important;
}

body.home .lumiere-categories-heading::after {
    margin-top: 16px !important;
    background: #15120f !important;
}

body.home .lumiere-categories-heading + .lumiere-stacked-collections,
body.home .lumiere-stacked-collections {
    padding-top: 8px !important;
}

body.home .lumiere-collection-section:first-child {
    padding-top: 26px !important;
}

@media (max-width: 620px) {
    body.home .lumiere-featured-products {
        padding-bottom: 24px !important;
    }

    body.home .lumiere-categories-heading {
        margin-top: 32px !important;
        margin-bottom: 16px !important;
    }

    body.home .lumiere-collection-section:first-child {
        padding-top: 20px !important;
    }
}


/* ============================================================
   v6.14.7 — Featured Selection: 4 products across full width
   ============================================================ */
body.home .lumiere-featured-products {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

body.home .lumiere-featured-products__inner,
body.home .lumiere-featured-products__grid {
    width: 100% !important;
    max-width: none !important;
}

body.home .lumiere-featured-products__inner {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

body.home .lumiere-featured-products__grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 30px 24px !important;
}

body.home .lumiere-featured-product {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
}

body.home .lumiere-featured-product__image {
    width: 100% !important;
}

@media (max-width: 1100px) {
    body.home .lumiere-featured-products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 820px) {
    body.home .lumiere-featured-products__inner {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    body.home .lumiere-featured-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 24px 18px !important;
    }
}

@media (max-width: 560px) {
    body.home .lumiere-featured-products__inner {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    body.home .lumiere-featured-products__grid {
        grid-template-columns: 1fr !important;
    }
}


/* ============================================================
   v6.14.8 — Featured Selection larger cards / almost edge-to-edge
   ============================================================ */
body.home .lumiere-featured-products__inner {
    width: 100% !important;
    max-width: none !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

body.home .lumiere-featured-products__grid {
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px 12px !important;
}

body.home .lumiere-featured-product,
body.home .lumiere-featured-product__image {
    width: 100% !important;
    max-width: none !important;
}

body.home .lumiere-featured-product__image img {
    width: 100% !important;
    max-width: none !important;
}

@media (max-width: 1100px) {
    body.home .lumiere-featured-products__inner {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    body.home .lumiere-featured-products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 22px 12px !important;
    }
}

@media (max-width: 820px) {
    body.home .lumiere-featured-products__inner {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    body.home .lumiere-featured-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px 10px !important;
    }
}

@media (max-width: 560px) {
    body.home .lumiere-featured-products__inner {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    body.home .lumiere-featured-products__grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
}


/* ============================================================
   v6.14.9 — TRUE edge-to-edge Featured Selection
   Remove the outer container restriction, not just inner padding.
   ============================================================ */
body.home .lumiere-featured-products {
    position: relative !important;
    left: 50% !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: -50vw !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.home .lumiere-featured-products__inner {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
}

body.home .lumiere-featured-products__grid {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

body.home .lumiere-featured-product {
    margin: 0 !important;
}

@media (max-width: 1100px) {
    body.home .lumiere-featured-products__inner {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
}

@media (max-width: 820px) {
    body.home .lumiere-featured-products {
        left: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
    }

    body.home .lumiere-featured-products__inner {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}


/* ============================================================
   v6.15.0 — Safe near-edge Featured Selection
   Keep 10px breathing room and prevent horizontal overflow.
   ============================================================ */
body.home .lumiere-featured-products {
    left: 50% !important;
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    margin-left: calc(-50vw + 10px) !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

body.home .lumiere-featured-products__inner {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
}

body.home .lumiere-featured-products__grid {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
    box-sizing: border-box !important;
}

body.home .lumiere-featured-product,
body.home .lumiere-featured-product__image {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

@media (max-width: 820px) {
    body.home .lumiere-featured-products {
        left: auto !important;
        width: calc(100% - 20px) !important;
        max-width: calc(100% - 20px) !important;
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
}


/* ============================================================
   v6.15.1 — Featured Selection full-width editorial video
   ============================================================ */
body.home .heikaya-featured-selection-video {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-top: 24px !important;
    margin-bottom: 0 !important;
    margin-left: calc(50% - 50vw) !important;
    aspect-ratio: 16 / 6.4 !important;
    background: #fffdf9 !important;
}

body.home .heikaya-featured-selection-video .heikaya-category-video__video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

@media (max-width: 980px) {
    body.home .heikaya-featured-selection-video {
        aspect-ratio: 16 / 9 !important;
    }
}

@media (max-width: 620px) {
    body.home .heikaya-featured-selection-video {
        margin-top: 16px !important;
        aspect-ratio: 16 / 10 !important;
    }
}


/* ============================================================
   v6.15.2 — Featured video handoff + restored Egermann editorial
   ============================================================ */

/* Remove the line under Featured Selection and tighten the handoff to video. */
body.home .lumiere-collections > .lumiere-featured-products {
    border-bottom: 0 !important;
    padding-bottom: 10px !important;
}

body.home .lumiere-collections > .lumiere-featured-products .lumiere-featured-products__action {
    padding-bottom: 0 !important;
}

body.home .heikaya-featured-selection-video {
    margin-top: 0 !important;
    border-top: 0 !important;
}

/* Egermann is now its own editorial feature immediately below that video. */
body.home .heikaya-restored-egermann-feature {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-top: 0 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    background: #fffdf9 !important;
}

@media (min-width: 901px) {
    body.home .heikaya-restored-egermann-feature {
        display: grid !important;
        grid-template-columns: 3fr 2fr !important;
        grid-template-areas: "media copy" !important;
        min-height: 440px !important;
    }

    body.home .heikaya-restored-egermann-feature > .lumiere-egermann-feature__media {
        grid-area: media !important;
        min-height: 440px !important;
        cursor: default !important;
    }

    body.home .heikaya-restored-egermann-feature > .lumiere-egermann-feature__copy {
        grid-area: copy !important;
        min-height: 440px !important;
        padding: clamp(40px, 4.2vw, 68px) clamp(38px, 4.5vw, 72px) !important;
        background: #fffdf9 !important;
    }

    body.home .heikaya-restored-egermann-feature .lumiere-egermann-feature__video,
    body.home .heikaya-restored-egermann-feature .lumiere-egermann-feature__media > img {
        min-height: 440px !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}

body.home .heikaya-restored-egermann-feature .lumiere-egermann-feature__copy h2 {
    color: #15120f !important;
}

body.home .heikaya-restored-egermann-feature .lumiere-egermann-feature__copy > p:not(.lumiere-eyebrow) {
    color: #15120f !important;
}

body.home .heikaya-restored-egermann-feature + .lumiere-categories-heading {
    margin-top: 38px !important;
}

@media (max-width: 900px) {
    body.home .heikaya-restored-egermann-feature {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
    }

    body.home .heikaya-restored-egermann-feature > .lumiere-egermann-feature__media {
        order: 1 !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 10 !important;
    }

    body.home .heikaya-restored-egermann-feature > .lumiere-egermann-feature__copy {
        order: 2 !important;
        padding: 36px 24px 42px !important;
    }

    body.home .heikaya-restored-egermann-feature .lumiere-egermann-feature__video,
    body.home .heikaya-restored-egermann-feature .lumiere-egermann-feature__media > img {
        min-height: 0 !important;
        height: 100% !important;
    }
}


/* ============================================================
   v6.15.3 — Featured video spacing + simplified Our Categories
   ============================================================ */

/* Give the Featured Selection a little breathing room before the wide video. */
body.home .heikaya-featured-selection-video {
    margin-top: 30px !important;
    margin-bottom: 0 !important;
}

/* Separate the wide video from the restored Egermann 60/40 feature. */
body.home .heikaya-restored-egermann-feature {
    margin-top: 32px !important;
}

/* Our Categories now contains subcategory sliders only. */
body.home .lumiere-stacked-collections {
    width: 100% !important;
    max-width: none !important;
}

body.home .lumiere-collection-section.heikaya-subcategories-only {
    position: relative !important;
    left: 50% !important;
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    margin: 0 0 72px calc(-50vw + 10px) !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

body.home .heikaya-subcategories-only .lumiere-collection-section__heading {
    width: 100% !important;
    max-width: none !important;
    padding: 0 2px 18px !important;
    box-sizing: border-box !important;
}

body.home .heikaya-subcategories-only .lumiere-category-slider {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

body.home .heikaya-subcategories-only .lumiere-category-slider__viewport {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 0 24px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: none !important;
    box-sizing: border-box !important;
}

body.home .heikaya-subcategories-only .lumiere-category-slider__viewport::-webkit-scrollbar {
    display: none !important;
}

body.home .heikaya-subcategories-only .lumiere-category-grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: calc((100% - 36px) / 4) !important;
    gap: 12px !important;
    width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box !important;
}

body.home .heikaya-subcategories-only .lumiere-category-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
}

body.home .heikaya-subcategories-only .lumiere-category-card__image {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
}

/* Overlay navigation arrows over the first/last card area. */
body.home .heikaya-subcategories-only .lumiere-category-slider__controls,
body.home .heikaya-subcategories-only .lumiere-category-slider:not(.is-scrollable) .lumiere-category-slider__controls {
    position: absolute !important;
    top: 50% !important;
    right: 8px !important;
    left: 8px !important;
    z-index: 5 !important;
    pointer-events: none !important;
    transform: translateY(-50%) !important;
}

body.home .heikaya-subcategories-only .lumiere-slider-arrow {
    pointer-events: auto !important;
}

@media (max-width: 980px) {
    body.home .heikaya-subcategories-only .lumiere-category-grid {
        grid-auto-columns: calc((100% - 24px) / 3) !important;
    }
}

@media (max-width: 720px) {
    body.home .heikaya-featured-selection-video {
        margin-top: 22px !important;
    }

    body.home .heikaya-restored-egermann-feature {
        margin-top: 24px !important;
    }

    body.home .lumiere-collection-section.heikaya-subcategories-only {
        width: calc(100vw - 16px) !important;
        max-width: calc(100vw - 16px) !important;
        margin-left: calc(-50vw + 8px) !important;
        margin-bottom: 54px !important;
    }

    body.home .heikaya-subcategories-only .lumiere-category-grid {
        grid-auto-columns: calc((100% - 12px) / 2) !important;
    }
}

@media (max-width: 480px) {
    body.home .heikaya-subcategories-only .lumiere-category-grid {
        grid-auto-columns: 86% !important;
        gap: 10px !important;
    }
}


/* ============================================================
   v6.15.4 — Our Categories spacing / edge / arrows refinement
   ============================================================ */

/* Give the card row a small, deliberate page-edge inset. */
body.home .lumiere-collection-section.heikaya-subcategories-only {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: calc(-50vw + 14px) !important;
    margin-bottom: 34px !important;
}

/* Keep the divider much closer to the subcategory card titles. */
body.home .heikaya-subcategories-only .lumiere-category-slider__viewport {
    padding-bottom: 10px !important;
}

body.home .heikaya-subcategories-only {
    padding-bottom: 8px !important;
    border-bottom: 1px solid rgba(21,18,15,.10) !important;
}

/* The next category title starts soon after the divider, but not immediately. */
body.home .heikaya-subcategories-only + .heikaya-subcategories-only {
    padding-top: 22px !important;
}

/* Keep arrows inside the viewport and slightly more inset over the cards. */
body.home .heikaya-subcategories-only .lumiere-category-slider__controls,
body.home .heikaya-subcategories-only .lumiere-category-slider:not(.is-scrollable) .lumiere-category-slider__controls {
    left: 16px !important;
    right: 16px !important;
}

body.home .heikaya-subcategories-only .lumiere-slider-arrow {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
}

@media (max-width: 720px) {
    body.home .lumiere-collection-section.heikaya-subcategories-only {
        width: calc(100vw - 20px) !important;
        max-width: calc(100vw - 20px) !important;
        margin-left: calc(-50vw + 10px) !important;
        margin-bottom: 30px !important;
    }

    body.home .heikaya-subcategories-only + .heikaya-subcategories-only {
        padding-top: 18px !important;
    }

    body.home .heikaya-subcategories-only .lumiere-category-slider__controls,
    body.home .heikaya-subcategories-only .lumiere-category-slider:not(.is-scrollable) .lumiere-category-slider__controls {
        left: 12px !important;
        right: 12px !important;
    }

    body.home .heikaya-subcategories-only .lumiere-slider-arrow {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
    }
}


/* ============================================================
   v6.15.5 — Single divider + arrows fully inside viewport
   ============================================================ */

/* Remove the extra divider directly under the subcategory titles.
   The existing lower divider between category sections remains. */
body.home .heikaya-subcategories-only {
    border-bottom: 0 !important;
}

/* Keep a little breathing room after the card titles before the
   single remaining section divider. */
body.home .heikaya-subcategories-only .lumiere-category-slider__viewport {
    padding-bottom: 8px !important;
}

/* Pull both arrows further inside the card row. */
body.home .heikaya-subcategories-only .lumiere-category-slider__controls,
body.home .heikaya-subcategories-only .lumiere-category-slider:not(.is-scrollable) .lumiere-category-slider__controls {
    left: 22px !important;
    right: 22px !important;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

/* Defeat any older edge-positioning rules on the individual buttons. */
body.home .heikaya-subcategories-only .lumiere-slider-arrow--prev {
    left: 0 !important;
    right: auto !important;
    margin-left: 0 !important;
    transform: none !important;
}

body.home .heikaya-subcategories-only .lumiere-slider-arrow--next {
    right: 0 !important;
    left: auto !important;
    margin-right: 0 !important;
    transform: none !important;
}

@media (max-width: 720px) {
    body.home .heikaya-subcategories-only .lumiere-category-slider__controls,
    body.home .heikaya-subcategories-only .lumiere-category-slider:not(.is-scrollable) .lumiere-category-slider__controls {
        left: 18px !important;
        right: 18px !important;
    }
}


/* ============================================================
   v6.15.6 — Categories handoff, Clear Crystal, 4-up New Arrivals
   ============================================================ */

/* Browse All Categories: closer to the last category and much less empty space below. */
body.home .lumiere-all-categories-action {
    margin-top: 8px !important;
    margin-bottom: 22px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

body.home .lumiere-stacked-collections .heikaya-subcategories-only:last-child {
    margin-bottom: 14px !important;
}

/* Clear Crystal section sits directly below Our Categories. */
body.home .heikaya-clear-crystal {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 10px 0 54px !important;
    background: #fffdf9 !important;
}

body.home .heikaya-clear-crystal__products {
    position: relative !important;
    left: 50% !important;
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    margin: 0 0 30px calc(-50vw + 10px) !important;
    padding: 0 !important;
}

body.home .heikaya-clear-crystal__products .lumiere-featured-products__heading {
    margin-bottom: 28px !important;
}

body.home .heikaya-clear-crystal__products .lumiere-featured-products__grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: none !important;
}

body.home .heikaya-clear-crystal__products .lumiere-featured-product {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
}

/* No button under Clear Crystal cards. */
body.home .heikaya-clear-crystal__products .lumiere-featured-products__action {
    display: none !important;
}

/* Clear Crystal editorial: video left, text/button right, no duplicate title. */
body.home .heikaya-clear-crystal__editorial {
    position: relative !important;
    left: 50% !important;
    display: grid !important;
    grid-template-columns: 3fr 2fr !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: -50vw !important;
    background: #fffdf9 !important;
}

body.home .heikaya-clear-crystal__media {
    position: relative !important;
    min-height: 430px !important;
    overflow: hidden !important;
    background: #fffdf9 !important;
}

body.home .heikaya-clear-crystal__media video,
body.home .heikaya-clear-crystal__media img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 430px !important;
    object-fit: cover !important;
    object-position: center !important;
}

body.home .heikaya-clear-crystal__copy {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    min-height: 430px !important;
    padding: clamp(42px, 4.8vw, 78px) clamp(38px, 5vw, 82px) !important;
    background: #fffdf9 !important;
    color: #15120f !important;
}

body.home .heikaya-clear-crystal__copy p {
    max-width: 560px !important;
    margin: 0 0 30px !important;
    color: #15120f !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
}

/* New Arrivals: same 4-across wide treatment as Featured Selection. */
body.home .lumiere-home-new-arrivals {
    width: 100% !important;
    max-width: none !important;
}

body.home .lumiere-featured-products--new-arrivals {
    position: relative !important;
    left: 50% !important;
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    margin-left: calc(-50vw + 10px) !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.home .lumiere-featured-products--new-arrivals .lumiere-featured-products__grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: none !important;
}

body.home .lumiere-featured-products--new-arrivals .lumiere-featured-product {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
}

@media (max-width: 1100px) {
    body.home .heikaya-clear-crystal__products .lumiere-featured-products__grid,
    body.home .lumiere-featured-products--new-arrivals .lumiere-featured-products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 820px) {
    body.home .heikaya-clear-crystal__editorial {
        left: auto !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
    }

    body.home .heikaya-clear-crystal__media,
    body.home .heikaya-clear-crystal__media video,
    body.home .heikaya-clear-crystal__media img {
        min-height: 0 !important;
        aspect-ratio: 16 / 10 !important;
    }

    body.home .heikaya-clear-crystal__copy {
        min-height: 0 !important;
        padding: 36px 24px 42px !important;
    }

    body.home .heikaya-clear-crystal__products .lumiere-featured-products__grid,
    body.home .lumiere-featured-products--new-arrivals .lumiere-featured-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 560px) {
    body.home .heikaya-clear-crystal__products,
    body.home .lumiere-featured-products--new-arrivals {
        width: calc(100vw - 16px) !important;
        max-width: calc(100vw - 16px) !important;
        margin-left: calc(-50vw + 8px) !important;
    }

    body.home .heikaya-clear-crystal__products .lumiere-featured-products__grid,
    body.home .lumiere-featured-products--new-arrivals .lumiere-featured-products__grid {
        grid-template-columns: 1fr !important;
    }
}


/* ============================================================
   v6.15.9 — Clear Crystal fallback + spacing/video cleanup
   ============================================================ */

/* Bring Clear Crystal much closer to Browse All Categories. */
body.home .lumiere-all-categories-action {
    margin-bottom: 8px !important;
}

body.home .heikaya-clear-crystal {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Remove the horizontal line under the Clear Crystal heading. */
body.home .heikaya-clear-crystal__products,
body.home .heikaya-clear-crystal__products .lumiere-featured-products__heading,
body.home .heikaya-clear-crystal__products .lumiere-featured-products__grid {
    border-top: 0 !important;
    border-bottom: 0 !important;
}

body.home .heikaya-clear-crystal__products .lumiere-featured-products__heading::before,
body.home .heikaya-clear-crystal__products .lumiere-featured-products__heading::after {
    display: none !important;
    content: none !important;
}

/* Clear Crystal video: no play overlay and no hover replacement/preview state. */
body.home .heikaya-clear-crystal__media .heikaya-category-video__play,
body.home .heikaya-clear-crystal__media [data-heikaya-category-video-play] {
    display: none !important;
}

body.home .heikaya-clear-crystal__media,
body.home .heikaya-clear-crystal__media:hover,
body.home .heikaya-clear-crystal__media:focus-within {
    background: #fffdf9 !important;
}

body.home .heikaya-clear-crystal__media .heikaya-category-video__video,
body.home .heikaya-clear-crystal__media:hover .heikaya-category-video__video,
body.home .heikaya-clear-crystal__media:focus-within .heikaya-category-video__video {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    transform: none !important;
}

body.home .heikaya-clear-crystal__media::before,
body.home .heikaya-clear-crystal__media::after,
body.home .heikaya-clear-crystal__media:hover::before,
body.home .heikaya-clear-crystal__media:hover::after {
    display: none !important;
    content: none !important;
}


/* ============================================================
   v6.16.0 — Clear video fix + tighter spacing + Silver showcase
   ============================================================ */

/* Clear Crystal: tighter handoff from categories and into New Arrivals. */
body.home .lumiere-all-categories-action {
    margin-bottom: 2px !important;
}

body.home .heikaya-clear-crystal {
    padding-top: 0 !important;
    padding-bottom: 22px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body.home .heikaya-clear-crystal__products {
    margin-bottom: 20px !important;
}

body.home .heikaya-clear-crystal__products .lumiere-featured-products__heading {
    margin-top: 0 !important;
    margin-bottom: 22px !important;
    padding-top: 10px !important;
    padding-bottom: 0 !important;
}

body.home .lumiere-home-new-arrivals {
    margin-top: 0 !important;
    padding-top: 16px !important;
}

/* Passive editorial video means: no hover, no overlay, no play icon, no poster swap. */
body.home [data-heikaya-video-passive],
body.home [data-heikaya-video-passive]:hover,
body.home [data-heikaya-video-passive]:focus-within {
    cursor: default !important;
    background: #fffdf9 !important;
}

body.home [data-heikaya-video-passive]::before,
body.home [data-heikaya-video-passive]::after,
body.home [data-heikaya-video-passive]:hover::before,
body.home [data-heikaya-video-passive]:hover::after,
body.home [data-heikaya-video-passive] [data-heikaya-category-video-play],
body.home [data-heikaya-video-passive] .heikaya-category-video__play {
    display: none !important;
    content: none !important;
}

body.home [data-heikaya-video-passive] video,
body.home [data-heikaya-video-passive]:hover video,
body.home [data-heikaya-video-passive]:focus-within video {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    transform: none !important;
}

/* Silver section: same card + 60/40 editorial system as Clear Crystal. */
body.home .heikaya-silver-showcase {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 18px 0 36px !important;
    background: #fffdf9 !important;
}

body.home .heikaya-silver-showcase__products {
    position: relative !important;
    left: 50% !important;
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    margin: 0 0 24px calc(-50vw + 10px) !important;
    padding: 0 !important;
    border: 0 !important;
}

body.home .heikaya-silver-showcase__products .lumiere-featured-products__heading {
    margin: 0 0 24px !important;
    padding: 0 !important;
    border: 0 !important;
}

body.home .heikaya-silver-showcase__products .lumiere-featured-products__heading::before,
body.home .heikaya-silver-showcase__products .lumiere-featured-products__heading::after {
    display: none !important;
    content: none !important;
}

body.home .heikaya-silver-showcase__products .lumiere-featured-products__grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: none !important;
}

body.home .heikaya-silver-showcase__products .lumiere-featured-product {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
}

body.home .heikaya-silver-showcase__editorial {
    position: relative !important;
    left: 50% !important;
    display: grid !important;
    grid-template-columns: 3fr 2fr !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: -50vw !important;
    background: #fffdf9 !important;
}

body.home .heikaya-silver-showcase__media {
    position: relative !important;
    min-height: 430px !important;
    overflow: hidden !important;
    background: #fffdf9 !important;
}

body.home .heikaya-silver-showcase__media video,
body.home .heikaya-silver-showcase__media img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 430px !important;
    object-fit: cover !important;
    object-position: center !important;
}

body.home .heikaya-silver-showcase__copy {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    min-height: 430px !important;
    padding: clamp(42px, 4.8vw, 78px) clamp(38px, 5vw, 82px) !important;
    background: #fffdf9 !important;
    color: #15120f !important;
}

body.home .heikaya-silver-showcase__copy p {
    max-width: 560px !important;
    margin: 0 0 30px !important;
    color: #15120f !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
}

@media (max-width: 1100px) {
    body.home .heikaya-silver-showcase__products .lumiere-featured-products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 820px) {
    body.home .heikaya-clear-crystal {
        padding-bottom: 16px !important;
    }

    body.home .heikaya-silver-showcase__products .lumiere-featured-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body.home .heikaya-silver-showcase__editorial {
        left: auto !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
    }

    body.home .heikaya-silver-showcase__media,
    body.home .heikaya-silver-showcase__media video,
    body.home .heikaya-silver-showcase__media img {
        min-height: 0 !important;
        aspect-ratio: 16 / 10 !important;
    }

    body.home .heikaya-silver-showcase__copy {
        min-height: 0 !important;
        padding: 36px 24px 42px !important;
    }
}

@media (max-width: 560px) {
    body.home .heikaya-silver-showcase__products {
        width: calc(100vw - 16px) !important;
        max-width: calc(100vw - 16px) !important;
        margin-left: calc(-50vw + 8px) !important;
    }

    body.home .heikaya-silver-showcase__products .lumiere-featured-products__grid {
        grid-template-columns: 1fr !important;
    }
}


/* ============================================================
   v6.16.1 — Remove dark transition/shadow + compact spacing
   ============================================================ */

/* Force these homepage sections to stay completely clean/bright.
   This removes the unintended dark gradient/shadow seen between
   New Arrivals and Silver. */
body.home .lumiere-home-new-arrivals,
body.home .lumiere-featured-products--new-arrivals,
body.home .heikaya-silver-showcase,
body.home .heikaya-silver-showcase__products,
body.home .heikaya-clear-crystal,
body.home .heikaya-clear-crystal__products {
    background: #fffdf9 !important;
    background-image: none !important;
    box-shadow: none !important;
    filter: none !important;
}

body.home .lumiere-home-new-arrivals::before,
body.home .lumiere-home-new-arrivals::after,
body.home .lumiere-featured-products--new-arrivals::before,
body.home .lumiere-featured-products--new-arrivals::after,
body.home .heikaya-silver-showcase::before,
body.home .heikaya-silver-showcase::after,
body.home .heikaya-silver-showcase__products::before,
body.home .heikaya-silver-showcase__products::after {
    display: none !important;
    content: none !important;
    background: none !important;
    box-shadow: none !important;
}

/* MUCH tighter Clear Crystal -> New Arrivals transition. */
body.home .heikaya-clear-crystal {
    padding-bottom: 8px !important;
}

body.home .lumiere-home-new-arrivals {
    margin: 0 !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* Keep title/card spacing compact too. */
body.home .lumiere-featured-products--new-arrivals .lumiere-featured-products__heading {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* The button should not create a huge empty block below the cards. */
body.home .lumiere-featured-products--new-arrivals .lumiere-featured-products__action {
    padding-top: 20px !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* New Arrivals -> Silver should feel like one continuous homepage flow. */
body.home .heikaya-silver-showcase {
    margin-top: 0 !important;
    padding-top: 8px !important;
    padding-bottom: 18px !important;
}

body.home .heikaya-silver-showcase__products {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
}

body.home .heikaya-silver-showcase__products .lumiere-featured-products__heading {
    margin-top: 0 !important;
    margin-bottom: 18px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Also keep the Clear Crystal handoff from the categories compact. */
body.home .lumiere-all-categories-action {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.home .heikaya-clear-crystal__products .lumiere-featured-products__heading {
    padding-top: 4px !important;
    margin-bottom: 18px !important;
}

@media (max-width: 820px) {
    body.home .heikaya-clear-crystal {
        padding-bottom: 6px !important;
    }

    body.home .lumiere-home-new-arrivals {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    body.home .heikaya-silver-showcase {
        padding-top: 6px !important;
        padding-bottom: 14px !important;
    }
}


/* ============================================================
   v6.16.2 — CATEGORY CLICKABILITY + DARK OVERLAY HARD FIX
   ============================================================ */

body.home .lumiere-homepage,
body.home .lumiere-collections,
body.home .lumiere-categories-heading,
body.home .lumiere-stacked-collections,
body.home .lumiere-collection-section.heikaya-subcategories-only,
body.home .heikaya-subcategories-only .lumiere-category-slider,
body.home .heikaya-subcategories-only .lumiere-category-slider__viewport,
body.home .heikaya-subcategories-only .lumiere-category-grid {
    background: #fffdf9 !important;
    background-image: none !important;
    box-shadow: none !important;
    filter: none !important;
}

body.home .lumiere-collections::before,
body.home .lumiere-collections::after,
body.home .lumiere-stacked-collections::before,
body.home .lumiere-stacked-collections::after,
body.home .lumiere-collection-section.heikaya-subcategories-only::before,
body.home .lumiere-collection-section.heikaya-subcategories-only::after,
body.home .heikaya-subcategories-only .lumiere-category-slider::before,
body.home .heikaya-subcategories-only .lumiere-category-slider::after,
body.home .heikaya-subcategories-only .lumiere-category-slider__viewport::before,
body.home .heikaya-subcategories-only .lumiere-category-slider__viewport::after {
    display: none !important;
    content: none !important;
    pointer-events: none !important;
    background: none !important;
    box-shadow: none !important;
}

body.home .heikaya-subcategories-only .lumiere-collection-section__heading {
    position: relative !important;
    z-index: 40 !important;
    pointer-events: auto !important;
}

body.home .heikaya-subcategories-only .lumiere-collection-section__heading a,
body.home .heikaya-subcategories-only .lumiere-category-card {
    position: relative !important;
    z-index: 40 !important;
    pointer-events: auto !important;
}

body.home .heikaya-subcategories-only .lumiere-category-card * {
    pointer-events: none !important;
}

body.home .heikaya-subcategories-only .lumiere-category-slider__controls,
body.home .heikaya-subcategories-only .lumiere-category-slider:not(.is-scrollable) .lumiere-category-slider__controls {
    z-index: 60 !important;
    pointer-events: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.home .heikaya-subcategories-only .lumiere-slider-arrow {
    position: relative !important;
    z-index: 61 !important;
    pointer-events: auto !important;
}

body.home .heikaya-subcategories-only .lumiere-category-card,
body.home .heikaya-subcategories-only .lumiere-category-card:hover,
body.home .heikaya-subcategories-only .lumiere-category-card:focus,
body.home .heikaya-subcategories-only .lumiere-category-card:focus-visible {
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    filter: none !important;
    opacity: 1 !important;
}

body.home .heikaya-subcategories-only .lumiere-category-card__image,
body.home .heikaya-subcategories-only .lumiere-category-card:hover .lumiere-category-card__image {
    background: #fff !important;
    background-image: none !important;
    box-shadow: none !important;
    filter: none !important;
    opacity: 1 !important;
}


/* ============================================================
   v6.16.3 — ROOT HOMEPAGE INTERACTION FIX + NEW SECTIONS
   ============================================================ */

/* The previous homepage interaction failure came from malformed
   landscape markup. Keep its decorative overlay non-interactive too. */
body.home .heikaya-home-landscape__overlay {
    pointer-events: none !important;
}

/* Restore normal interaction everywhere in homepage content. */
body.home main.lumiere-homepage {
    position: relative !important;
    z-index: 1 !important;
    pointer-events: auto !important;
}

body.home main.lumiere-homepage a,
body.home main.lumiere-homepage button,
body.home main.lumiere-homepage input,
body.home main.lumiere-homepage select,
body.home main.lumiere-homepage textarea {
    pointer-events: auto !important;
}

/* Full-width video immediately under Silver. */
body.home .heikaya-silver-wide-video {
    position: relative !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 18px 0 22px calc(50% - 50vw) !important;
    aspect-ratio: 16 / 6.4 !important;
    overflow: hidden !important;
    background: #fffdf9 !important;
}

body.home .heikaya-silver-wide-video video {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    opacity: 1 !important;
    filter: none !important;
}

/* Candle Holder mirrors Featured Selection. */
body.home .heikaya-candle-holder-showcase {
    width: 100% !important;
    max-width: none !important;
    padding: 20px 0 30px !important;
    background: #fffdf9 !important;
}

body.home .heikaya-candle-holder-showcase__inner {
    position: relative !important;
    left: 50% !important;
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    margin-left: calc(-50vw + 10px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.home .heikaya-candle-holder-showcase__inner .lumiere-featured-products__heading {
    margin: 0 0 22px !important;
    padding: 0 !important;
    border: 0 !important;
}

body.home .heikaya-candle-holder-showcase__inner .lumiere-featured-products__grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: none !important;
}

body.home .heikaya-candle-holder-showcase__inner .lumiere-featured-product {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
}

body.home .heikaya-candle-holder-showcase__inner .lumiere-featured-products__action {
    margin: 22px 0 0 !important;
    padding: 0 !important;
}

@media (max-width: 1100px) {
    body.home .heikaya-candle-holder-showcase__inner .lumiere-featured-products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 820px) {
    body.home .heikaya-silver-wide-video {
        aspect-ratio: 16 / 9 !important;
        margin-top: 12px !important;
        margin-bottom: 16px !important;
    }

    body.home .heikaya-candle-holder-showcase__inner .lumiere-featured-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 560px) {
    body.home .heikaya-candle-holder-showcase__inner {
        width: calc(100vw - 16px) !important;
        max-width: calc(100vw - 16px) !important;
        margin-left: calc(-50vw + 8px) !important;
    }

    body.home .heikaya-candle-holder-showcase__inner .lumiere-featured-products__grid {
        grid-template-columns: 1fr !important;
    }
}


/* ============================================================
   v6.16.4 — New Arrivals spacing + editorial titles + 6 category grid
   ============================================================ */

/* Small deliberate breathing room before New Arrivals. */
body.home .lumiere-home-new-arrivals {
    padding-top: 24px !important;
}

/* Editorial titles beside Clear Crystal and Silver videos. */
body.home .heikaya-clear-crystal__copy h3,
body.home .heikaya-silver-showcase__copy h3 {
    margin: 0 0 18px !important;
    color: #15120f !important;
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(34px, 3vw, 52px) !important;
    font-weight: 500 !important;
    line-height: 1.02 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

/* Six-category visual grid between Silver and the full-width Silver video. */
body.home .heikaya-category-editorial-grid {
    width: 100% !important;
    margin: 8px 0 22px !important;
    padding: 0 0 !important;
    background: #fffdf9 !important;
}

body.home .heikaya-category-editorial-grid__inner {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 30px !important;
    width: calc(100% - 64px) !important;
    max-width: none !important;
    margin: 0 auto !important;
}

body.home .heikaya-category-editorial-card {
    display: block !important;
    min-width: 0 !important;
    color: #15120f !important;
    text-decoration: none !important;
}

body.home .heikaya-category-editorial-card__media {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    background: #eee !important;
}

body.home .heikaya-category-editorial-card__media img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform .45s ease !important;
}

body.home .heikaya-category-editorial-card__shade {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    display: block !important;
    background: rgba(21,18,15,.18) !important;
    pointer-events: none !important;
    transition: background .3s ease !important;
}

body.home .heikaya-category-editorial-card__label {
    position: absolute !important;
    left: 50% !important;
    bottom: 10.5% !important;
    z-index: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 180px !important;
    min-height: 52px !important;
    padding: 14px 26px !important;
    transform: translateX(-50%) !important;
    background: #fffdf9 !important;
    color: #15120f !important;
    font-family: Montserrat, Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    letter-spacing: .22em !important;
    text-align: center !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    box-shadow: none !important;
}

body.home .heikaya-category-editorial-card:hover .heikaya-category-editorial-card__media img {
    transform: scale(1.025) !important;
}

body.home .heikaya-category-editorial-card:hover .heikaya-category-editorial-card__shade {
    background: rgba(21,18,15,.12) !important;
}

/* Keep the Silver full-width video close to the new visual grid. */
body.home .heikaya-category-editorial-grid + .heikaya-silver-wide-video {
    margin-top: 0 !important;
}

@media (max-width: 980px) {
    body.home .heikaya-category-editorial-grid__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px !important;
        width: calc(100% - 36px) !important;
    }
}

@media (max-width: 620px) {
    body.home .lumiere-home-new-arrivals {
        padding-top: 18px !important;
    }

    body.home .heikaya-clear-crystal__copy h3,
    body.home .heikaya-silver-showcase__copy h3 {
        margin-bottom: 14px !important;
        font-size: 34px !important;
    }

    body.home .heikaya-category-editorial-grid {
        margin-bottom: 16px !important;
    }

    body.home .heikaya-category-editorial-grid__inner {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        width: calc(100% - 24px) !important;
    }

    body.home .heikaya-category-editorial-card__label {
        min-width: 160px !important;
        min-height: 48px !important;
        padding: 12px 22px !important;
        font-size: 11px !important;
    }
}


/* ============================================================
   v6.16.5 — Editorial grid label position / separator / spacing
   ============================================================ */

/* Add a restrained separator and breathing room before the 6-card grid. */
body.home .heikaya-category-editorial-grid {
    margin-top: 22px !important;
    padding-top: 26px !important;
    border-top: 1px solid rgba(21,18,15,.14) !important;
}

/* Reference-style white labels: lower-left rather than dead center. */
body.home .heikaya-category-editorial-card__label {
    left: 10.5% !important;
    bottom: 10.5% !important;
    transform: none !important;
    min-width: 0 !important;
    padding-left: 28px !important;
    padding-right: 28px !important;
}

/* Give Candle Holder a little more separation from the wide video above. */
body.home .heikaya-candle-holder-showcase {
    padding-top: 38px !important;
}

@media (max-width: 620px) {
    body.home .heikaya-category-editorial-grid {
        margin-top: 16px !important;
        padding-top: 20px !important;
    }

    body.home .heikaya-category-editorial-card__label {
        left: 8% !important;
        bottom: 8% !important;
    }

    body.home .heikaya-candle-holder-showcase {
        padding-top: 28px !important;
    }
}
