/*
 * LIN XÉN — Luxe Commerce UI V1
 * Site-wide preview theme. Scoped to preview body class.
 * Live default remains untouched.
 */

.lxv2-theme--luxe-commerce-v1 {
    --lxcv1-canvas: #f1f5f2;
    --lxcv1-canvas-deep: #e5ece7;
    --lxcv1-surface: #ffffff;
    --lxcv1-surface-soft: #edf2ef;
    --lxcv1-ink: #121815;
    --lxcv1-muted: #68716c;
    --lxcv1-line: #d7e0db;
    --lxcv1-jade: #0f6a58;
    --lxcv1-jade-dark: #094c40;
    --lxcv1-lime: #dfff4f;
    --lxcv1-coral: #ff6848;
    --lxcv1-danger: #b93d4d;
    --lxcv1-success: #147257;
    --lxcv1-shadow: 0 24px 70px rgba(19, 43, 34, .10);
    --lxcv1-shadow-soft: 0 14px 40px rgba(19, 43, 34, .07);
    --lxcv1-radius: 24px;
    --lxcv1-radius-lg: 34px;
    --lxcv1-max: 1380px;
    color: var(--lxcv1-ink);
    background:
        radial-gradient(circle at 4% 0%, rgba(223, 255, 79, .18), transparent 28rem),
        linear-gradient(180deg, #f9fbf9 0, var(--lxcv1-canvas) 44rem, #fff 100%);
}

.lxv2-theme--luxe-commerce-v1 *,
.lxv2-theme--luxe-commerce-v1 *::before,
.lxv2-theme--luxe-commerce-v1 *::after {
    box-sizing: border-box;
}

.lxv2-theme--luxe-commerce-v1 svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lxv2-theme--luxe-commerce-v1 button,
.lxv2-theme--luxe-commerce-v1 input,
.lxv2-theme--luxe-commerce-v1 select {
    font: inherit;
}

.lxv2-theme--luxe-commerce-v1 button:focus-visible,
.lxv2-theme--luxe-commerce-v1 a:focus-visible,
.lxv2-theme--luxe-commerce-v1 input:focus-visible,
.lxv2-theme--luxe-commerce-v1 select:focus-visible {
    outline: 3px solid rgba(15, 106, 88, .22);
    outline-offset: 3px;
}

.lxv2-theme--luxe-commerce-v1 .lxv2-main {
    width: min(var(--lxcv1-max), calc(100% - 40px));
    padding: 28px 0 90px;
}

.lxv2-theme--luxe-commerce-v1 .lxv2-alert {
    width: min(var(--lxcv1-max), calc(100% - 40px));
    border-color: var(--lxcv1-line);
    border-radius: 16px;
    box-shadow: var(--lxcv1-shadow-soft);
}

.lxv2-theme--luxe-commerce-v1 .lxv2-alert--success {
    color: var(--lxcv1-success);
    background: #effaf4;
}

.lxv2-theme--luxe-commerce-v1 .lxv2-alert--error {
    color: var(--lxcv1-danger);
    background: #fff2f4;
}

/* Header */

.lxcv1-header {
    position: sticky;
    z-index: 180;
    top: 0;
    border-bottom: 1px solid rgba(215, 224, 219, .92);
    background: rgba(250, 252, 250, .93);
    box-shadow: 0 8px 28px rgba(19, 43, 34, .04);
    backdrop-filter: blur(20px) saturate(145%);
}

.lxcv1-header__notice {
    min-height: 25px;
    display: grid;
    place-items: center;
    padding: 4px 16px;
    color: #21392f;
    background: var(--lxcv1-lime);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .05em;
    text-align: center;
}

.lxcv1-header__inner {
    width: min(var(--lxcv1-max), calc(100% - 40px));
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 1fr minmax(240px, 330px) auto;
    align-items: center;
    gap: 28px;
    margin-inline: auto;
}

.lxcv1-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.lxcv1-brand__monogram {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--lxcv1-ink);
    background: var(--lxcv1-lime);
    box-shadow: 0 10px 26px rgba(114, 139, 29, .18);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .08em;
}

.lxcv1-brand > span:last-child {
    display: grid;
    gap: 4px;
}

.lxcv1-brand strong {
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .08em;
}

.lxcv1-brand small {
    color: var(--lxcv1-muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.lxcv1-nav {
    display: flex;
    justify-content: center;
    gap: 26px;
}

.lxcv1-nav a {
    position: relative;
    padding: 11px 0;
    color: var(--lxcv1-muted);
    font-size: 13px;
    font-weight: 800;
}

.lxcv1-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--lxcv1-lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}

.lxcv1-nav a:hover,
.lxcv1-nav a.is-active {
    color: var(--lxcv1-jade-dark);
}

.lxcv1-nav a:hover::after,
.lxcv1-nav a.is-active::after {
    transform: scaleX(1);
}

.lxcv1-header-search {
    min-height: 42px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--lxcv1-line);
    border-radius: 999px;
    background: #fff;
}

.lxcv1-header-search svg {
    width: 18px;
    height: 18px;
    justify-self: center;
    color: var(--lxcv1-muted);
}

.lxcv1-header-search input {
    min-width: 0;
    height: 40px;
    padding: 0 14px 0 0;
    border: 0;
    outline: 0;
    color: var(--lxcv1-ink);
    background: transparent;
    font-size: 12px;
}

.lxcv1-header-actions {
    display: flex;
    gap: 7px;
}

.lxcv1-header-actions a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--lxcv1-line);
    border-radius: 14px;
    color: var(--lxcv1-ink);
    background: #fff;
}

.lxcv1-header-actions a:hover {
    color: #fff;
    background: var(--lxcv1-jade);
}

.lxcv1-header-actions svg {
    width: 20px;
    height: 20px;
}

/* Preview bar */

.lxcv1-preview-bar {
    position: relative;
    z-index: 160;
    width: min(var(--lxcv1-max), calc(100% - 40px));
    min-height: 50px;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto auto;
    align-items: center;
    gap: 18px;
    margin: 14px auto 0;
    padding: 10px 12px 10px 16px;
    border: 1px solid rgba(15, 106, 88, .18);
    border-radius: 16px;
    color: var(--lxcv1-jade-dark);
    background: rgba(239, 248, 213, .94);
    box-shadow: var(--lxcv1-shadow-soft);
}

.lxcv1-preview-bar > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lxcv1-preview-bar strong {
    font-size: 12px;
}

.lxcv1-preview-bar span {
    color: #61705f;
    font-size: 10px;
}

.lxcv1-preview-bar nav {
    display: flex;
    gap: 6px;
}

.lxcv1-preview-bar nav a {
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--lxcv1-jade-dark);
    background: rgba(255, 255, 255, .72);
    font-size: 10px;
    font-weight: 800;
}

.lxcv1-preview-bar__exit {
    padding: 8px 12px;
    border-radius: 10px;
    color: #fff;
    background: var(--lxcv1-ink);
    font-size: 10px;
    font-weight: 900;
}

/* Common page primitives */

.lxcv1-page {
    min-width: 0;
}

.lxcv1-kicker {
    margin: 0 0 10px;
    color: var(--lxcv1-jade);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.lxcv1-section {
    margin-top: clamp(68px, 8vw, 116px);
}

.lxcv1-section--catalog {
    margin-top: 34px;
}

.lxcv1-section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.lxcv1-section__head h2,
.lxcv1-brand-strip h2,
.lxcv1-catalog-hero h1,
.lxcv1-search-hero h1,
.lxcv1-collection-hero h1,
.lxcv1-checkout-heading h1,
.lxcv1-success-hero h1 {
    margin: 0;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.045em;
}

.lxcv1-section__head h2 {
    font-size: clamp(34px, 4vw, 56px);
}

.lxcv1-section__head > a {
    color: var(--lxcv1-jade);
    font-size: 12px;
    font-weight: 850;
}

.lxcv1-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 26px;
}

.lxcv1-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border: 1px solid var(--lxcv1-ink);
    border-radius: 13px;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.lxcv1-button--dark {
    color: #fff;
    background: var(--lxcv1-ink);
    box-shadow: 0 13px 28px rgba(18, 24, 21, .16);
}

.lxcv1-button--dark:hover {
    background: var(--lxcv1-jade-dark);
}

.lxcv1-button--text {
    border-color: var(--lxcv1-line);
    color: var(--lxcv1-jade-dark);
    background: #fff;
}

.lxcv1-button--wide {
    width: 100%;
}

.lxcv1-text-button {
    padding: 0;
    border: 0;
    color: var(--lxcv1-jade);
    background: transparent;
    font-size: 11px;
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.lxcv1-text-button--danger {
    color: var(--lxcv1-danger);
}

.lxcv1-alert {
    margin: 14px 0;
    padding: 13px 15px;
    border: 1px solid #d9e2dd;
    border-radius: 14px;
    color: #5f6a64;
    background: #f4f8f5;
    font-size: 12px;
    line-height: 1.55;
}

.lxcv1-alert--error {
    border-color: #efd1d6;
    color: var(--lxcv1-danger);
    background: #fff2f4;
}

.lxcv1-alert--success {
    border-color: #cce7d9;
    color: var(--lxcv1-success);
    background: #effaf4;
}

.lxcv1-account-note {
    max-width: 920px;
    margin: 18px auto;
    padding: 16px 18px;
    border: 1px solid #d8e3dc;
    border-radius: 16px;
    color: var(--lxcv1-muted);
    background: #f5f8f6;
    font-size: 12px;
    line-height: 1.6;
}

.lxcv1-empty {
    grid-column: 1 / -1;
    min-height: 220px;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 12px;
    padding: 34px;
    border: 1px dashed #bdcac2;
    border-radius: var(--lxcv1-radius);
    color: var(--lxcv1-muted);
    text-align: center;
    background: rgba(255, 255, 255, .66);
}

.lxcv1-empty--large {
    min-height: 480px;
}

.lxcv1-empty > span {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--lxcv1-jade-dark);
    background: var(--lxcv1-lime);
    font-size: 24px;
    font-weight: 900;
}

.lxcv1-empty h1,
.lxcv1-empty h2 {
    margin: 0;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    color: var(--lxcv1-ink);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 500;
}

.lxcv1-empty p {
    max-width: 580px;
    margin: 0;
    line-height: 1.65;
}

[data-lxcv1-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity .62s ease,
        transform .62s cubic-bezier(.2, .75, .2, 1);
}

[data-lxcv1-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* Home */

.lxcv1-home-hero {
    min-height: min(760px, calc(100vh - 130px));
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
    overflow: hidden;
    border: 1px solid rgba(215, 224, 219, .9);
    border-radius: 36px;
    background:
        radial-gradient(circle at 2% 0%, rgba(223, 255, 79, .38), transparent 26rem),
        linear-gradient(135deg, #f4f7f4, #e7eee9);
    box-shadow: var(--lxcv1-shadow);
}

.lxcv1-home-hero__copy {
    align-self: center;
    padding: clamp(40px, 6vw, 86px);
}

.lxcv1-home-hero__copy h1 {
    max-width: 780px;
    margin: 0;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: clamp(52px, 6vw, 92px);
    font-weight: 500;
    line-height: .88;
    letter-spacing: -.06em;
}

.lxcv1-home-hero__copy > p:not(.lxcv1-kicker) {
    max-width: 580px;
    margin: 24px 0 0;
    color: var(--lxcv1-muted);
    font-size: 15px;
    line-height: 1.75;
}

.lxcv1-home-hero__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 40px;
    border-top: 1px solid rgba(104, 113, 108, .22);
}

.lxcv1-home-hero__facts span {
    min-width: 0;
    display: grid;
    gap: 4px;
    padding: 16px 12px 0 0;
}

.lxcv1-home-hero__facts span + span {
    padding-left: 12px;
    border-left: 1px solid rgba(104, 113, 108, .22);
}

.lxcv1-home-hero__facts strong {
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.lxcv1-home-hero__facts small {
    color: var(--lxcv1-muted);
    font-size: 9px;
    line-height: 1.35;
}

.lxcv1-home-hero__visual {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #dce5df;
}

.lxcv1-home-hero__main {
    position: absolute;
    inset: 0;
}

.lxcv1-home-hero__main::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 56%, rgba(9, 18, 14, .42)),
        linear-gradient(90deg, rgba(240, 245, 241, .16), transparent 36%);
}

.lxcv1-home-hero__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .8s cubic-bezier(.2, .75, .2, 1);
}

.lxcv1-home-hero__main:hover img {
    transform: scale(1.018);
}

.lxcv1-home-hero__main > span {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 28px;
    left: 28px;
    display: grid;
    gap: 4px;
    color: #fff;
}

.lxcv1-home-hero__main small {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .14em;
}

.lxcv1-home-hero__main strong {
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 34px;
    font-weight: 500;
}

.lxcv1-home-hero__support {
    position: absolute;
    z-index: 3;
    right: 24px;
    top: 24px;
    width: 150px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, .88);
    border-radius: 20px;
    box-shadow: 0 22px 48px rgba(16, 31, 25, .2);
    transform: rotate(2.5deg);
}

.lxcv1-home-hero__support img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lxcv1-home-hero__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    color: rgba(15, 106, 88, .72);
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: clamp(70px, 10vw, 150px);
    line-height: .7;
}

.lxcv1-home-hero__placeholder span:last-child {
    margin-left: .55em;
}

/* Collections */

.lxcv1-collection-rail {
    display: grid;
    grid-template-columns: 1.15fr .85fr .85fr;
    gap: 14px;
}

