/* ═══════════════════════════════════════════════════════════
   ELIXIRA HOME — Faithful recreation of Framer design
   Colors: #13252D primary, #000 nav, #B7D7D0 accent
   Font: Istok Web, Bricolage Grotesque, DM Sans, Inter
   ═══════════════════════════════════════════════════════════ */

:root {
    --elx-dark: #0a1a22;
    --elx-darker: #060f14;
    --elx-primary: #13252D;
    --elx-accent: #B7D7D0;
    --elx-cyan: rgb(74, 200, 246);
    --elx-cyan-dim: rgba(74, 200, 246, 0.6);
    --elx-white: #ffffff;
    --elx-gray: rgb(171, 171, 171);
    --elx-light: rgb(148, 193, 209);
    --elx-border: rgba(30, 103, 130, 0.3);
    --elx-glass: #13252D;
    --elx-glass-strong: rgba(19, 37, 45, 0.8);
    --elx-font: 'Istok Web', 'DM Sans', sans-serif;
    --elx-font-alt: 'Bricolage Grotesque', 'Inter', sans-serif;
    --elx-radius: 33px;
    --elx-radius-sm: 16px;
    --elx-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    /* clip keeps horizontal bleed clipped without breaking position:sticky */
    overflow-x: clip;
}

body {
    overflow-x: clip;
}

img,
video,
svg {
    max-width: 100%;
    height: auto;
}


/* Cloud Decorations for Footer */
.elx-footer {
    position: relative;
    overflow: hidden;
}

.elx-footer__cloud {
    position: absolute;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
    transition: transform 0.5s ease;
}

.elx-footer__cloud--left {
    left: -100px;
    width: 400px;
}

.elx-footer__cloud--right {
    right: -100px;
    width: 450px;
}

/* Ticker / Marquee */
.elx-ticker {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 2rem 0;
}

.elx-ticker__inner {
    display: inline-flex;
    animation: ticker-scroll 30s linear infinite;
    gap: 2rem;
}

.elx-ticker:hover .elx-ticker__inner {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.elx-ticker__item {
    flex: 0 0 auto;
    width: 300px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

@media (min-width: 1024px) {
    html {
        font-size: 106.25%;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--elx-font);
    background: var(--elx-darker);
    color: var(--elx-white);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100dvh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.elx-product-card__image-container img,
.elx-image-gallery__stage img,
.elx-image-gallery__thumb img {
    background-color: #13252d;
}

.elx-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.elx-section {
    padding: 6rem 0;
    position: relative;
}

/* ─── Scroll Animations ───
   Default: visible (no-JS, or before opt-in). JS adds .elx-animate-scroll on <html>. */
[data-animate] {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

html.elx-animate-scroll [data-animate]:not(.animate-in) {
    opacity: 0;
    transform: translateY(40px);
}

html.elx-animate-scroll [data-animate].animate-in {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html.elx-animate-scroll [data-animate]:not(.animate-in) {
        opacity: 1;
        transform: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.elx-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.elx-nav.scrolled {
    background: rgba(6, 15, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.elx-nav__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.25rem;
}

.elx-nav__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--elx-font-alt);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--elx-accent);
    transition: var(--elx-transition);
}

.elx-nav__logo-icon {
    font-size: 1.2rem;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 6px var(--elx-cyan));
    }

    50% {
        opacity: 0.7;
        filter: drop-shadow(0 0 12px var(--elx-cyan));
    }
}

/* Nav Links */
.elx-nav__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 0;
}

.elx-nav__links li {
    list-style: none;
}

.elx-nav__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding: 0.3rem 0;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.elx-nav__links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--elx-cyan);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.elx-nav__links a:hover,
.elx-nav__links a.active {
    color: var(--elx-white);
}

.elx-nav__links a:hover::after,
.elx-nav__links a.active::after {
    width: 100%;
}

/* Nav Actions */
.elx-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
    justify-content: flex-end;
}

.elx-nav__actions-cluster {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.elx-nav__actions-user {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding-inline-start: 0.65rem;
    margin-inline-start: 0.15rem;
    border-inline-start: 1px solid rgba(255, 255, 255, 0.1);
}

.elx-nav__cart {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--elx-white);
    font-size: 1.1rem;
    transition: var(--elx-transition);
}

.elx-nav__cart:hover {
    background: rgba(74, 200, 246, 0.15);
    border-color: var(--elx-cyan);
    color: var(--elx-cyan);
    transform: scale(1.05);
}

.elx-nav__cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--elx-cyan);
    color: var(--elx-dark);
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(74, 200, 246, 0.4);
}

.elx-nav__profile {
    position: relative;
}

.elx-nav__profile-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.32rem 0.7rem 0.32rem 0.38rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: var(--elx-white);
    cursor: pointer;
    transition: var(--elx-transition);
    font-family: var(--elx-font);
    max-width: 200px;
}

[dir="rtl"] .elx-nav__profile-trigger {
    padding: 0.32rem 0.38rem 0.32rem 0.7rem;
}

