/* ==========================================================================
   Allbdin — "Aurora Glass" design system
   Frontend only. Loaded after Tailwind CDN from layouts/master.blade.php.
   ========================================================================== */

:root {
    --lx-pearl: #f4f6fb;
    --lx-pearl-2: #eaeef8;
    --lx-ink: #0e1633;
    --lx-ink-2: #1a2552;
    --lx-muted: #5b6479;
    --lx-line: rgba(14, 22, 51, .08);

    --lx-ember: #f4561a;
    --lx-ember-hi: #ff7a3d;
    --lx-ember-lo: #d93d08;
    --lx-sapphire: #3355ff;
    --lx-sapphire-hi: #5b7bff;
    --lx-violet: #5b3df5;
    --lx-cyan: #19c3e6;
    --lx-gold: #f2b230;
    --lx-rose: #ef2d56;
    --lx-mint: #12b886;

    --lx-glass: rgba(255, 255, 255, .66);
    --lx-glass-strong: rgba(255, 255, 255, .84);
    --lx-glass-edge: rgba(255, 255, 255, .75);

    --lx-r-sm: 10px;
    --lx-r: 16px;
    --lx-r-lg: 24px;

    --lx-shadow-1: 0 1px 2px rgba(14, 22, 51, .06), 0 4px 14px -6px rgba(14, 22, 51, .12);
    --lx-shadow-2: 0 2px 6px rgba(14, 22, 51, .06), 0 18px 40px -18px rgba(24, 38, 110, .35);
    --lx-shadow-3: 0 4px 10px rgba(14, 22, 51, .06), 0 30px 60px -24px rgba(24, 38, 110, .45);

    --lx-ease: cubic-bezier(.22, 1, .36, 1);
    --lx-spring: cubic-bezier(.34, 1.56, .64, 1);

    --lx-font: 'Sora', 'Anek Bangla', system-ui, sans-serif;
    --lx-font-bn: 'Anek Bangla', 'Sora', system-ui, sans-serif;
}

/* ---------- Base ---------- */
html body.lx-body {
    font-family: var(--lx-font);
    background: var(--lx-pearl);
    color: var(--lx-ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    position: relative;
    isolation: isolate;
    overflow-x: hidden;
}

.lx-body ::selection { background: rgba(51, 85, 255, .18); color: var(--lx-ink); }

.lx-body :lang(bn),
.lx-bn { font-family: var(--lx-font-bn); }

.lx-body :focus-visible {
    outline: 2px solid var(--lx-sapphire);
    outline-offset: 2px;
    border-radius: 6px;
}

/* Aurora: slow drifting light behind everything */
.lx-aurora {
    position: fixed;
    inset: -20vmax;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(38vmax 30vmax at 12% 8%, rgba(255, 106, 42, .16), transparent 70%),
        radial-gradient(40vmax 34vmax at 88% 18%, rgba(51, 85, 255, .16), transparent 70%),
        radial-gradient(36vmax 30vmax at 70% 92%, rgba(25, 195, 230, .12), transparent 70%),
        radial-gradient(30vmax 26vmax at 18% 80%, rgba(91, 61, 245, .10), transparent 70%);
}

.lx-aurora::after {
    /* fine grain so gradients don't band */
    display: none;
    content: "";
    position: absolute;
    inset: 0;
    opacity: .05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes lx-drift {
    0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
    50% { transform: translate3d(3vmax, -2vmax, 0) rotate(8deg) scale(1.05); }
    100% { transform: translate3d(-2vmax, 2vmax, 0) rotate(-6deg) scale(1); }
}

/* ---------- Layout helpers ---------- */
.lx-wrap {
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 12px;
}

@media (min-width: 768px) {
    .lx-wrap { padding-inline: 16px; }
}

@media (min-width: 1200px) {
    .lx-wrap { padding-inline: 0; }
}

.lx-section { margin-block: 22px; }

@media (min-width: 768px) {
    .lx-section { margin-block: 36px; }
}

.lx-glass {
    background: rgba(255, 255, 255, .88);
    border: 1px solid var(--lx-glass-edge);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), var(--lx-shadow-2);
}

.lx-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .58));
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: var(--lx-r-lg);
    box-shadow: inset 0 1px 0 #fff, var(--lx-shadow-2);
    padding: 14px;
}

@media (min-width: 768px) {
    .lx-panel { padding: 22px; }
}

/* Section heading row */
.lx-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.lx-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -.02em;
    color: var(--lx-ink);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .lx-title { font-size: 1.4rem; }
}

.lx-title__icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    color: #fff;
    font-size: 1.05rem;
    background: linear-gradient(145deg, var(--lx-ember-hi), var(--lx-ember-lo));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45), 0 6px 14px -6px rgba(244, 86, 26, .8);
}

.lx-title__icon--blue {
    background: linear-gradient(145deg, var(--lx-sapphire-hi), var(--lx-violet));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45), 0 6px 14px -6px rgba(51, 85, 255, .8);
}

.lx-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--lx-sapphire);
    transition: gap .3s var(--lx-ease), color .2s;
}

.lx-link:hover { gap: 8px; color: var(--lx-violet); }

/* ---------- Buttons: pressable 3D slabs ---------- */
.lx-btn {
    --btn-depth: 3px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-height: 40px;
    padding: 8px 12px;
    border: 0;
    border-radius: 12px;
    font-family: var(--lx-font-bn);
    font-weight: 600;
    font-size: 14.5px;
    line-height: 1;
    color: #fff;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transform: translateY(0);
    transition: transform .18s var(--lx-ease), box-shadow .18s var(--lx-ease), filter .25s;
}

.lx-btn i { font-size: 1.05em; }

.lx-btn::after {
    /* shine sweep */
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, .45) 50%, transparent 65%);
    transform: translateX(-120%);
    transition: transform .8s var(--lx-ease);
}

.lx-btn:hover::after { transform: translateX(120%); }
.lx-btn:hover { filter: saturate(1.1) brightness(1.04); }

.lx-btn:active {
    transform: translateY(calc(var(--btn-depth) - 1px));
}

.lx-btn--ember {
    background: linear-gradient(180deg, var(--lx-ember-hi) 0%, var(--lx-ember) 52%, var(--lx-ember-lo) 100%);
    text-shadow: 0 1px 1px rgba(120, 30, 0, .35);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .45),
        inset 0 -2px 0 rgba(120, 30, 0, .18),
        0 var(--btn-depth) 0 #b8360a,
        0 10px 20px -8px rgba(244, 86, 26, .65);
}

.lx-btn--ember:active {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .35),
        inset 0 -1px 0 rgba(120, 30, 0, .18),
        0 1px 0 #b8360a,
        0 4px 10px -6px rgba(244, 86, 26, .6);
}

.lx-btn--sapphire {
    background: linear-gradient(180deg, var(--lx-sapphire-hi) 0%, var(--lx-sapphire) 55%, #2a3fd9 100%);
    text-shadow: 0 1px 1px rgba(10, 20, 90, .35);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .4),
        inset 0 -2px 0 rgba(10, 20, 90, .2),
        0 var(--btn-depth) 0 #2231a8,
        0 10px 20px -8px rgba(51, 85, 255, .6);
}

.lx-btn--sapphire:active {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .3),
        0 1px 0 #2231a8,
        0 4px 10px -6px rgba(51, 85, 255, .6);
}