.lxcv1-collection-card {
    position: relative;
    min-height: 260px;
    display: grid;
    align-content: space-between;
    overflow: hidden;
    padding: 22px;
    border-radius: 28px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(10, 20, 16, .05), rgba(10, 20, 16, .68)),
        var(--lxcv1-collection-image, linear-gradient(135deg, #0f6a58, #263c34))
        center / cover;
    box-shadow: var(--lxcv1-shadow-soft);
}

.lxcv1-collection-card--2 {
    background:
        linear-gradient(180deg, rgba(10, 20, 16, .03), rgba(10, 20, 16, .64)),
        var(--lxcv1-collection-image, linear-gradient(135deg, #ff6848, #5e2f27))
        center / cover;
}

.lxcv1-collection-card--3 {
    background:
        linear-gradient(180deg, rgba(10, 20, 16, .03), rgba(10, 20, 16, .64)),
        var(--lxcv1-collection-image, linear-gradient(135deg, #dfff4f, #68782c))
        center / cover;
}

.lxcv1-collection-card > span {
    width: 38px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(12, 22, 18, .26);
    font-size: 9px;
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.lxcv1-collection-card > div {
    display: grid;
    gap: 7px;
}

.lxcv1-collection-card strong {
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 30px;
    font-weight: 500;
}

.lxcv1-collection-card small {
    max-width: 430px;
    color: rgba(255, 255, 255, .78);
    font-size: 11px;
    line-height: 1.55;
}

/* Product cards */

.lxcv1-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px 16px;
}

.lxcv1-product-card {
    min-width: 0;
}

.lxcv1-product-card__media {
    position: relative;
    aspect-ratio: 4 / 5;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    background: var(--lxcv1-canvas-deep);
}

.lxcv1-product-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 66%, rgba(10, 18, 14, .2));
    opacity: 0;
    transition: opacity .3s ease;
}

.lxcv1-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .62s cubic-bezier(.2, .75, .2, 1);
}

.lxcv1-product-card:hover .lxcv1-product-card__media img {
    transform: scale(1.025);
}

.lxcv1-product-card:hover .lxcv1-product-card__media::after {
    opacity: 1;
}

.lxcv1-product-card__badge {
    position: absolute;
    z-index: 2;
    top: 11px;
    left: 11px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    background: var(--lxcv1-coral);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.lxcv1-product-card__badge--soft {
    color: var(--lxcv1-jade-dark);
    background: var(--lxcv1-lime);
}

.lxcv1-product-card__open {
    position: absolute;
    z-index: 3;
    right: 12px;
    bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(18, 24, 21, .54);
    font-size: 9px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity .24s ease, transform .24s ease;
    backdrop-filter: blur(10px);
}

.lxcv1-product-card:hover .lxcv1-product-card__open {
    opacity: 1;
    transform: none;
}

.lxcv1-product-card__body {
    padding: 13px 2px 0;
}

.lxcv1-product-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--lxcv1-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.lxcv1-product-card h3 {
    min-height: 46px;
    margin: 8px 0 7px;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.25;
}

.lxcv1-product-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.lxcv1-product-card__price strong {
    font-size: 14px;
    font-weight: 900;
}

.lxcv1-product-card__price del {
    color: #98a09c;
    font-size: 11px;
}

.lxcv1-product-card__colors {
    min-height: 22px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 9px;
}

.lxcv1-product-card__colors > span {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--lxcv1-swatch);
    box-shadow: 0 0 0 1px #c9d1cc;
}

.lxcv1-product-card__colors small {
    margin-left: 3px;
    color: var(--lxcv1-muted);
    font-size: 9px;
    font-weight: 700;
}

/* Brand strip */

.lxcv1-brand-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(440px, .9fr);
    gap: 64px;
    align-items: center;
    margin-top: clamp(78px, 10vw, 140px);
    padding: clamp(38px, 6vw, 76px);
    border-radius: 34px;
    color: #fff;
    background:
        radial-gradient(circle at 0 0, rgba(223, 255, 79, .22), transparent 24rem),
        var(--lxcv1-ink);
    box-shadow: var(--lxcv1-shadow);
}

.lxcv1-brand-strip .lxcv1-kicker {
    color: var(--lxcv1-lime);
}

.lxcv1-brand-strip h2 {
    max-width: 700px;
    font-size: clamp(38px, 5vw, 68px);
}

.lxcv1-brand-strip > div:last-child {
    display: grid;
    gap: 10px;
}

.lxcv1-brand-strip article {
    min-height: 68px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 16px;
    background: rgba(255, 255, 255, .045);
}

.lxcv1-brand-strip article strong {
    color: var(--lxcv1-lime);
    font-size: 10px;
    letter-spacing: .08em;
}

.lxcv1-brand-strip article span {
    color: #c2cbc6;
    font-size: 12px;
}

/* Catalog/search/collection heroes */

.lxcv1-catalog-hero,
.lxcv1-search-hero,
.lxcv1-checkout-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
    padding: clamp(42px, 6vw, 80px) clamp(28px, 5vw, 66px);
    border: 1px solid var(--lxcv1-line);
    border-radius: 30px;
    background:
        radial-gradient(circle at 100% 0, rgba(223, 255, 79, .28), transparent 24rem),
        rgba(255, 255, 255, .84);
    box-shadow: var(--lxcv1-shadow-soft);
}

.lxcv1-catalog-hero--discover {
    background:
        radial-gradient(circle at 0 100%, rgba(255, 104, 72, .16), transparent 24rem),
        radial-gradient(circle at 100% 0, rgba(223, 255, 79, .25), transparent 24rem),
        rgba(255, 255, 255, .84);
}

.lxcv1-catalog-hero h1,
.lxcv1-search-hero h1,
.lxcv1-checkout-heading h1 {
    font-size: clamp(44px, 6vw, 78px);
}

.lxcv1-catalog-hero p:not(.lxcv1-kicker),
.lxcv1-search-hero p:not(.lxcv1-kicker),
.lxcv1-checkout-heading p:not(.lxcv1-kicker) {
    max-width: 650px;
    margin: 16px 0 0;
    color: var(--lxcv1-muted);
    line-height: 1.7;
}

.lxcv1-round-link {
    width: 132px;
    height: 132px;
    flex: 0 0 auto;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 8px;
    border-radius: 50%;
    color: var(--lxcv1-jade-dark);
    background: var(--lxcv1-lime);
    font-size: 11px;
    font-weight: 900;
    text-align: center;
    transform: rotate(-3deg);
}

.lxcv1-round-link span {
    font-size: 22px;
}

.lxcv1-search-hero {
    display: grid;
    justify-items: center;
    text-align: center;
}

.lxcv1-search-box {
    width: min(780px, 100%);
    min-height: 58px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    margin-top: 26px;
    overflow: hidden;
    border: 1px solid var(--lxcv1-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--lxcv1-shadow-soft);
}

.lxcv1-search-box svg {
    width: 20px;
    height: 20px;
    justify-self: center;
    color: var(--lxcv1-muted);
}

.lxcv1-search-box input {
    min-width: 0;
    height: 56px;
    padding: 0 14px 0 0;
    border: 0;
    outline: 0;
    color: var(--lxcv1-ink);
}

.lxcv1-search-box button {
    align-self: stretch;
    padding: 0 22px;
    border: 0;
    color: #fff;
    background: var(--lxcv1-ink);
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
}

.lxcv1-form-message {
    color: var(--lxcv1-danger) !important;
    font-weight: 800;
}

.lxcv1-search-hero__result {
    font-size: 12px;
}

.lxcv1-collection-hero {
    min-height: 440px;
    display: grid;
    align-content: end;
    overflow: hidden;
    padding: clamp(38px, 6vw, 72px);
    border-radius: 34px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(10, 18, 14, .08), rgba(10, 18, 14, .72)),
        var(--lxcv1-collection-hero, linear-gradient(135deg, #0f6a58, #1d3029))
        center / cover;
    box-shadow: var(--lxcv1-shadow);
}

.lxcv1-collection-hero .lxcv1-kicker {
    color: var(--lxcv1-lime);
}

.lxcv1-collection-hero h1 {
    max-width: 900px;
    font-size: clamp(48px, 7vw, 92px);
}

.lxcv1-collection-hero p:not(.lxcv1-kicker) {
    max-width: 620px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
}

.lxcv1-feed-tabs {
    display: flex;
    gap: 8px;
    margin: 22px 0 0;
    overflow-x: auto;
    padding: 2px 0 7px;
    scrollbar-width: none;
}

.lxcv1-feed-tabs::-webkit-scrollbar {
    display: none;
}

.lxcv1-feed-tabs a {
    flex: 0 0 auto;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--lxcv1-line);
    border-radius: 999px;
    color: var(--lxcv1-muted);
    background: #fff;
    font-size: 11px;
    font-weight: 850;
}

.lxcv1-feed-tabs a.is-active {
    border-color: var(--lxcv1-ink);
    color: #fff;
    background: var(--lxcv1-ink);
}

.lxcv1-pagination {
    margin-top: 42px;
    text-align: center;
}

/* Cart */

.lxcv1-checkout-heading > span {
    min-width: 130px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 999px;
    color: var(--lxcv1-jade-dark);
    background: var(--lxcv1-lime);
    font-size: 12px;
    font-weight: 900;
}

.lxcv1-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
    margin-top: 26px;
}

.lxcv1-cart-items {
    display: grid;
    gap: 13px;
}

.lxcv1-cart-item {
    display: grid;
    grid-template-columns: 136px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
    padding: 16px;
    border: 1px solid var(--lxcv1-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--lxcv1-shadow-soft);
}

.lxcv1-cart-item__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 15px;
    background: var(--lxcv1-canvas-deep);
}

.lxcv1-cart-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lxcv1-cart-item__info {
    min-width: 0;
    padding-top: 5px;
}

.lxcv1-cart-item__info h2 {
    margin: 0;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.1;
}

.lxcv1-cart-item__info > p:not(.lxcv1-kicker) {
    margin: 8px 0 0;
    color: var(--lxcv1-muted);
    font-size: 12px;
}

.lxcv1-cart-item__total {
    padding-top: 8px;
    font-size: 15px;
    white-space: nowrap;
}

.lxcv1-cart-item__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 15px;
    margin-top: 20px;
}

.lxcv1-cart-item__actions form {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.lxcv1-cart-quantity {
    height: 40px;
    display: grid;
    grid-template-columns: 32px 42px 32px;
    overflow: hidden;
    border: 1px solid var(--lxcv1-line);
    border-radius: 11px;
    background: #fff;
}

.lxcv1-cart-quantity button,
.lxcv1-cart-quantity input {
    min-width: 0;
    border: 0;
    outline: 0;
    text-align: center;
    background: transparent;
}

.lxcv1-cart-quantity button {
    cursor: pointer;
    font-size: 17px;
}

.lxcv1-cart-quantity input {
    padding: 0;
    font-size: 12px;
    font-weight: 900;
    -moz-appearance: textfield;
}

.lxcv1-cart-quantity input::-webkit-inner-spin-button,
.lxcv1-cart-quantity input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.lxcv1-cart-summary,
.lxcv1-order-summary {
    position: sticky;
    top: 116px;
    padding: 24px;
    border: 1px solid var(--lxcv1-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, .95);
    box-shadow: var(--lxcv1-shadow);
    backdrop-filter: blur(14px);
}

.lxcv1-cart-summary h2,
.lxcv1-order-summary h2,
.lxcv1-receipt-card h2 {
    margin: 0;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 30px;
    font-weight: 500;
}

.lxcv1-cart-summary dl,
.lxcv1-order-totals,
.lxcv1-receipt-card dl {
    display: grid;
    gap: 0;
    margin: 20px 0;
}

.lxcv1-cart-summary dl > div,
.lxcv1-order-totals > div,
.lxcv1-receipt-card dl > div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--lxcv1-line);
}

.lxcv1-cart-summary dt,
.lxcv1-order-totals dt,
.lxcv1-receipt-card dt {
    color: var(--lxcv1-muted);
    font-size: 12px;
}

.lxcv1-cart-summary dd,
.lxcv1-order-totals dd,
.lxcv1-receipt-card dd {
    margin: 0;
    font-size: 12px;
    font-weight: 850;
    text-align: right;
}

.lxcv1-cart-summary .is-grand,
.lxcv1-order-totals .is-grand {
    padding-top: 18px;
    border-bottom: 0;
    font-size: 17px;
}

.lxcv1-cart-summary > p {
    color: var(--lxcv1-muted);
    font-size: 11px;
    line-height: 1.55;
}

.lxcv1-cart-summary > form {
    margin-top: 15px;
    text-align: center;
}

.lxcv1-cart-mobile-cta {
    display: none;
}

/* Checkout */

.lxcv1-checkout-steps {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lxcv1-checkout-steps li {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid var(--lxcv1-line);
    border-radius: 999px;
    color: var(--lxcv1-muted);
    background: #fff;
    font-size: 10px;
    font-weight: 850;
}

.lxcv1-checkout-steps li.is-done {
    color: var(--lxcv1-jade-dark);
    background: #eef7d2;
}

.lxcv1-checkout-steps li.is-active {
    border-color: var(--lxcv1-ink);
    color: #fff;
    background: var(--lxcv1-ink);
}

.lxcv1-checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 24px;
    align-items: start;
    margin-top: 26px;
}

.lxcv1-checkout-form {
    display: grid;
    gap: 14px;
}

.lxcv1-checkout-card,
.lxcv1-receipt-card {
    padding: 26px;
    border: 1px solid var(--lxcv1-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--lxcv1-shadow-soft);
}

.lxcv1-checkout-card > header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.lxcv1-checkout-card > header > span {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--lxcv1-jade-dark);
    background: var(--lxcv1-lime);
    font-size: 10px;
    font-weight: 900;
}

.lxcv1-checkout-card h2 {
    margin: 0;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 28px;
    font-weight: 500;
}

.lxcv1-checkout-card header p {
    margin: 5px 0 0;
    color: var(--lxcv1-muted);
    font-size: 11px;
    line-height: 1.55;
}

.lxcv1-checkout-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.lxcv1-checkout-fields label {
    display: grid;
    gap: 7px;
}

.lxcv1-checkout-fields label.is-wide {
    grid-column: 1 / -1;
}

.lxcv1-checkout-fields label > span {
    font-size: 11px;
    font-weight: 850;
}

.lxcv1-checkout-fields label > span small {
    color: var(--lxcv1-muted);
    font-weight: 500;
}

.lxcv1-checkout-fields input,
.lxcv1-checkout-fields select {
    width: 100%;
    min-height: 49px;
    padding: 10px 13px;
    border: 1px solid var(--lxcv1-line);
    border-radius: 12px;
    outline: 0;
    color: var(--lxcv1-ink);
    background: #fff;
    font-size: 12px;
}

.lxcv1-checkout-fields input:focus,
.lxcv1-checkout-fields select:focus {
    border-color: var(--lxcv1-jade);
    box-shadow: 0 0 0 3px rgba(15, 106, 88, .1);
}

.lxcv1-choice {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--lxcv1-jade);
    border-radius: 15px;
    background: #f3f8f5;
    cursor: pointer;
}

.lxcv1-choice input {
    accent-color: var(--lxcv1-jade);
}

.lxcv1-choice > span {
    display: grid;
    gap: 4px;
}

.lxcv1-choice strong {
    font-size: 13px;
}

.lxcv1-choice small {
    color: var(--lxcv1-muted);
    font-size: 11px;
    line-height: 1.45;
}

.lxcv1-choice > i {
    min-width: 32px;
    min-height: 28px;
    display: grid;
    place-items: center;
    padding-inline: 7px;
    border-radius: 999px;
    color: var(--lxcv1-jade-dark);
    background: var(--lxcv1-lime);
    font-style: normal;
    font-size: 9px;
    font-weight: 900;
}

.lxcv1-place-order {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 20px;
    border: 0;
    border-radius: 15px;
    color: #fff;
    background: var(--lxcv1-ink);
    box-shadow: 0 16px 34px rgba(18, 24, 21, .18);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.lxcv1-place-order:hover:not(:disabled) {
    background: var(--lxcv1-jade-dark);
}

.lxcv1-place-order:disabled {
    color: #8d9691;
    background: #e2e8e4;
    box-shadow: none;
    cursor: not-allowed;
}

.lxcv1-checkout-legal {
    margin: 0;
    color: var(--lxcv1-muted);
    text-align: center;
    font-size: 10px;
    line-height: 1.55;
}

.lxcv1-order-summary > header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.lxcv1-order-summary > header a {
    color: var(--lxcv1-jade);
    font-size: 11px;
    font-weight: 850;
}

.lxcv1-order-lines {
    display: grid;
    gap: 13px;
    margin: 20px 0;
}

.lxcv1-order-lines article {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) auto;
    gap: 11px;
    align-items: center;
}

.lxcv1-order-lines article.is-text-only {
    grid-template-columns: minmax(0, 1fr) auto;
}

.lxcv1-order-lines img {
    width: 62px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 10px;
    background: var(--lxcv1-canvas-deep);
}

.lxcv1-order-lines article > div {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.lxcv1-order-lines strong {
    font-size: 12px;
    line-height: 1.35;
}

.lxcv1-order-lines small {
    color: var(--lxcv1-muted);
    font-size: 9px;
    line-height: 1.45;
}

.lxcv1-order-lines b {
    font-size: 11px;
    white-space: nowrap;
}

.lxcv1-order-summary > p {
    margin: 0;
    color: var(--lxcv1-muted);
    font-size: 10px;
    line-height: 1.5;
}

/* Success/order/account */

.lxcv1-success-hero {
    display: grid;
    justify-items: center;
    max-width: 840px;
    margin: 20px auto 36px;
    text-align: center;
}

.lxcv1-success-hero__mark {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--lxcv1-jade-dark);
    background: var(--lxcv1-lime);
    box-shadow: 0 16px 36px rgba(113, 139, 27, .2);
    font-size: 34px;
    font-weight: 900;
}

.lxcv1-success-hero h1 {
    font-size: clamp(46px, 6vw, 78px);
}

.lxcv1-success-hero > p:not(.lxcv1-kicker) {
    max-width: 620px;
    margin: 14px 0 0;
    color: var(--lxcv1-muted);
    line-height: 1.7;
}