.elx-nav__profile-trigger:hover,
.elx-nav__profile.open .elx-nav__profile-trigger {
    border-color: var(--elx-cyan);
    background: rgba(74, 200, 246, 0.12);
}

.elx-nav__profile-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--elx-cyan), var(--elx-accent));
    color: var(--elx-dark);
    font-size: 0.92rem;
    font-weight: 700;
}

.elx-nav__profile-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    line-height: 1;
}

.elx-nav__profile-meta strong {
    max-width: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.8rem;
}

.elx-nav__profile-meta small {
    color: var(--elx-light);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

[dir="rtl"] .elx-nav__profile-meta {
    align-items: flex-end;
    text-align: end;
}

[dir="rtl"] .elx-nav__profile-meta small {
    letter-spacing: 0;
    text-transform: none;
    font-size: 0.72rem;
}

.elx-nav__profile-trigger .fa-chevron-down {
    font-size: 0.72rem;
    transition: transform 0.25s ease;
}

.elx-nav__profile.open .elx-nav__profile-trigger .fa-chevron-down {
    transform: rotate(180deg);
}

.elx-nav__profile-menu {
    position: absolute;
    top: calc(100% + 0.8rem);
    inset-inline-end: 0;
    min-width: 260px;
    padding: 0.85rem;
    border-radius: 24px;
    background: rgba(6, 15, 20, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 1100;
}

.elx-nav__profile.open .elx-nav__profile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.elx-nav__profile-head {
    display: grid;
    gap: 0.25rem;
    padding: 0.7rem 0.8rem 0.9rem;
    margin-bottom: 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.elx-nav__profile-head strong {
    color: var(--elx-white);
    font-size: 0.96rem;
}

.elx-nav__profile-head span {
    color: var(--elx-gray);
    font-size: 0.78rem;
    word-break: break-word;
}

.elx-nav__profile-menu a,
.elx-nav__profile-menu button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0.85rem;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
    border: none;
    background: transparent;
    font-family: var(--elx-font);
    cursor: pointer;
    transition: var(--elx-transition);
    text-align: start;
}

.elx-nav__profile-menu a:hover,
.elx-nav__profile-menu button:hover {
    color: var(--elx-white);
    background: rgba(255, 255, 255, 0.05);
}

.elx-nav__profile-form {
    margin-top: 0.35rem;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.elx-nav__profile-logout {
    color: #ffb3b3;
}

.elx-nav__profile-logout:hover {
    background: rgba(220, 53, 69, 0.12) !important;
}

.elx-nav__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.95rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--elx-glass);
    color: var(--elx-white);
    cursor: pointer;
    transition: var(--elx-transition);
    font-family: var(--elx-font);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.elx-nav__btn:hover {
    background: rgba(74, 200, 246, 0.15);
    border-color: var(--elx-cyan);
    color: var(--elx-cyan);
}

.elx-nav__btn--admin {
    border-color: rgba(183, 215, 208, 0.3);
    color: var(--elx-accent);
}

.elx-nav__btn--admin:hover {
    background: rgba(183, 215, 208, 0.15);
    border-color: var(--elx-accent);
}

.elx-nav__btn--login {
    background: linear-gradient(135deg, rgba(74, 200, 246, 0.2), rgba(183, 215, 208, 0.2));
    border-color: var(--elx-border);
}

.elx-nav__logout-form {
    display: inline;
}

.elx-nav__btn--logout {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--elx-glass);
    color: var(--elx-white);
    cursor: pointer;
    transition: var(--elx-transition);
    font-family: var(--elx-font);
}

.elx-nav__btn--logout:hover {
    background: rgba(220, 60, 60, 0.2);
    border-color: rgba(220, 60, 60, 0.5);
    color: #ff8a8a;
}

/* Mobile toggle */
.elx-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-inline-start: 0.25rem;
}