.lx-btn--ink {
    background: linear-gradient(180deg, #2a3564, var(--lx-ink));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .18),
        0 var(--btn-depth) 0 #050918,
        0 10px 20px -8px rgba(14, 22, 51, .6);
}

.lx-btn--ghost {
    color: var(--lx-ink);
    background: linear-gradient(180deg, #fff, #f1f3fa);
    text-shadow: none;
    box-shadow:
        inset 0 1px 0 #fff,
        inset 0 0 0 1px rgba(14, 22, 51, .09),
        0 var(--btn-depth) 0 rgba(14, 22, 51, .12),
        0 8px 16px -10px rgba(14, 22, 51, .35);
}

.lx-btn--ghost::after {
    background: linear-gradient(105deg, transparent 35%, rgba(51, 85, 255, .12) 50%, transparent 65%);
}

.lx-btn--lg { min-height: 50px; font-size: 16px; border-radius: 14px; --btn-depth: 4px; }
.lx-btn--sm { min-height: 34px; font-size: 13px; border-radius: 10px; padding: 6px 10px; }
.lx-btn--auto { width: auto; }

.lx-btn[disabled],
.lx-btn:disabled { filter: grayscale(.6) opacity(.6); cursor: not-allowed; }

/* ripple from luxe.js */
.lx-ripple {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(255, 255, 255, .5);
    transform: translate(-50%, -50%) scale(0);
    animation: lx-ripple .65s var(--lx-ease) forwards;
}

.lx-btn--ghost .lx-ripple { background: rgba(51, 85, 255, .18); }

@keyframes lx-ripple {
    to { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* Round icon button */
.lx-icon-btn {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: var(--lx-ink);
    font-size: 1.3rem;
    background: linear-gradient(180deg, #fff, #eef1f9);
    box-shadow: inset 0 1px 0 #fff, inset 0 0 0 1px rgba(14, 22, 51, .07), 0 6px 14px -8px rgba(14, 22, 51, .35);
    transition: transform .25s var(--lx-spring), color .2s, box-shadow .25s;
    cursor: pointer;
}

.lx-icon-btn:hover {
    color: var(--lx-sapphire);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 #fff, inset 0 0 0 1px rgba(51, 85, 255, .2), 0 10px 20px -10px rgba(51, 85, 255, .55);
}

.lx-icon-btn:active { transform: translateY(0) scale(.94); }

.lx-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(145deg, var(--lx-ember-hi), var(--lx-ember-lo));
    box-shadow: 0 0 0 2px #fff, 0 4px 10px -2px rgba(244, 86, 26, .6);
}

/* ---------- Inputs ---------- */
.lx-input,
.lx-body .lx-form input[type=text],
.lx-body .lx-form input[type=email],
.lx-body .lx-form input[type=password],
.lx-body .lx-form input[type=number],
.lx-body .lx-form input[type=tel],
.lx-body .lx-form select,
.lx-body .lx-form textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(14, 22, 51, .12);
    background: rgba(255, 255, 255, .85);
    color: var(--lx-ink);
    font-size: 15px;
    font-family: var(--lx-font);
    box-shadow: inset 0 1px 2px rgba(14, 22, 51, .05);
    transition: border-color .2s, box-shadow .25s var(--lx-ease), background .2s;
    outline: none;
}

.lx-input:focus,
.lx-body .lx-form input:focus,
.lx-body .lx-form select:focus,
.lx-body .lx-form textarea:focus {
    border-color: rgba(51, 85, 255, .55);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(51, 85, 255, .14), inset 0 1px 2px rgba(14, 22, 51, .04);
}

.lx-label {
    display: block;
    margin-bottom: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--lx-ink-2);
}

/* ---------- Top headline strip ---------- */
.lx-strip {
    position: relative;
    background: linear-gradient(90deg, #0b1230, #1b2a6b 50%, #0b1230);
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
    overflow: hidden;
}

.lx-strip::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lx-ember-hi), var(--lx-cyan), transparent);
    opacity: .7;
}

.lx-strip marquee { padding-block: 7px; display: block; }

/* ---------- Header ---------- */
.lx-header-shell {
    position: sticky;
    top: 0;
    z-index: 50;
}

.lx-header {
    position: relative;
    background: rgba(255, 255, 255, .72);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .7);
    box-shadow: 0 1px 0 rgba(14, 22, 51, .05), 0 12px 30px -24px rgba(14, 22, 51, .4);
    transition: box-shadow .3s, background .3s;
}

.lx-header-shell[data-scrolled] .lx-header {
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 1px 0 rgba(14, 22, 51, .06), 0 18px 40px -26px rgba(14, 22, 51, .55);
}

.lx-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-block: 14px;
    transition: padding .3s var(--lx-ease);
}

.lx-header-shell[data-scrolled] .lx-header__row { padding-block: 9px; }

.lx-logo img {
    height: 56px;
    width: auto;
    max-width: 12rem;
    object-fit: contain;
    transition: transform .4s var(--lx-spring), height .3s var(--lx-ease);
}

.lx-header-shell[data-scrolled] .lx-logo img { height: 46px; }
.lx-logo:hover img { transform: scale(1.04) rotate(-1deg); }

.lx-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 5px 5px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .9);
    box-shadow: inset 0 0 0 1px rgba(14, 22, 51, .1), inset 0 2px 4px rgba(14, 22, 51, .04);
    transition: box-shadow .3s var(--lx-ease);
}

.lx-search:focus-within {
    box-shadow: inset 0 0 0 1.5px rgba(51, 85, 255, .6), 0 0 0 5px rgba(51, 85, 255, .12), 0 16px 34px -20px rgba(51, 85, 255, .6);
}

.lx-search > i { color: var(--lx-muted); font-size: 1.1rem; }

.lx-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: var(--lx-ink);
    padding-block: 7px;
}

.lx-search input::placeholder { color: #8a93a8; }

.lx-search__btn {
    flex: none;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 38px;
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
    background: linear-gradient(180deg, var(--lx-ember-hi), var(--lx-ember) 55%, var(--lx-ember-lo));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45), 0 2px 0 #b8360a, 0 8px 16px -8px rgba(244, 86, 26, .7);
    transition: transform .2s var(--lx-ease);
}

.lx-search__btn:hover { transform: translateY(-1px); }
.lx-search__btn:active { transform: translateY(1px); }

.lx-results {
    background: rgba(255, 255, 255, .95);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 16px;
    box-shadow: var(--lx-shadow-3);
    padding: 6px;
    z-index: 60;
    animation: lx-pop .28s var(--lx-ease);
}

.lx-results > div {
    border-radius: 12px;
    border-bottom: 0 !important;
    transition: background .2s, transform .2s var(--lx-ease);
}

.lx-results > div:hover { background: rgba(51, 85, 255, .07) !important; transform: translateX(3px); }
.lx-results img { border-radius: 10px !important; }

.lx-actions { display: flex; align-items: center; gap: 10px; }

.lx-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--lx-ink-2);
    transition: background .2s, color .2s;
}

.lx-action i { font-size: 1.2rem; }
.lx-action:hover { color: var(--lx-sapphire); background: rgba(51, 85, 255, .07); }

.lx-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: 14rem;
    padding: 6px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .95);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid #fff;
    box-shadow: var(--lx-shadow-3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(.97);
    transform-origin: top right;
    transition: opacity .2s, transform .3s var(--lx-ease), visibility .2s;
    z-index: 60;
}

.group:hover > .lx-menu,
.group:focus-within > .lx-menu { opacity: 1; visibility: visible; transform: none; }

.lx-menu a,
.lx-menu button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    color: var(--lx-ink-2);
    text-align: left;
    transition: background .2s;
}

.lx-menu a:hover,
.lx-menu button:hover { background: rgba(51, 85, 255, .07); }
.lx-menu .is-danger { color: var(--lx-rose); }