.lxcv1-receipt-layout,
.lxcv1-account-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 24px;
    align-items: start;
}

.lxcv1-receipt-card > p {
    color: var(--lxcv1-muted);
    line-height: 1.6;
}

.lxcv1-receipt-card > form {
    margin-top: 18px;
}

.lxcv1-account-card {
    max-width: 800px;
    margin-inline: auto;
}

.lxcv1-address-grid {
    display: grid;
    gap: 12px;
}

.lxcv1-address-grid article {
    padding: 20px;
    border: 1px solid var(--lxcv1-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--lxcv1-shadow-soft);
}

.lxcv1-address-grid article > span {
    margin-left: 8px;
    padding: 4px 7px;
    border-radius: 999px;
    color: var(--lxcv1-jade-dark);
    background: var(--lxcv1-lime);
    font-size: 8px;
    font-weight: 900;
}

.lxcv1-address-grid p {
    color: var(--lxcv1-muted);
    font-size: 11px;
    line-height: 1.55;
}

.lxcv1-order-list {
    display: grid;
    gap: 12px;
    max-width: 940px;
    margin: 26px auto 0;
}

.lxcv1-order-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px;
    border: 1px solid var(--lxcv1-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--lxcv1-shadow-soft);
    transition: transform .2s ease, box-shadow .2s ease;
}

.lxcv1-order-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--lxcv1-shadow);
}

.lxcv1-order-card > div {
    display: grid;
    gap: 5px;
}

.lxcv1-order-card > div:last-child {
    justify-items: end;
}

.lxcv1-order-card small {
    color: var(--lxcv1-muted);
}

.lxcv1-order-card span {
    padding: 5px 8px;
    border-radius: 999px;
    color: var(--lxcv1-jade-dark);
    background: var(--lxcv1-surface-soft);
    font-size: 9px;
    font-weight: 850;
}

/* Footer and mobile nav */

.lxcv1-footer {
    width: min(var(--lxcv1-max), calc(100% - 40px));
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    margin: 0 auto 32px;
    padding: 42px;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 0 0, rgba(223, 255, 79, .18), transparent 26rem),
        var(--lxcv1-ink);
    box-shadow: var(--lxcv1-shadow);
}

.lxcv1-footer__brand {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
}

.lxcv1-footer__brand > span {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--lxcv1-ink);
    background: var(--lxcv1-lime);
    font-size: 13px;
    font-weight: 950;
}

.lxcv1-footer__brand strong {
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: .06em;
}

.lxcv1-footer__brand p {
    max-width: 440px;
    margin: 8px 0 0;
    color: #aeb9b3;
    font-size: 12px;
    line-height: 1.6;
}

.lxcv1-footer__columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lxcv1-footer__columns > div {
    display: grid;
    align-content: start;
    gap: 9px;
}

