/* =========================================================
   DEXUDO — MODERN 2026 STORE THEME
   Black / Violet / Glass / Premium
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --dx-bg: #050507;
    --dx-bg-soft: #09090d;

    --dx-surface: rgba(15, 15, 21, .72);
    --dx-surface-solid: #0d0d12;

    --dx-purple: #8b5cf6;
    --dx-purple-2: #a855f7;
    --dx-purple-light: #c4b5fd;

    --dx-border: rgba(255,255,255,.075);
    --dx-border-hover: rgba(139,92,246,.45);

    --dx-text: #fafafa;
    --dx-text-soft: #b7b7c2;
    --dx-muted: #777784;

    --dx-radius: 16px;
}


/* =========================================================
   GLOBAL
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(
            700px 400px at 50% -100px,
            rgba(139,92,246,.13),
            transparent 70%
        ),
        radial-gradient(
            500px 300px at 100% 35%,
            rgba(168,85,247,.055),
            transparent 70%
        ),
        var(--dx-bg) !important;

    color: var(--dx-text) !important;

    font-family:
        'Inter',
        system-ui,
        sans-serif !important;
}


/* =========================================================
   SUBTLE BACKGROUND GRID
   ========================================================= */

body::before {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    opacity: .32;

    background-image:
        linear-gradient(
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.018) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 75%
        );

    z-index: -1;
}


/* =========================================================
   SELECTION
   ========================================================= */

::selection {
    background: rgba(139,92,246,.45);
    color: white;
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #050507;
}

::-webkit-scrollbar-thumb {
    background: #272331;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7c3aed;
}


/* =========================================================
   NAVBAR — GLASS
   ========================================================= */

nav,
.navbar,
header {
    background:
        rgba(6,6,9,.72) !important;

    backdrop-filter:
        blur(20px)
        saturate(150%);

    -webkit-backdrop-filter:
        blur(20px)
        saturate(150%);

    border-bottom:
        1px solid
        rgba(255,255,255,.06) !important;

    box-shadow:
        0 8px 40px
        rgba(0,0,0,.22);
}


/* navbar links */

nav a,
.navbar a,
header a {
    color:
        #aaaab5 !important;

    transition:
        color .2s ease,
        opacity .2s ease;
}

nav a:hover,
.navbar a:hover,
header a:hover {
    color:
        white !important;
}


/* =========================================================
   LOGO
   ========================================================= */

nav img,
.navbar img,
header img {
    transition:
        transform .25s ease,
        filter .25s ease;
}

nav img:hover,
.navbar img:hover,
header img:hover {
    transform:
        scale(1.035);

    filter:
        drop-shadow(
            0 0 18px
            rgba(139,92,246,.45)
        );
}


/* =========================================================
   BUTTONS
   ========================================================= */

button,
.btn,
a[class*="btn"],
a[class*="button"] {
    border-radius:
        11px !important;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease,
        background .2s ease !important;
}

button:hover,
.btn:hover,
a[class*="btn"]:hover,
a[class*="button"]:hover {
    transform:
        translateY(-1px);
}


/* PRIMARY */

.btn-primary,
button[type="submit"],
button.bg-primary,
a.bg-primary {
    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #a855f7
        ) !important;

    color: white !important;

    border:
        1px solid
        rgba(196,181,253,.25) !important;

    box-shadow:
        0 8px 25px
        rgba(124,58,237,.18) !important;
}

.btn-primary:hover,
button[type="submit"]:hover,
button.bg-primary:hover,
a.bg-primary:hover {
    box-shadow:
        0 10px 35px
        rgba(139,92,246,.35) !important;
}


/* =========================================================
   CARDS
   ========================================================= */

.card,
[class*="card"] {
    background:
        linear-gradient(
            145deg,
            rgba(18,18,24,.88),
            rgba(10,10,14,.94)
        ) !important;

    border:
        1px solid
        var(--dx-border) !important;

    border-radius:
        var(--dx-radius) !important;

    box-shadow:
        0 12px 40px
        rgba(0,0,0,.22);

    transition:
        transform .25s cubic-bezier(.2,.8,.2,1),
        border-color .25s ease,
        box-shadow .25s ease;
}

.card:hover,
[class*="card"]:hover {
    transform:
        translateY(-4px);

    border-color:
        var(--dx-border-hover) !important;

    box-shadow:
        0 20px 60px
        rgba(0,0,0,.35),
        0 0 35px
        rgba(139,92,246,.08);
}


/* =========================================================
   PRODUCT CARDS
   ========================================================= */

.product-card,
[class*="product-card"] {
    position: relative;

    overflow: hidden;

    isolation: isolate;
}


/* top purple line */

.product-card::before,
[class*="product-card"]::before {
    content: "";

    position: absolute;

    top: 0;
    left: 15%;

    width: 70%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(168,85,247,.7),
            transparent
        );

    opacity: 0;

    transition:
        opacity .3s ease;
}

.product-card:hover::before,
[class*="product-card"]:hover::before {
    opacity: 1;
}


/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.card img,
[class*="product"] img {
    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        filter .45s ease;
}

.card:hover img,
[class*="product"]:hover img {
    transform:
        scale(1.035);

    filter:
        brightness(1.04)
        saturate(1.08);
}


/* =========================================================
   IMAGE SHINE
   ========================================================= */

.product-card::after,
[class*="product-card"]::after {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 60%;
    height: 100%;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.055),
            transparent
        );

    transform:
        skewX(-18deg);

    transition:
        left .65s ease;
}

.product-card:hover::after,
[class*="product-card"]:hover::after {
    left: 140%;
}


/* =========================================================
   TITLES
   ========================================================= */

h1,
h2,
h3,
h4 {
    color:
        #ffffff !important;

    letter-spacing:
        -.035em;
}

h1 {
    font-weight:
        900 !important;
}

h2 {
    font-weight:
        800 !important;
}

h3,
h4 {
    font-weight:
        700 !important;
}


/* =========================================================
   PRICE
   ========================================================= */