/* Desktop nav bar */
.lx-nav {
    position: relative;
    background: linear-gradient(90deg, #0b1230 0%, #16205a 45%, #1f2b7a 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.lx-nav::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 61, .8), rgba(25, 195, 230, .7), transparent);
}

.lx-nav__row { display: flex; align-items: center; justify-content: space-between; height: 50px; }

.lx-allcat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 260px;
    height: 38px;
    padding: 0 14px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(180deg, var(--lx-ember-hi), var(--lx-ember) 55%, var(--lx-ember-lo));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4), 0 8px 18px -8px rgba(244, 86, 26, .9);
    transition: transform .2s var(--lx-ease), filter .2s;
}

.lx-allcat:hover { filter: brightness(1.06); transform: translateY(-1px); }

.lx-navlinks { display: flex; align-items: center; gap: 6px; }

.lx-navlink {
    position: relative;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .82);
    transition: color .2s, background .2s;
}

.lx-navlink::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 3px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--lx-ember-hi), var(--lx-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--lx-ease);
}

.lx-navlink:hover,
.lx-navlink.is-active { color: #fff; background: rgba(255, 255, 255, .07); }
.lx-navlink:hover::after,
.lx-navlink.is-active::after { transform: scaleX(1); }

/* Mobile header */
.lx-mhead { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; }
.lx-mhead .lx-logo img { height: 44px; }
.lx-msearch { padding: 0 12px 12px; }

/* Side drawer (categories) */
.lx-drawer {
    background: rgba(255, 255, 255, .9) !important;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-right: 1px solid rgba(255, 255, 255, .8);
    box-shadow: 30px 0 60px -30px rgba(14, 22, 51, .45);
    transition: transform .45s var(--lx-ease) !important;
    width: 19rem !important;
}

.lx-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid var(--lx-line);
}

.lx-drawer__head img { height: 40px; width: auto; }

.lx-drawer ul { border: 0; }
.lx-drawer > nav > ul { padding: 8px; gap: 2px; }
.lx-drawer > nav > ul > li { border: 0 !important; }

.lx-drawer__cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: background .2s, transform .25s var(--lx-ease);
}

.lx-drawer__cat:hover { background: rgba(51, 85, 255, .07); transform: translateX(3px); }

.lx-drawer__cat img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 0 1px var(--lx-line), 0 4px 10px -6px rgba(14, 22, 51, .4);
}

.lx-drawer__cat span { font-size: 14px; font-weight: 500; color: var(--lx-ink); }

.lx-drawer__toggle {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 1.25rem;
    color: var(--lx-muted);
    transition: background .2s;
}

.lx-drawer__toggle:hover { background: rgba(14, 22, 51, .06); }

.lx-drawer__sub { margin: 2px 0 6px 46px; border-left: 2px solid rgba(51, 85, 255, .15); }
.lx-drawer__sub li { border: 0 !important; }

.lx-drawer__sub li {
    padding: 8px 12px;
    font-size: 13.5px;
    color: var(--lx-muted);
    cursor: pointer;
    border-radius: 0 10px 10px 0;
    transition: color .2s, background .2s;
}

.lx-drawer__sub li:hover { color: var(--lx-sapphire); background: rgba(51, 85, 255, .06); }

/* ---------- Floating contact orbs ---------- */
.lx-fab {
    position: relative;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 18px;
    color: #fff;
    font-size: 1.5rem;
    transition: transform .3s var(--lx-spring);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45), 0 12px 24px -10px var(--fab-glow);
}

.lx-fab::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid var(--fab-glow);
    animation: lx-halo 2.8s var(--lx-ease) infinite;
}

.lx-fab:hover { transform: translateY(-3px) scale(1.06) rotate(-4deg); }
.lx-fab--msg { --fab-glow: rgba(51, 85, 255, .7); background: linear-gradient(145deg, #4f8bff, #3355ff 55%, #6a3df5); }
.lx-fab--wa { --fab-glow: rgba(18, 184, 134, .7); background: linear-gradient(145deg, #3ee08a, #12b886 60%, #0b8f69); animation-delay: 1.4s; }
.lx-fab--wa::before { animation-delay: 1.4s; }

@keyframes lx-halo {
    0% { transform: scale(1); opacity: .8; }
    80%, 100% { transform: scale(1.45); opacity: 0; }
}

/* ---------- Product card: the signature 3D glass slab ---------- */
.lx-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

@media (min-width: 640px) { .lx-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; } }
@media (min-width: 768px) { .lx-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .lx-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; } }

.lx-grid--4 { }
@media (min-width: 1024px) { .lx-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.lx-card {
    --rx: 0deg;
    --ry: 0deg;
    --mx: 50%;
    --my: 0%;
    --lift: 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .8));
    border: 1px solid rgba(255, 255, 255, .95);
    box-shadow: inset 0 1px 0 #fff, 0 0 0 1px rgba(14, 22, 51, .05), var(--lx-shadow-1);
    cursor: pointer;
    transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--lift));
    transform-style: preserve-3d;
    transition: transform .5s var(--lx-ease), box-shadow .4s var(--lx-ease);
}

.lx-card[data-tilting] { transition: transform .08s linear, box-shadow .4s var(--lx-ease); will-change: transform; }

.lx-card:hover {
    --lift: -6px;
    box-shadow: inset 0 1px 0 #fff, 0 0 0 1px rgba(51, 85, 255, .1), var(--lx-shadow-3);
}

.lx-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    margin: 6px 6px 0;
    border-radius: 13px;
    overflow: hidden;
    background: linear-gradient(160deg, #fff, #eef1f8);
    transform: translateZ(20px);
}

.lx-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s var(--lx-ease);
}

.lx-card:hover .lx-card__media img { transform: scale(1.08); }

.lx-card__glare {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(420px circle at var(--mx) var(--my), rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 45%);
    mix-blend-mode: soft-light;
    transition: opacity .4s;
    z-index: 3;
}

.lx-card:hover .lx-card__glare { opacity: 1; }

.lx-card::after {
    /* gradient rim that lights up on hover */
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(140deg, rgba(255, 122, 61, .9), rgba(51, 85, 255, .6) 45%, rgba(25, 195, 230, .8));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
}

.lx-card:hover::after { opacity: 1; }

.lx-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .01em;
    color: #fff;
    background: linear-gradient(145deg, #ff5577, var(--lx-rose));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4), 0 6px 14px -6px rgba(239, 45, 86, .8);
}