.elx-nav__header-essential {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.elx-nav__header-join {
    display: none;
}

.elx-nav__desktop-only {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.elx-nav__search-form {
    margin-inline-end: 0.5rem;
}

.elx-nav__search-input {
    width: 180px;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.85rem;
    outline: none;
}

.elx-nav__search-input:focus {
    border-color: var(--elx-cyan);
}

.elx-mobile-sidebar {
    display: none;
}

.elx-mobile-sidebar__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.elx-mobile-sidebar__title {
    font-family: var(--elx-font-alt);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--elx-accent);
}

.elx-mobile-sidebar__close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.elx-mobile-sidebar__search {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 1rem 1.25rem 0.75rem;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.elx-mobile-sidebar__search i {
    color: var(--elx-cyan);
    font-size: 0.9rem;
}

.elx-mobile-sidebar__search input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
}

.elx-mobile-sidebar__quick {
    display: grid;
    gap: 0.35rem;
    padding: 0 1.25rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.elx-mobile-sidebar__quick-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    border-radius: 12px;
    transition: background 0.25s ease;
}

.elx-mobile-sidebar__quick-link:hover {
    background: rgba(74, 200, 246, 0.1);
    color: #fff;
}

.elx-mobile-sidebar__quick-link i {
    width: 20px;
    text-align: center;
    color: var(--elx-cyan);
}

.elx-mobile-sidebar__badge {
    margin-inline-start: auto;
    background: var(--elx-cyan);
    color: var(--elx-dark);
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    padding: 0 6px;
}

.elx-mobile-sidebar__account {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.elx-mobile-sidebar__account-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.elx-mobile-sidebar__account-head strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
}

.elx-mobile-sidebar__account-head span {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    margin-top: 0.15rem;
}

.elx-mobile-sidebar__account-links {
    display: grid;
    gap: 0.25rem;
}

.elx-mobile-sidebar__account-links a,
.elx-mobile-sidebar__account-links button {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.5rem;
    border: none;
    background: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 10px;
    text-align: start;
    width: 100%;
    font-family: var(--elx-font);
}

.elx-mobile-sidebar__account-links a:hover,
.elx-mobile-sidebar__account-links button:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.elx-mobile-sidebar__account-links i {
    width: 18px;
    color: var(--elx-cyan);
}

.elx-mobile-sidebar__guest {
    display: grid;
    gap: 0.75rem;
    padding: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.elx-mobile-sidebar__guest-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.elx-mobile-sidebar__guest-link {
    text-align: center;
    color: var(--elx-cyan);
    font-size: 0.88rem;
    font-weight: 600;
}

/* RTL nav tuning */
[dir="rtl"] .elx-nav__links {
    gap: 1rem;
}

[dir="rtl"] .elx-nav__links a {
    font-size: 0.86rem;
}

[dir="rtl"] .elx-nav__cart-badge,
[dir="rtl"] .elx-nav__notifications-badge {
    right: auto;
    left: -4px;
}

.elx-nav__notifications-wrapper {
    position: relative;
}

.elx-nav__notifications-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0;
    transition: var(--elx-transition);
}

.elx-nav__notifications-trigger:hover {
    background: rgba(74, 200, 246, 0.15);
    border-color: var(--elx-cyan);
    color: var(--elx-cyan);
}

.elx-nav__notifications-badge {
    position: absolute;
    top: -4px;
    inset-inline-end: -4px;
    background-color: #dc3545;
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 5px;
    min-width: 17px;
    text-align: center;
    line-height: 1;
}

@media (max-width: 1280px) {
    .elx-nav__links {
        gap: 0.9rem;
    }

    .elx-nav__links a {
        font-size: 0.84rem;
    }

    [dir="rtl"] .elx-nav__links {
        gap: 0.75rem;
    }

    [dir="rtl"] .elx-nav__links a {
        font-size: 0.8rem;
    }
}

@media (max-width: 1100px) {
    .elx-nav__btn--admin span {
        display: none;
    }

    .elx-nav__btn--admin {
        width: 40px;
        height: 40px;
        padding: 0;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .elx-nav__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .elx-nav {
        padding: 0.65rem 0;
    }

    .elx-nav__logo {
        flex-shrink: 0;
        min-width: 0;
    }

    .elx-nav__logo-img {
        height: 24px !important;
        width: auto !important;
    }

    .elx-nav__links--desktop {
        display: none !important;
    }

    .elx-nav__desktop-only {
        display: none !important;
    }

    .elx-nav__header-join {
        display: inline-flex !important;
        padding: 0.38rem 0.72rem;
        font-size: 0.72rem;
    }

    .elx-nav__actions {
        gap: 0.35rem;
        flex-shrink: 0;
        flex-wrap: nowrap;
        margin-inline-start: auto;
        min-width: 0;
    }

    .elx-nav__header-essential {
        gap: 0.35rem;
    }

    .elx-nav__actions-user {
        border-inline-start: none;
        padding-inline-start: 0;
        margin-inline-start: 0;
    }

    .elx-nav__toggle {
        display: flex !important;
        position: relative;
        z-index: 1001;
        flex-shrink: 0;
        touch-action: manipulation;
    }

    .elx-nav__notifications-trigger {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
}

.elx-nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--elx-white);
    border-radius: 2px;
    transition: var(--elx-transition);
}

.elx-nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.elx-nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.elx-nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.elx-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.elx-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.elx-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.elx-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(6, 15, 20, 0.6) 0%,
            rgba(6, 15, 20, 0.4) 40%,
            rgba(6, 15, 20, 0.8) 100%);
}

.elx-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.elx-hero__title {
    font-family: var(--elx-font);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.elx-hero__title-gradient {
    background: linear-gradient(0deg, rgb(74, 200, 246) 0%, rgb(255, 221, 189) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.elx-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.76);
    letter-spacing: 0.07em;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.elx-hero__actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.elx-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.8rem;
    border-radius: 100px;
    font-family: var(--elx-font);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--elx-transition);
    text-transform: none;
}