.price,
[class*="price"] {
    color:
        #c4b5fd !important;

    font-weight:
        800 !important;

    letter-spacing:
        -.02em;
}


/* =========================================================
   BADGES
   ========================================================= */

.badge,
[class*="badge"] {
    background:
        rgba(139,92,246,.10) !important;

    border:
        1px solid
        rgba(139,92,246,.22) !important;

    color:
        #c4b5fd !important;

    border-radius:
        7px !important;

    font-size:
        11px !important;

    font-weight:
        800 !important;

    letter-spacing:
        .02em;
}


/* =========================================================
   INPUTS
   ========================================================= */

input,
textarea,
select {
    background:
        rgba(10,10,14,.85) !important;

    color:
        white !important;

    border:
        1px solid
        rgba(255,255,255,.08) !important;

    border-radius:
        11px !important;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

input:hover,
textarea:hover,
select:hover {
    border-color:
        rgba(255,255,255,.14) !important;
}

input:focus,
textarea:focus,
select:focus {
    outline:
        none !important;

    border-color:
        rgba(139,92,246,.55) !important;

    box-shadow:
        0 0 0 3px
        rgba(139,92,246,.08) !important;
}

input::placeholder,
textarea::placeholder {
    color:
        #666671 !important;
}


/* =========================================================
   CATEGORY / FILTERS
   ========================================================= */

[class*="category"] a,
[class*="category"] button,
[class*="filter"] a,
[class*="filter"] button {
    background:
        rgba(255,255,255,.025) !important;

    border:
        1px solid
        rgba(255,255,255,.07) !important;

    color:
        #aaaab5 !important;

    border-radius:
        10px !important;

    transition:
        all .2s ease !important;
}

[class*="category"] a:hover,
[class*="category"] button:hover,
[class*="filter"] a:hover,
[class*="filter"] button:hover {
    background:
        rgba(139,92,246,.10) !important;

    border-color:
        rgba(139,92,246,.35) !important;

    color:
        white !important;
}


/* =========================================================
   HERO
   ========================================================= */

.hero,
[class*="hero"] {
    position: relative;

    overflow: hidden;

    border-radius:
        20px;
}

.hero::after,
[class*="hero"]::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -200px;
    top: -250px;

    background:
        radial-gradient(
            circle,
            rgba(139,92,246,.16),
            transparent 70%
        );

    pointer-events:
        none;
}


/* =========================================================
   PURPLE TEXT
   ========================================================= */

.text-primary,
.text-purple,
.text-violet {
    color:
        #a78bfa !important;
}

.bg-primary {
    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #a855f7
        ) !important;
}


/* =========================================================
   MODALS
   ========================================================= */

.modal,
[role="dialog"] {
    background:
        rgba(12,12,17,.92) !important;

    backdrop-filter:
        blur(25px);

    border:
        1px solid
        rgba(255,255,255,.08) !important;

    border-radius:
        18px !important;

    box-shadow:
        0 30px 100px
        rgba(0,0,0,.6);
}


/* =========================================================
   ALERTS
   ========================================================= */

.alert,
[class*="alert"],
[class*="notice"] {
    background:
        rgba(139,92,246,.07) !important;

    border:
        1px solid
        rgba(139,92,246,.18) !important;

    color:
        #d6d0dd !important;

    border-radius:
        11px !important;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    background:
        linear-gradient(
            to bottom,
            transparent,
            #030305
        ) !important;

    border-top:
        1px solid
        rgba(255,255,255,.055) !important;
}

footer a {
    color:
        #777783 !important;

    transition:
        color .2s ease;
}

footer a:hover {
    color:
        #c4b5fd !important;
}


/* =========================================================
   DIVIDERS
   ========================================================= */

hr {
    border:
        0 !important;

    height:
        1px !important;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.08),
            transparent
        ) !important;
}


/* =========================================================
   TABLE
   ========================================================= */

table {
    background:
        rgba(10,10,14,.6) !important;

    border-color:
        rgba(255,255,255,.06) !important;
}

th {
    color:
        #c4b5fd !important;
}

td {
    color:
        #aaaab5 !important;

    border-color:
        rgba(255,255,255,.05) !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    body {
        background:
            radial-gradient(
                500px 300px at 50% 0,
                rgba(139,92,246,.11),
                transparent 70%
            ),
            var(--dx-bg) !important;
    }

    .card,
    [class*="card"] {
        border-radius:
            13px !important;
    }

    h1 {
        font-size:
            clamp(2rem, 9vw, 3rem) !important;
    }

    h2 {
        font-size:
            clamp(1.5rem, 7vw, 2.2rem) !important;
    }

    button,
    .btn {
        min-height:
            44px;
    }
}


/* =========================================================
   REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

        scroll-behavior:
            auto !important;
    }
}
/* =========================================================
   DEXUDO — HERO REDESIGN
   CSS ONLY — SAFE FOR SELLAUTH
   ========================================================= */

.dexudo-hero,
section.component:has(h1) {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(139, 92, 246, 0.10),
            transparent 38%
        ),
        radial-gradient(
            circle at 85% 55%,
            rgba(168, 85, 247, 0.055),
            transparent 30%
        ) !important;
}


/* subtle grid */

.dexudo-hero::before,
section.component:has(h1)::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.018) 1px,
            transparent 1px
        );

    background-size:
        55px 55px;

    mask-image:
        radial-gradient(
            ellipse at center,
            black,
            transparent 75%
        );

    opacity: .45;
}


/* top glow */

.dexudo-hero::after,
section.component:has(h1)::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -250px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        rgba(139,92,246,.12);

    filter:
        blur(100px);

    pointer-events: none;
}


/* Keep content above effects */

.dexudo-hero > *,
section.component:has(h1) > * {
    position: relative;
    z-index: 2;
}


/* =========================================================
   TITLE
   ========================================================= */