.lx-badge--up { background: linear-gradient(145deg, #34d399, var(--lx-mint)); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4), 0 6px 14px -6px rgba(18, 184, 134, .8); }

.lx-card__quick {
    position: absolute;
    left: 8px;
    bottom: 8px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: var(--lx-ink);
    font-size: 1.15rem;
    background: rgba(255, 255, 255, .94);
    box-shadow: inset 0 1px 0 #fff, 0 8px 18px -8px rgba(14, 22, 51, .5);
    opacity: 0;
    transform: translateY(10px) scale(.8);
    transition: opacity .3s, transform .4s var(--lx-spring), background .2s, color .2s;
}

.lx-card:hover .lx-card__quick { opacity: 1; transform: none; }
.lx-card__quick:hover { background: var(--lx-sapphire); color: #fff; }

@media (hover: none) {
    .lx-card__quick { opacity: 1; transform: none; width: 34px; height: 34px; }
}

.lx-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 5px;
    padding: 10px 10px 12px;
    transform: translateZ(12px);
}

@media (min-width: 768px) {
    .lx-card__body { padding: 12px 12px 14px; }
}

.lx-card__title {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--lx-ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    text-transform: capitalize;
}

.lx-stars { display: flex; gap: 1px; font-size: 13px; color: var(--lx-gold); }
.lx-stars .ri-star-line { color: #d6dae6; }

.lx-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 2px 8px;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.lx-price__now {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.02em;
    background: linear-gradient(135deg, var(--lx-ember-lo), var(--lx-ember) 60%, #ff8a3d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lx-price__was { font-size: 13px; color: #97a0b5; text-decoration: line-through; }

.lx-card__actions { display: flex; flex-direction: column; gap: 7px; margin-top: auto; }
.lx-card__actions form { width: 100%; }

@media (max-width: 380px) {
    .lx-btn { font-size: 13.5px; min-height: 38px; }
    .lx-card__title { font-size: 13.5px; }
}

/* ---------- Hero ---------- */
.lx-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 14px;
}

@media (min-width: 768px) {
    .lx-hero { grid-template-columns: 260px 1fr; margin-top: 22px; gap: 18px; }
}

.lx-catlist {
    padding: 8px;
    border-radius: var(--lx-r-lg);
    align-self: stretch;
}

.lx-catlist .lx-catrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 12px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 500;
    color: var(--lx-ink);
    cursor: pointer;
    transition: background .2s, color .2s, transform .25s var(--lx-ease);
}

.lx-catlist .lx-catrow:hover { background: rgba(51, 85, 255, .08); color: var(--lx-sapphire); transform: translateX(4px); }
.lx-catlist .lx-catrow i { color: #a2a9bb; }

.lx-flyout {
    position: absolute;
    top: 0;
    left: calc(100% + 10px);
    width: 230px;
    padding: 6px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .95);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid #fff;
    box-shadow: var(--lx-shadow-3);
    z-index: 30;
    animation: lx-pop .25s var(--lx-ease);
}

.lx-flyout li {
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 13.5px;
    color: var(--lx-ink-2);
    cursor: pointer;
    text-transform: capitalize;
}

.lx-flyout li:hover { background: rgba(51, 85, 255, .07); color: var(--lx-sapphire); }

.lx-stage {
    position: relative;
    border-radius: var(--lx-r-lg);
    overflow: hidden;
    background: #e9edf7;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .9), 0 30px 60px -30px rgba(24, 38, 110, .55);
    transform-origin: 50% 100%;
}

.lx-stage::after {
    /* glass lip on top of banner */
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6), inset 0 0 0 1px rgba(255, 255, 255, .25);
    background: linear-gradient(180deg, rgba(255, 255, 255, .14), transparent 30%);
    z-index: 2;
}

.lx-stage .owl-stage-outer,
.lx-stage .owl-stage,
.lx-stage .owl-item { height: 100%; }

.lx-stage img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 767px) {
    .lx-stage { aspect-ratio: 2 / 1; border-radius: 18px; }
}

@media (min-width: 768px) {
    .lx-stage { min-height: 360px; }
    .lx-stage .owl-carousel,
    .lx-stage .owl-stage-outer { position: absolute; inset: 0; }
}

/* Offer tiles */
.lx-tiles { display: grid; gap: 10px; }
.lx-tiles--3 { grid-template-columns: repeat(3, 1fr); }
.lx-tiles--2 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 768px) {
    .lx-tiles { gap: 16px; }
}

.lx-tile {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .8), var(--lx-shadow-2);
    transform: perspective(800px) translateZ(0);
    transition: transform .5s var(--lx-ease), box-shadow .5s var(--lx-ease);
}

@media (min-width: 768px) {
    .lx-tile { border-radius: 20px; }
}

.lx-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--lx-ease); }
.lx-tile:hover { transform: perspective(800px) translateZ(14px) translateY(-4px); box-shadow: 0 0 0 1px #fff, var(--lx-shadow-3); }
.lx-tile:hover img { transform: scale(1.05); }

.lx-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .35) 48%, transparent 62%);
    transform: translateX(-110%);
    transition: transform 1.1s var(--lx-ease);
    pointer-events: none;
}

.lx-tile:hover::after { transform: translateX(110%); }

/* Category chips (desktop carousel + mobile grid) */
.lx-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 8px 14px;
    border-radius: 18px;
    cursor: pointer;
    background: linear-gradient(180deg, #fff, #f3f5fb);
    box-shadow: inset 0 1px 0 #fff, 0 0 0 1px rgba(14, 22, 51, .05), var(--lx-shadow-1);
    transition: transform .45s var(--lx-spring), box-shadow .4s;
    min-height: 140px;
}

.lx-cat__img {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    border-radius: 22px;
    background: radial-gradient(circle at 30% 25%, #fff, #e8ecf8 70%);
    box-shadow: inset 0 -6px 12px rgba(51, 85, 255, .08), inset 0 2px 0 #fff, 0 10px 18px -10px rgba(24, 38, 110, .45);
    transition: transform .5s var(--lx-spring);
}

.lx-cat__img img { width: 52px !important; height: 52px; object-fit: contain; }

.lx-cat span {
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--lx-ink);
    text-align: center;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lx-cat:hover { transform: translateY(-5px); box-shadow: inset 0 1px 0 #fff, 0 0 0 1px rgba(51, 85, 255, .12), var(--lx-shadow-2); }
.lx-cat:hover .lx-cat__img { transform: translateY(-3px) rotate(-6deg) scale(1.06); }

.lx-catgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 6px; }

.lx-catgrid .lx-cat {
    min-height: 0;
    padding: 4px 2px;
    gap: 6px;
    background: none;
    box-shadow: none;
}

.lx-catgrid .lx-cat__img { width: 60px; height: 60px; border-radius: 18px; }
.lx-catgrid .lx-cat__img img { width: 40px !important; height: 40px; }
.lx-catgrid .lx-cat span { font-size: 12px; }

/* Countdown */
.lx-timer { display: flex; align-items: center; gap: 5px; }

.lx-timer > div {
    display: grid;
    place-items: center;
    min-width: 38px;
    height: 38px;
    padding: 0 6px;
    border-radius: 11px;
    font-weight: 700;
    font-size: 15px;
    font-variant-numeric: tabular-nums;
    color: #fff;
    background: linear-gradient(180deg, #27336b, var(--lx-ink));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), inset 0 -12px 0 rgba(0, 0, 0, .12), 0 8px 16px -8px rgba(14, 22, 51, .7);
}

.lx-timer > span { font-weight: 700; color: var(--lx-ember); }

/* Owl carousel tweaks */
.lx-body .owl-carousel .owl-stage-outer { padding: 8px 0 18px; }
.lx-body .lx-stage .owl-stage-outer { padding: 0; margin: 0; }
.lx-body #hotdealScroll .owl-stage-outer { padding: 10px 4px 22px; margin: -10px -4px -22px; }

/* ---------- Footer ---------- */
.lx-footer {
    position: relative;
    margin-top: 40px;
    color: rgba(255, 255, 255, .72);
    background:
        radial-gradient(60% 80% at 10% 0%, rgba(51, 85, 255, .28), transparent 60%),
        radial-gradient(50% 70% at 95% 10%, rgba(244, 86, 26, .18), transparent 60%),
        linear-gradient(180deg, #0f1839, #080d22);
    overflow: hidden;
}

.lx-footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lx-ember-hi), var(--lx-cyan), transparent);
}

.lx-footer h3 { color: #fff; font-weight: 600; font-size: 1rem; letter-spacing: -.01em; margin-bottom: 14px; }
.lx-footer a { transition: color .2s, padding .3s var(--lx-ease); }
.lx-footer li a:hover { color: #fff; padding-left: 4px; }

.lx-footer__logo {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .6);
}

.lx-footer__logo img { height: 48px; width: auto; }

.lx-social {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 13px;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
    transition: transform .3s var(--lx-spring), background .2s;
}

.lx-social:hover { transform: translateY(-3px); }

.lx-news {
    display: flex;
    gap: 6px;
    padding: 5px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.lx-news input {
    flex: 1;
    min-width: 0;
    padding: 8px 10px;
    border: 0;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
}

.lx-news input::placeholder { color: rgba(255, 255, 255, .45); }
.lx-news .lx-btn { width: auto; min-height: 36px; padding-inline: 16px; }

.lx-footer__pay { border-radius: 12px; background: #fff; padding: 6px; max-width: 18rem; }

.lx-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .08); }

/* ---------- Mobile dock ---------- */
.lx-dock {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 50;
    border-radius: 22px;
    background: rgba(255, 255, 255, .78) !important;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .9) !important;
    box-shadow: inset 0 1px 0 #fff, 0 18px 40px -16px rgba(14, 22, 51, .45);
}