.lxcv1-footer__columns small {
    margin-bottom: 4px;
    color: var(--lxcv1-lime);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.lxcv1-footer__columns a,
.lxcv1-footer__columns span {
    color: #bdc6c1;
    font-size: 11px;
}

.lxcv1-bottom-nav {
    display: none;
}

/* Responsive */

@media (max-width: 1120px) {
    .lxcv1-header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .lxcv1-header-search {
        display: none;
    }

    .lxcv1-home-hero {
        grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
    }

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

    .lxcv1-cart-layout,
    .lxcv1-checkout-layout,
    .lxcv1-receipt-layout,
    .lxcv1-account-layout {
        grid-template-columns: minmax(0, 1fr) 340px;
    }
}

@media (max-width: 900px) {
    .lxcv1-nav {
        display: none;
    }

    .lxcv1-header__inner {
        grid-template-columns: 1fr auto;
    }

    .lxcv1-home-hero {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .lxcv1-home-hero__visual {
        min-height: 620px;
    }

    .lxcv1-collection-rail {
        grid-template-columns: 1fr 1fr;
    }

    .lxcv1-collection-card:first-child {
        grid-column: 1 / -1;
    }

    .lxcv1-brand-strip {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .lxcv1-cart-layout,
    .lxcv1-checkout-layout,
    .lxcv1-receipt-layout,
    .lxcv1-account-layout {
        grid-template-columns: 1fr;
    }

    .lxcv1-cart-summary,
    .lxcv1-order-summary {
        position: static;
    }

    .lxcv1-preview-bar {
        grid-template-columns: 1fr auto;
    }

    .lxcv1-preview-bar nav {
        display: none;
    }

    .lxcv1-footer {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 760px) {
    .lxcv1-main--home .lxh3-home {
        gap: 8px;
    }

    .lxcv1-main--home .lxh3-video-hero {
        min-height: min(76dvh, 700px);
    }

    .lxcv1-main--home .lxh3-catalog {
        padding-top: 6px;
    }

    .lxv2-theme--luxe-commerce-v1 .lxv2-main,
    .lxcv1-header__inner,
    .lxcv1-preview-bar,
    .lxcv1-footer {
        width: calc(100% - 24px);
    }

    .lxv2-theme--luxe-commerce-v1 .lxv2-main {
        padding-top: 14px;
        padding-bottom: calc(92px + env(safe-area-inset-bottom));
    }

    .lxcv1-header__notice {
        font-size: 9px;
    }

    .lxcv1-header__inner {
        min-height: 62px;
    }

    .lxcv1-brand__monogram {
        width: 38px;
        height: 38px;
    }

    .lxcv1-brand strong {
        font-size: 18px;
    }

    .lxcv1-brand small {
        display: none;
    }

    .lxcv1-header-actions a {
        width: 39px;
        height: 39px;
        border-radius: 12px;
    }

    .lxcv1-preview-bar {
        margin-top: 10px;
        padding: 9px 10px;
        border-radius: 13px;
    }

    .lxcv1-preview-bar > div {
        display: grid;
        gap: 2px;
    }

    .lxcv1-preview-bar span {
        display: none;
    }

    .lxcv1-preview-bar__exit {
        padding: 7px 9px;
    }

    .lxcv1-home-hero {
        margin-inline: -12px;
        border-inline: 0;
        border-radius: 0;
    }

    .lxcv1-home-hero__copy {
        padding: 46px 22px;
    }

    .lxcv1-home-hero__copy h1 {
        font-size: clamp(47px, 15vw, 68px);
    }

    .lxcv1-home-hero__visual {
        min-height: 520px;
    }

    .lxcv1-home-hero__support {
        width: 112px;
        right: 14px;
        top: 14px;
        border-width: 4px;
        border-radius: 15px;
    }

    .lxcv1-home-hero__main > span {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }

    .lxcv1-home-hero__main strong {
        font-size: 28px;
    }

    .lxcv1-home-hero__facts {
        overflow-x: auto;
    }

    .lxcv1-home-hero__facts span {
        min-width: 120px;
    }

    .lxcv1-section {
        margin-top: 62px;
    }

    .lxcv1-section__head {
        align-items: start;
    }

    .lxcv1-section__head h2 {
        font-size: 36px;
    }

    .lxcv1-section__head > a {
        font-size: 10px;
    }

    .lxcv1-collection-rail {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .lxcv1-collection-card,
    .lxcv1-collection-card:first-child {
        min-width: 82vw;
        min-height: 280px;
        grid-column: auto;
        scroll-snap-align: center;
    }

    .lxcv1-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 9px;
    }

    .lxcv1-product-card__media {
        border-radius: 14px;
    }

    .lxcv1-product-card__open {
        display: none;
    }

    .lxcv1-product-card__meta {
        display: grid;
        gap: 3px;
    }

    .lxcv1-product-card h3 {
        min-height: 52px;
        font-size: 16px;
    }

    .lxcv1-brand-strip {
        margin-inline: -12px;
        padding: 42px 24px;
        border-radius: 0;
    }

    .lxcv1-brand-strip h2 {
        font-size: 42px;
    }

    .lxcv1-catalog-hero,
    .lxcv1-search-hero,
    .lxcv1-checkout-heading {
        align-items: start;
        flex-direction: column;
        padding: 34px 22px;
        border-radius: 22px;
    }

    .lxcv1-catalog-hero h1,
    .lxcv1-search-hero h1,
    .lxcv1-checkout-heading h1 {
        font-size: 48px;
    }

    .lxcv1-round-link {
        width: auto;
        height: auto;
        min-height: 44px;
        display: inline-flex;
        padding: 0 16px;
        border-radius: 999px;
        transform: none;
    }

    .lxcv1-search-box {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .lxcv1-search-box button {
        grid-column: 1 / -1;
        min-height: 46px;
    }

    .lxcv1-collection-hero {
        min-height: 410px;
        padding: 28px 22px;
        border-radius: 22px;
    }

    .lxcv1-collection-hero h1 {
        font-size: 54px;
    }

    .lxcv1-checkout-heading > span {
        min-width: 0;
    }

    .lxcv1-checkout-steps {
        width: 100%;
        overflow-x: auto;
    }

    .lxcv1-cart-item {
        grid-template-columns: 94px minmax(0, 1fr);
        gap: 13px;
        padding: 12px;
    }

    .lxcv1-cart-item__total {
        grid-column: 2;
        padding-top: 0;
    }

    .lxcv1-cart-item__info h2 {
        font-size: 22px;
    }

    .lxcv1-cart-item__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .lxcv1-cart-mobile-cta {
        position: fixed;
        z-index: 620;
        right: 0;
        bottom: calc(68px + env(safe-area-inset-bottom));
        left: 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        padding: 10px 12px;
        border-top: 1px solid var(--lxcv1-line);
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 -14px 36px rgba(18, 36, 29, .10);
        backdrop-filter: blur(18px);
    }

    .lxcv1-cart-mobile-cta > div {
        display: grid;
        gap: 2px;
    }

    .lxcv1-cart-mobile-cta small {
        color: var(--lxcv1-muted);
        font-size: 9px;
    }

    .lxcv1-cart-mobile-cta strong {
        font-size: 15px;
    }

    .lxcv1-cart-mobile-cta a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        padding: 0 17px;
        border-radius: 12px;
        color: #fff;
        background: var(--lxcv1-ink);
        font-size: 11px;
        font-weight: 900;
    }

    .lxcv1-checkout-card,
    .lxcv1-receipt-card,
    .lxcv1-cart-summary,
    .lxcv1-order-summary {
        padding: 19px;
        border-radius: 19px;
    }

    .lxcv1-checkout-fields {
        grid-template-columns: 1fr;
    }

    .lxcv1-checkout-fields label.is-wide {
        grid-column: auto;
    }

    .lxcv1-place-order {
        position: sticky;
        z-index: 5;
        bottom: calc(74px + env(safe-area-inset-bottom));
    }

    .lxcv1-order-lines article {
        grid-template-columns: 54px minmax(0, 1fr);
    }

    .lxcv1-order-lines article > b {
        grid-column: 2;
    }

    .lxcv1-order-lines article.is-text-only {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .lxcv1-order-lines article.is-text-only > b {
        grid-column: auto;
    }

    .lxcv1-success-hero h1 {
        font-size: 50px;
    }

    .lxcv1-footer {
        margin-bottom: calc(82px + env(safe-area-inset-bottom));
        padding: 30px 24px;
        border-radius: 22px;
    }

    .lxcv1-footer__columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .lxcv1-footer__columns > div:last-child {
        grid-column: 1 / -1;
    }

    .lxcv1-bottom-nav {
        position: fixed;
        z-index: 600;
        right: 0;
        bottom: 0;
        left: 0;
        min-height: 66px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        padding: 6px 7px calc(6px + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(205, 215, 209, .96);
        color: var(--lxcv1-muted);
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 -16px 42px rgba(18, 36, 29, .12);
        backdrop-filter: blur(20px) saturate(155%);
    }

    .lxcv1-bottom-nav::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 82px;
        height: 3px;
        border-radius: 0 0 999px 999px;
        background: var(--lxcv1-lime);
        transform: translateX(-50%);
    }

    .lxcv1-bottom-nav a {
        min-width: 0;
        display: grid;
        align-content: center;
        justify-items: center;
        gap: 3px;
        border-radius: 13px;
        color: inherit;
    }

    .lxcv1-bottom-nav a.is-active {
        color: var(--lxcv1-jade-dark);
        background: #eff6d7;
    }

    .lxcv1-bottom-nav svg {
        width: 20px;
        height: 20px;
    }

    .lxcv1-bottom-nav span {
        overflow: hidden;
        max-width: 100%;
        font-size: 8px;
        font-weight: 850;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 390px) {
    .lxcv1-product-card h3 {
        min-height: 58px;
        font-size: 15px;
    }

    .lxcv1-product-card__colors > span {
        width: 14px;
        height: 14px;
    }

    .lxcv1-brand-strip h2 {
        font-size: 38px;
    }

    .lxcv1-cart-quantity {
        grid-template-columns: 29px 38px 29px;
    }

    .lxcv1-bottom-nav {
        padding-inline: 4px;
    }

    .lxcv1-bottom-nav span {
        font-size: 7px;
    }
}

/* Fashion viewport catalogue refinements */

.lxh3-video-hero {
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
    border-radius: 0;
    box-shadow: 0 18px 50px rgba(104, 40, 23, .1);
}

.lxh3-catalog__head > div {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.lxh3-catalog__head p {
    margin: 0;
    color: var(--lxcv1-coral);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.lxh3-catalog__head h1 {
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -.045em;
}

.lxh3-product-table .lxcv1-product-card__media img {
    opacity: 1;
    transform: scale(1);
    transition:
        opacity .28s cubic-bezier(.22, 1, .36, 1),
        transform .58s cubic-bezier(.22, 1, .36, 1),
        filter .28s ease;
}

.lxh3-product-table .lxcv1-product-card.is-media-changing .lxcv1-product-card__media img {
    opacity: .32;
    filter: saturate(.72) contrast(.96);
    transform: scale(.985);
}

.lxcv1-product-card__colors > button {
    position: relative;
}

.lxcv1-product-card__colors > button.is-active {
    box-shadow:
        0 0 0 2px #fff,
        0 0 0 4px var(--lxcv1-coral);
    transform: scale(1.04);
}

.lxcv1-product-card__sizes small {
    position: relative;
    overflow: hidden;
    transition:
        color .18s ease,
        border-color .18s ease,
        background .18s ease,
        opacity .18s ease;
}

.lxcv1-product-card__sizes small.is-unavailable {
    color: #aa9d97;
    border-color: #eadfda;
    background: #f7f3f1;
    opacity: .58;
    text-decoration: line-through;
}

.lxcv1-product-card__sizes small.is-unavailable::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 145%;
    height: 1px;
    background: rgba(147, 112, 99, .56);
    content: "";
    transform: translate(-50%, -50%) rotate(-38deg);
}

@media (max-width: 760px) {
    .lxh3-video-hero {
        width: 100vw;
        min-height: min(62dvh, 590px);
        margin-inline: calc(50% - 50vw);
        border-radius: 0;
    }

    .lxh3-catalog__head {
        align-items: end;
    }

    .lxh3-catalog__head p {
        font-size: 7px;
    }

    .lxh3-catalog__head h1 {
        font-size: clamp(31px, 9vw, 40px);
        line-height: .96;
    }

    .lxcv1-product-card__sizes {
        gap: 4px;
    }

    .lxcv1-product-card__sizes > span {
        max-width: 50px;
        font-size: 6.5px;
    }

    .lxcv1-product-card__sizes > div {
        gap: 2px;
    }

    .lxcv1-product-card__sizes small {
        min-width: 17px;
        height: 19px;
        padding-inline: 3px;
        border-radius: 6px;
        font-size: 7px;
    }

    .lxcv1-bottom-nav {
        min-height: 66px;
        padding: 6px 7px calc(6px + env(safe-area-inset-bottom));
        border-top-color: rgba(236, 208, 196, .88);
        box-shadow: 0 -12px 34px rgba(67, 31, 19, .09);
    }

    .lxcv1-bottom-nav a,
    .lxcv1-bottom-nav__video {
        min-height: 50px;
        gap: 3px;
        border-radius: 15px !important;
    }

    .lxcv1-bottom-nav a.is-active,
    .lxcv1-bottom-nav__video.is-active {
        color: #d9462b !important;
        background: linear-gradient(180deg, #fff4ee, #ffe8dd) !important;
    }

    .lxcv1-bottom-nav svg,
    .lxcv1-bottom-nav__video svg {
        width: 24px;
        height: 24px;
        stroke-width: 1.9;
        filter: drop-shadow(0 2px 4px rgba(115, 48, 29, .12));
        transition: transform .18s ease;
    }

    .lxcv1-bottom-nav a.is-active svg {
        transform: translateY(-1px) scale(1.08);
    }

    .lxcv1-bottom-nav span {
        font-size: 8px;
        font-weight: 820;
        letter-spacing: -.01em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lxh3-product-table .lxcv1-product-card__media img,
    .lxcv1-bottom-nav svg {
        transition: none;
    }
}

/* Shop discovery and cart rescue */

.lxcv1-shop {
    display: grid;
    gap: 28px;
}

.lxcv1-shop-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, .34fr);
    gap: 32px;
    align-items: end;
    padding: clamp(30px, 5vw, 64px);
    overflow: hidden;
    border: 1px solid #f0d8ce;
    border-radius: 30px;
    background:
        radial-gradient(circle at 95% 0, rgba(255, 125, 88, .28), transparent 20rem),
        radial-gradient(circle at 15% 100%, rgba(229, 247, 191, .7), transparent 23rem),
        #fffaf7;
}

.lxcv1-shop-intro h1 {
    max-width: 850px;
    margin: 7px 0 0;
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: .98;
}

.lxcv1-shop-intro p:not(.lxcv1-kicker) {
    max-width: 680px;
    margin: 16px 0 0;
    color: var(--lxcv1-muted);
    font-size: 14px;
    line-height: 1.7;
}

.lxcv1-shop-intro__search {
    min-height: 148px;
    display: grid;
    align-content: space-between;
    gap: 20px;
    padding: 20px;
    border-radius: 22px;
    color: #fff;
    background: var(--lxcv1-ink);
    box-shadow: 0 18px 34px rgba(37, 45, 39, .16);
}

.lxcv1-shop-intro__search span {
    max-width: 140px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.lxcv1-shop-intro__search b {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--lxcv1-jade-dark);
    background: var(--lxcv1-lime);
    font-size: 24px;
    font-weight: 500;
}

.lxcv1-shop-layout {
    display: grid;
    grid-template-columns: minmax(208px, .26fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 54px);
    align-items: start;
}

.lxcv1-shop-rail {
    position: sticky;
    top: 106px;
    display: grid;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--lxcv1-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--lxcv1-shadow-soft);
}

.lxcv1-shop-rail__heading {
    display: grid;
    gap: 5px;
}

.lxcv1-shop-rail__heading small,
.lxcv1-shop-filter-group > span {
    color: #a56a55;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .13em;
}

.lxcv1-shop-rail__heading strong {
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.05;
}

.lxcv1-shop-collections {
    display: grid;
    gap: 4px;
}

.lxcv1-shop-collections a {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    color: var(--lxcv1-ink);
    font-size: 12px;
    font-weight: 750;
}

.lxcv1-shop-collections a:hover,
.lxcv1-shop-collections a.is-active {
    background: #fff0e9;
}

.lxcv1-shop-collections b {
    color: #b57560;
    font-size: 11px;
}

.lxcv1-shop-rail__note {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--lxcv1-line);
    color: var(--lxcv1-muted);
}

.lxcv1-shop-rail__note span {
    color: #ef7859;
}

.lxcv1-shop-rail__note p {
    margin: 0;
    font-size: 10px;
    line-height: 1.55;
}

.lxcv1-shop-results {
    min-width: 0;
}

.lxcv1-shop-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.lxcv1-shop-toolbar h2 {
    margin: 5px 0 3px;
    font-size: clamp(31px, 3.3vw, 48px);
}

.lxcv1-shop-toolbar small {
    color: var(--lxcv1-muted);
    font-size: 11px;
}

.lxcv1-shop-filter-toggle {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 15px;
    border: 1px solid #edcfc4;
    border-radius: 999px;
    color: #9d553f;
    background: #fff;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
}

.lxcv1-shop-filter-toggle span {
    font-size: 17px;
    line-height: 1;
}

.lxcv1-shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    align-items: end;
    margin: -4px 0 22px;
    padding: 18px;
    border: 1px solid #f1ded7;
    border-radius: 20px;
    background: #fffaf8;
}

.lxcv1-shop-filter-group {
    display: grid;
    gap: 9px;
}

.lxcv1-filter-option,
.lxcv1-filter-color,
.lxcv1-filter-size {
    cursor: pointer;
}

.lxcv1-filter-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--lxcv1-ink);
    font-size: 11px;
    font-weight: 750;
}

.lxcv1-filter-option input,
.lxcv1-filter-size input,
.lxcv1-filter-color input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.lxcv1-filter-option i {
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    border: 1px solid #d9b9ad;
    border-radius: 5px;
    background: #fff;
}

.lxcv1-filter-option input:checked + i {
    border-color: #e96d4d;
    background: #e96d4d;
}

.lxcv1-filter-option input:checked + i::after {
    content: "✓";
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.lxcv1-filter-size-list,
.lxcv1-filter-color-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.lxcv1-filter-size span,
.lxcv1-filter-color {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 9px;
    border: 1px solid #ead9d2;
    border-radius: 999px;
    color: #6e554d;
    background: #fff;
    font-size: 10px;
    font-weight: 850;
}

.lxcv1-filter-size input:checked + span,
.lxcv1-filter-color:has(input:checked) {
    border-color: #e96d4d;
    color: #a54c34;
    background: #fff0e9;
}

.lxcv1-filter-color i {
    width: 13px;
    height: 13px;
    border: 1px solid rgba(28, 27, 25, .18);
    border-radius: 50%;
    background: var(--lxcv1-filter-swatch);
}

.lxcv1-shop-filter-group--dna {
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 1px solid #efdcd5;
}

.lxcv1-filter-dna-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
}

.lxcv1-filter-dna-group {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.lxcv1-filter-dna-group legend {
    margin-bottom: 7px;
    color: #7a5a50;
    font-size: 10px;
    font-weight: 900;
}

.lxcv1-filter-dna-group > div {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.lxcv1-filter-dna-option {
    cursor: pointer;
}

.lxcv1-filter-dna-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.lxcv1-filter-dna-option span {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    border: 1px solid #ead9d2;
    border-radius: 999px;
    color: #73564d;
    background: #fff;
    font-size: 10px;
    font-weight: 750;
}

.lxcv1-filter-dna-option input:checked + span {
    border-color: #e96d4d;
    color: #9e4c37;
    background: #fff0e9;
}

.lxcv1-filter-dna-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 13px;
}

.lxcv1-filter-dna-apply {
    min-height: 34px;
    padding: 0 13px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--lxcv1-ink);
    font-size: 10px;
    font-weight: 900;
    cursor: pointer;
}

.lxcv1-filter-dna-actions a {
    color: #ac5a42;
    font-size: 10px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.lxcv1-shop-load-more {
    display: grid;
    justify-items: center;
    gap: 8px;
    min-height: 94px;
    margin-top: 32px;
    padding: 20px;
    color: var(--lxcv1-muted);
    text-align: center;
}

.lxcv1-shop-load-more p {
    margin: 0;
    font-size: 11px;
}

.lxcv1-shop-load-more a {
    color: #a9563f;
    font-size: 10px;
    font-weight: 900;
}

.lxcv1-shop-load-more__spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3d8ce;
    border-top-color: #e96d4d;
    border-radius: 50%;
    animation: lxcv1-catalog-spin .75s linear infinite;
}

.lxcv1-shop-load-more:not(.is-loading) .lxcv1-shop-load-more__spinner {
    display: none;
}

.lxcv1-shop-load-more.has-error p {
    color: #b1553c;
}

@keyframes lxcv1-catalog-spin {
    to { transform: rotate(360deg); }
}

.lxcv1-shop-filter-reset,
.lxcv1-shop-filter-empty button {
    min-height: 32px;
    padding: 0 2px;
    border: 0;
    color: #ad5840;
    background: transparent;
    font-size: 10px;
    font-weight: 900;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.lxcv1-shop-filter-empty {
    margin: 26px 0;
    padding: 44px 20px;
    border: 1px dashed #e6cfc5;
    border-radius: 22px;
    text-align: center;
    background: #fffaf8;
}

.lxcv1-shop-filter-empty > span {
    color: #ee7655;
    font-size: 22px;
}

.lxcv1-shop-filter-empty h3 {
    margin: 10px 0 4px;
    font-size: 21px;
}

.lxcv1-shop-filter-empty p {
    max-width: 320px;
    margin: 0 auto;
    color: var(--lxcv1-muted);
    font-size: 12px;
    line-height: 1.5;
}

.lxcv1-cart-rescue {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid #d9ebc5;
    border-radius: 22px;
    background: linear-gradient(105deg, #f4fbe9, #fffaf3);
}

.lxcv1-cart-rescue.is-stale {
    border-color: #f0cfbe;
    background: linear-gradient(105deg, #fff0e8, #fffaf3);
}

.lxcv1-cart-rescue__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #447342;
    background: #e3f1cb;
    font-size: 20px;
}

.lxcv1-cart-rescue.is-stale .lxcv1-cart-rescue__icon {
    color: #ae593d;
    background: #ffe0cf;
}

.lxcv1-cart-rescue h2 {
    margin: 4px 0;
    font-size: 20px;
}

.lxcv1-cart-rescue p:not(.lxcv1-kicker) {
    max-width: 660px;
    margin: 0;
    color: var(--lxcv1-muted);
    font-size: 11px;
    line-height: 1.55;
}

.lxcv1-cart-rescue > a {
    min-height: 37px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 13px;
    border-radius: 999px;
    color: #fff;
    background: var(--lxcv1-ink);
    font-size: 10px;
    font-weight: 900;
    white-space: nowrap;
}

.lxcv1-cart-summary__promise {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    margin: 16px 0;
    padding: 11px;
    border-radius: 12px;
    background: #f4faea;
}

.lxcv1-cart-summary__promise span {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #5a9557;
    font-size: 10px;
    font-weight: 900;
}

.lxcv1-cart-summary__promise p {
    margin: 0 !important;
    color: #496248 !important;
    font-size: 10px !important;
    line-height: 1.45 !important;
}

@media (max-width: 900px) {
    .lxcv1-shop-layout {
        grid-template-columns: 1fr;
    }

    .lxcv1-shop-rail {
        position: static;
        gap: 12px;
        padding: 0;
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .lxcv1-shop-rail__heading,
    .lxcv1-shop-rail__note {
        display: none;
    }

    .lxcv1-shop-collections {
        display: flex;
        gap: 7px;
        overflow-x: auto;
        padding: 2px 0 7px;
        scrollbar-width: none;
    }

    .lxcv1-shop-collections::-webkit-scrollbar {
        display: none;
    }

    .lxcv1-shop-collections a {
        flex: 0 0 auto;
        min-height: 36px;
        padding: 0 12px;
        border: 1px solid #ecdcd5;
        background: #fff;
    }
}

@media (max-width: 760px) {
    .lxcv1-shop {
        gap: 18px;
    }

    .lxcv1-shop-intro {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-inline: -12px;
        padding: 28px 22px 22px;
        border-inline: 0;
        border-radius: 0;
    }

    .lxcv1-shop-intro h1 {
        font-size: clamp(37px, 11vw, 51px);
    }

    .lxcv1-shop-intro p:not(.lxcv1-kicker) {
        font-size: 12px;
    }

    .lxcv1-shop-intro__search {
        min-height: 52px;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        padding: 8px 9px 8px 14px;
        border-radius: 16px;
    }

    .lxcv1-shop-intro__search span {
        max-width: none;
        font-size: 11px;
    }

    .lxcv1-shop-intro__search b {
        width: 34px;
        height: 34px;
    }

    .lxcv1-shop-toolbar {
        margin-top: 2px;
        margin-bottom: 14px;
    }

    .lxcv1-shop-toolbar h2 {
        font-size: 32px;
    }

    .lxcv1-shop-filter-toggle {
        min-height: 39px;
        padding: 0 12px;
    }

    .lxcv1-shop-filters {
        gap: 15px;
        margin-bottom: 18px;
        padding: 15px;
        border-radius: 17px;
    }

    .lxcv1-filter-dna-list {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .lxcv1-cart-rescue {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px;
        margin-top: 16px;
        padding: 13px;
        border-radius: 17px;
    }

    .lxcv1-cart-rescue__icon {
        width: 34px;
        height: 34px;
        border-radius: 11px;
        font-size: 16px;
    }

    .lxcv1-cart-rescue h2 {
        font-size: 16px;
    }

    .lxcv1-cart-rescue > a {
        grid-column: 2;
        justify-self: start;
        min-height: 31px;
        margin-top: 2px;
        font-size: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lxv2-theme--luxe-commerce-v1 *,
    .lxv2-theme--luxe-commerce-v1 *::before,
    .lxv2-theme--luxe-commerce-v1 *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition-duration: .01ms !important;
    }

    [data-lxcv1-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Energetic, lightweight mobile catalogue refresh */

.lxv2-theme--luxe-commerce-v1 {
    --lxcv1-canvas: #fff7f1;
    --lxcv1-canvas-deep: #ffe5d8;
    --lxcv1-surface-soft: #fff0e8;
    --lxcv1-ink: #261713;
    --lxcv1-muted: #7a6259;
    --lxcv1-line: #f0d3c6;
    --lxcv1-jade: #f05432;
    --lxcv1-jade-dark: #b73520;
    --lxcv1-lime: #ffd34e;
    --lxcv1-coral: #ff3f64;
    --lxcv1-shadow: 0 22px 60px rgba(154, 55, 28, .14);
    --lxcv1-shadow-soft: 0 12px 32px rgba(154, 55, 28, .08);
    background:
        radial-gradient(circle at 0 0, rgba(255, 211, 78, .24), transparent 26rem),
        linear-gradient(180deg, #fffaf7 0, var(--lxcv1-canvas) 42rem, #fff 100%);
}

.lxv2-theme--luxe-commerce-v1 button:focus-visible,
.lxv2-theme--luxe-commerce-v1 a:focus-visible,
.lxv2-theme--luxe-commerce-v1 input:focus-visible {
    outline-color: rgba(240, 84, 50, .28);
}

.lxh3-ticker {
    position: relative;
    z-index: 790;
    border: 0;
    border-radius: 0;
    color: #351811;
    background: linear-gradient(90deg, #ffd34e, #ffb43f 52%, #ff8f5a);
    box-shadow: none;
}

.lxh3-ticker__track > div {
    min-height: 32px;
}

.lxh3-ticker span {
    padding-inline: 15px;
    font-size: 9px;
    letter-spacing: .035em;
}

.lxh3-ticker i {
    width: 4px;
    height: 4px;
    background: #f05234;
    box-shadow: 0 0 0 3px rgba(240, 82, 52, .12);
}

.lxcv1-header {
    border-color: rgba(240, 211, 198, .92);
    background: rgba(255, 250, 247, .94);
    box-shadow: 0 7px 24px rgba(120, 48, 29, .055);
}

.lxcv1-header__inner {
    min-height: 56px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
}

.lxcv1-brand__monogram {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    color: #3b1c12;
    box-shadow: 0 7px 18px rgba(193, 92, 28, .16);
    font-size: 10px;
}

.lxcv1-brand strong {
    font-size: 17px;
}

.lxcv1-brand small {
    display: none;
}

.lxcv1-nav {
    gap: 20px;
}

.lxcv1-nav a {
    padding-block: 8px;
    font-size: 11px;
}

.lxcv1-nav a::after {
    background: var(--lxcv1-coral);
}

.lxcv1-menu-toggle,
.lxcv1-header-actions a,
.lxcv1-header-actions button {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--lxcv1-line);
    border-radius: 11px;
    color: var(--lxcv1-ink);
    background: #fff;
}

.lxcv1-header-actions button:hover,
.lxcv1-header-actions a:hover {
    color: #fff;
    background: var(--lxcv1-jade);
}

.lxcv1-header-actions svg {
    width: 17px;
    height: 17px;
}

.lxcv1-search-panel {
    position: fixed;
    z-index: 795;
    top: var(--lxcv1-search-top, 56px);
    right: 0;
    left: 0;
    padding: 8px 20px 11px;
    border-bottom: 1px solid var(--lxcv1-line);
    background: rgba(255, 250, 247, .97);
    box-shadow: 0 14px 30px rgba(80, 31, 18, .1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    backdrop-filter: blur(18px);
}

.lxcv1-search-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lxcv1-search-panel form {
    width: min(680px, 100%);
    min-height: 40px;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px;
    margin-inline: auto;
    padding: 4px 5px 4px 12px;
    border: 1px solid var(--lxcv1-line);
    border-radius: 999px;
    background: #fff;
}

.lxcv1-search-panel svg {
    width: 17px;
    height: 17px;
    color: var(--lxcv1-muted);
}

.lxcv1-search-panel input {
    min-width: 0;
    height: 32px;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 12px;
}

.lxcv1-search-panel button {
    min-height: 31px;
    padding: 0 13px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--lxcv1-jade);
    font-size: 10px;
    font-weight: 850;
}

.lxcv1-search-panel [data-lxcv1-search-close] {
    width: 31px;
    padding: 0;
    color: var(--lxcv1-ink);
    background: var(--lxcv1-surface-soft);
    font-size: 18px;
}

.lxv2-theme--luxe-commerce-v1 .lxv2-main {
    padding-top: 14px;
}

.lxh3-home {
    gap: clamp(14px, 2.5vw, 30px);
}

.lxh3-video-hero {
    min-height: min(69vh, 720px);
    border-radius: 24px;
    background: #f2d8ca;
    box-shadow: 0 18px 50px rgba(104, 40, 23, .14);
}

.lxh3-video-hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lxh3-catalog {
    gap: 15px;
    padding-top: clamp(8px, 2vw, 24px);
}

.lxh3-catalog__head {
    padding-bottom: 10px;
}

.lxh3-catalog__head h1 {
    font-family: inherit;
    font-size: clamp(27px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -.035em;
}

.lxh3-product-table {
    gap: 22px 12px;
}

.lxh3-product-table .lxcv1-product-card {
    overflow: hidden;
    border-color: rgba(240, 211, 198, .92);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 9px 27px rgba(104, 40, 23, .075);
    content-visibility: auto;
    contain-intrinsic-size: 360px 570px;
}

.lxcv1-product-card__media-shell,
.lxh3-product-table .lxcv1-product-card__media {
    overflow: hidden;
    background: #f7ece7;
}

.lxh3-product-table .lxcv1-product-card__media {
    aspect-ratio: 4 / 5;
}

.lxh3-product-table .lxcv1-product-card__media::after {
    display: none;
}

.lxh3-product-table .lxcv1-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .18s ease;
}

.lxh3-product-table .lxcv1-product-card__body {
    padding: 12px 12px 14px;
}

.lxh3-product-table .lxcv1-product-card__meta {
    color: var(--lxcv1-jade-dark);
    font-size: 8px;
}

.lxh3-product-table .lxcv1-product-card h3 {
    min-height: 44px;
    margin: 7px 0 8px;
    color: var(--lxcv1-ink);
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.42;
}

.lxh3-product-table .lxcv1-product-card__price strong {
    color: var(--lxcv1-coral);
    font-size: 15px;
}

.lxcv1-product-card__color-row {
    min-height: 27px;
    margin-top: 8px;
}

.lxcv1-product-card__colors > button {
    width: 17px;
    height: 17px;
}

.lxcv1-product-card__colors > button.is-active {
    box-shadow:
        0 0 0 2px #fff,
        0 0 0 4px var(--lxcv1-coral);
    transform: scale(1.04);
}

.lxcv1-product-card__sizes {
    min-height: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin: 8px 0 0;
    padding-top: 7px;
    border-top: 1px solid #f3e5de;
    color: var(--lxcv1-muted);
}

.lxcv1-product-card__sizes > span {
    overflow: hidden;
    font-size: 7px;
    font-weight: 850;
    letter-spacing: .04em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.lxcv1-product-card__sizes > div {
    display: flex;
    flex: none;
    gap: 3px;
}

.lxcv1-product-card__sizes small {
    min-width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    padding-inline: 4px;
    border: 1px solid #eed7cc;
    border-radius: 6px;
    color: #58372c;
    background: #fffaf7;
    font-size: 8px;
    font-weight: 900;
    line-height: 1;
}

.lxcv1-drawer {
    background-color: #32180f;
    background-image: radial-gradient(circle at 0 0, rgba(255, 211, 78, .24), transparent 19rem);
}

@media (max-width: 760px) {
    .lxcv1-header__inner {
        width: calc(100% - 24px);
        min-height: 50px;
        gap: 8px;
    }

    .lxcv1-menu-toggle,
    .lxcv1-header-actions a,
    .lxcv1-header-actions button {
        width: 33px;
        height: 33px;
        border-radius: 10px;
    }

    .lxcv1-brand {
        justify-self: start;
    }

    .lxcv1-brand strong {
        font-size: 15px;
    }

    .lxcv1-header-actions {
        gap: 5px;
    }

    .lxcv1-header-actions a:first-of-type {
        display: none;
    }

    .lxcv1-search-panel {
        padding: 7px 10px 9px;
    }

    .lxv2-theme--luxe-commerce-v1 .lxv2-main {
        width: calc(100% - 20px);
        padding-top: 10px;
    }

    .lxh3-video-hero {
        min-height: min(60dvh, 570px);
        margin-inline: 0;
        border-radius: 16px;
    }

    .lxh3-catalog {
        padding-top: 14px;
    }

    .lxh3-catalog__head h1 {
        font-size: 27px;
    }

    .lxh3-product-table {
        gap: 14px 7px;
    }

    .lxh3-product-table .lxcv1-product-card {
        border-radius: 12px;
    }

    .lxh3-product-table .lxcv1-product-card__body {
        padding: 9px 8px 11px;
    }

    .lxh3-product-table .lxcv1-product-card h3 {
        min-height: 49px;
        margin: 6px 0;
        font-size: 13px;
        line-height: 1.32;
    }

    .lxh3-product-table .lxcv1-product-card__price strong {
        font-size: 12px;
    }

    .lxcv1-product-card__color-row {
        align-items: flex-start;
        gap: 5px;
    }

    .lxcv1-product-card__color-row > small {
        max-width: 100%;
    }

    .lxcv1-product-card__sizes > span {
        max-width: 58px;
    }

    .lxcv1-bottom-nav {
        min-height: 55px;
        padding: 4px 6px calc(4px + env(safe-area-inset-bottom));
    }

    .lxcv1-bottom-nav::before {
        width: 58px;
        background: var(--lxcv1-coral);
    }

    .lxcv1-bottom-nav a {
        gap: 1px;
        border-radius: 10px;
    }

    .lxcv1-bottom-nav a.is-active {
        color: var(--lxcv1-jade-dark);
        background: #fff0e8;
    }

    .lxcv1-bottom-nav svg,
    .lxcv1-bottom-nav__video svg {
        width: 17px;
        height: 17px;
    }

    .lxcv1-bottom-nav span {
        font-size: 7px;
    }
}

/* AI_PATCH_LINXEN_HOME_EDITORIAL_COMMERCE_V2_CSS_START */
.lxh2-home {
    --lxh2-ink: #101713;
    --lxh2-jade: #0f6a58;
    --lxh2-jade-deep: #084d41;
    --lxh2-lime: #dfff4f;
    --lxh2-coral: #ff6848;
    --lxh2-mist: #e8efeb;
    --lxh2-line: #ced9d3;
    display: grid;
    gap: clamp(72px, 8vw, 126px);
    padding-bottom: clamp(88px, 10vw, 154px);
}

.lxh2-home h1,
.lxh2-home h2,
.lxh2-home h3,
.lxh2-home p,
.lxh2-home figure {
    margin: 0;
}

.lxh2-hero {
    position: relative;
    min-height: min(810px, calc(100vh - 104px));
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
    overflow: hidden;
    border: 1px solid rgba(201, 214, 207, .92);
    border-radius: 38px;
    background:
        radial-gradient(circle at 7% 4%, rgba(223, 255, 79, .58), transparent 24rem),
        linear-gradient(145deg, #f9fbf9 0%, #e8efeb 58%, #dbe7e1 100%);
    box-shadow: 0 34px 90px rgba(16, 39, 30, .12);
}

.lxh2-hero::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 22px;
    left: 22px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--lxh2-coral);
    box-shadow: 0 0 0 7px rgba(255, 104, 72, .13);
}

.lxh2-hero__copy {
    position: relative;
    z-index: 3;
    align-self: center;
    padding: clamp(48px, 6.2vw, 92px);
}

.lxh2-hero__copy h1 {
    max-width: 700px;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: clamp(62px, 7vw, 108px);
    font-weight: 500;
    line-height: .82;
    letter-spacing: -.075em;
}

.lxh2-hero__lead {
    max-width: 560px;
    margin-top: 30px !important;
    color: #59645e;
    font-size: clamp(14px, 1.4vw, 17px);
    line-height: 1.75;
}

.lxh2-hero__actions {
    margin-top: 30px;
}

.lxh2-hero__truth {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 46px;
    border-top: 1px solid rgba(89, 100, 94, .24);
}

.lxh2-hero__truth span {
    min-width: 0;
    display: grid;
    gap: 6px;
    padding: 17px 14px 0 0;
}

.lxh2-hero__truth span + span {
    padding-left: 14px;
    border-left: 1px solid rgba(89, 100, 94, .2);
}

.lxh2-hero__truth small {
    color: #78827d;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.lxh2-hero__truth strong {
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lxh2-hero__visual {
    position: relative;
    min-width: 0;
    min-height: 680px;
    overflow: hidden;
    background: #cfddd5;
}

.lxh2-hero__main {
    position: absolute;
    inset: 0;
    display: block;
}

.lxh2-hero__main::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 52%, rgba(7, 18, 13, .58)),
        linear-gradient(90deg, rgba(233, 241, 237, .18), transparent 42%);
}

.lxh2-hero__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .9s cubic-bezier(.18, .76, .18, 1);
}

.lxh2-hero__main:hover img {
    transform: scale(1.022);
}

.lxh2-hero__caption {
    position: absolute;
    z-index: 2;
    right: 34px;
    bottom: 32px;
    left: 34px;
    display: grid;
    gap: 3px;
    color: #fff;
}

.lxh2-hero__caption small {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .16em;
}

.lxh2-hero__caption strong {
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: clamp(32px, 3.5vw, 54px);
    font-weight: 500;
    line-height: 1;
}

.lxh2-hero__caption b {
    margin-top: 6px;
    font-size: 13px;
}

.lxh2-hero__support {
    position: absolute;
    z-index: 4;
    width: 136px;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, .92);
    border-radius: 18px;
    color: var(--lxh2-ink);
    background: #fff;
    box-shadow: 0 24px 58px rgba(10, 31, 22, .23);
}

.lxh2-hero__support--1 {
    top: 24px;
    right: 24px;
    transform: rotate(2.7deg);
}

.lxh2-hero__support--2 {
    top: 154px;
    right: 46px;
    transform: rotate(-2.4deg);
}

.lxh2-hero__support img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.lxh2-hero__support span {
    display: block;
    overflow: hidden;
    padding: 8px 9px 9px;
    font-size: 9px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lxh2-hero__signal {
    position: absolute;
    z-index: 5;
    top: 24px;
    left: 24px;
    width: 76px;
    height: 76px;
    display: grid;
    place-content: center;
    justify-items: center;
    border-radius: 50%;
    color: var(--lxh2-ink);
    background: var(--lxh2-lime);
    box-shadow: 0 18px 42px rgba(131, 158, 22, .24);
    transform: rotate(-8deg);
}

.lxh2-hero__signal span {
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .16em;
}

.lxh2-hero__signal strong {
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 26px;
    font-weight: 500;
    line-height: .85;
}

.lxh2-hero__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    color: rgba(15, 106, 88, .75);
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: clamp(78px, 11vw, 164px);
    line-height: .68;
}

.lxh2-hero__placeholder span:last-child {
    margin-left: .5em;
}

.lxh2-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.lxh2-section-head h2 {
    max-width: 820px;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: clamp(38px, 4.4vw, 68px);
    font-weight: 500;
    line-height: .96;
    letter-spacing: -.045em;
}

.lxh2-section-head > a {
    flex: 0 0 auto;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    color: var(--lxh2-jade);
    font-size: 12px;
    font-weight: 850;
}

.lxh2-section-head--compact {
    align-items: end;
}

.lxh2-section-head--compact > p {
    max-width: 340px;
    color: #6a746f;
    font-size: 13px;
    line-height: 1.65;
}

.lxh2-pulse {
    min-width: 0;
}

.lxh2-pulse__rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 25vw);
    gap: 14px;
    overflow-x: auto;
    padding: 2px 2px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.lxh2-pulse__rail::-webkit-scrollbar {
    display: none;
}

.lxh2-pulse-card {
    min-width: 0;
    scroll-snap-align: start;
}

.lxh2-pulse-card > a {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 184px;
    overflow: hidden;
    border: 1px solid var(--lxh2-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(20, 43, 34, .065);
    transition: transform .22s ease, box-shadow .22s ease;
}

.lxh2-pulse-card > a:hover {
    transform: translateY(-3px);
    box-shadow: 0 23px 48px rgba(20, 43, 34, .11);
}

.lxh2-pulse-card figure {
    position: relative;
    overflow: hidden;
    background: var(--lxh2-mist);
}

.lxh2-pulse-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lxh2-pulse-card figure span {
    position: absolute;
    top: 10px;
    left: 10px;
    min-width: 30px;
    padding: 5px 8px;
    border-radius: 999px;
    color: #fff;
    background: rgba(10, 24, 17, .52);
    backdrop-filter: blur(8px);
    font-size: 8px;
    font-weight: 900;
    text-align: center;
}

.lxh2-pulse-card > a > div {
    min-width: 0;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 18px;
}

.lxh2-pulse-card small {
    color: #7b8580;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .12em;
}

.lxh2-pulse-card h3 {
    overflow: hidden;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lxh2-pulse-card p {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: baseline;
}

.lxh2-pulse-card p strong {
    font-size: 12px;
}

.lxh2-pulse-card p del {
    color: #9da6a1;
    font-size: 10px;
}

.lxh2-collection-grid {
    display: grid;
    grid-template-columns: 1.28fr .72fr .72fr;
    grid-auto-rows: 230px;
    gap: 14px;
}

.lxh2-collection-card {
    position: relative;
    display: grid;
    align-content: space-between;
    overflow: hidden;
    padding: 22px;
    border-radius: 28px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(6, 16, 11, .03), rgba(6, 16, 11, .72)),
        var(--lxh2-collection-image, linear-gradient(145deg, #0f6a58, #152e25))
        center / cover;
    box-shadow: 0 20px 52px rgba(16, 38, 29, .1);
}

.lxh2-collection-card:first-child {
    grid-row: span 2;
}

.lxh2-collection-card--2 {
    background:
        linear-gradient(180deg, rgba(6, 16, 11, .03), rgba(6, 16, 11, .68)),
        var(--lxh2-collection-image, linear-gradient(145deg, #ff6848, #5e2e27))
        center / cover;
}

.lxh2-collection-card--3 {
    color: var(--lxh2-ink);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(223, 255, 79, .74)),
        var(--lxh2-collection-image, linear-gradient(145deg, #eaff88, #a6bd34))
        center / cover;
}

.lxh2-collection-card--4 {
    background:
        linear-gradient(180deg, rgba(6, 16, 11, .03), rgba(6, 16, 11, .7)),
        var(--lxh2-collection-image, linear-gradient(145deg, #7b8892, #26333b))
        center / cover;
}

.lxh2-collection-card > span {
    width: max-content;
    min-width: 36px;
    padding: 6px 9px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 900;
    opacity: .8;
}

.lxh2-collection-card > div {
    display: grid;
    gap: 7px;
}

.lxh2-collection-card strong {
    max-width: 520px;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 500;
    line-height: .98;
}

.lxh2-collection-card small {
    max-width: 420px;
    color: inherit;
    font-size: 11px;
    line-height: 1.5;
    opacity: .78;
}

.lxh2-collection-card > b {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .05em;
}

.lxh2-product-grid {
    gap-block: 38px;
}

.lxh2-story {
    display: grid;
    grid-template-columns: minmax(300px, .62fr) minmax(0, 1.38fr);
    gap: clamp(36px, 6vw, 84px);
    align-items: center;
    padding: clamp(42px, 6vw, 82px);
    overflow: hidden;
    border-radius: 34px;
    color: #fff;
    background:
        radial-gradient(circle at 12% 0%, rgba(223, 255, 79, .18), transparent 23rem),
        #10241c;
    box-shadow: 0 34px 80px rgba(9, 31, 21, .16);
}

.lxh2-story__intro h2 {
    margin-top: 8px;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: clamp(42px, 5.4vw, 74px);
    font-weight: 500;
    line-height: .9;
    letter-spacing: -.055em;
}

.lxh2-story__intro > p:not(.lxcv1-kicker) {
    max-width: 480px;
    margin-top: 24px;
    color: rgba(255, 255, 255, .66);
    font-size: 13px;
    line-height: 1.75;
}

.lxh2-story__intro > a {
    display: inline-block;
    margin-top: 25px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, .55);
    font-size: 11px;
    font-weight: 850;
}

.lxh2-story__cards {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-items: end;
}

.lxh2-story-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #254238;
}

.lxh2-story-card--1,
.lxh2-story-card--3 {
    transform: translateY(24px);
}

.lxh2-story-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2, .75, .2, 1);
}

.lxh2-story-card:hover img {
    transform: scale(1.025);
}

.lxh2-story-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 56%, rgba(4, 13, 8, .72));
}

.lxh2-story-card span {
    position: absolute;
    z-index: 2;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: grid;
    gap: 3px;
}

.lxh2-story-card small {
    font-size: 7px;
    font-weight: 850;
    letter-spacing: .1em;
}

.lxh2-story-card strong {
    overflow: hidden;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lxh2-trust {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
    gap: clamp(36px, 6vw, 90px);
    padding-top: clamp(28px, 4vw, 54px);
    border-top: 1px solid var(--lxh2-line);
}

.lxh2-trust__title h2 {
    margin-top: 8px;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: clamp(38px, 4.5vw, 62px);
    font-weight: 500;
    line-height: .94;
    letter-spacing: -.045em;
}

.lxh2-trust__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--lxh2-line);
    border-left: 1px solid var(--lxh2-line);
}

.lxh2-trust__items article {
    min-height: 154px;
    display: grid;
    align-content: start;
    gap: 7px;
    padding: 22px;
    border-right: 1px solid var(--lxh2-line);
    border-bottom: 1px solid var(--lxh2-line);
}

.lxh2-trust__items span {
    color: var(--lxh2-coral);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .12em;
}

.lxh2-trust__items strong {
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 24px;
    font-weight: 500;
}

.lxh2-trust__items p {
    color: #6e7873;
    font-size: 11px;
    line-height: 1.55;
}

@media (max-width: 1100px) {
    .lxh2-hero {
        grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
    }

    .lxh2-hero__copy h1 {
        font-size: clamp(58px, 7vw, 84px);
    }

    .lxh2-pulse__rail {
        grid-auto-columns: minmax(260px, 38vw);
    }

    .lxh2-collection-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lxh2-collection-card:first-child {
        grid-column: span 2;
        grid-row: auto;
    }
}

@media (max-width: 820px) {
    .lxh2-home {
        gap: 74px;
    }

    .lxh2-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        border-radius: 28px;
    }

    .lxh2-hero__copy {
        padding: 50px 30px;
    }

    .lxh2-hero__copy h1 {
        font-size: clamp(58px, 13vw, 84px);
    }

    .lxh2-hero__visual {
        min-height: 650px;
    }

    .lxh2-section-head,
    .lxh2-section-head--compact {
        align-items: start;
        flex-direction: column;
    }

    .lxh2-section-head--compact > p {
        max-width: 560px;
    }

    .lxh2-pulse__rail {
        grid-auto-columns: minmax(280px, 72vw);
    }

    .lxh2-story,
    .lxh2-trust {
        grid-template-columns: 1fr;
    }

    .lxh2-story__intro {
        max-width: 680px;
    }
}

@media (max-width: 620px) {
    .lxh2-home {
        gap: 62px;
        padding-bottom: 100px;
    }

    .lxh2-hero {
        margin-inline: -2px;
        border-radius: 24px;
    }

    .lxh2-hero__copy {
        padding: 45px 21px 36px;
    }

    .lxh2-hero__copy h1 {
        font-size: clamp(52px, 16vw, 72px);
        line-height: .84;
    }

    .lxh2-hero__lead {
        margin-top: 22px !important;
    }

    .lxh2-hero__truth {
        margin-top: 34px;
    }

    .lxh2-hero__truth span {
        padding-right: 8px;
    }

    .lxh2-hero__truth span + span {
        padding-left: 8px;
    }

    .lxh2-hero__truth strong {
        font-size: 10px;
    }

    .lxh2-hero__visual {
        min-height: 560px;
    }

    .lxh2-hero__support {
        width: 104px;
        border-width: 4px;
    }

    .lxh2-hero__support--1 {
        top: 14px;
        right: 14px;
    }

    .lxh2-hero__support--2 {
        top: 120px;
        right: 29px;
    }

    .lxh2-hero__signal {
        top: 16px;
        left: 14px;
        width: 62px;
        height: 62px;
    }

    .lxh2-hero__caption {
        right: 20px;
        bottom: 22px;
        left: 20px;
    }

    .lxh2-hero__caption strong {
        font-size: 34px;
    }

    .lxh2-section-head h2 {
        font-size: 42px;
    }

    .lxh2-pulse__rail {
        margin-inline: -12px;
        padding-inline: 12px;
        grid-auto-columns: minmax(272px, 84vw);
    }

    .lxh2-pulse-card > a {
        grid-template-columns: 105px minmax(0, 1fr);
    }

    .lxh2-collection-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }

    .lxh2-collection-card:first-child {
        grid-column: auto;
    }

    .lxh2-collection-card strong {
        font-size: 34px;
    }

    .lxh2-product-grid {
        gap-block: 30px;
    }

    .lxh2-story {
        padding: 38px 18px 48px;
        border-radius: 25px;
    }

    .lxh2-story__intro h2 {
        font-size: 48px;
    }

    .lxh2-story__cards {
        gap: 7px;
    }

    .lxh2-story-card--1,
    .lxh2-story-card--3 {
        transform: translateY(14px);
    }

    .lxh2-story-card span {
        right: 9px;
        bottom: 10px;
        left: 9px;
    }

    .lxh2-story-card strong {
        font-size: 16px;
    }

    .lxh2-story-card small {
        display: none;
    }

    .lxh2-trust__items {
        grid-template-columns: 1fr;
    }

    .lxh2-trust__items article {
        min-height: 132px;
    }
}

@media (max-width: 390px) {
    .lxh2-hero__truth small {
        font-size: 7px;
    }

    .lxh2-pulse__rail {
        grid-auto-columns: 88vw;
    }

    .lxh2-pulse-card > a {
        grid-template-columns: 96px minmax(0, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lxh2-home *,
    .lxh2-home *::before,
    .lxh2-home *::after {
        animation: none !important;
        transition-duration: .01ms !important;
    }
}
/* AI_PATCH_LINXEN_HOME_EDITORIAL_COMMERCE_V2_CSS_END */

/* LIN XÉN mobile commerce + image stories */

.lxh2-video-preview {
    padding: clamp(26px, 4vw, 54px);
    overflow: hidden;
    border-radius: 34px;
    color: #fff;
    background:
        radial-gradient(circle at 12% 0%, rgba(223, 255, 79, .2), transparent 24rem),
        #0e1c16;
    box-shadow: 0 32px 78px rgba(8, 24, 16, .18);
}

.lxh2-home {
    grid-template-columns: minmax(0, 1fr);
}

.lxh2-home > * {
    min-width: 0;
}

.lxh2-section-head--video .lxcv1-kicker,
.lxh2-section-head--video > a {
    color: var(--lxcv1-lime);
}

.lxh2-video-preview__rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.lxh2-video-preview__card {
    position: relative;
    min-width: 0;
    aspect-ratio: 9 / 14;
    display: block;
    overflow: hidden;
    border-radius: 24px;
    background: #26372f;
}

.lxh2-video-preview__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 13, 10, .05) 42%, rgba(7, 13, 10, .8));
}

.lxh2-video-preview__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s cubic-bezier(.2, .75, .2, 1);
}

.lxh2-video-preview__card:hover img {
    transform: scale(1.035);
}

.lxh2-video-preview__play {
    position: absolute;
    z-index: 2;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .52);
    border-radius: 50%;
    color: #fff;
    background: rgba(8, 16, 12, .35);
    font-size: 11px;
    backdrop-filter: blur(12px);
}

.lxh2-video-preview__copy {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: grid;
    gap: 3px;
}

.lxh2-video-preview__copy small {
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .12em;
}

.lxh2-video-preview__copy strong {
    overflow: hidden;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: clamp(25px, 3vw, 40px);
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lxh2-video-preview__copy b {
    margin-top: 5px;
    font-size: 11px;
}

.lxcv1-bottom-nav__video svg {
    color: var(--lxcv1-coral);
}

.lxv2-page--video {
    overflow: hidden;
    background: #080b09;
}

.lxv2-theme--luxe-commerce-v1.lxv2-page--video .lxv2-main {
    width: 100%;
    height: 100dvh;
    max-width: none;
    margin: 0;
    padding: 0;
}

.lxstory-page {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    color: #fff;
    background: #080b09;
}

.lxstory-header {
    position: fixed;
    z-index: 680;
    top: 0;
    right: max(18px, calc((100vw - 640px) / 2 + 18px));
    left: max(18px, calc((100vw - 640px) / 2 + 18px));
    min-height: 62px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;
    padding-top: env(safe-area-inset-top);
    pointer-events: none;
}

.lxstory-header > * {
    pointer-events: auto;
}

.lxstory-header > a:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lxstory-header > a:first-child span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #101713;
    background: var(--lxcv1-lime);
    font-size: 9px;
    font-weight: 950;
}

.lxstory-header > a:first-child strong {
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 15px;
    letter-spacing: .05em;
}

.lxstory-header > div {
    display: grid;
    justify-items: center;
    gap: 2px;
    text-align: center;
}

.lxstory-header small {
    color: var(--lxcv1-lime);
    font-size: 7px;
    font-weight: 950;
    letter-spacing: .16em;
}

.lxstory-header b {
    font-size: 9px;
}

.lxstory-header__cart {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    justify-self: end;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 13px;
    background: rgba(8, 12, 10, .34);
    backdrop-filter: blur(12px);
}

.lxstory-header__cart svg {
    width: 19px;
    height: 19px;
}

.lxstory-notice {
    position: fixed;
    z-index: 700;
    top: 68px;
    left: 50%;
    width: min(520px, calc(100% - 32px));
    padding: 9px 12px;
    border-radius: 12px;
    color: #182019;
    background: var(--lxcv1-lime);
    font-size: 10px;
    font-weight: 800;
    text-align: center;
    transform: translateX(-50%);
}

.lxstory-feed {
    width: min(640px, 100%);
    height: 100dvh;
    margin-inline: auto;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    overscroll-behavior-y: contain;
    background: #101512;
}

.lxstory-feed::-webkit-scrollbar {
    display: none;
}

.lxstory-item {
    position: relative;
    width: 100%;
    height: 100dvh;
    min-height: 620px;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: #17201b;
}

.lxstory-media,
.lxstory-media img,
.lxstory-shade {
    position: absolute;
    inset: 0;
}

.lxstory-media {
    overflow: hidden;
}

.lxstory-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transform: scale(1.045);
    transition: opacity .55s ease, transform 4.2s linear;
}