.dexudo-hero h1,
section.component:has(h1) h1 {
    font-weight: 900 !important;

    letter-spacing:
        -0.045em !important;

    line-height:
        1.02 !important;

    background:
        linear-gradient(
            135deg,
            #ffffff 15%,
            #f5f3ff 48%,
            #a78bfa 100%
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    -webkit-text-fill-color:
        transparent;

    text-shadow:
        0 0 45px
        rgba(139,92,246,.10);

    animation:
        dexudoHeroTitle .7s ease both;
}

@keyframes dexudoHeroTitle {

    from {
        opacity: 0;
        transform:
            translateY(14px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }

}


/* =========================================================
   SUBTITLE
   ========================================================= */

.dexudo-hero p,
section.component:has(h1) p {
    color:
        rgba(255,255,255,.55) !important;

    line-height:
        1.75 !important;

    animation:
        dexudoHeroSubtitle .7s .08s ease both;
}

@keyframes dexudoHeroSubtitle {

    from {
        opacity: 0;
        transform:
            translateY(10px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }

}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.dexudo-hero img,
section.component:has(h1) img {
    border-radius:
        18px;

    border:
        1px solid
        rgba(255,255,255,.08);

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.45),
        0 0 70px
        rgba(139,92,246,.09);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        filter .4s ease;

    animation:
        dexudoHeroImage 5s ease-in-out infinite;
}

.dexudo-hero img:hover,
section.component:has(h1) img:hover {
    transform:
        translateY(-5px)
        scale(1.015);

    box-shadow:
        0 35px 90px
        rgba(0,0,0,.5),
        0 0 80px
        rgba(139,92,246,.16);

    filter:
        brightness(1.04);
}

@keyframes dexudoHeroImage {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-6px);
    }

}


/* =========================================================
   BUTTONS
   ========================================================= */

.dexudo-hero a,
.dexudo-hero button,
section.component:has(h1) a,
section.component:has(h1) button {

    border-radius:
        11px !important;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease !important;
}

.dexudo-hero a:hover,
.dexudo-hero button:hover,
section.component:has(h1) a:hover,
section.component:has(h1) button:hover {

    transform:
        translateY(-2px);
}


/* primary hero buttons */

.dexudo-hero a.bg-primary,
section.component:has(h1) a.bg-primary,
.dexudo-hero button.bg-primary,
section.component:has(h1) button.bg-primary {

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #a855f7
        ) !important;

    border:
        1px solid
        rgba(196,181,253,.25) !important;

    box-shadow:
        0 10px 30px
        rgba(124,58,237,.20) !important;
}

.dexudo-hero a.bg-primary:hover,
section.component:has(h1) a.bg-primary:hover,
.dexudo-hero button.bg-primary:hover,
section.component:has(h1) button.bg-primary:hover {

    box-shadow:
        0 14px 38px
        rgba(139,92,246,.32) !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .dexudo-hero h1,
    section.component:has(h1) h1 {
        font-size:
            clamp(2.35rem, 11vw, 4rem) !important;

        line-height:
            1.05 !important;
    }

    .dexudo-hero img,
    section.component:has(h1) img {
        border-radius:
            14px;

        margin-top:
            10px;
    }

}
/* =========================================================
   DEXUDO — CATEGORY CARDS
   ========================================================= */

.dexudo-categories {
    position: relative;
}


/* Section label */

.dexudo-section-label {
    display: block;

    margin-bottom: 6px;

    color: #a78bfa;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .25em;
    text-transform: uppercase;

    opacity: .8;
}


/* Heading line */

.dexudo-heading-line {
    width: 45px;
    height: 2px;

    margin: 9px auto 0;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #7c3aed,
            #c084fc
        );

    box-shadow:
        0 0 15px
        rgba(139,92,246,.45);
}


/* =========================================================
   CARD
   ========================================================= */

.dexudo-category-card {
    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        );

    border:
        1px solid
        rgba(255,255,255,.07);

    box-shadow:
        0 10px 35px
        rgba(0,0,0,.18);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


/* Hover */

.dexudo-category-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(139,92,246,.42);

    box-shadow:
        0 18px 45px
        rgba(0,0,0,.3),
        0 0 35px
        rgba(139,92,246,.08);
}


/* =========================================================
   IMAGE
   ========================================================= */

.dexudo-category-image {
    position: relative;

    aspect-ratio: 16 / 8.5;

    overflow: hidden;

    background:
        #0b0810;
}


.dexudo-category-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .5s cubic-bezier(.2,.7,.2,1),
        filter .5s ease;
}


.dexudo-category-card:hover
.dexudo-category-image img {
    transform:
        scale(1.07);

    filter:
        brightness(1.08);
}


/* Purple image glow */

.dexudo-category-overlay {
    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            rgba(124,58,237,.14),
            transparent 45%,
            rgba(168,85,247,.08)
        );

    opacity: .7;

    transition:
        opacity .3s ease;
}


.dexudo-category-card:hover
.dexudo-category-overlay {
    opacity: 1;
}


/* Bottom fade */

.dexudo-category-image::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 45%;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(5,3,8,.55),
            transparent
        );
}


/* Placeholder */

.dexudo-category-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        rgba(167,139,250,.35);

    background:
        radial-gradient(
            circle,
            rgba(139,92,246,.12),
            transparent 65%
        );
}


.dexudo-category-placeholder svg {
    width: 72px;
    height: 72px;

    transition:
        transform .3s ease,
        color .3s ease;
}


.dexudo-category-card:hover
.dexudo-category-placeholder svg {
    transform:
        scale(1.08);

    color:
        rgba(167,139,250,.65);
}


/* =========================================================
   ARROW
   ========================================================= */

.dexudo-category-arrow {
    position: absolute;

    right: 14px;
    bottom: 14px;

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: white;

    background:
        rgba(124,58,237,.78);

    border:
        1px solid
        rgba(196,181,253,.22);

    box-shadow:
        0 5px 20px
        rgba(124,58,237,.25);

    opacity: 0;

    transform:
        translateX(5px);

    transition:
        opacity .3s ease,
        transform .3s ease;
}


.dexudo-category-card:hover
.dexudo-category-arrow {
    opacity: 1;

    transform:
        translateX(0);
}


/* =========================================================
   CONTENT
   ========================================================= */