.lx-dock ul { padding: 6px; }

.lx-dock .nav-item,
.lx-dock button {
    position: relative;
    gap: 2px;
    padding: 6px 0 !important;
    border-radius: 16px;
    color: var(--lx-muted);
    transition: color .25s;
}

.lx-dock .nav-item i,
.lx-dock button i { font-size: 1.35rem; transition: transform .35s var(--lx-spring); }

.lx-dock .nav-item span:not(.nav-indicator),
.lx-dock button span { font-size: 11px; font-weight: 500; }

.lx-dock .nav-indicator {
    position: absolute;
    inset: 0 !important;
    z-index: -1;
    width: auto !important;
    height: auto !important;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(51, 85, 255, .12), rgba(51, 85, 255, .05)) !important;
    box-shadow: inset 0 0 0 1px rgba(51, 85, 255, .12);
    opacity: 0;
    transform: scale(.6);
    transition: opacity .3s, transform .45s var(--lx-spring) !important;
}

.lx-dock .nav-item.is-active { color: var(--lx-sapphire); }
.lx-dock .nav-item.is-active .nav-indicator { opacity: 1; transform: none; }
.lx-dock .nav-item.is-active i { transform: translateY(-2px); }
.lx-dock .nav-item:active i { transform: scale(.88); }

/* ---------- Profile sidebar + modal ---------- */
.lx-sheet {
    background: rgba(255, 255, 255, .92) !important;
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    border-radius: 24px 0 0 24px;
    transition: transform .45s var(--lx-ease) !important;
}

.lx-scrim { background: rgba(8, 13, 34, .45) !important; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }

.lx-modal {
    position: relative;
    width: 100%;
    max-width: 30rem;
    padding: 28px 22px 22px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .9);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid #fff;
    box-shadow: inset 0 1px 0 #fff, 0 40px 80px -30px rgba(8, 13, 34, .6);
    animation: lx-modal .5s var(--lx-ease);
}

@media (min-width: 640px) {
    .lx-modal { padding: 34px 32px 28px; }
}

.lx-modal h2 { font-size: 1.5rem; font-weight: 700; letter-spacing: -.02em; text-align: center; margin-bottom: 18px; color: var(--lx-ink); }

.lx-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 1.3rem;
    color: var(--lx-muted);
    background: rgba(14, 22, 51, .05);
    transition: background .2s, transform .3s var(--lx-spring);
}

.lx-modal__close:hover { background: rgba(14, 22, 51, .09); transform: rotate(90deg); }

.lx-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0 12px;
    font-size: 12.5px;
    color: var(--lx-muted);
}

.lx-divider::before,
.lx-divider::after { content: ""; flex: 1; height: 1px; background: var(--lx-line); }

@keyframes lx-modal {
    from { opacity: 0; transform: perspective(900px) translateY(24px) rotateX(10deg) scale(.96); }
    to { opacity: 1; transform: none; }
}

@keyframes lx-pop {
    from { opacity: 0; transform: translateY(6px) scale(.98); }
    to { opacity: 1; transform: none; }
}

/* ---------- Generic page pieces (listing, details, cart, forms) ---------- */
.lx-crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 13px; color: var(--lx-muted); }
.lx-crumb a:hover { color: var(--lx-sapphire); }

.lx-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--lx-ink-2);
    background: rgba(255, 255, 255, .8);
    box-shadow: inset 0 0 0 1px rgba(14, 22, 51, .08);
    transition: background .2s, color .2s, box-shadow .2s;
    cursor: pointer;
}

.lx-chip:hover { color: var(--lx-sapphire); box-shadow: inset 0 0 0 1px rgba(51, 85, 255, .3); }
.lx-chip.is-active { color: #fff; background: linear-gradient(145deg, var(--lx-sapphire-hi), var(--lx-violet)); box-shadow: 0 6px 14px -6px rgba(51, 85, 255, .7); }

.lx-side { padding: 18px; border-radius: var(--lx-r-lg); }
.lx-side h3 { font-size: 15px; font-weight: 700; color: var(--lx-ink); margin-bottom: 10px; letter-spacing: -.01em; }

.lx-side a,
.lx-side label { transition: color .2s, background .2s; }

.lx-check { accent-color: var(--lx-sapphire); width: 16px; height: 16px; }

.lx-empty {
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 48px 16px;
    text-align: center;
    color: var(--lx-muted);
}

.lx-empty i {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 24px;
    font-size: 2rem;
    color: var(--lx-sapphire);
    background: radial-gradient(circle at 30% 25%, #fff, #e8ecf8 70%);
    box-shadow: inset 0 -6px 12px rgba(51, 85, 255, .1), 0 12px 24px -12px rgba(24, 38, 110, .45);
}

.lx-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 14px; }
.lx-table th { text-align: left; font-weight: 600; font-size: 12.5px; color: var(--lx-muted); padding: 10px 12px; border-bottom: 1px solid var(--lx-line); }
.lx-table td { padding: 12px; border-bottom: 1px solid var(--lx-line); vertical-align: middle; }
.lx-table tr:last-child td { border-bottom: 0; }
.lx-table tbody tr { transition: background .2s; }
.lx-table tbody tr:hover { background: rgba(51, 85, 255, .035); }

.lx-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    background: rgba(51, 85, 255, .1);
    color: var(--lx-sapphire);
}

.lx-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.lx-qty {
    display: inline-flex;
    align-items: center;
    padding: 3px;
    border-radius: 12px;
    background: rgba(14, 22, 51, .05);
    box-shadow: inset 0 1px 2px rgba(14, 22, 51, .06);
}

.lx-qty button {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 1rem;
    color: var(--lx-ink);
    background: #fff;
    box-shadow: 0 1px 0 rgba(14, 22, 51, .08), 0 3px 8px -4px rgba(14, 22, 51, .3);
    transition: transform .15s;
}

.lx-qty button:active { transform: scale(.9); }
.lx-qty input { width: 40px; text-align: center; background: transparent; border: 0; outline: none; font-weight: 600; }

.lx-prose { color: #343c55; line-height: 1.75; font-size: 15px; }
.lx-prose h1, .lx-prose h2, .lx-prose h3 { color: var(--lx-ink); font-weight: 700; letter-spacing: -.02em; line-height: 1.3; margin: 1.2em 0 .5em; }
.lx-prose h1 { font-size: 1.6rem; }
.lx-prose h2 { font-size: 1.25rem; }
.lx-prose h3 { font-size: 1.05rem; }
.lx-prose p { margin-bottom: .9em; }
.lx-prose ul { list-style: disc; padding-left: 1.3em; margin-bottom: .9em; }
.lx-prose ol { list-style: decimal; padding-left: 1.3em; margin-bottom: .9em; }
.lx-prose a { color: var(--lx-sapphire); text-decoration: underline; text-underline-offset: 3px; }
.lx-prose img { border-radius: 14px; max-width: 100%; height: auto; }

.lx-page-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.15;
    color: var(--lx-ink);
}

@media (min-width: 768px) {
    .lx-page-title { font-size: 2.1rem; }
}

