/* ============================================================
   ALL DA SMOKE
   HOMEPAGE APP DESIGN
   ============================================================ */

:root {
    --bg: #080a0d;
    --bg-2: #0c1014;
    --card: #11161c;

    --orange: #ff6600;
    --orange-light: #ff7a1a;

    --white: #ffffff;
    --text: #f3f4f5;
    --muted: #8c949d;
    --muted-dark: #646c75;

    --green: #39d99a;
    --purple: #a17cff;

    --border: rgba(255, 255, 255, 0.075);

    --nav-height: 74px;

    --radius: 20px;
    --radius-lg: 27px;

    --shadow:
        0 25px 70px rgba(0, 0, 0, 0.48);
}


/* ============================================================
   RESET
   ============================================================ */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
    background: var(--bg);
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    min-height: 100dvh;

    overflow-x: hidden;

    background:
        radial-gradient(
            circle at 50% -15%,
            rgba(255, 102, 0, 0.08),
            transparent 36%
        ),
        var(--bg);

    color: var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.sheet-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
    font: inherit;
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.app-shell {
    min-height: 100vh;
    min-height: 100dvh;
}


/* ============================================================
   HEADER
   ============================================================ */

.app-header {
    position: fixed;

    z-index: 100;

    top: 0;
    left: 0;
    right: 0;

    height: 68px;

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

    padding:
        env(safe-area-inset-top)
        16px
        0;

    background:
        linear-gradient(
            to bottom,
            rgba(8, 10, 13, 0.97),
            rgba(8, 10, 13, 0.72)
        );

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


/* Empty permanent logo area */
.logo-space {
    width: 120px;
    height: 38px;
}


.cart-button {
    position: relative;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border:
        1px solid
        var(--border);

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.035);

    color: var(--text);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.cart-button:active {
    transform: scale(0.9);
}

.cart-button svg {
    width: 20px;
    height: 20px;
}

.cart-indicator {
    position: absolute;

    top: 7px;
    right: 7px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--orange);

    box-shadow:
        0 0 9px rgba(255, 102, 0, 0.85);

    animation: pulse 2s infinite;
}


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

.home-content {
    width: 100%;
    max-width: 680px;

    margin: 0 auto;

    padding:
        78px
        14px
        calc(
            var(--nav-height) +
            35px +
            env(safe-area-inset-bottom)
        );
}


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

.hero {
    position: relative;

    min-height: 0;

    display: block;

    padding: 24px 22px 25px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    background:
        linear-gradient(
            145deg,
            #171c22,
            #0e1217 55%,
            #090c10
        );

    box-shadow: var(--shadow);
}

.hero-background {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 92% 20%,
            rgba(255, 102, 0, 0.23),
            transparent 35%
        ),
        radial-gradient(
            circle at 70% 90%,
            rgba(255, 102, 0, 0.055),
            transparent 38%
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -150px;
    right: -130px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255, 102, 0, 0.17);

    box-shadow:
        0 0 70px rgba(255, 102, 0, 0.06);

    animation:
        floatRing 8s ease-in-out infinite;
}

.hero-content {
    position: relative;

    z-index: 3;

    width: 100%;
}

.delivery-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 18px;

    padding: 8px 11px;

    border:
        1px solid
        rgba(57, 217, 154, 0.18);

    border-radius: 999px;

    background:
        rgba(57, 217, 154, 0.06);

    color: #81e7bc;

    font-size: 9px;
    font-weight: 850;

    letter-spacing: 0.12em;
}

.delivery-status span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 9px rgba(57, 217, 154, 0.8);

    animation: pulse 2s infinite;
}

.eyebrow {
    margin-bottom: 8px;

    color: var(--orange);

    font-size: 9px;
    font-weight: 850;

    letter-spacing: 0.16em;
}

.hero h1 {
    max-width: 450px;

    font-size:
        clamp(39px, 11vw, 62px);

    line-height: 0.97;

    letter-spacing: -0.055em;

    font-weight: 850;
}

.hero h1 strong {
    display: block;

    color: var(--orange);

    font-weight: 850;

    text-shadow:
        0 0 30px rgba(255, 102, 0, 0.2);
}

.hero-text {
    max-width: 410px;

    margin-top: 17px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 8px;

    margin-top: 22px;
}