.dexudo-category-content {
    padding:
        15px 16px 17px;
}


.dexudo-category-content h3 {
    color:
        rgba(255,255,255,.92);

    transition:
        color .2s ease;
}


.dexudo-category-card:hover
.dexudo-category-content h3 {
    color:
        #c4b5fd;
}


.dexudo-category-arrow-small {
    flex-shrink: 0;

    color:
        rgba(167,139,250,.5);

    transition:
        transform .25s ease,
        color .25s ease;
}


.dexudo-category-card:hover
.dexudo-category-arrow-small {
    color:
        #a78bfa;

    transform:
        translateX(3px);
}


/* View products */

.dexudo-category-link {
    display: inline-flex;

    margin-top: 12px;

    color:
        rgba(167,139,250,.7);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .12em;
    text-transform: uppercase;

    transition:
        color .2s ease;
}


.dexudo-category-card:hover
.dexudo-category-link {
    color:
        #c4b5fd;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

    .dexudo-category-image {
        aspect-ratio:
            16 / 9;
    }

    .dexudo-category-content {
        padding:
            14px;
    }

    .dexudo-category-arrow {
        width: 30px;
        height: 30px;

        right: 10px;
        bottom: 10px;
    }

}
/* =========================================================
   DEXUDO CATEGORY CARDS
   ========================================================= */

/* Category card */
.component .flex.flex-wrap.gap-4 > div > a {
    position: relative;
    overflow: hidden;

    border-radius: 16px !important;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.012)
        ) !important;

    border: 1px solid rgba(255,255,255,.07) !important;

    box-shadow:
        0 10px 35px rgba(0,0,0,.20);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease !important;
}


/* Hover */
.component .flex.flex-wrap.gap-4 > div > a:hover {
    transform: translateY(-6px);

    border-color:
        rgba(139,92,246,.55) !important;

    box-shadow:
        0 18px 45px rgba(0,0,0,.35),
        0 0 35px rgba(139,92,246,.12);
}


/* Image container */
.component .flex.flex-wrap.gap-4 > div > a > div:first-child {
    position: relative;

    overflow: hidden;

    border-color:
        rgba(255,255,255,.06) !important;
}


/* Images */
.component .flex.flex-wrap.gap-4 > div > a img {
    transition:
        transform .5s cubic-bezier(.2,.7,.2,1),
        filter .5s ease;
}


.component .flex.flex-wrap.gap-4 > div > a:hover img {
    transform: scale(1.07);

    filter:
        brightness(1.08);
}


/* Purple glow over image */
.component .flex.flex-wrap.gap-4 > div > a > div:first-child::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            rgba(124,58,237,.18),
            transparent 55%,
            rgba(168,85,247,.10)
        );

    opacity: .65;

    transition:
        opacity .3s ease;
}


.component .flex.flex-wrap.gap-4 > div > a:hover > div:first-child::after {
    opacity: 1;
}


/* Product title */
.component .flex.flex-wrap.gap-4 > div > a h3 {
    color:
        rgba(255,255,255,.94) !important;

    font-weight:
        800 !important;

    letter-spacing:
        .02em;

    transition:
        color .2s ease;
}


.component .flex.flex-wrap.gap-4 > div > a:hover h3 {
    color:
        #c4b5fd !important;
}


/* Description */
.component .flex.flex-wrap.gap-4 > div > a p {
    color:
        rgba(255,255,255,.48) !important;
}


/* View Products */
.component .flex.flex-wrap.gap-4 > div > a span {
    color:
        #a78bfa !important;

    font-weight:
        800 !important;

    letter-spacing:
        .08em;

    transition:
        color .2s ease;
}


.component .flex.flex-wrap.gap-4 > div > a:hover span {
    color:
        #c4b5fd !important;
}


/* Heading */
.component h2 {
    font-weight:
        850 !important;

    letter-spacing:
        -.025em;
}


/* Purple heading line */
.component h2 + hr {
    border-color:
        #8b5cf6 !important;

    opacity:
        .8;

    box-shadow:
        0 0 12px rgba(139,92,246,.35);
}


/* Mobile */
@media (max-width: 640px) {

    .component .flex.flex-wrap.gap-4 > div > a {
        border-radius:
            14px !important;
    }

}
/* =========================================================
   DEXUDO — PRODUCT CARDS
   ========================================================= */

.dexudo-product-card {
    position: relative;
    display: block;

    overflow: hidden;

    border-radius: 16px !important;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.012)
        ) !important;

    border: 1px solid
        rgba(255,255,255,.07) !important;

    box-shadow:
        0 10px 35px rgba(0,0,0,.20);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


/* Hover */

.dexudo-product-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(139,92,246,.48) !important;

    box-shadow:
        0 20px 50px rgba(0,0,0,.35),
        0 0 40px rgba(139,92,246,.10);
}


/* =========================================================
   PRODUCT TITLE
   ========================================================= */

.dexudo-product-card h3 {
    color:
        rgba(255,255,255,.94) !important;

    font-weight:
        800 !important;

    letter-spacing:
        .015em;

    transition:
        color .25s ease;
}

.dexudo-product-card:hover h3 {
    color:
        #c4b5fd !important;
}


/* =========================================================
   IMAGE
   ========================================================= */

.dexudo-product-card > div {
    transition:
        background .3s ease;
}


.dexudo-product-card img {
    transition:
        transform .5s cubic-bezier(.2,.7,.2,1),
        filter .5s ease;
}


.dexudo-product-card:hover img {
    transform:
        scale(1.06);

    filter:
        brightness(1.07);
}


/* Image glow */

.dexudo-product-card
.relative.overflow-hidden::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            rgba(124,58,237,.12),
            transparent 50%,
            rgba(168,85,247,.08)
        );

    opacity:
        .65;

    transition:
        opacity .3s ease;
}


.dexudo-product-card:hover
.relative.overflow-hidden::after {
    opacity:
        1;
}


/* =========================================================
   PRICE
   ========================================================= */