.elx-btn--primary {
    background: linear-gradient(135deg, var(--elx-cyan), var(--elx-accent));
    color: var(--elx-dark);
    box-shadow: 0 4px 20px rgba(74, 200, 246, 0.25);
}

.elx-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 200, 246, 0.4);
}

.elx-btn--glass {
    background: var(--elx-glass);
    backdrop-filter: blur(42px);
    -webkit-backdrop-filter: blur(42px);
    border-color: var(--elx-border);
    color: var(--elx-white);
    box-shadow:
        rgba(38, 104, 128, 0.3) 0px -7px 10px 0px inset,
        rgba(0, 0, 0, 0.25) 0px 7px 7px 0px;
}

.elx-btn--glass:hover {
    background: rgba(74, 200, 246, 0.12);
    border-color: var(--elx-cyan);
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════
   CATEGORIES
   ═══════════════════════════════════════════════════════════ */
.elx-categories {
    padding: 4rem 0;
    background: var(--elx-darker);
}

.elx-categories__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.elx-category-pill {
    flex: 0 1 calc(20% - 1.2rem);
    min-width: 210px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 1.5rem 0.6rem 0.6rem;
    border-radius: 100px;
    background: var(--elx-glass);
    backdrop-filter: blur(46px);
    -webkit-backdrop-filter: blur(46px);
    border: 1px solid rgba(39, 80, 99, 0.32);
    transition: var(--elx-transition);
    box-shadow:
        rgba(29, 136, 194, 0.14) 0px -3px 13px 0px inset,
        rgba(205, 177, 140, 0) 0px 2px 8px 0px inset;
}

.elx-category-pill:hover {
    border-color: var(--elx-cyan);
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        rgba(29, 136, 194, 0.3) 0px -3px 13px 0px inset,
        rgba(74, 200, 246, 0.15) 0px 8px 20px 0px;
}

.elx-category-pill__img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(45, 101, 125, 0.55);
    flex-shrink: 0;
}

.elx-category-pill__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.elx-category-pill__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 200, 246, 0.2), rgba(183, 215, 208, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--elx-cyan);
    font-size: 1.3rem;
}

.elx-category-pill__info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--elx-white);
    margin-bottom: 0.15rem;
}

.elx-category-pill__info span {
    font-size: 0.75rem;
    color: var(--elx-light);
    letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTS — "Loved by many"
   Exact recreation of Framer glassmorphism cards
   ═══════════════════════════════════════════════════════════ */
.elx-products {
    background: radial-gradient(ellipse at 50% 30%, rgba(29, 80, 110, 0.15) 0%, transparent 70%),
        var(--elx-darker);
}

.elx-section__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.elx-section__title {
    font-family: var(--elx-font);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--elx-white);
    letter-spacing: 0.03em;
}

.elx-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 2rem;
    padding-top: 1rem;
}

/* Product Card — Split Layout with Glowing Border */
.product-item {
    height: auto;
}

.elx-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: auto;
    cursor: pointer;
}

.elx-product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(74, 200, 246, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(74, 200, 246, 0.2);
}

.elx-product-card__image-container {
    background-color: #13252D;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.elx-product-card:after {
    content: "";
    position: absolute;
    top: -110%;
    left: -210%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(-45deg);
    transition: all 0.8s;
    pointer-events: none;
}

.elx-product-card:hover:after {
    top: -40%;
    left: -40%;
}

.elx-product-card__image-container img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.elx-product-card__image-container img.is-grayscale {
    filter: grayscale(0.8);
}

.elx-product-card:hover .elx-product-card__image-container img {
    transform: scale(1.1) rotate(2deg);
}

.elx-product-card__no-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 200, 246, 0.1), rgba(183, 215, 208, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(74, 200, 246, 0.3);
}

.elx-product-card__badge {
    position: absolute;
    top: 1rem;
    inset-inline-end: 1rem;
    z-index: 10;
}

.elx-product-card__badge span {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
}

.elx-product-card__badge--danger span {
    background: #ff4d4d;
}

.elx-product-card__badge--private span {
    background: rgba(74, 200, 246, 0.2);
    border: 1px solid rgba(74, 200, 246, 0.4);
    color: #4ac8f6;
}