/* ---------- Motion: reveal + page entrance ---------- */
.lx-js [data-reveal] {
    opacity: 0;
    translate: 0 22px;
    transition: opacity .7s var(--lx-ease), translate .8s var(--lx-ease);
    transition-delay: calc(var(--i, 0) * 60ms);
}

.lx-js [data-reveal][data-in] { opacity: 1; translate: 0 0; }

.lx-enter-down { animation: lx-enter-down .8s var(--lx-ease) both; }
.lx-enter-stage { animation: lx-enter-stage 1.1s var(--lx-ease) .1s both; }
.lx-enter-side { animation: lx-enter-side .9s var(--lx-ease) .25s both; }

@keyframes lx-enter-down {
    from { opacity: 0; transform: translateY(-14px); }
    to { opacity: 1; transform: none; }
}

@keyframes lx-enter-stage {
    from { opacity: 0; transform: perspective(1200px) rotateX(12deg) translateY(30px) scale(.97); }
    to { opacity: 1; transform: none; }
}

@keyframes lx-enter-side {
    from { opacity: 0; transform: translateX(-18px); }
    to { opacity: 1; transform: none; }
}

/* Mobile: keep the cheap parts, drop the heavy ones */
@media (max-width: 767px) {
    .lx-aurora { animation: none; }
    .lx-card { transform: none; }
    .lx-card:hover { --lift: 0px; }
    .lx-card:active { transform: scale(.98); transition-duration: .15s; }
    .lx-card__media,
    .lx-card__body { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    .lx-body *,
    .lx-body *::before,
    .lx-body *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .lx-js [data-reveal] { opacity: 1; translate: none; }
    .lx-card { transform: none !important; }
}

/* Scrollbar */
@media (pointer: fine) {
    .lx-body ::-webkit-scrollbar { width: 10px; height: 10px; }
    .lx-body ::-webkit-scrollbar-track { background: transparent; }
    .lx-body ::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #b8c2dc, #97a3c4); border-radius: 10px; border: 2px solid var(--lx-pearl); }
}

/* Toast (iziToast) */
.lx-body .iziToast { border-radius: 16px !important; box-shadow: var(--lx-shadow-3) !important; font-family: var(--lx-font) !important; }

/* ---------- Listing pages ---------- */
.lx-count-pill {
    flex: none;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--lx-sapphire);
    background: rgba(51, 85, 255, .08);
    box-shadow: inset 0 0 0 1px rgba(51, 85, 255, .12);
}

.lx-grid--list { }
@media (min-width: 768px) { .lx-grid--list { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .lx-grid--list { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.lx-filter { padding-block: 14px; border-top: 1px solid var(--lx-line); }
.lx-filter:first-of-type { border-top: 0; }
.lx-filter h4 { font-size: 13px; font-weight: 700; color: var(--lx-ink-2); margin-bottom: 10px; }

.lx-filter__list { max-height: 15rem; overflow-y: auto; margin-right: -6px; padding-right: 6px; }

.lx-filter__list label,
.lx-filter__rate {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 8px;
    border-radius: 10px;
    font-size: 13.5px;
    color: var(--lx-ink-2);
    cursor: pointer;
    transition: background .2s;
}

.lx-filter__list label:hover,
.lx-filter__rate:hover { background: rgba(51, 85, 255, .06); }

.lx-filter__list label:has(input:checked) { color: var(--lx-sapphire); font-weight: 600; background: rgba(51, 85, 255, .07); }

.lx-select {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .85);
    box-shadow: inset 0 0 0 1px rgba(14, 22, 51, .1), 0 6px 14px -10px rgba(14, 22, 51, .4);
    color: var(--lx-muted);
}

.lx-select select {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--lx-ink);
}

/* ---------- Product details ---------- */
.lx-gallery-m {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .9), var(--lx-shadow-2);
}

.lx-gallery-m img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: #fff; }

.lx-counter {
    position: absolute;
    left: 50%;
    bottom: 12px;
    z-index: 5;
    transform: translateX(-50%);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: rgba(14, 22, 51, .45);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.lx-counter:empty { display: none; }

.lx-gallery__main {
    --rx: 0deg;
    --ry: 0deg;
    --mx: 50%;
    --my: 0%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    background: linear-gradient(160deg, #fff, #eef1f8);
    transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
    transition: transform .5s var(--lx-ease);
    cursor: zoom-in;
}

.lx-gallery__main[data-tilting] { transition: transform .08s linear; }
.lx-gallery__main img { width: 100%; height: 100%; object-fit: contain; transition: transform .8s var(--lx-ease); }
.lx-gallery__main:hover img { transform: scale(1.06); }
.lx-gallery__main:hover .lx-card__glare { opacity: 1; }

.lx-thumbs { margin-top: 10px; }
.lx-body .lx-thumbs .owl-stage-outer { padding: 4px 0 6px; }

.lx-thumb {
    width: 64px !important;
    height: 64px;
    margin-inline: auto;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    border-color: rgba(14, 22, 51, .08) !important;
    box-shadow: 0 6px 12px -8px rgba(14, 22, 51, .5);
    transition: transform .3s var(--lx-spring), border-color .2s, box-shadow .2s;
}

.lx-thumb:hover { transform: translateY(-2px); }

.lx-thumb.border-2 {
    border-color: var(--lx-sapphire) !important;
    box-shadow: 0 0 0 3px rgba(51, 85, 255, .18), 0 8px 16px -8px rgba(51, 85, 255, .6);
}

.lx-buybox { padding: 18px; }

@media (min-width: 768px) {
    .lx-buybox { padding: 26px; }
}

.lx-buybox__title {
    font-size: 1.3rem;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: -.02em;
    color: var(--lx-ink);
}

@media (min-width: 768px) {
    .lx-buybox__title { font-size: 1.35rem; }
}

.lx-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lx-ink);
    background: rgba(255, 255, 255, .8);
    box-shadow: inset 0 0 0 1px rgba(14, 22, 51, .08);
}

.lx-meta > span { font-weight: 500; color: var(--lx-muted); }

.lx-pricebox {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    overflow: hidden;
    background:
        radial-gradient(120% 140% at 0% 0%, rgba(255, 122, 61, .14), transparent 60%),
        radial-gradient(120% 140% at 100% 100%, rgba(51, 85, 255, .12), transparent 60%),
        rgba(255, 255, 255, .7);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .9), inset 0 1px 0 #fff;
}

.lx-pricebox__now {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -.03em;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(135deg, var(--lx-ember-lo), var(--lx-ember) 55%, #ff9a52);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lx-pricebox__was { font-size: 1.05rem; color: #97a0b5; text-decoration: line-through; }

.lx-save {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #0b7a58;
    background: rgba(18, 184, 134, .12);
    box-shadow: inset 0 0 0 1px rgba(18, 184, 134, .25);
}

.lx-save:empty { display: none; }

.lx-variant {
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--lx-ink);
    cursor: pointer;
    background: linear-gradient(180deg, #fff, #f3f5fb);
    box-shadow: inset 0 0 0 1px rgba(14, 22, 51, .1), 0 3px 0 rgba(14, 22, 51, .06);
    transition: transform .2s var(--lx-spring), box-shadow .2s, color .2s;
}

.lx-variant:hover { transform: translateY(-2px); color: var(--lx-sapphire); }

.lx-variant.is-selected {
    color: #fff;
    background: linear-gradient(145deg, var(--lx-sapphire-hi), var(--lx-violet));
    box-shadow: 0 3px 0 #2231a8, 0 10px 18px -8px rgba(51, 85, 255, .7);
}

.lx-perk {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--lx-line);
}

.lx-perk:first-of-type { border-top: 0; padding-top: 0; }

.lx-perk > i {
    flex: none;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: var(--lx-sapphire);
    background: radial-gradient(circle at 30% 25%, #fff, #e8ecf8 75%);
    box-shadow: inset 0 -4px 8px rgba(51, 85, 255, .08), 0 6px 12px -8px rgba(24, 38, 110, .5);
}

.lx-reviewform {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .7);
    box-shadow: inset 0 0 0 1px rgba(14, 22, 51, .06);
}

.lx-reviewform .star-btn { transition: transform .25s var(--lx-spring); }
.lx-reviewform .star-btn:hover { transform: scale(1.15) rotate(-6deg); }

.lx-review {
    display: flex;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .75);
    box-shadow: inset 0 0 0 1px rgba(14, 22, 51, .05), var(--lx-shadow-1);
    transition: transform .3s var(--lx-ease), box-shadow .3s;
}