.dexudo-product-card
.text-accent-500 {
    color:
        #a78bfa !important;

    text-shadow:
        0 0 18px
        rgba(139,92,246,.12);
}


/* =========================================================
   STOCK
   ========================================================= */

.dexudo-product-card
.text-t-primary\/50 {
    transition:
        color .2s ease;
}


/* =========================================================
   BADGES
   ========================================================= */

.dexudo-product-card .badges > div {
    border-radius:
        7px;

    box-shadow:
        0 4px 15px rgba(0,0,0,.18);

    letter-spacing:
        .03em;
}


/* =========================================================
   VIEW DETAILS BUTTON
   ========================================================= */

.dexudo-product-card
.border-accent-500 {
    border-color:
        rgba(139,92,246,.55) !important;

    border-radius:
        10px;

    background:
        rgba(139,92,246,.04);

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}


.dexudo-product-card:hover
.border-accent-500 {
    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #a855f7
        ) !important;

    border-color:
        #a78bfa !important;

    color:
        #fff !important;

    box-shadow:
        0 8px 25px
        rgba(124,58,237,.25);

    transform:
        translateY(-1px);
}


/* =========================================================
   CARD DIVIDERS
   ========================================================= */

.dexudo-product-card
.border-b {
    border-color:
        rgba(255,255,255,.06) !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

    .dexudo-product-card {
        border-radius:
            14px !important;
    }

    .dexudo-product-card:hover {
        transform:
            translateY(-3px);
    }

}
/* =========================================================
   DEXUDO — PRODUCT CARD V2
   ========================================================= */

.dexudo-product-card {
    border-radius: 18px !important;
    position: relative;
    isolation: isolate;
}

/* Premium top glow line */
.dexudo-product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(168, 85, 247, .8),
        transparent
    );

    opacity: .55;
    transition: .35s ease;
    z-index: 5;
}

.dexudo-product-card:hover::before {
    left: 5%;
    right: 5%;
    opacity: 1;

    box-shadow:
        0 0 14px rgba(168, 85, 247, .5);
}


/* Card background */
.dexudo-product-card > div {
    background:
        linear-gradient(
            145deg,
            rgba(25, 18, 38, .88),
            rgba(10, 8, 15, .96)
        );
}


/* Product name area */
.dexudo-product-card h3 {
    padding-top: 2px;
    font-size: 1.05rem !important;
}


/* Image container */
.dexudo-product-card
.relative.overflow-hidden {
    margin: 8px 8px 14px !important;
    padding: 0 !important;

    border: 1px solid rgba(168, 85, 247, .12) !important;
    border-radius: 14px;

    background:
        radial-gradient(
            circle at center,
            rgba(139, 92, 246, .07),
            transparent 65%
        );

    overflow: hidden;
}


/* Image */
.dexudo-product-card
.relative.overflow-hidden img {
    border-radius: 13px;
}


/* Image hover glow */
.dexudo-product-card:hover
.relative.overflow-hidden {
    border-color:
        rgba(168, 85, 247, .28) !important;

    box-shadow:
        0 0 25px rgba(139, 92, 246, .08);
}


/* Bottom information */
.dexudo-product-card
.text-left.px-4.pb-4 {
    padding-left: 16px !important;
    padding-right: 16px !important;
}


/* Price */
.dexudo-product-card
.text-left.px-4.pb-4
.text-accent-500 {
    font-weight: 800 !important;
    letter-spacing: .01em;
}


/* Stock */
.dexudo-product-card
.text-left.px-4.pb-4
.text-t-primary\/50 {
    font-size: .85rem;
}


/* Details button */
.dexudo-product-card
.border-accent-500 {
    min-height: 38px;

    font-size: .9rem;

    font-weight: 700;

    letter-spacing: .01em;

    background:
        linear-gradient(
            135deg,
            rgba(124,58,237,.08),
            rgba(168,85,247,.03)
        );
}


/* Button hover */
.dexudo-product-card:hover
.border-accent-500 {
    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #a855f7
        ) !important;

    box-shadow:
        0 8px 30px rgba(124,58,237,.22),
        inset 0 1px rgba(255,255,255,.12);
}


/* Badge */
.dexudo-product-card .badges > div {
    border-radius: 999px;

    padding-left: 10px !important;
    padding-right: 10px !important;

    box-shadow:
        0 4px 18px rgba(0,0,0,.25);
}


/* =========================================================
   PRODUCT GRID SPACING
   ========================================================= */

.dexudo-product-card {
    min-height: 100%;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

    .dexudo-product-card {
        border-radius: 15px !important;
    }

    .dexudo-product-card
    .relative.overflow-hidden {
        margin: 6px 6px 12px !important;
    }

}
/* =========================================================
   DEXUDO — PREMIUM NAVBAR
   ========================================================= */

nav.component[data-component-id="navbar"] {
    position: sticky;
    top: 12px;
    z-index: 1000;

    margin: 12px auto 0;
    width: calc(100% - 24px);
    max-width: 1400px;
}


/* Main navbar glass */
nav.component[data-component-id="navbar"] > div {
    position: relative;
    overflow: visible;

    border-radius: 18px !important;

    background:
        linear-gradient(
            135deg,
            rgba(24, 18, 34, .88),
            rgba(9, 8, 13, .92)
        ) !important;

    border: 1px solid
        rgba(255,255,255,.075) !important;

    box-shadow:
        0 12px 45px rgba(0,0,0,.35),
        inset 0 1px rgba(255,255,255,.035);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


/* Purple ambient glow */
nav.component[data-component-id="navbar"] > div::before {
    content: "";

    position: absolute;
    top: -1px;
    left: 18%;
    right: 18%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(168,85,247,.8),
            transparent
        );

    opacity: .55;

    pointer-events: none;
}


/* =========================================================
   LOGO
   ========================================================= */

nav.component[data-component-id="navbar"] img {
    transition:
        transform .3s ease,
        filter .3s ease;
}

nav.component[data-component-id="navbar"]
a:hover img {
    transform: scale(1.04);

    filter:
        drop-shadow(
            0 0 12px
            rgba(168,85,247,.25)
        );
}