.primary-button,
.secondary-button {
    min-height: 47px;

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

    border-radius: 14px;

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

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.primary-button {
    gap: 8px;

    padding: 0 16px;

    background: var(--orange);

    box-shadow:
        0 12px 30px rgba(255, 102, 0, 0.22);
}

.primary-button svg {
    width: 16px;
    height: 16px;

    transition: transform 0.2s ease;
}

.primary-button:active,
.secondary-button:active {
    transform: scale(0.95);
}

.primary-button:hover svg {
    transform: translateX(3px);
}

.secondary-button {
    padding: 0 14px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    background:
        rgba(255, 255, 255, 0.045);

    color: var(--text);
}

.hero-glow {
    position: absolute;

    width: 210px;
    height: 210px;

    top: 40px;
    right: -80px;

    border-radius: 50%;

    background: var(--orange);

    opacity: 0.08;

    filter: blur(50px);

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

.hero-ring {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(255, 255, 255, 0.06);
}

.hero-ring-one {
    width: 170px;
    height: 170px;

    right: -70px;
    top: 90px;

    animation:
        floatRing 6s ease-in-out infinite;
}

.hero-ring-two {
    width: 90px;
    height: 90px;

    right: 30px;
    top: 130px;

    border-color:
        rgba(255, 102, 0, 0.15);

    animation:
        floatRing 5s ease-in-out infinite reverse;
}


/* ============================================================
   TOP SELLERS
   ============================================================ */

.top-sellers {
    margin-top: 28px;
}

.section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 13px;
}

.section-label {
    display: block;

    margin-bottom: 5px;

    color: var(--orange);

    font-size: 8px;
    font-weight: 850;

    letter-spacing: 0.16em;
}

.section-top h2 {
    font-size: 22px;

    line-height: 1;

    letter-spacing: -0.04em;
}

.view-all {
    color: var(--orange);

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

.product-scroll {
    display: flex;

    gap: 10px;

    overflow-x: auto;

    margin:
        0 -14px;

    padding:
        0 14px
        8px;

    scrollbar-width: none;
}

.product-scroll::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 174px;

    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.product-card:active {
    transform: scale(0.97);
}

.product-image {
    position: relative;

    height: 158px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255, 102, 0, 0.15),
            transparent 55%
        ),
        #0c1014;
}

.product-badge {
    position: absolute;

    z-index: 2;

    top: 9px;
    left: 9px;

    padding: 5px 7px;

    border-radius: 7px;

    background:
        rgba(255, 102, 0, 0.12);

    color: var(--orange);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 0.08em;
}

.product-placeholder {
    position: absolute;

    width: 50px;
    height: 118px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -45%)
        rotate(4deg);

    border-radius: 10px 10px 15px 15px;

    background:
        linear-gradient(
            90deg,
            #252b31,
            #12171c 45%,
            #30363d
        );

    box-shadow:
        0 15px 25px rgba(0, 0, 0, 0.45);
}

.product-placeholder::before {
    content: "";

    position: absolute;

    width: 23px;
    height: 18px;

    left: 50%;
    top: -8px;

    transform: translateX(-50%);

    border-radius: 6px 6px 2px 2px;

    background:
        #1c2126;
}

.product-placeholder span {
    position: absolute;

    left: 9px;
    right: 9px;

    top: 45px;

    height: 2px;

    background:
        var(--orange);

    box-shadow:
        0 0 12px rgba(255, 102, 0, 0.8);
}

.product-placeholder-two {
    transform:
        translate(-50%, -45%)
        rotate(-5deg);

    background:
        linear-gradient(
            90deg,
            #32383e,
            #151a1f 50%,
            #272d33
        );
}

.product-placeholder-three {
    transform:
        translate(-50%, -45%)
        rotate(2deg);

    background:
        linear-gradient(
            90deg,
            #20262b,
            #11161b 50%,
            #343a40
        );
}

.product-info {
    padding: 12px;
}

.product-brand {
    color: var(--muted-dark);

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

    letter-spacing: 0.11em;
}

.product-info h3 {
    margin-top: 5px;

    font-size: 13px;

    line-height: 1.15;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 11px;
}

.product-bottom strong {
    color: var(--orange);

    font-size: 9px;
}

.product-arrow {
    width: 22px;
    height: 22px;

    display: grid;
    place-items: center;

    border-radius: 7px;

    background:
        rgba(255, 102, 0, 0.08);

    color: var(--orange);

    font-size: 12px;
}


/* ============================================================
   DELIVERY STRIP
   ============================================================ */

.delivery-strip {
    position: relative;

    margin-top: 26px;

    padding: 16px;

    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius: 19px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );
}