.lxstory-item.is-active .lxstory-media img.is-current {
    opacity: 1;
    transform: scale(1);
}

.lxstory-shade {
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(4, 8, 6, .52), transparent 24%, transparent 48%, rgba(4, 8, 6, .88) 92%),
        linear-gradient(90deg, rgba(4, 8, 6, .16), transparent 48%);
}

.lxstory-progress {
    position: absolute;
    z-index: 5;
    top: calc(65px + env(safe-area-inset-top));
    right: 18px;
    left: 18px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 5px;
}

.lxstory-progress span {
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .32);
}

.lxstory-progress span::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
}

.lxstory-item.is-active .lxstory-progress span.is-complete::after {
    transform: scaleX(1);
}

.lxstory-item.is-active .lxstory-progress span.is-current::after {
    animation: lxstory-progress 4s linear forwards;
}

.lxstory-item.is-paused .lxstory-progress span.is-current::after {
    animation-play-state: paused;
}

@keyframes lxstory-progress {
    to { transform: scaleX(1); }
}

.lxstory-pause {
    position: absolute;
    z-index: 6;
    top: calc(82px + env(safe-area-inset-top));
    right: 18px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    color: #fff;
    background: rgba(8, 12, 10, .34);
    font-size: 12px;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.lxstory-count {
    position: absolute;
    z-index: 5;
    right: 18px;
    bottom: calc(188px + env(safe-area-inset-bottom));
    display: grid;
    justify-items: center;
    gap: 2px;
    padding: 10px 9px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    background: rgba(8, 12, 10, .32);
    font-size: 8px;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.lxstory-count span {
    opacity: .5;
}

.lxstory-product {
    position: absolute;
    z-index: 5;
    right: 74px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    left: 18px;
    display: grid;
    gap: 5px;
}

.lxstory-product > p {
    margin: 0;
    color: var(--lxcv1-lime);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .14em;
}

.lxstory-product h1 {
    max-width: 520px;
    margin: 0;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: clamp(35px, 10vw, 58px);
    font-weight: 500;
    line-height: .9;
    letter-spacing: -.045em;
}

.lxstory-product__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 3px;
}

.lxstory-product__price strong {
    font-size: 15px;
}

.lxstory-product__price del {
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
}

.lxstory-product__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 7px;
}