nav.component[data-component-id="navbar"] h1 {
    font-weight: 800 !important;

    letter-spacing: -.025em;

    transition:
        color .25s ease,
        text-shadow .25s ease;
}

nav.component[data-component-id="navbar"]
a:hover h1 {
    color: #c4b5fd !important;

    text-shadow:
        0 0 20px
        rgba(168,85,247,.2);
}


/* =========================================================
   DESKTOP NAV LINKS
   ========================================================= */

@media (min-width: 1024px) {

    nav.component[data-component-id="navbar"]
    .lg\:flex-row > a {
        position: relative;

        border-radius: 9px;

        transition:
            color .25s ease,
            background .25s ease,
            transform .25s ease;
    }


    nav.component[data-component-id="navbar"]
    .lg\:flex-row > a:hover {
        color: #c4b5fd !important;

        background:
            rgba(139,92,246,.07);

        transform:
            translateY(-1px);
    }


    /* Animated underline */
    nav.component[data-component-id="navbar"]
    .lg\:flex-row > a::after {
        content: "";

        position: absolute;

        left: 50%;
        bottom: 4px;

        width: 0;
        height: 2px;

        border-radius: 999px;

        background:
            linear-gradient(
                90deg,
                #7c3aed,
                #c084fc
            );

        transform:
            translateX(-50%);

        transition:
            width .25s ease;

        box-shadow:
            0 0 10px
            rgba(168,85,247,.45);
    }


    nav.component[data-component-id="navbar"]
    .lg\:flex-row > a:hover::after {
        width: 55%;
    }
}


/* =========================================================
   CART
   ========================================================= */

nav.component[data-component-id="navbar"]
a[href*="/cart"] {
    border-radius: 10px !important;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


@media (min-width: 1024px) {

    nav.component[data-component-id="navbar"]
    a[href*="/cart"] {
        min-width: 42px;

        background:
            rgba(139,92,246,.055);

        border-color:
            rgba(168,85,247,.35) !important;
    }


    nav.component[data-component-id="navbar"]
    a[href*="/cart"]:hover {
        color: #fff !important;

        background:
            linear-gradient(
                135deg,
                #7c3aed,
                #a855f7
            ) !important;

        border-color:
            #a78bfa !important;

        box-shadow:
            0 8px 25px
            rgba(124,58,237,.22);

        transform:
            translateY(-1px);
    }
}


/* Cart notification */
nav.component[data-component-id="navbar"]
a[href*="/cart"] span.absolute {
    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #c026d3
        ) !important;

    box-shadow:
        0 0 12px
        rgba(168,85,247,.35);
}


/* =========================================================
   CURRENCY SELECTOR
   ========================================================= */

nav.component[data-component-id="navbar"]
.currency-selector .choices__inner {
    border-radius: 9px !important;

    transition:
        border-color .25s ease,
        background .25s ease;
}

nav.component[data-component-id="navbar"]
.currency-selector .choices__inner:hover {
    background:
        rgba(139,92,246,.06) !important;

    border-color:
        rgba(168,85,247,.3) !important;
}


/* =========================================================
   LOGIN / ACCOUNT
   ========================================================= */

nav.component[data-component-id="navbar"]
button:not([x-on\:click]) {
    transition:
        color .25s ease,
        background .25s ease;
}


/* =========================================================
   MOBILE BUTTONS
   ========================================================= */

@media (max-width: 1023px) {

    nav.component[data-component-id="navbar"] {
        top: 8px;

        margin-top: 8px;

        width:
            calc(100% - 16px);
    }


    nav.component[data-component-id="navbar"] > div {
        border-radius: 15px !important;
    }


    nav.component[data-component-id="navbar"]
    button {
        border-radius: 9px !important;

        transition:
            background .2s ease,
            color .2s ease,
            border-color .2s ease;
    }


    nav.component[data-component-id="navbar"]
    button:hover {
        background:
            rgba(139,92,246,.1) !important;

        border-color:
            rgba(168,85,247,.35) !important;

        color:
            #c4b5fd !important;
    }


    /* Mobile menu */
    nav.component[data-component-id="navbar"]
    [x-ref="menu"] > div {
        border-top:
            1px solid
            rgba(255,255,255,.05);
    }


    nav.component[data-component-id="navbar"]
    [x-ref="menu"] a {
        border-radius: 9px;

        transition:
            background .2s ease,
            color .2s ease;
    }


    nav.component[data-component-id="navbar"]
    [x-ref="menu"] a:hover {
        background:
            rgba(139,92,246,.08);

        color:
            #c4b5fd !important;
    }
}


/* =========================================================
   NAVBAR SCROLL DEPTH
   ========================================================= */

@media (min-width: 768px) {

    nav.component[data-component-id="navbar"] > div {
        box-shadow:
            0 15px 50px rgba(0,0,0,.38),
            0 0 40px rgba(91,33,182,.035),
            inset 0 1px rgba(255,255,255,.035);
    }
}
/* =========================================================
   DEXUDO NAVBAR
   ========================================================= */

.dexudo-navbar {
    position: sticky;
    top: 14px;
    z-index: 9999;

    width: calc(100% - 28px);
    max-width: 1450px;

    margin: 14px auto 0;
}


/* SHELL */

.dexudo-nav-shell {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 76px;

    padding: 10px 14px;

    border-radius: 20px;

    background:
        linear-gradient(
            120deg,
            rgba(20, 13, 30, .97),
            rgba(10, 8, 15, .97)
        );

    border: 1px solid rgba(168,85,247,.16);

    box-shadow:
        0 18px 55px rgba(0,0,0,.42),
        0 0 70px rgba(124,58,237,.06),
        inset 0 1px rgba(255,255,255,.045);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}


/* PURPLE TOP LINE */

.dexudo-nav-shell::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 8%;
    right: 8%;

    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #7c3aed,
            #c084fc,
            #7c3aed,
            transparent
        );

    box-shadow:
        0 0 18px rgba(168,85,247,.55);

    pointer-events: none;
}


/* =========================================================
   BRAND
   ========================================================= */