.delivery-left {
    display: flex;
    align-items: center;
    gap: 11px;
}

.delivery-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: var(--orange);

    background:
        rgba(255, 102, 0, 0.09);
}

.delivery-icon svg {
    width: 19px;
    height: 19px;
}

.delivery-left span {
    display: block;

    margin-bottom: 3px;

    color: var(--muted-dark);

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

    letter-spacing: 0.14em;
}

.delivery-left strong {
    font-size: 15px;
}

.area-button {
    position: absolute;

    top: 16px;
    right: 16px;

    display: flex;
    align-items: center;
    gap: 2px;

    color: var(--orange);

    font-size: 9px;
    font-weight: 800;
}

.area-button svg {
    width: 13px;
    height: 13px;
}

.delivery-areas {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    margin-top: 14px;
}

.delivery-areas span {
    padding: 6px 8px;

    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.035);

    color: var(--muted);

    font-size: 8px;
}


/* ============================================================
   REWARDS
   ============================================================ */

.rewards-banner {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 13px;

    margin-top: 10px;

    padding: 18px;

    overflow: hidden;

    border:
        1px solid
        rgba(161, 124, 255, 0.14);

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(161, 124, 255, 0.08),
            rgba(255, 255, 255, 0.018)
        );
}

.rewards-icon {
    flex: 0 0 auto;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background:
        rgba(161, 124, 255, 0.10);

    color: var(--purple);
}

.rewards-icon svg {
    width: 21px;
    height: 21px;
}

.rewards-content {
    position: relative;
    z-index: 2;
}

.rewards-content h2 {
    font-size: 19px;

    letter-spacing: -0.035em;
}

.rewards-content p {
    max-width: 330px;

    margin-top: 6px;

    color: var(--muted);

    font-size: 10px;
    line-height: 1.5;
}

.rewards-content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    margin-top: 10px;

    color: var(--purple);

    font-size: 9px;
    font-weight: 850;
}

.rewards-content a svg {
    width: 13px;
    height: 13px;
}

.rewards-glow {
    position: absolute;

    width: 140px;
    height: 140px;

    right: -65px;
    top: -55px;

    border-radius: 50%;

    background:
        var(--purple);

    opacity: 0.08;

    filter: blur(30px);
}

.content-bottom-space {
    height: 10px;
}


/* ============================================================
   BOTTOM NAV
   ============================================================ */

.bottom-nav {
    position: fixed;

    z-index: 200;

    left: 10px;
    right: 10px;

    bottom:
        calc(
            9px +
            env(safe-area-inset-bottom)
        );

    height: var(--nav-height);

    display: grid;

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

    padding: 6px;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(25, 30, 37, 0.91),
            rgba(9, 12, 16, 0.91)
        );

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);

    backdrop-filter:
        blur(24px)
        saturate(140%);

    -webkit-backdrop-filter:
        blur(24px)
        saturate(140%);
}

.nav-item {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 4px;

    border-radius: 17px;

    background: transparent;

    color: #69717a;

    cursor: pointer;

    font-size: 8px;
    font-weight: 750;

    transition:
        color 0.25s ease,
        transform 0.2s ease;
}

.nav-item:active {
    transform: scale(0.88);
}

.nav-icon {
    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    transition:
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.nav-icon svg {
    width: 18px;
    height: 18px;

    transition:
        transform 0.25s ease;
}

.nav-item.active {
    color: var(--orange);
}

.nav-item.active .nav-icon {
    background:
        rgba(255, 102, 0, 0.10);

    box-shadow:
        0 0 20px rgba(255, 102, 0, 0.11);
}

.nav-item.active .nav-icon svg {
    transform:
        translateY(-1px)
        scale(1.06);

    filter:
        drop-shadow(
            0 0 7px
            rgba(255, 102, 0, 0.45)
        );
}

.nav-item.active::after {
    content: "";

    position: absolute;

    bottom: 3px;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--orange);

    box-shadow:
        0 0 8px rgba(255, 102, 0, 0.8);
}

.more-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 3px;
}

.more-icon i {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: currentColor;
}


/* ============================================================
   MORE SHEET
   ============================================================ */