.lxstory-product__actions a {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border-radius: 13px;
    color: #121815;
    background: var(--lxcv1-lime);
    font-size: 10px;
    font-weight: 950;
}

.lxstory-product__actions span {
    color: rgba(255, 255, 255, .67);
    font-size: 8px;
}

.lxstory-swipe-cue {
    position: absolute;
    z-index: 5;
    right: 18px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    display: grid;
    justify-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .68);
    font-size: 7px;
    font-weight: 850;
    text-transform: uppercase;
}

.lxstory-swipe-cue span {
    width: 18px;
    height: 26px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 999px;
}

.lxstory-swipe-cue span::after {
    content: "";
    width: 3px;
    height: 3px;
    display: block;
    margin: 5px auto 0;
    border-radius: 50%;
    background: #fff;
    animation: lxstory-swipe 1.5s ease-in-out infinite;
}

@keyframes lxstory-swipe {
    50% { transform: translateY(9px); opacity: .35; }
}

.lxstory-empty {
    width: min(560px, calc(100% - 32px));
    min-height: 100dvh;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 15px;
    margin-inline: auto;
    text-align: center;
}

.lxstory-empty > span {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #121815;
    background: var(--lxcv1-lime);
    font-weight: 950;
}

.lxstory-empty h1,
.lxstory-empty p {
    margin: 0;
}