.dexudo-brand {
    display: flex;
    align-items: center;
    gap: 11px;

    padding: 8px 10px;

    border-radius: 12px;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease;
}

.dexudo-brand:hover {
    transform: translateY(-1px);

    background:
        rgba(139,92,246,.06);
}


.dexudo-brand-logo {
    max-height: 44px;
    max-width: 150px;

    object-fit: contain;

    transition:
        transform .3s ease,
        filter .3s ease;
}


.dexudo-brand:hover .dexudo-brand-logo {
    transform: scale(1.05);

    filter:
        drop-shadow(
            0 0 14px
            rgba(168,85,247,.4)
        );
}


.dexudo-brand-name {
    color: #f5f3ff;

    font-size: 1.35rem;
    font-weight: 900;

    letter-spacing: -.045em;

    transition:
        color .25s ease,
        text-shadow .25s ease;
}


.dexudo-brand:hover .dexudo-brand-name {
    color: #c4b5fd;

    text-shadow:
        0 0 20px rgba(168,85,247,.25);
}


/* =========================================================
   DESKTOP MENU
   ========================================================= */

.dexudo-nav-menu {
    overflow: visible !important;

    height: auto !important;
}


.dexudo-nav-links {
    display: flex;
    align-items: center;

    gap: 5px;
}


/* LINKS */

.dexudo-nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 8px 13px;

    border: 0;
    border-radius: 10px;

    background: transparent;

    color: rgba(255,255,255,.66) !important;

    font-size: .9rem;
    font-weight: 600;

    white-space: nowrap;

    text-decoration: none;

    cursor: pointer;

    transition:
        color .22s ease,
        background .22s ease,
        transform .22s ease;
}


.dexudo-nav-link:hover {
    color: #ddd6fe !important;

    background:
        rgba(139,92,246,.08);

    transform:
        translateY(-1px);
}


/* ACTIVE */

.dexudo-nav-link.is-active {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            rgba(124,58,237,.20),
            rgba(168,85,247,.06)
        );

    box-shadow:
        inset 0 0 0 1px
        rgba(168,85,247,.13);
}


.dexudo-nav-link.is-active::after {
    content: "";

    position: absolute;

    bottom: 4px;
    left: 50%;

    width: 20px;
    height: 2px;

    border-radius: 999px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            90deg,
            #7c3aed,
            #c084fc
        );

    box-shadow:
        0 0 10px
        rgba(168,85,247,.6);
}


/* BUTTON LINK */

.dexudo-nav-button {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            #6d28d9,
            #9333ea
        ) !important;

    border:
        1px solid rgba(192,132,252,.45);

    box-shadow:
        0 7px 22px
        rgba(124,58,237,.20);
}


.dexudo-nav-button:hover {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #a855f7
        ) !important;

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 30px
        rgba(124,58,237,.30);
}


/* =========================================================
   CART
   ========================================================= */

.dexudo-desktop-cart {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 42px;

    padding: 8px 13px;

    margin-left: 4px;

    border-radius: 10px;

    color: #c4b5fd !important;

    background:
        linear-gradient(
            135deg,
            rgba(124,58,237,.17),
            rgba(168,85,247,.05)
        );

    border:
        1px solid rgba(168,85,247,.3);

    text-decoration: none;

    font-size: .9rem;
    font-weight: 700;

    transition:
        .25s ease;
}


.dexudo-desktop-cart:hover {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            #6d28d9,
            #a855f7
        );

    border-color:
        #c084fc;

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 30px
        rgba(124,58,237,.30);
}


.dexudo-cart-badge {
    position: absolute;

    top: -8px;
    right: -8px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 19px;
    height: 19px;

    padding: 0 5px;

    border-radius: 999px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #c026d3
        );

    border:
        2px solid #120c1c;

    font-size: .6rem;
    font-weight: 800;

    box-shadow:
        0 0 13px
        rgba(168,85,247,.5);
}


/* =========================================================
   MOBILE
   ========================================================= */

.dexudo-mobile-controls {
    display: none;
}


.dexudo-mobile-cart,
.dexudo-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 10px;

    color: #c4b5fd;

    background:
        rgba(139,92,246,.07);

    border:
        1px solid rgba(168,85,247,.2);

    transition:
        .22s ease;
}


.dexudo-mobile-cart:hover,
.dexudo-menu-button:hover {
    color: #fff;

    background:
        rgba(139,92,246,.16);

    border-color:
        rgba(168,85,247,.45);
}


/* =========================================================
   MOBILE BREAKPOINT
   ========================================================= */

@media (max-width: 1023px) {

    .dexudo-navbar {
        top: 8px;

        width:
            calc(100% - 16px);

        margin-top: 8px;
    }


    .dexudo-nav-shell {
        min-height: 64px;

        padding: 8px;

        border-radius: 16px;
    }


    .dexudo-nav-left {
        flex: 1;
    }


    .dexudo-brand {
        padding: 5px 7px;
    }


    .dexudo-brand-logo {
        max-height: 38px;
        max-width: 125px;
    }


    .dexudo-brand-name {
        font-size: 1.15rem;
    }


    .dexudo-mobile-controls {
        display: flex;

        align-items: center;

        gap: 6px;
    }


    .dexudo-nav-menu {
        width: 100%;

        overflow: hidden !important;

        transition:
            height .25s ease;
    }


    .dexudo-nav-links {
        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        padding:
            10px 4px 4px;

        margin-top: 8px;

        border-top:
            1px solid
            rgba(255,255,255,.06);
    }


    .dexudo-nav-link {
        justify-content: flex-start;

        width: 100%;

        min-height: 44px;

        padding:
            10px 13px;
    }


    .dexudo-nav-link.is-active::after {
        left: 13px;

        bottom: 7px;

        width: 18px;

        transform: none;
    }


    .dexudo-desktop-cart {
        width: 100%;

        margin:
            2px 0 0;

        min-height: 44px;
    }


    .dexudo-nav-button {
        width: 100%;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .dexudo-navbar {
        width:
            calc(100% - 12px);

        margin-top:
            6px;
    }


    .dexudo-nav-shell {
        border-radius:
            14px;
    }


    .dexudo-brand-name {
        font-size:
            1.05rem;
    }


    .dexudo-brand-logo {
        max-width:
            110px;
    }


    .dexudo-mobile-cart,
    .dexudo-menu-button {
        width:
            40px;

        height:
            40px;
    }
}
/* =========================================================
   DEXUDO HERO
   ========================================================= */

.dexudo-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}