.more-overlay {
    position: fixed;

    z-index: 300;

    inset: 0;

    background:
        rgba(0, 0, 0, 0.68);

    opacity: 0;
    visibility: hidden;

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.more-overlay.open {
    opacity: 1;
    visibility: visible;
}

.more-sheet {
    position: fixed;

    z-index: 301;

    left: 10px;
    right: 10px;

    bottom:
        calc(
            var(--nav-height) +
            19px +
            env(safe-area-inset-bottom)
        );

    max-width: 650px;

    margin: auto;

    padding:
        9px
        14px
        14px;

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(23, 28, 34, 0.98),
            rgba(9, 12, 16, 0.98)
        );

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.72);

    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(18px)
        scale(0.97);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.3s cubic-bezier(.2,.8,.2,1);
}

.more-sheet.open {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}

.sheet-handle {
    width: 36px;
    height: 4px;

    margin: 1px auto 16px;

    border-radius: 99px;

    background:
        rgba(255, 255, 255, 0.14);
}

.sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 12px;
}

.sheet-header h2 {
    font-size: 23px;
}

.sheet-close {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background:
        rgba(255, 255, 255, 0.05);

    color: var(--muted);

    font-size: 24px;

    cursor: pointer;
}

.more-menu {
    display: grid;

    gap: 7px;
}

.more-menu a {
    min-height: 60px;

    display: grid;

    grid-template-columns:
        42px
        1fr
        18px;

    align-items: center;

    gap: 10px;

    padding: 8px;

    border:
        1px solid
        rgba(255, 255, 255, 0.045);

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.025);
}

.menu-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: var(--orange);

    background:
        rgba(255, 102, 0, 0.08);
}

.menu-icon svg {
    width: 18px;
    height: 18px;
}

.more-menu strong {
    display: block;

    font-size: 12px;
}

.more-menu small {
    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 9px;
}

.more-menu b {
    color: var(--muted-dark);

    font-size: 21px;

    font-weight: 400;
}


/* ============================================================
   AGE VERIFICATION
   ============================================================ */

.age-modal {
    position: fixed;

    z-index: 1000;

    inset: 0;

    display: grid;
    place-items: center;

    padding: 20px;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.age-modal.hidden {
    opacity: 0;
    visibility: hidden;

    pointer-events: none;
}

.age-backdrop {
    position: absolute;

    inset: 0;

    background:
        rgba(0, 0, 0, 0.84);

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

.age-card {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 390px;

    padding: 27px 21px 21px;

    text-align: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

    border-radius: 27px;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(255, 102, 0, 0.13),
            transparent 43%
        ),
        #101419;

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.75);

    animation:
        modalIn 0.4s cubic-bezier(.2,.8,.2,1);
}

.age-badge {
    width: 68px;
    height: 68px;

    display: grid;
    place-items: center;

    margin: 0 auto 17px;

    border-radius: 21px;

    border:
        1px solid
        rgba(255, 102, 0, 0.23);

    background:
        rgba(255, 102, 0, 0.09);

    color: var(--orange);

    font-size: 21px;
    font-weight: 900;
}

.age-card h2 {
    font-size: 26px;

    letter-spacing: -0.04em;
}

.age-card p {
    margin-top: 8px;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.55;
}

.age-buttons {
    display: grid;

    gap: 8px;

    margin-top: 21px;
}

.age-confirm,
.age-deny {
    min-height: 48px;

    border-radius: 14px;

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

    cursor: pointer;
}

.age-confirm {
    background: var(--orange);

    box-shadow:
        0 10px 28px rgba(255, 102, 0, 0.20);
}

.age-deny {
    background:
        rgba(255, 255, 255, 0.045);

    color: var(--muted);
}


/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.75);
    }
}

@keyframes glow {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}

@keyframes floatRing {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(7deg);
    }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform:
            translateY(20px)
            scale(0.95);
    }

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


/* ============================================================
   TABLET
   ============================================================ */

@media (min-width: 600px) {

    .home-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero {
        min-height: 0;
        padding: 28px 30px 30px;
    }

    .product-scroll {
        margin-left: 0;
        margin-right: 0;

        padding-left: 0;
        padding-right: 0;
    }

    .bottom-nav {
        left: 50%;
        right: auto;

        width:
            min(
                calc(100% - 48px),
                600px
            );

        transform:
            translateX(-50%);
    }
}


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

@media (min-width: 900px) {

    .home-content {
        max-width: 900px;

        padding-top: 88px;
    }

    .hero {
        min-height: 0;
        padding: 30px 32px 32px;
    }

    .hero h1 {
        font-size: 70px;
    }

    .product-card {
        flex-basis: 205px;
    }

    .product-image {
        height: 180px;
    }

    .bottom-nav {
        width: 560px;
    }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}