.lxstory-empty h1 {
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 42px;
    font-weight: 500;
}

.lxstory-empty p {
    color: rgba(255, 255, 255, .68);
    line-height: 1.6;
}

.lxstory-empty a {
    padding: 12px 18px;
    border-radius: 13px;
    color: #121815;
    background: var(--lxcv1-lime);
    font-size: 11px;
    font-weight: 900;
}

@media (max-width: 760px) {
    .lxcv1-header__notice {
        display: none;
    }

    .lxcv1-header__inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 7px 12px;
        padding: 8px 0;
    }

    .lxcv1-header-search {
        min-height: 40px;
        display: grid;
        grid-column: 1 / -1;
    }

    .lxcv1-header-search input {
        height: 38px;
    }

    .lxh2-home {
        gap: 44px;
    }

    .lxh2-hero {
        display: flex;
        flex-direction: column;
    }

    .lxh2-hero__visual {
        order: 1;
        min-height: min(52dvh, 470px);
    }

    .lxh2-hero__copy {
        order: 2;
        padding: 26px 20px 28px;
    }

    .lxh2-hero__copy h1 {
        font-size: clamp(42px, 12.8vw, 56px);
        line-height: .9;
    }

    .lxh2-hero__lead {
        margin-top: 15px !important;
        font-size: 12px;
        line-height: 1.55;
    }

    .lxh2-hero__actions {
        margin-top: 18px;
    }

    .lxh2-hero__truth,
    .lxh2-hero__support {
        display: none;
    }

    .lxh2-section-head {
        gap: 14px;
        margin-bottom: 18px;
    }

    .lxh2-section-head h2 {
        font-size: 34px;
    }

    .lxh2-video-preview {
        margin-inline: -12px;
        padding: 28px 12px 24px;
        border-radius: 0;
    }

    .lxh2-video-preview__rail {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(220px, 72vw);
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .lxh2-video-preview__rail::-webkit-scrollbar {
        display: none;
    }

    .lxh2-video-preview__card {
        scroll-snap-align: start;
    }

    .lxh2-collection-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(250px, 78vw);
        grid-template-columns: none;
        grid-template-rows: 230px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .lxh2-collection-card,
    .lxh2-collection-card:first-child {
        min-width: 0;
        grid-column: auto;
        grid-row: auto;
        scroll-snap-align: start;
    }

    .lxh2-collection-grid::-webkit-scrollbar {
        display: none;
    }

    .lxcv1-bottom-nav__video {
        position: relative;
        margin-top: -12px;
        padding-top: 6px;
        border-radius: 18px 18px 10px 10px !important;
        background: #15251e;
        color: #fff !important;
        box-shadow: 0 10px 24px rgba(12, 31, 23, .2);
    }

    .lxcv1-bottom-nav__video svg {
        color: var(--lxcv1-lime);
    }

    .lxv2-page--video .lxcv1-bottom-nav {
        border-color: rgba(255, 255, 255, .12);
        color: rgba(255, 255, 255, .62);
        background: rgba(8, 11, 9, .92);
        box-shadow: 0 -16px 42px rgba(0, 0, 0, .26);
    }

    .lxv2-page--video .lxcv1-bottom-nav::before {
        background: var(--lxcv1-coral);
    }

    .lxv2-page--video .lxcv1-bottom-nav a.is-active {
        color: #fff;
        background: #193026;
    }
}

@media (max-width: 390px) {
    .lxcv1-header-actions a:first-child {
        display: none;
    }

    .lxstory-header {
        right: 12px;
        left: 12px;
    }

    .lxstory-header > a:first-child strong {
        display: none;
    }

    .lxstory-progress {
        right: 12px;
        left: 12px;
    }

    .lxstory-product {
        right: 64px;
        left: 14px;
    }

    .lxstory-product h1 {
        font-size: 38px;
    }

    .lxstory-product__actions span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lxstory-item.is-active .lxstory-progress span.is-current::after,
    .lxstory-swipe-cue span::after {
        animation: none;
    }

    .lxstory-media img {
        transform: none;
    }
}

/* Mobile-first video catalogue home */

.lxcv1-header {
    z-index: 800;
}

.lxcv1-menu-toggle {
    width: 42px;
    height: 42px;
    display: none;
    place-content: center;
    gap: 4px;
    padding: 0;
    border: 1px solid var(--lxcv1-line);
    border-radius: 13px;
    color: var(--lxcv1-ink);
    background: #fff;
}

.lxcv1-menu-toggle span {
    width: 17px;
    height: 1.5px;
    display: block;
    border-radius: 999px;
    background: currentColor;
}

.lxcv1-drawer-backdrop {
    position: fixed;
    z-index: 801;
    inset: 0;
    border: 0;
    background: rgba(7, 15, 11, .46);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
    backdrop-filter: blur(3px);
}

.lxcv1-drawer {
    position: fixed;
    z-index: 802;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(330px, 88vw);
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 30px;
    padding: calc(22px + env(safe-area-inset-top)) 22px calc(24px + env(safe-area-inset-bottom));
    color: #fff;
    background-color: #12231c;
    background-image: radial-gradient(
        circle at 0 0,
        rgba(223, 255, 79, .18),
        transparent 19rem
    );
    box-shadow: 28px 0 70px rgba(4, 14, 10, .28);
    visibility: hidden;
    transform: translateX(-105%);
    transition: transform .34s cubic-bezier(.22, .8, .22, 1), visibility .34s ease;
}

.lxcv1-drawer.is-open,
.lxcv1-drawer-backdrop.is-open {
    visibility: visible;
}

.lxcv1-drawer.is-open {
    transform: translateX(0);
}

.lxcv1-drawer-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lxv2-theme--luxe-commerce-v1.lxcv1-drawer-open {
    overflow: hidden;
}

.lxcv1-drawer header,
.lxcv1-drawer header a,
.lxcv1-drawer nav a {
    display: flex;
    align-items: center;
}

.lxcv1-drawer header {
    justify-content: space-between;
}

.lxcv1-drawer header a {
    gap: 11px;
}

.lxcv1-drawer header a span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #132019;
    background: var(--lxcv1-lime);
    font-size: 12px;
    font-weight: 950;
}

.lxcv1-drawer header a strong {
    color: #fff;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 20px;
    letter-spacing: .08em;
}

.lxcv1-drawer header button {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, .06);
    font-size: 25px;
    line-height: 1;
}

.lxcv1-drawer nav {
    align-self: start;
    display: grid;
}

.lxcv1-drawer nav a {
    justify-content: space-between;
    padding: 17px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 24px;
}

.lxcv1-drawer nav a span {
    color: rgba(255, 255, 255, .42);
    font-family: inherit;
    font-size: 10px;
    letter-spacing: .1em;
}

.lxcv1-drawer > p {
    margin: 0;
    color: rgba(255, 255, 255, .48);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.lxh3-home {
    display: grid;
    gap: clamp(18px, 3vw, 38px);
}

.lxh3-ticker {
    overflow: hidden;
    border: 1px solid var(--lxcv1-line);
    border-radius: 15px;
    color: #31443c;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 28px rgba(20, 43, 34, .05);
}

.lxh3-ticker__track,
.lxh3-ticker__track > div {
    display: flex;
    align-items: center;
    flex: none;
}

.lxh3-ticker__track {
    width: max-content;
    animation: lxh3-ticker 28s linear infinite;
}

.lxh3-ticker__track > div {
    min-height: 44px;
}

.lxh3-ticker span {
    padding-inline: 18px;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .045em;
    white-space: nowrap;
}

.lxh3-ticker i {
    width: 5px;
    height: 5px;
    flex: none;
    border-radius: 50%;
    background: var(--lxcv1-lime);
    box-shadow: 0 0 0 3px rgba(223, 255, 79, .2);
}

@keyframes lxh3-ticker {
    to {
        transform: translateX(-50%);
    }
}

.lxh3-video-hero {
    position: relative;
    min-height: min(75vh, 800px);
    overflow: hidden;
    border-radius: 30px;
    color: #fff;
    background: #16241e;
    box-shadow: var(--lxcv1-shadow);
}

.lxh3-video-hero video,
.lxh3-video-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.lxh3-video-hero video {
    object-fit: cover;
}

.lxh3-video-hero__shade {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(5, 10, 8, .04) 44%, rgba(5, 10, 8, .65) 100%),
        linear-gradient(90deg, rgba(5, 10, 8, .22), transparent 56%);
    pointer-events: none;
}

.lxh3-video-hero__mark {
    position: absolute;
    z-index: 2;
    bottom: clamp(24px, 5vw, 58px);
    left: clamp(22px, 5vw, 64px);
    width: min(600px, calc(100% - 44px));
    display: grid;
    justify-items: start;
    gap: 11px;
}

.lxh3-video-hero__mark small {
    color: var(--lxcv1-lime);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
}

.lxh3-video-hero__mark strong {
    max-width: 520px;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: clamp(38px, 6vw, 76px);
    font-weight: 500;
    line-height: .96;
}

.lxh3-video-hero__mark a {
    margin-top: 7px;
    padding: 12px 17px;
    border-radius: 999px;
    color: #14211b;
    background: var(--lxcv1-lime);
    font-size: 10px;
    font-weight: 900;
}

.lxh3-video-hero__sound {
    position: absolute;
    z-index: 3;
    top: 16px;
    right: 16px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    color: #fff;
    background: rgba(7, 14, 11, .43);
    font-size: 9px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.lxh3-catalog {
    display: grid;
    gap: 20px;
    padding-top: clamp(12px, 3vw, 34px);
}

.lxh3-catalog__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--lxcv1-line);
}

.lxh3-catalog__head h1 {
    margin: 0;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 500;
    line-height: 1;
}

.lxh3-catalog__head span {
    color: var(--lxcv1-muted);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.lxh3-product-table {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px 16px;
}

.lxh3-product-skeleton {
    display: grid;
    gap: 10px;
    overflow: hidden;
    padding: 0 0 15px;
    border: 1px solid rgba(240, 211, 198, .84);
    border-radius: 21px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(21, 44, 35, .045);
}

.lxh3-product-skeleton span {
    display: block;
    margin-inline: 14px;
    border-radius: 999px;
    background: linear-gradient(100deg, #f5e9e3 25%, #fffaf7 42%, #f5e9e3 58%);
    background-size: 260% 100%;
    animation: lxh3-skeleton-shimmer 1.55s linear infinite;
}

.lxh3-product-skeleton__media {
    aspect-ratio: 4 / 5;
    margin: 0 !important;
    border-radius: 0 !important;
}

.lxh3-product-skeleton__eyebrow {
    width: 42%;
    height: 9px;
    margin-top: 4px !important;
}

.lxh3-product-skeleton__title {
    width: 81%;
    height: 13px;
}

.lxh3-product-skeleton__title--short {
    width: 56%;
    margin-top: -4px;
}

.lxh3-product-skeleton__price {
    width: 36%;
    height: 15px;
    margin-top: 2px;
}

.lxh3-feed-error {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 150px;
    padding: 24px;
    border: 1px solid rgba(239, 180, 152, .8);
    border-radius: 21px;
    color: #3c2b2b;
    background:
        radial-gradient(circle at top right, rgba(255, 221, 201, .64), transparent 44%),
        #fffaf7;
    box-shadow: 0 12px 34px rgba(111, 62, 39, .07);
}

.lxh3-feed-error strong,
.lxh3-feed-error p {
    display: block;
}

.lxh3-feed-error strong {
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.1;
}

.lxh3-feed-error p {
    max-width: 430px;
    margin: 7px 0 0;
    color: var(--lxcv1-muted);
    font-size: 13px;
    line-height: 1.55;
}

.lxh3-feed-error button {
    flex: none;
    padding: 11px 15px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--lxcv1-coral);
    box-shadow: 0 9px 18px rgba(189, 82, 45, .2);
    font: inherit;
    font-size: 11px;
    font-weight: 850;
}

@keyframes lxh3-skeleton-shimmer {
    to { background-position: -160% 0; }
}

.lxh3-product-table .lxcv1-product-card {
    overflow: hidden;
    border: 1px solid rgba(209, 219, 213, .92);
    border-radius: 21px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 12px 34px rgba(21, 44, 35, .065);
}

.lxcv1-product-card__media-shell {
    position: relative;
}

.lxh3-product-table .lxcv1-product-card__media {
    border-radius: 0;
}

.lxh3-product-table .lxcv1-product-card__body {
    padding: 14px 14px 16px;
}

.lxcv1-product-card__slide {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 34px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 10px;
    color: #17201c;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 6px 18px rgba(8, 21, 15, .14);
    font-size: 25px;
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity .2s ease;
    backdrop-filter: blur(8px);
}

.lxcv1-product-card:hover .lxcv1-product-card__slide,
.lxcv1-product-card__slide:focus-visible {
    opacity: 1;
}

.lxcv1-product-card__slide--prev {
    left: 9px;
}

.lxcv1-product-card__slide--next {
    right: 9px;
}

.lxcv1-product-card__color-row {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 10px;
}

.lxcv1-product-card__color-row .lxcv1-product-card__colors {
    min-width: 0;
    flex-wrap: wrap;
    margin: 0;
}

.lxcv1-product-card__colors > button {
    width: 19px;
    height: 19px;
    flex: none;
    padding: 0;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--lxcv1-swatch);
    box-shadow: 0 0 0 1px #c6cfca;
    transition: box-shadow .18s ease, transform .18s ease;
}

.lxcv1-product-card__colors > button.is-active {
    box-shadow: 0 0 0 2px var(--lxcv1-jade-dark);
    transform: scale(1.08);
}