.lx-review:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px rgba(51, 85, 255, .1), var(--lx-shadow-2); }

/* ---------- Cart ---------- */
.lx-cartrow {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--lx-line);
}

.lx-cartrow:first-of-type { border-top: 0; }

.lx-cartrow__img {
    flex: none;
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 0 0 1px var(--lx-line), 0 10px 18px -12px rgba(14, 22, 51, .5);
}

@media (min-width: 768px) {
    .lx-cartrow__img { width: 96px; height: 96px; }
}

.lx-cartrow__total { font-size: 16px; font-weight: 700; color: var(--lx-ink); font-variant-numeric: tabular-nums; }

.lx-remove {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--lx-rose);
    background: rgba(239, 45, 86, .08);
    transition: background .2s, transform .2s;
}

.lx-remove:hover { background: rgba(239, 45, 86, .15); }
.lx-remove:active { transform: scale(.95); }

.lx-qty input::-webkit-outer-spin-button,
.lx-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.lx-qty input { -moz-appearance: textfield; }

/* ---------- Checkout ---------- */
.lx-step-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--lx-ink);
}

.lx-step-title > span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(145deg, var(--lx-sapphire-hi), var(--lx-violet));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4), 0 6px 12px -6px rgba(51, 85, 255, .8);
}

.lx-body .lx-form select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%235b6479'%3E%3Cpath d='M12 15.6 6.3 9.9l1.4-1.4 4.3 4.3 4.3-4.3 1.4 1.4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.lx-pay {
    display: grid;
    place-items: center;
    height: 60px;
    padding: 6px;
    border-radius: 14px;
    cursor: pointer;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(14, 22, 51, .1), 0 4px 0 rgba(14, 22, 51, .05);
    transition: transform .25s var(--lx-spring), box-shadow .25s;
}

.lx-pay img { max-height: 44px; width: auto; object-fit: contain; }
.lx-pay:hover { transform: translateY(-2px); }

.lx-pay.active {
    box-shadow: inset 0 0 0 2px var(--lx-ember), 0 0 0 4px rgba(244, 86, 26, .14), 0 10px 20px -12px rgba(244, 86, 26, .7);
    background: #fff8f3;
}

.lx-pay__txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    color: var(--lx-ink);
}

.lx-pay__txt[hidden] { display: none; }
.lx-pay__txt i { font-size: 1.2rem; color: var(--lx-mint); }

/* ---------- Success / tracking ---------- */
.lx-success__badge {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 84px;
    height: 84px;
    border-radius: 28px;
    font-size: 2.6rem;
    color: #fff;
    background: linear-gradient(145deg, #3ee08a, var(--lx-mint) 55%, #0b8f69);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, .45), 0 20px 40px -16px rgba(18, 184, 134, .8);
    animation: lx-pop-in .8s var(--lx-spring) both;
}

.lx-success__badge::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(18, 184, 134, .55);
    animation: lx-halo 2.4s var(--lx-ease) .8s infinite;
}

.lx-success__badge--blue {
    background: linear-gradient(145deg, var(--lx-sapphire-hi), var(--lx-sapphire) 55%, var(--lx-violet));
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, .45), 0 20px 40px -16px rgba(51, 85, 255, .8);
}

.lx-success__badge--blue::before { border-color: rgba(51, 85, 255, .5); }

@keyframes lx-pop-in {
    from { opacity: 0; transform: scale(.4) rotate(-20deg); }
    to { opacity: 1; transform: none; }
}

.lx-receipt {
    display: grid;
    gap: 2px;
    padding: 6px;
    border-radius: 18px;
    background: rgba(14, 22, 51, .035);
    text-align: left;
}

.lx-receipt > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .85);
}

.lx-receipt dt { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--lx-muted); flex: none; }
.lx-receipt dt i { color: var(--lx-sapphire); }
.lx-receipt dd { font-size: 14.5px; font-weight: 600; color: var(--lx-ink); text-align: right; }

.lx-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 14px;
    color: #b4213f;
    background: rgba(239, 45, 86, .08);
    box-shadow: inset 0 0 0 1px rgba(239, 45, 86, .2);
}

.lx-alert--ok { color: #0b7a58; background: rgba(18, 184, 134, .1); box-shadow: inset 0 0 0 1px rgba(18, 184, 134, .25); }

/* ---------- Contact / help ---------- */
.lx-contact {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: var(--lx-r-lg);
    color: rgba(255, 255, 255, .8);
    background:
        radial-gradient(80% 70% at 100% 0%, rgba(244, 86, 26, .35), transparent 60%),
        radial-gradient(90% 80% at 0% 100%, rgba(51, 85, 255, .45), transparent 60%),
        linear-gradient(160deg, #16205a, #0b1230);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), var(--lx-shadow-3);
}

.lx-contact li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; line-height: 1.5; }

.lx-contact li i {
    flex: none;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
}

.lx-contact li span { padding-top: 8px; }

.lx-faq {
    border-radius: 16px;
    background: rgba(255, 255, 255, .75);
    box-shadow: inset 0 0 0 1px rgba(14, 22, 51, .06);
    transition: box-shadow .25s, background .25s;
}

.lx-faq:hover { box-shadow: inset 0 0 0 1px rgba(51, 85, 255, .18); }
.lx-faq:has(.lx-faq__a:not(.hidden)) { background: #fff; box-shadow: inset 0 0 0 1px rgba(51, 85, 255, .22), var(--lx-shadow-1); }

.lx-faq__q {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 16px;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    color: var(--lx-ink);
}

.lx-faq__q i {
    flex: none;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    font-size: 1.1rem;
    color: var(--lx-sapphire);
    background: rgba(51, 85, 255, .08);
}

.lx-faq__a {
    padding: 0 16px 16px;
    font-size: 14.5px;
    line-height: 1.7;
    color: #343c55;
    animation: lx-pop .3s var(--lx-ease);
}

/* ---------- 404 ---------- */
.lx-404 {
    font-size: clamp(6rem, 22vw, 12rem);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.06em;
    background: linear-gradient(160deg, var(--lx-ember-hi), var(--lx-ember) 35%, var(--lx-sapphire) 70%, var(--lx-violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 0 rgba(255, 255, 255, .9)) drop-shadow(0 18px 24px rgba(24, 38, 110, .25));
    animation: lx-float 6s ease-in-out infinite;
}

@keyframes lx-float {
    0%, 100% { transform: translateY(0) rotateX(0); }
    50% { transform: translateY(-10px) rotateX(8deg); }
}

/* ---------- Customer auth ---------- */
.lx-auth__aside {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: var(--lx-r-lg);
    background:
        radial-gradient(70% 60% at 100% 0%, rgba(244, 86, 26, .4), transparent 60%),
        radial-gradient(90% 80% at 0% 100%, rgba(51, 85, 255, .5), transparent 60%),
        linear-gradient(160deg, #1b2a6b, #0b1230);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), var(--lx-shadow-3);
}

.lx-auth__aside::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 220px;
    height: 220px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, .12);
    transform: rotate(18deg);
}

.lx-auth__tick {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    font-size: .95rem;
    color: #fff;
    background: linear-gradient(145deg, var(--lx-ember-hi), var(--lx-ember-lo));
    box-shadow: 0 6px 12px -6px rgba(244, 86, 26, .9);
}

/* ---------- Customer account ---------- */
.lx-profile {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    color: #fff;
    background:
        radial-gradient(60% 120% at 100% 0%, rgba(244, 86, 26, .45), transparent 60%),
        linear-gradient(120deg, #1b2a6b, var(--lx-sapphire) 70%, var(--lx-violet));
}

@media (min-width: 768px) {
    .lx-profile { padding: 32px; gap: 24px; }
}

.lx-profile__avatar {
    flex: none;
    width: 76px;
    height: 76px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .25), 0 14px 30px -12px rgba(0, 0, 0, .5);
}

.lx-tabs { display: flex; gap: 6px; padding: 10px 14px 0; border-bottom: 1px solid var(--lx-line); }

.lx-tabs .tab-link {
    position: relative;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--lx-muted);
    transition: color .2s;
}

.lx-tabs .tab-link::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: -1px;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(90deg, var(--lx-ember), var(--lx-sapphire));
    transform: scaleX(0);
    transition: transform .35s var(--lx-ease);
}