/* BACKGROUND */

.dexudo-hero-bg {
    position: absolute;
    inset: 0;

    z-index: -5;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(124,58,237,.13),
            transparent 35%
        ),
        radial-gradient(
            circle at 15% 70%,
            rgba(168,85,247,.06),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            rgba(8,6,13,0),
            rgba(8,6,13,.45)
        );
}


/* GRID */

.dexudo-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -4;

    opacity: .28;

    background-image:
        linear-gradient(
            rgba(168,85,247,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(168,85,247,.045) 1px,
            transparent 1px
        );

    background-size:
        55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );

    pointer-events: none;
}


/* GLOW */

.dexudo-hero-glow {
    position: absolute;

    z-index: -3;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;

    opacity: .15;
}

.dexudo-hero-glow-1 {
    top: -200px;
    left: 20%;

    background: #7c3aed;
}

.dexudo-hero-glow-2 {
    bottom: -250px;
    right: 15%;

    background: #a855f7;
}


/* CONTENT */

.dexudo-hero-content {
    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    max-width: 900px;

    margin: 0 auto;
}


/* BADGE */

.dexudo-hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 7px 13px;

    margin-bottom: 22px;

    border-radius: 999px;

    background:
        rgba(124,58,237,.08);

    border:
        1px solid
        rgba(168,85,247,.20);

    color:
        rgba(221,214,254,.85);

    font-size:
        .72rem;

    font-weight:
        800;

    letter-spacing:
        .12em;

    box-shadow:
        0 0 25px
        rgba(124,58,237,.08);

    animation:
        dexudo-badge-in .7s ease both;
}


.dexudo-status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        #a855f7;

    box-shadow:
        0 0 10px
        rgba(168,85,247,.8);
}


/* TITLE */

.dexudo-hero-title {
    max-width: 900px;

    margin: 0;

    color: #fff;

    font-size:
        clamp(2.8rem, 7vw, 5.7rem);

    line-height:
        .95;

    font-weight:
        950;

    letter-spacing:
        -.065em;

    text-wrap:
        balance;

    text-shadow:
        0 0 45px
        rgba(124,58,237,.13);

    animation:
        dexudo-title-in .8s ease both;
}


/* SUBTITLE */

.dexudo-hero-subtitle {
    max-width: 680px;

    margin:
        25px auto 0;

    color:
        rgba(255,255,255,.56);

    font-size:
        clamp(.95rem, 2vw, 1.15rem);

    line-height:
        1.75;

    text-wrap:
        balance;

    animation:
        dexudo-subtitle-in .9s ease both;
}


/* SEARCH */

.dexudo-hero-search {
    width: 100%;

    max-width: 650px;

    margin-top: 30px;
}


/* BUTTONS */

.dexudo-hero-buttons {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 28px;
}


/* STATS */

.dexudo-hero-stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    width: 100%;

    max-width: 720px;

    margin-top: 65px;

    border:
        1px solid
        rgba(255,255,255,.055);

    border-radius: 18px;

    overflow: hidden;

    background:
        rgba(255,255,255,.018);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 20px 60px
        rgba(0,0,0,.20);
}


.dexudo-stat {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    min-height: 85px;

    padding: 14px;

    text-align: left;
}


.dexudo-stat + .dexudo-stat {
    border-left:
        1px solid
        rgba(255,255,255,.05);
}


.dexudo-stat-icon {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 38px;
    height: 38px;

    border-radius: 10px;

    color:
        #c4b5fd;

    background:
        rgba(124,58,237,.12);

    border:
        1px solid
        rgba(168,85,247,.15);

    box-shadow:
        0 0 20px
        rgba(124,58,237,.08);
}


.dexudo-stat strong {
    display: block;

    color:
        rgba(255,255,255,.88);

    font-size:
        .78rem;

    font-weight:
        750;
}


.dexudo-stat div > span {
    display: block;

    margin-top: 3px;

    color:
        rgba(255,255,255,.36);

    font-size:
        .68rem;
}


/* ANIMATIONS */

@keyframes dexudo-badge-in {
    from {
        opacity: 0;
        transform:
            translateY(10px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }
}


@keyframes dexudo-title-in {
    from {
        opacity: 0;
        transform:
            translateY(18px)
            scale(.98);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }
}


@keyframes dexudo-subtitle-in {
    from {
        opacity: 0;
        transform:
            translateY(12px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }
}


/* MOBILE */

@media (max-width: 700px) {

    .dexudo-hero {
        min-height: auto;
    }


    .dexudo-hero-title {
        font-size:
            clamp(2.5rem, 13vw, 4rem);

        line-height:
            .98;
    }


    .dexudo-hero-subtitle {
        font-size:
            .92rem;

        line-height:
            1.65;

        padding:
            0 8px;
    }


    .dexudo-hero-stats {
        grid-template-columns:
            1fr;

        margin-top: 45px;

        max-width:
            420px;
    }


    .dexudo-stat {
        justify-content:
            flex-start;

        min-height:
            72px;

        padding:
            12px 16px;
    }


    .dexudo-stat + .dexudo-stat {
        border-left:
            0;

        border-top:
            1px solid
            rgba(255,255,255,.05);
    }
}


/* VERY SMALL */

@media (max-width: 420px) {

    .dexudo-hero-badge {
        font-size:
            .62rem;

        padding:
            6px 10px;
    }


    .dexudo-hero-title {
        font-size:
            2.45rem;
    }


    .dexudo-hero-buttons {
        width:
            100%;
    }


    .dexudo-hero-buttons > * {
        width:
            100%;
    }
}