.lxcv1-product-card__color-row > small {
    overflow: hidden;
    max-width: 90px;
    color: var(--lxcv1-muted);
    font-size: 9px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lxh3-feed-loader,
.lxh3-feed-end {
    min-height: 58px;
    margin: 8px 0 0;
    place-items: center;
    color: var(--lxcv1-muted);
    text-align: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
}

.lxh3-feed-loader:not([hidden]),
.lxh3-feed-end:not([hidden]) {
    display: grid;
}

.lxh3-feed-loader button {
    padding: 9px 14px;
    border: 1px solid var(--lxcv1-line);
    border-radius: 999px;
    color: var(--lxcv1-ink);
    background: #fff;
    font-size: 10px;
    font-weight: 850;
}

.lxcv1-header-actions [data-lxcv1-cart-link],
.lxcv1-bottom-nav [data-lxcv1-cart-link] {
    position: relative;
}

.lxcv1-cart-badge {
    position: absolute;
    z-index: 2;
    top: -5px;
    right: -5px;
    min-width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    padding: 0 4px;
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    background: var(--lxcv1-coral);
    box-shadow: 0 3px 8px rgba(162, 47, 28, .24);
    font-size: 8px;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
}

.lxcv1-cart-badge--bottom {
    top: 2px;
    right: calc(50% - 20px);
}

@media (max-width: 1120px) {
    .lxh3-product-table {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .lxcv1-menu-toggle {
        display: grid;
    }

    .lxcv1-header__inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .lxh3-product-table {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lxh3-feed-error {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        min-height: 0;
        padding: 20px;
    }
}

@media (max-width: 760px) {
    .lxcv1-header__inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .lxcv1-brand {
        min-width: 0;
    }

    .lxcv1-brand__monogram {
        display: none;
    }

    .lxcv1-header-search {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .lxh3-home {
        gap: 16px;
    }

    .lxh3-ticker {
        border-radius: 12px;
    }

    .lxh3-ticker__track > div {
        min-height: 40px;
    }

    .lxh3-video-hero {
        min-height: min(72dvh, 660px);
        margin-inline: -12px;
        border-radius: 0;
    }

    .lxh3-video-hero__mark strong {
        max-width: 310px;
        font-size: clamp(39px, 11.5vw, 53px);
    }

    .lxh3-video-hero__sound {
        top: 12px;
        right: 12px;
    }

    .lxh3-catalog {
        gap: 14px;
        padding-top: 22px;
    }

    .lxh3-catalog__head h1 {
        font-size: 38px;
    }

    .lxh3-product-table {
        gap: 12px 8px;
    }

    .lxh3-product-table .lxcv1-product-card {
        border-radius: 14px;
    }

    .lxh3-product-table .lxcv1-product-card__body {
        padding: 10px 9px 12px;
    }

    .lxh3-product-table .lxcv1-product-card h3 {
        min-height: 38px;
        margin: 6px 0;
        font-size: 14px;
        line-height: 1.22;
    }

    .lxh3-product-table .lxcv1-product-card__meta {
        gap: 4px;
        font-size: 7px;
    }

    .lxh3-product-table .lxcv1-product-card__price {
        flex-wrap: wrap;
        gap: 3px 6px;
    }

    .lxh3-product-table .lxcv1-product-card__price strong {
        font-size: 12px;
    }

    .lxcv1-product-card__open {
        display: none;
    }

    .lxcv1-product-card__slide {
        width: 29px;
        height: 36px;
        opacity: .88;
        font-size: 21px;
    }

    .lxcv1-product-card__slide--prev {
        left: 5px;
    }

    .lxcv1-product-card__slide--next {
        right: 5px;
    }

    .lxcv1-product-card__colors > button {
        width: 17px;
        height: 17px;
    }

    .lxcv1-product-card__color-row {
        align-items: start;
        flex-direction: column;
        gap: 7px;
    }

    .lxcv1-product-card__color-row > small {
        max-width: 100%;
        font-size: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lxh3-ticker__track {
        animation-play-state: paused;
    }

    .lxcv1-drawer,
    .lxcv1-drawer-backdrop,
    .lxcv1-product-card__slide,
    .lxcv1-product-card__colors > button {
        transition: none;
    }
}

/* Final mobile catalogue cascade */

.lxcv1-main--home {
    padding-top: 0 !important;
}

.lxh3-ticker {
    border: 0;
    border-radius: 0;
    color: #f3eee9;
    background: #3b2a22;
    box-shadow: none;
}

.lxh3-ticker__track > div {
    min-height: 32px;
}

.lxh3-ticker i {
    background: #e6bc85;
    box-shadow: 0 0 0 3px rgba(230, 188, 133, .16);
}

.lxh3-product-table .lxcv1-product-card {
    border-color: rgba(240, 211, 198, .92);
    background: #fff;
    box-shadow: 0 9px 27px rgba(104, 40, 23, .075);
    content-visibility: auto;
    contain-intrinsic-size: 360px 570px;
}

.lxh3-product-table .lxcv1-product-card__media::after {
    display: none;
}

.lxh3-product-table .lxcv1-product-card h3 {
    color: var(--lxcv1-ink);
    font-family: inherit;
    font-weight: 800;
}

.lxh3-product-table .lxcv1-product-card__meta {
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    color: var(--lxcv1-muted);
    font-size: 7px;
    letter-spacing: .035em;
}

.lxcv1-product-card__status,
.lxcv1-product-card__code {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    white-space: nowrap;
}

.lxcv1-product-card__status {
    gap: 4px;
    padding: 4px 7px;
    color: #8f2e1d;
    background: #fff0e8;
    font-weight: 900;
}

.lxcv1-product-card__status::before {
    width: 5px;
    height: 5px;
    flex: none;
    border-radius: 50%;
    background: #f05432;
    content: "";
}

.lxcv1-product-card__status.is-stock {
    color: #23704e;
    background: #eaf7ef;
}

.lxcv1-product-card__status.is-stock::before {
    background: #36a06e;
}

.lxcv1-product-card__code {
    overflow: hidden;
    justify-content: flex-end;
    padding: 3px 0;
    color: #9b8075;
    font-weight: 750;
    letter-spacing: .045em;
    text-overflow: ellipsis;
}

@media (max-width: 760px) {
    .lxcv1-header__inner {
        width: calc(100% - 20px);
        min-height: 44px;
        gap: 6px;
    }

    .lxcv1-menu-toggle,
    .lxcv1-header-actions a,
    .lxcv1-header-actions button {
        width: 29px;
        height: 29px;
        border-radius: 9px;
    }

    .lxcv1-menu-toggle span {
        width: 14px;
    }

    .lxcv1-header-actions {
        gap: 4px;
    }

    .lxcv1-header-actions svg {
        width: 15px;
        height: 15px;
    }

    .lxcv1-brand strong {
        font-size: 14px;
        letter-spacing: .06em;
    }

    .lxh3-home {
        gap: 16px;
    }

    .lxh3-ticker__track > div {
        min-height: 34px;
    }

    .lxh3-ticker span {
        padding-inline: 14px;
        font-size: 9px;
    }

    .lxh3-video-hero {
        width: 100vw;
        max-width: none;
        min-height: min(62dvh, 590px);
        margin-inline: calc(50% - 50vw);
        border-radius: 0;
    }

    .lxcv1-bottom-nav {
        min-height: 66px;
        padding: 6px 7px calc(6px + env(safe-area-inset-bottom));
        box-shadow: 0 -12px 34px rgba(67, 31, 19, .09);
    }

    .lxcv1-bottom-nav__video {
        position: static;
        margin-top: 0;
        padding-top: 0;
        border-radius: 15px !important;
        color: inherit !important;
        background: transparent;
        box-shadow: none;
    }

    .lxcv1-bottom-nav__video.is-active {
        color: var(--lxcv1-jade-dark) !important;
        background: #fff0e8;
    }

    .lxcv1-bottom-nav__video svg {
        color: currentColor;
    }

    .lxcv1-bottom-nav svg,
    .lxcv1-bottom-nav__video svg {
        width: 24px;
        height: 24px;
        stroke-width: 1.9;
        filter: drop-shadow(0 2px 4px rgba(115, 48, 29, .12));
    }

    .lxcv1-bottom-nav span {
        font-size: 8px;
        font-weight: 820;
    }
}

/* Immersive product reel: media remains entirely unobstructed. */

.lxreel {
    position: fixed;
    z-index: 1200;
    inset: 0;
    display: none;
    color: #261713;
    background: #fffaf7;
}

.lxreel.is-open {
    display: block;
}

.lxreel__scroller {
    height: 100%;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    scroll-snap-type: y mandatory;
    touch-action: pan-y;
    scrollbar-width: none;
}

.lxreel__scroller::-webkit-scrollbar {
    display: none;
}

.lxreel__slide {
    height: 100dvh;
    min-height: 100svh;
    display: grid;
    grid-template-rows: minmax(320px, 64dvh) minmax(0, 1fr);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: #fffaf7;
}

.lxreel__media {
    min-height: 0;
    margin: 0;
    overflow: hidden;
    background: #efe3dd;
}

.lxreel__media-link {
    width: 100%;
    height: 100%;
    display: block;
    color: inherit;
    text-decoration: none;
}

.lxreel__media-track {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.lxreel__media-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity .82s ease, transform 1.2s cubic-bezier(.2, .75, .25, 1);
    pointer-events: none;
}

.lxreel__media-frame.is-active {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
}

.lxreel__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.015);
    transition: transform 1.25s cubic-bezier(.2, .75, .25, 1), filter .6s ease;
}

.lxreel__slide.is-active .lxreel__media-frame.is-active img {
    animation: lxreel-image-drift 9s ease-in-out both;
}

@keyframes lxreel-image-drift {
    0% { transform: scale(1.015) translate3d(0, 0, 0); }
    55% { transform: scale(1.07) translate3d(-.8%, -1.1%, 0); }
    100% { transform: scale(1.04) translate3d(.6%, -.35%, 0); }
}

.lxreel__details {
    display: grid;
    gap: 5px;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    touch-action: pan-x;
    padding: 11px 18px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(234, 213, 201, .9);
    background: #fffaf7;
    scrollbar-width: none;
}

.lxreel__details::-webkit-scrollbar {
    display: none;
}

.lxreel__eyebrow {
    margin: 0;
    color: #b53a27;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.lxreel__details-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.lxreel__top-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.lxreel__cart-link,
.lxreel__dismiss {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    position: relative;
    flex: none;
    padding: 0;
    border: 1px solid #e8cdc0;
    border-radius: 50%;
    color: #70493d;
    background: #fff;
}

.lxreel__cart-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.lxreel__cart-link span {
    position: absolute;
    top: -6px;
    right: -7px;
    min-width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    padding: 0 4px;
    border: 2px solid #fffaf7;
    border-radius: 999px;
    color: #fff;
    background: #d9543a;
    box-shadow: 0 3px 8px rgba(181, 58, 39, .24);
    font-size: 8px;
    font-weight: 900;
    line-height: 1;
}

.lxreel__cart-link.is-cart-pulse {
    animation: lxreel-cart-pulse .72s cubic-bezier(.2, .85, .24, 1);
}

@keyframes lxreel-cart-pulse {
    0%, 100% { transform: scale(1); }
    45% { transform: scale(1.24) rotate(-7deg); }
    70% { transform: scale(.94) rotate(3deg); }
}

.lxreel__flying-product {
    position: fixed;
    z-index: 1300;
    width: 68px;
    height: 84px;
    pointer-events: none;
    border: 2px solid rgba(255, 255, 255, .94);
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 12px 28px rgba(68, 30, 19, .22);
    animation: lxreel-fly-to-cart .68s cubic-bezier(.2, .86, .24, 1) forwards;
}

@keyframes lxreel-fly-to-cart {
    0% { opacity: .96; transform: translate3d(0, 0, 0) scale(1) rotate(0); }
    60% { opacity: .92; }
    100% {
        opacity: 0;
        transform: translate3d(var(--lxreel-fly-x), var(--lxreel-fly-y), 0) scale(.24) rotate(13deg);
    }
}

.lxreel__dismiss {
    color: #70493d;
    font-size: 20px;
    line-height: 1;
}

.lxreel__details h1 {
    margin: 0;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: clamp(21px, 5.8vw, 29px);
    font-weight: 500;
    line-height: 1.04;
}

.lxreel__details h1 a,
.lxreel__price-row a {
    color: inherit;
    text-decoration: none;
}

.lxreel__details h1 a:focus-visible,
.lxreel__price-row a:focus-visible,
.lxreel__media-link:focus-visible {
    outline: 2px solid #d9543a;
    outline-offset: 3px;
}

.lxreel__price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.lxreel__price-row a {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.lxreel__price-row strong {
    color: #d3432c;
    font-size: 20px;
    letter-spacing: -.025em;
}

.lxreel__price-row del {
    color: #9e7e72;
    font-size: 12px;
}

.lxreel__gallery-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #86665b;
    font-size: 9px;
    font-weight: 750;
}

.lxreel__gallery-meta strong {
    color: #b53a27;
    font-size: 10px;
    letter-spacing: .08em;
}

.lxreel__gallery-thumbs {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding-bottom: 1px;
    scrollbar-width: none;
}

.lxreel__gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.lxreel__gallery-thumbs button {
    width: 31px;
    height: 40px;
    flex: none;
    overflow: hidden;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 8px;
    background: #f1e4dd;
    opacity: .62;
}

.lxreel__gallery-thumbs button.is-active {
    border-color: #d9543a;
    opacity: 1;
}

.lxreel__gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lxreel__color-label {
    margin: 2px 0 -1px;
    color: #8b6c60;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.lxreel__selectors {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 10px;
}

.lxreel__selection {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.lxreel__selection--size {
    justify-items: end;
}

.lxreel__color-picker {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding-bottom: 1px;
    scrollbar-width: none;
}

.lxreel__color-picker::-webkit-scrollbar {
    display: none;
}

.lxreel__color-option {
    min-height: 31px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: none;
    padding: 0 10px;
    border: 1px solid #ecd6ca;
    border-radius: 999px;
    color: #624438;
    background: #fff;
    font-size: 10px;
    font-weight: 780;
}

.lxreel__color-option.is-active {
    border-color: #d9543a;
    color: #a53422;
    background: #fff1eb;
}

.lxreel__color-option i {
    width: 11px;
    height: 11px;
    display: block;
    border: 1px solid rgba(33, 20, 16, .16);
    border-radius: 50%;
    background: var(--lxreel-swatch, #ead8cf);
}

.lxreel__size-label {
    margin: 2px 0 -1px;
    color: #8b6c60;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.lxreel__size-picker {
    display: flex;
    gap: 7px;
}

.lxreel__size-label[hidden],
.lxreel__size-picker[hidden],
.lxreel__commerce[hidden] {
    display: none !important;
}

.lxreel__size-toggle {
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid #d9543a;
    border-radius: 999px;
    color: #a53422;
    background: #fff1eb;
    font-size: 10px;
    font-weight: 900;
}

.lxreel__size-option {
    min-width: 35px;
    min-height: 32px;
    padding: 0 8px;
    border: 1px solid #ecd6ca;
    border-radius: 8px;
    color: #624438;
    background: #fff;
    font-size: 10px;
    font-weight: 850;
}

.lxreel__size-option.is-active {
    border-color: #d9543a;
    color: #a53422;
    background: #fff1eb;
}

.lxreel__size-option.is-unavailable {
    color: #bba79e;
    opacity: .55;
    text-decoration: line-through;
}

.lxreel__commerce {
    display: grid;
    gap: 4px;
}

.lxreel__add-cart {
    min-height: 42px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: #d9543a;
    box-shadow: 0 10px 22px rgba(210, 67, 44, .18);
    font-size: 11px;
    font-weight: 900;
}

.lxreel__add-cart:disabled {
    color: #9d8176;
    background: #f0e4de;
    box-shadow: none;
}

.lxreel__cart-status {
    min-height: 13px;
    margin: 0;
    color: #27744f;
    font-size: 9px;
    font-weight: 750;
}

.lxreel__cart-status.is-error {
    color: #ba3d32;
}

.lxreel__actions {
    margin-top: 2px;
}

.lxreel__details-link {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px 0 2px;
    border-bottom: 1px solid #d9543a;
    color: #b53a27;
    font-size: 11px;
    font-weight: 900;
}

.lxreel__details-link b {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #d9543a;
    font-size: 15px;
}

@media (max-height: 760px) {
    .lxreel__slide {
        grid-template-rows: minmax(296px, 60dvh) minmax(0, 1fr);
    }

    .lxreel__details {
        gap: 4px;
        padding-top: 8px;
        padding-bottom: calc(9px + env(safe-area-inset-bottom));
    }

    .lxreel__dismiss {
        width: 27px;
        height: 27px;
        font-size: 18px;
    }

    .lxreel__details h1 {
        font-size: clamp(19px, 5.5vw, 24px);
    }

    .lxreel__price-row strong {
        font-size: 18px;
    }

    .lxreel__color-option {
        min-height: 28px;
    }

    .lxreel__size-option {
        min-height: 29px;
    }

    .lxreel__add-cart {
        min-height: 38px;
    }
}

.lxv2-theme--luxe-commerce-v1.lxreel-open {
    overflow: hidden;
}

@media (min-width: 761px) {
    .lxcv1-main--home .lxh3-video-hero {
        min-height: min(82dvh, 900px);
    }

    .lxcv1-main--home .lxh3-catalog {
        padding-top: 8px;
    }

    .lxreel {
        padding: 3vh max(22px, calc((100vw - 580px) / 2));
        background: rgba(24, 14, 10, .68);
    }

    .lxreel__scroller {
        border-radius: 24px;
        background: #fffaf7;
        box-shadow: 0 28px 90px rgba(0, 0, 0, .32);
    }

    .lxreel__slide {
        min-height: 94vh;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lxh3-product-skeleton span,
    .lxreel__slide.is-active .lxreel__media img {
        animation: none;
        transform: none;
    }
}