.lx-tabs .tab-link:hover,
.lx-tabs .tab-link.is-active { color: var(--lx-ink); }
.lx-tabs .tab-link.is-active::after { transform: scaleX(1); }

/* Header layering: search results must sit above the nav bar */
.lx-header { z-index: 3; }
.lx-nav { z-index: 1; }
.lx-search input:focus-visible,
.lx-news input:focus-visible { outline: none; }

/* Hero category rail: its subcategory flyout must open ABOVE the banner */
.lx-catlist { position: relative; z-index: 5; }
.lx-stage { z-index: 1; }

/* Invisible bridge over the gap so the flyout stays open while the mouse crosses it */
.lx-flyout::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -24px;
    width: 24px;
}

/* ---------- Nav: All categories hover dropdown ---------- */
.lx-catmenu { position: relative; height: 100%; display: flex; align-items: center; }

.lx-catmenu__panel {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 60;
    width: 300px;
    padding: 8px;
    border-radius: 0 0 18px 18px;
    background: #fff;
    border: 1px solid rgba(14, 22, 51, .06);
    border-top: 3px solid var(--lx-ember);
    box-shadow: var(--lx-shadow-3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s, transform .3s var(--lx-ease), visibility .2s;
}

.lx-catmenu:hover .lx-catmenu__panel,
.lx-catmenu:focus-within .lx-catmenu__panel { opacity: 1; visibility: visible; transform: none; }

.lx-catmenu:hover .lx-allcat { filter: brightness(1.06); }

.lx-catmenu__item { position: relative; }

.lx-catmenu__item > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--lx-ink);
    transition: background .2s, color .2s, padding .25s var(--lx-ease);
}

.lx-catmenu__item > a img {
    flex: none;
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 9px;
    box-shadow: 0 0 0 1px var(--lx-line);
}

.lx-catmenu__item > a span { flex: 1; min-width: 0; }
.lx-catmenu__item > a i { color: #a2a9bb; font-size: 1.05rem; }

.lx-catmenu__item:hover > a { background: rgba(51, 85, 255, .07); color: var(--lx-sapphire); padding-left: 14px; }
.lx-catmenu__item:hover > a i { color: var(--lx-sapphire); }

.lx-catmenu__sub {
    position: absolute;
    top: -8px;
    left: 100%;
    width: 230px;
    padding-left: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-6px);
    transition: opacity .2s, transform .25s var(--lx-ease), visibility .2s;
}

.lx-catmenu__sub ul {
    padding: 8px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(14, 22, 51, .06);
    box-shadow: var(--lx-shadow-3);
}

.lx-catmenu__item:hover > .lx-catmenu__sub { opacity: 1; visibility: visible; transform: none; }

.lx-catmenu__sub a {
    display: block;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 13.5px;
    color: var(--lx-ink-2);
    text-transform: capitalize;
    transition: background .2s, color .2s;
}

.lx-catmenu__sub a:hover { background: rgba(51, 85, 255, .07); color: var(--lx-sapphire); }

/* Login / account pill on the nav bar */
.lx-navpill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 36px;
    padding: 0 16px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
    transition: background .2s, box-shadow .2s;
}

.lx-navpill i { color: var(--lx-ember-hi); font-size: 1.05rem; }
.lx-navpill:hover { background: rgba(255, 255, 255, .14); box-shadow: inset 0 0 0 1px rgba(255, 122, 61, .6); }

/* Home banner now spans the full width */
.lx-hero { grid-template-columns: 1fr !important; }

@media (min-width: 768px) {
    .lx-stage { min-height: 420px; }
}

/* ---------- Nav links: spaced out, jelly "jolt" + gradient glow on hover ---------- */
.lx-navlinks { gap: 14px; margin-left: 14px; }

.lx-navlink {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    padding: 0 18px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: .01em;
    color: rgba(255, 255, 255, .82);
    background: transparent;
    box-shadow: inset 0 0 0 1px transparent;
    transition: color .25s, box-shadow .35s var(--lx-ease), transform .45s var(--lx-spring);
}

.lx-navlink i {
    font-size: 1.1rem;
    color: var(--lx-ember-hi);
    transition: transform .5s var(--lx-spring), color .25s;
}

/* gradient fill that springs in from the centre */
.lx-navlink::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(120deg, var(--lx-ember-hi) 0%, var(--lx-ember) 35%, var(--lx-violet) 100%);
    opacity: 0;
    transform: scale(.55);
    transition: opacity .3s, transform .5s var(--lx-spring);
}

/* underline now only marks the current page */
.lx-navlink::after { left: 18px; right: 18px; bottom: 4px; }
.lx-navlink:hover::after { transform: scaleX(0); }

.lx-navlink__shine {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .55) 48%, transparent 64%);
    transform: translateX(-130%);
    pointer-events: none;
}

.lx-navlink:hover {
    color: #fff;
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -8px rgba(244, 86, 26, .75), 0 0 0 1px rgba(255, 255, 255, .18);
    animation: lx-jolt .6s var(--lx-ease);
}

.lx-navlink:hover::before { opacity: 1; transform: none; }
.lx-navlink:hover i { color: #fff; animation: lx-icon-kick .6s var(--lx-ease); }
.lx-navlink:hover .lx-navlink__shine { transform: translateX(130%); transition: transform .9s var(--lx-ease) .1s; }

.lx-navlink:active { transform: translateY(0) scale(.94); transition-duration: .12s; }

.lx-navlink.is-active {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
}

.lx-navlink.is-active:hover { background: transparent; }

@keyframes lx-jolt {
    0% { transform: translateY(0) scale(1, 1); }
    25% { transform: translateY(-3px) scale(1.12, .88); }
    45% { transform: translateY(-2px) scale(.94, 1.08); }
    65% { transform: translateY(-2px) scale(1.04, .97); }
    82% { transform: translateY(-2px) scale(.99, 1.01); }
    100% { transform: translateY(-2px) scale(1, 1); }
}

@keyframes lx-icon-kick {
    0% { transform: rotate(0) scale(1); }
    30% { transform: rotate(-18deg) scale(1.3); }
    55% { transform: rotate(12deg) scale(1.1); }
    75% { transform: rotate(-6deg) scale(1.05); }
    100% { transform: rotate(0) scale(1); }
}