.elx-product-card__info {
    padding: 0.85rem 1rem 0.85rem;
    background: linear-gradient(180deg, #000000 0%, #13252D 100%);
    transition: background 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-height: 0;
}

.elx-product-card:hover .elx-product-card__info {
    background: linear-gradient(180deg, #13252D 0%, #000000 100%);
}

.elx-product-card__name-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.elx-product-card__name {
    font-family: var(--elx-font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--elx-white);
    margin: 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.elx-product-card__price {
    display: flex;
    width: 100%;
    margin: 0;
    justify-content: flex-start;
}

.elx-product-card__price .elx-product-pricing {
    width: 100%;
}

.elx-product-card__country-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.elx-product-card__country-selector .product-card-country-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.elx-product-card__country-selector .product-card-country-btn.is-active {
    border-color: rgba(74, 200, 246, 0.8);
    background: rgba(74, 200, 246, 0.15);
}

.elx-product-card__country-selector .product-card-country-btn img {
    width: 16px;
    height: 11px;
    border-radius: 1px;
    object-fit: cover;
}

.elx-product-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.elx-product-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.15rem 0.55rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.elx-product-card__tag img {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    object-fit: cover;
}

.elx-product-card__tag--category {
    background: rgba(74, 200, 246, 0.1);
    color: #4ac8f6;
    border: 1px solid rgba(74, 200, 246, 0.2);
}

.elx-product-card__tag--brand {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.elx-product-card__tag--points {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.elx-product-card__tag--stock {
    background: rgba(74, 200, 246, 0.08);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.elx-product-card__tag--stock.is-out {
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    border-color: rgba(255, 77, 77, 0.2);
}

.elx-product-card__desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.elx-product-card__cart-form {
    padding-top: 0.15rem;
}

.elx-product-card__cart-form form {
    margin: 0;
}

.elx-product-card__add-btn {
    width: 100%;
    padding: 0.72rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: var(--elx-font);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    line-height: 1.2;
}

.elx-product-card__add-btn:hover {
    background: #4ac8f6;
    color: #13252d;
    border-color: #4ac8f6;
    box-shadow: 0 0 15px rgba(74, 200, 246, 0.4);
}

.elx-product-card__add-btn--private {
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    border-color: rgba(255, 77, 77, 0.3);
}

.elx-product-card__add-btn--private:hover {
    background: rgba(255, 77, 77, 0.2);
    color: #ff8a8a;
    border-color: rgba(255, 77, 77, 0.4);
    box-shadow: none;
}

.elx-product-card__add-btn:disabled {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
}

/* Card glow effect */
.elx-product-card__glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(74, 200, 246, 0.06) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.elx-product-card:hover .elx-product-card__glow {
    opacity: 1;
}

.elx-country-pricing-form__label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.35rem;
}

.elx-country-select {
    width: 100%;
    max-width: 320px;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--elx-border);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: var(--elx-font);
    font-size: 0.95rem;
    outline: none;
    cursor: pointer;
}

.elx-country-select option {
    color: #13252d;
    background: #fff;
}

.product-detail__title {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    margin-bottom: 0.5rem;
    width: 100%;
}

.product-detail__title .elx-hero__title-gradient {
    display: block;
}

html[dir="rtl"] .product-detail__title {
    text-align: right;
}

html[dir="ltr"] .product-detail__title {
    text-align: left;
}

.elx-detail-accordions {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.elx-detail-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.elx-detail-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
    background: none;
    border: none;
    color: var(--elx-cyan);
    font-family: var(--elx-font);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
}

html[dir="rtl"] .elx-detail-accordion__trigger {
    text-align: right;
}

html[dir="ltr"] .elx-detail-accordion__trigger {
    text-align: left;
}

.elx-detail-accordion__icon {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.elx-detail-accordion.is-open .elx-detail-accordion__icon {
    transform: rotate(180deg);
}

.elx-detail-accordion__content {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.75;
    padding: 0 0 1.25rem;
    white-space: pre-line;
}

.elx-country-pricing-form {
    margin-bottom: 0.75rem;
}

.elx-country-select-field {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    max-width: 320px;
}

.elx-country-select-flag {
    width: 28px;
    height: 19px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.elx-country-select-field .elx-country-select {
    flex: 1;
    max-width: none;
    padding-inline-start: 0.85rem;
}

.elx-country-select-custom {
    position: relative;
    max-width: 320px;
}

.elx-country-select-custom__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--elx-border);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: var(--elx-font);
    font-size: 0.95rem;
    cursor: pointer;
    text-align: start;
}

.elx-country-select-custom__flag {
    width: 28px;
    height: 19px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.elx-country-select-custom__label {
    flex: 1;
    min-width: 0;
}

.elx-country-select-custom__icon {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.elx-country-select-custom.is-open .elx-country-select-custom__icon {
    transform: rotate(180deg);
}

.elx-country-select-custom__menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    inset-inline-start: 0;
    inset-inline-end: 0;
    z-index: 40;
    margin: 0;
    padding: 0.35rem;
    list-style: none;
    border-radius: 12px;
    border: 1px solid var(--elx-border);
    background: #13252d;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.elx-country-select-custom__option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.75rem;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-family: var(--elx-font);
    font-size: 0.92rem;
    cursor: pointer;
    text-align: start;
}

.elx-country-select-custom__option:hover,
.elx-country-select-custom__option.is-active {
    background: rgba(74, 200, 246, 0.12);
}

.elx-country-select-custom__option img {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

.elx-country-pricing-form__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

html[dir="rtl"] .elx-country-pricing-form__buttons {
    justify-content: flex-end;
}

html[dir="ltr"] .elx-country-pricing-form__buttons {
    justify-content: flex-start;
}

.elx-country-pricing-form__button {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.elx-country-pricing-form__button.is-active {
    border-color: rgba(74, 200, 246, 0.8);
    background: rgba(74, 200, 246, 0.15);
}

.elx-country-pricing-form__button img {
    width: 16px;
    height: 11px;
    border-radius: 1px;
    object-fit: cover;
}

.elx-country-pricing-form__button span {
    font-size: 0.72rem;
    font-weight: 600;
}

.elx-product-pricing__prices {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    align-items: flex-start;
}

.elx-product-pricing__price-line {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    font-weight: 700;
    color: var(--elx-cyan, #4ac8f6);
    line-height: 1.1;
}

.elx-product-pricing__price-line--muted {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: line-through;
    font-weight: 600;
}

.elx-product-pricing__price-line--guest {
    color: rgba(255, 255, 255, 0.42) !important;
    text-decoration: line-through;
    font-weight: 600;
}

.elx-product-pricing__price-line--guest .elx-product-pricing__amount,
.elx-product-pricing__price-line--guest .elx-product-pricing__currency {
    color: rgba(255, 255, 255, 0.42) !important;
    text-decoration: line-through;
}

.product-detail__size {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

html[dir="rtl"] .product-detail__size {
    justify-content: flex-end;
}

html[dir="ltr"] .product-detail__size {
    justify-content: flex-start;
}

.product-detail__size-label {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

.product-detail__size-value {
    color: #fff;
    font-weight: 700;
}

.elx-image-gallery {
    width: 100%;
}

.elx-image-gallery__main {
    position: relative;
}

.elx-image-gallery__stage {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--elx-glass);
    border: 1px solid var(--elx-border);
    border-radius: var(--elx-radius-sm);
    min-height: 220px;
}

.elx-image-gallery__stage img,
.elx-image-gallery__stage img[data-gallery-main] {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: min(72vh, 640px);
    object-fit: scale-down;
    object-position: center;
    border-radius: 12px;
}

.elx-image-gallery__stage img.is-loading {
    visibility: hidden;
}

.elx-image-gallery__stage--placeholder {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--elx-cyan);
    font-size: 5rem;
    background: #1a2e38;
    border-radius: var(--elx-radius-sm);
}

.elx-image-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.elx-image-gallery__nav:hover {
    background: rgba(74, 200, 246, 0.25);
    border-color: rgba(74, 200, 246, 0.6);
}

.elx-image-gallery__nav--prev {
    left: 0.75rem;
    right: auto;
}

.elx-image-gallery__nav--next {
    right: 0.75rem;
    left: auto;
}

html[dir="rtl"] .elx-image-gallery__thumbs-wrap {
    flex-direction: row-reverse;
}

html[dir="rtl"] .elx-image-gallery__thumb-nav--prev i,
html[dir="rtl"] .elx-image-gallery__nav--prev i {
    transform: scaleX(-1);
}

html[dir="rtl"] .elx-image-gallery__thumb-nav--next i,
html[dir="rtl"] .elx-image-gallery__nav--next i {
    transform: scaleX(-1);
}

.elx-image-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: rgba(255, 255, 255, 0.04);
}

.elx-image-gallery__thumbs-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.elx-image-gallery__thumbs-viewport {
    flex: 1;
    overflow: hidden;
    max-width: calc(5 * 72px + 4 * 10px);
}

.elx-image-gallery__thumbs-track {
    display: flex;
    gap: 10px;
    transition: transform 0.25s ease;
}

.elx-image-gallery__thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border-radius: 12px;
    border: 1px solid var(--elx-border);
    background: var(--elx-glass);
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

@media (max-width: 640px) {
    .page-content,
    .elx-container {
        padding-left: 0.85rem !important;
        padding-right: 0.85rem !important;
        max-width: 100%;
        overflow-x: clip;
    }

    body {
        overflow-x: clip;
    }

    .elx-nav__inner {
        gap: 0.5rem;
        padding-inline: 0.5rem;
    }

    .elx-nav__logo {
        font-size: clamp(1.1rem, 5vw, 1.35rem);
    }

    .elx-hero,
    .elx-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .elx-hero__content,
    .elx-products__grid,
    .menu-products-grid {
        gap: 1rem !important;
    }

    .elx-product-card {
        min-width: 0;
    }

    .elx-hero__title,
    .product-detail__title,
    .elx-hero__title-gradient {
        font-size: clamp(1.45rem, 7vw, 2rem) !important;
        letter-spacing: 0.02em !important;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .elx-btn {
        max-width: 100% !important;
    }

    .whatsapp-btn {
        bottom: 16px !important;
        width: 46px !important;
        height: 46px !important;
        font-size: 24px !important;
        inset-inline-end: 12px !important;
    }

    .elx-image-gallery {
        padding-bottom: 0.25rem;
    }

    .elx-image-gallery__thumbs-wrap {
        padding-inline-end: 3.25rem;
        box-sizing: border-box;
        max-width: 100%;
    }

    .elx-image-gallery__stage {
        min-height: 180px;
        padding: 0.75rem;
    }

    .elx-image-gallery__stage img,
    .elx-image-gallery__stage img[data-gallery-main] {
        max-height: min(52vh, 380px);
    }

    .elx-image-gallery__thumbs-viewport {
        max-width: calc(100% - 68px);
    }

    .elx-image-gallery__thumbs-track {
        gap: 8px;
    }

    .elx-image-gallery__thumb {
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
        border-radius: 10px;
    }

    .elx-image-gallery__thumb-nav {
        flex: 0 0 28px;
        width: 28px;
        height: 28px;
    }

    .product-detail-grid,
    .package-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .product-gallery,
    .package-image-wrap {
        position: relative !important;
        top: auto !important;
        max-height: none !important;
        filter: none !important;
    }

    .product-info,
    .package-info-panel {
        padding: 1rem !important;
        min-width: 0;
    }

    .product-purchase-actions,
    .package-cta-row {
        flex-direction: column !important;
    }

    .product-purchase-actions .elx-btn,
    .package-cta-row .elx-btn {
        width: 100% !important;
        min-width: 0 !important;
    }

    .product-size-select {
        max-width: 100% !important;
    }

    .elx-nav__notifications-dropdown {
        width: min(320px, calc(100vw - 1.5rem)) !important;
        inset-inline-end: -0.5rem !important;
    }
}

.elx-image-gallery__thumb.is-active {
    border: 2px solid var(--elx-cyan);
}

.elx-image-gallery__thumb-nav {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.elx-image-gallery__thumb-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.elx-faq-accordions {
    max-width: 860px;
    margin: 0 auto;
}

/* Empty state */
.elx-products__empty {
    text-align: center;
    padding: 4rem 2rem;
    border-radius: var(--elx-radius);
    background: var(--elx-glass);
    border: 1px dashed var(--elx-border);
}

.elx-products__empty-icon {
    font-size: 3rem;
    color: rgba(74, 200, 246, 0.3);
    margin-bottom: 1.5rem;
}

.elx-products__empty h3 {
    font-size: 1.5rem;
    color: var(--elx-white);
    margin-bottom: 0.5rem;
}

.elx-products__empty p {
    color: var(--elx-gray);
    max-width: 400px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   BRAND INSIGHTS
   ═══════════════════════════════════════════════════════════ */
.elx-insights {
    background: linear-gradient(180deg, var(--elx-darker), rgba(10, 26, 34, 1));
}

.elx-insights__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.elx-insights__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--elx-cyan);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.elx-insights__text h2 {
    font-family: var(--elx-font-alt);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--elx-white);
    margin-bottom: 1rem;
}

.elx-insights__text p {
    color: var(--elx-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.elx-insights__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.elx-stat-card {
    padding: 2rem;
    border-radius: var(--elx-radius-sm);
    background: var(--elx-glass);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--elx-border);
    text-align: center;
    transition: var(--elx-transition);
}

.elx-stat-card:hover {
    border-color: var(--elx-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 200, 246, 0.1);
}

.elx-stat-card__number {
    display: block;
    font-family: var(--elx-font-alt);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--elx-cyan);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.elx-stat-card__label {
    font-size: 0.85rem;
    color: var(--elx-light);
    letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════════════ */
.elx-newsletter {
    background: var(--elx-darker);
}

.elx-newsletter__box {
    text-align: center;
    padding: 4rem 3rem;
    border-radius: var(--elx-radius);
    background: linear-gradient(135deg, rgba(29, 80, 110, 0.15), rgba(183, 215, 208, 0.05));
    border: 1px solid var(--elx-border);
}

.elx-newsletter__box h2 {
    font-family: var(--elx-font);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--elx-accent);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.elx-newsletter__sub {
    color: var(--elx-gray);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.elx-newsletter__form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 100px;
    overflow: hidden;
    border: 1px solid var(--elx-border);
    background: rgba(0, 0, 0, 0.3);
}

.elx-newsletter__input {
    flex: 1;
    padding: 0.9rem 1.5rem;
    border: none;
    outline: none;
    background: transparent;
    color: var(--elx-white);
    font-family: var(--elx-font);
    font-size: 0.95rem;
}

.elx-newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.elx-newsletter__btn {
    padding: 0.9rem 2rem;
    border: none;
    background: linear-gradient(135deg, var(--elx-cyan), var(--elx-accent));
    color: var(--elx-dark);
    font-family: var(--elx-font);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--elx-transition);
    white-space: nowrap;
}

.elx-newsletter__btn:hover {
    filter: brightness(1.1);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER — Faithful recreation
   ═══════════════════════════════════════════════════════════ */
.elx-footer {
    background: linear-gradient(180deg, var(--elx-darker), #040c10);
}

/* Tagline ribbon */
.elx-footer__tagline {
    padding: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    border-bottom: 1px solid rgba(20, 204, 255, 0.1);
}

.elx-footer__tagline span {
    font-size: 0.85rem;
    color: var(--elx-light);
    letter-spacing: 0.03em;
}

.elx-footer__main {
    padding: 4rem 0;
}

.elx-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.elx-footer__logo {
    font-family: var(--elx-font-alt);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--elx-accent);
    margin-bottom: 1rem;
}

.elx-footer__brand p {
    color: var(--elx-gray);
    font-size: 0.9rem;
    max-width: 300px;
}

.elx-footer__col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--elx-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
}

.elx-footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.elx-footer__col a {
    color: var(--elx-light);
    font-size: 0.9rem;
    transition: var(--elx-transition);
}

.elx-footer__col a:hover {
    color: var(--elx-cyan);
    padding-left: 6px;
}

.elx-footer__bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(20, 204, 255, 0.15);
}

.elx-footer__bottom p {
    font-size: 0.8rem;
    color: rgb(168, 168, 168);
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .elx-insights__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .elx-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    html {
        font-size: 100%;
    }

    body.nav-open {
        overflow: hidden;
    }

    .elx-nav__overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 998;
    }

    .elx-nav__overlay.open {
        opacity: 1;
        pointer-events: auto;
    }

    .elx-nav__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }

    .elx-nav__links--desktop {
        display: none !important;
    }

    .elx-nav__desktop-only {
        display: none !important;
    }

    .elx-nav__header-join {
        display: inline-flex !important;
    }

    .elx-nav__actions {
        gap: 0.35rem;
        flex-shrink: 0;
        flex-wrap: nowrap;
        margin-inline-start: auto;
    }

    .elx-nav__header-essential {
        gap: 0.35rem;
    }

    .elx-nav__toggle {
        display: flex !important;
        position: relative;
        z-index: 1001;
        flex-shrink: 0;
        touch-action: manipulation;
    }

    .elx-mobile-sidebar {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        inset-inline-end: -100%;
        width: min(88%, 340px);
        height: 100vh;
        height: 100dvh;
        background: rgba(6, 15, 20, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 999;
        overflow-y: auto;
        transition: inset-inline-end 0.35s ease;
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.45);
    }

    [dir="rtl"] .elx-mobile-sidebar {
        box-shadow: 8px 0 40px rgba(0, 0, 0, 0.45);
    }

    .elx-mobile-sidebar.open {
        inset-inline-end: 0;
    }

    .elx-nav__links--sidebar {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        list-style: none;
        margin: 0;
        padding: 0.5rem 0 2rem;
    }

    .elx-nav__links--sidebar li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .elx-nav__links--sidebar a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 1rem;
        padding: 0.85rem 1.25rem;
        white-space: normal;
    }

    .elx-nav__links--sidebar a::after {
        display: none;
    }

    .elx-nav__dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .elx-nav__dropdown > a {
        justify-content: space-between;
    }

    .elx-nav__dropdown-menu {
        position: static;
        inset-inline-start: auto;
        transform: none !important;
        opacity: 1;
        pointer-events: auto;
        display: none;
        min-width: 0;
        width: 100%;
        margin: 0;
        padding: 0 0 0.5rem;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .elx-nav__dropdown.open .elx-nav__dropdown-menu {
        display: block;
    }

    .elx-nav__dropdown-menu a {
        font-size: 0.92rem;
        text-align: start;
        padding-inline-start: 2rem;
    }

    .elx-hero__title {
        font-size: 2rem;
    }

    .elx-products__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .elx-footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .elx-footer__brand p {
        max-width: 100%;
    }

    .elx-footer__tagline {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .elx-newsletter__form {
        flex-direction: column;
        border-radius: var(--elx-radius-sm);
    }

    .elx-newsletter__btn {
        border-radius: 0 0 var(--elx-radius-sm) var(--elx-radius-sm);
    }

    .elx-categories__grid {
        gap: 1rem;
    }

    .elx-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .elx-nav__inner {
        padding: 0 0.85rem;
    }

    .elx-nav__header-join {
        padding: 0.35rem 0.6rem;
        font-size: 0.68rem;
    }

    .elx-nav__toggle span {
        width: 22px;
    }

    .elx-hero__title {
        font-size: 1.75rem;
        letter-spacing: 0.06em;
    }

    .elx-hero__subtitle {
        font-size: 0.92rem;
        letter-spacing: 0.03em;
        margin-bottom: 2rem;
    }

    .elx-hero__content {
        padding: 1.25rem;
    }

    .elx-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .elx-products__grid {
        grid-template-columns: 1fr;
    }

    .elx-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .elx-insights__stats {
        grid-template-columns: 1fr;
    }
}

/* ─── Success Toast ─── */
.elx-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--elx-dark);
    border: 1px solid var(--elx-cyan);
    color: var(--elx-white);
    padding: 1rem 2rem;
    border-radius: 100px;
    font-size: 0.9rem;
    z-index: 10000;
    opacity: 0;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(74, 200, 246, 0.2);
}

.elx-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
