/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f4f3ef;
    --white: #ffffff;
    --black: #101010;
    --muted: #777773;
    --line: rgba(16, 16, 16, .1);

    --purple: #8d6cff;
    --pink: #ff72a9;
    --green: #b7f36b;
    --yellow: #f5e66d;

    --radius: 28px;
    --radius-sm: 18px;

    --font-display: "Space Grotesk", sans-serif;
    --font-body: "DM Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--black);
    font-family: var(--font-body);
    overflow-x: hidden;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================
   PRELOADER
========================================= */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #101010;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .7s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -3px;
}

.loader-logo span {
    color: var(--purple);
}

.loader-line {
    width: 130px;
    height: 2px;
    background: rgba(255,255,255,.15);
    margin-top: 25px;
    overflow: hidden;
}

.loader-line span {
    display: block;
    width: 0;
    height: 100%;
    background: white;
    animation: loader 1.5s ease forwards;
}

@keyframes loader {
    to {
        width: 100%;
    }
}


/* =========================================
   ANNOUNCEMENT
========================================= */

.announcement {
    height: 34px;
    background: #101010;
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.announcement span {
    color: var(--purple);
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    height: 78px;
    padding: 0 5vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(244,243,239,.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    position: sticky;
    top: 0;
    z-index: 1000;

    border-bottom: 1px solid rgba(0,0,0,.05);
}

.logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -2px;
}

.logo span {
    color: var(--purple);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 600;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: var(--black);
    transition: .3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    background: transparent;
    border-radius: 50%;
    position: relative;

    transition: .3s;
}

.icon-btn:hover {
    background: white;
}

.icon-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.count {
    position: absolute;
    right: -1px;
    top: -2px;

    width: 15px;
    height: 15px;

    display: grid;
    place-items: center;

    background: var(--purple);
    color: white;

    font-size: 8px;
    border-radius: 50%;
}

.cart-btn {
    height: 40px;
    padding: 0 16px;

    display: flex;
    gap: 8px;
    align-items: center;

    background: #101010;
    color: white;

    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;

    transition: .3s;
}

.cart-btn:hover {
    transform: translateY(-2px);
}

.cart-btn b {
    width: 19px;
    height: 19px;

    display: grid;
    place-items: center;

    background: white;
    color: black;
    border-radius: 50%;
    font-size: 9px;
}

.menu-btn {
    display: none;
    background: transparent;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: calc(100vh - 112px);
    position: relative;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;

    padding: 8vh 8vw 40px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(141,108,255,.18),
            transparent 28%
        ),
        var(--bg);
}

.hero-content {
    position: relative;
    z-index: 3;

    align-self: center;

    width: 100%;
    max-width: 650px;

    padding-bottom: 8vh;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    font-size: 9px;
    letter-spacing: 1.5px;
    font-weight: 700;

    margin-bottom: 30px;
}

.pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #82d62d;
    box-shadow: 0 0 0 6px rgba(130,214,45,.12);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(70px, 8vw, 135px);
    line-height: .83;
    letter-spacing: -7px;
    max-width: 650px;
}

.hero h1 span {
    color: var(--purple);
    font-style: italic;
}

.hero-content > p {
    margin-top: 38px;

    max-width: 390px;

    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 28px;

    margin-top: 35px;
}

.primary-btn {
    display: flex;
    align-items: center;
    gap: 22px;

    padding: 17px 20px 17px 22px;

    color: white;
    background: #101010;

    border-radius: 100px;

    font-size: 12px;
    font-weight: 700;

    transition: .35s;
}

.primary-btn span {
    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    background: white;
    color: black;
    border-radius: 50%;
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,.15);
}

.text-btn {
    font-size: 12px;
    font-weight: 700;

    display: flex;
    gap: 10px;
    align-items: center;
}

.text-btn span {
    transition: .3s;
}

.text-btn:hover span {
    transform: translateY(4px);
}


/* =========================================
   HERO PRODUCT
========================================= */

.hero-product {
    position: relative;
    z-index: 2;

    width: 100%;
    min-width: 0;
    min-height: 550px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible;
}

.product-glow {
    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(141,108,255,.7) 0%,
            rgba(141,108,255,.18) 42%,
            transparent 70%
        );

    filter: blur(15px);
}

.hero-product-image {
    position: relative;
    z-index: 2;

    width: 500px;
    height: 500px;

    max-width: 100%;

    display: grid;
    place-items: center;

    animation: productFloat 5s ease-in-out infinite;
}


@keyframes productFloat {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-17px) rotate(2deg);
    }
}


/* Headphone CSS Art */

.headphone {
    width: 310px;
    height: 330px;

    position: relative;
}

.headphone-band {
    position: absolute;

    left: 50%;
    top: 18px;

    width: 245px;
    height: 255px;

    transform: translateX(-50%);

    border: 32px solid #171717;
    border-bottom-color: transparent;

    border-radius: 50% 50% 0 0;
}

.ear {
    position: absolute;

    top: 175px;

    width: 100px;
    height: 145px;

    background: linear-gradient(
        145deg,
        #252525,
        #080808
    );

    border-radius: 30px;

    box-shadow:
        inset -10px -10px 25px rgba(0,0,0,.7),
        15px 20px 40px rgba(0,0,0,.18);
}

.ear::after {
    content: "";
    position: absolute;
    inset: 13px;

    border-radius: 23px;

    background: linear-gradient(
        135deg,
        #333,
        #0a0a0a
    );
}

.ear div {
    position: absolute;
    z-index: 2;

    width: 55px;
    height: 85px;

    top: 30px;
    left: 22px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        #080808,
        #272727
    );
}

.ear-left {
    left: 0;
    transform: rotate(5deg);
}

.ear-right {
    right: 0;
    transform: rotate(-5deg);
}

.floating-card {
    position: absolute;
    z-index: 5;

    min-width: 160px;

    padding: 15px 17px;

    background: rgba(255,255,255,.48);
    border: 1px solid rgba(255,255,255,.75);

    border-radius: 18px;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.floating-card span {
    display: block;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;

    color: var(--muted);

    margin-bottom: 5px;
}

.floating-card strong {
    display: block;

    font-family: var(--font-display);
    font-size: 14px;
}

.floating-card small {
    font-size: 9px;
    color: var(--muted);
}

.card-top {
    top: 16%;
    right: 3%;
    transform: rotate(4deg);
}

.card-bottom {
    bottom: 14%;
    left: 4%;
    transform: rotate(-4deg);
}

.card-bottom i {
    color: #f4b400;
    font-style: normal;
}

.hero-orbit {
    position: absolute;

    border: 1px solid rgba(141,108,255,.18);
    border-radius: 50%;
}

.orbit-one {
    width: 620px;
    height: 620px;
}

.orbit-two {
    width: 760px;
    height: 760px;
    border-color: rgba(141,108,255,.08);
}

.hero-bottom {
    position: absolute;

    left: 8vw;
    right: 8vw;
    bottom: 35px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scroll-label {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.scroll-line {
    width: 45px;
    height: 1px;
    background: #aaa;
}

.hero-stats {
    display: flex;
    gap: 35px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-stats strong {
    font-family: var(--font-display);
    font-size: 20px;
}

.hero-stats span {
    font-size: 12px;
    color: var(--muted);
}


/* =========================================
   MARQUEE
========================================= */

.marquee {
    overflow: hidden;
    background: #101010;
    color: white;

    padding: 17px 0;

    white-space: nowrap;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 35px;

    width: max-content;

    animation: marquee 25s linear infinite;
}

.marquee span {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -1px;
}

.marquee b {
    color: var(--purple);
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.section {
    padding: 130px 8vw;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    margin-bottom: 55px;
}

.eyebrow {
    display: block;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.8px;

    color: var(--muted);

    margin-bottom: 20px;
}

.section-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 80px);
    letter-spacing: -5px;
    line-height: .9;
}

.section-heading h2 em,
.reviews h2 em,
.newsletter h2 em,
.showcase h2 em {
    color: var(--purple);
    font-style: italic;
}

.section-heading > p {
    width: 300px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   BENTO CATEGORIES
========================================= */

.bento-grid {
    display: grid;

    grid-template-columns: 1.4fr .8fr;
    grid-template-rows: 350px 350px;

    gap: 18px;
}

.category-card {
    position: relative;

    overflow: hidden;

    border-radius: var(--radius);

    padding: 30px;

    isolation: isolate;

    transition: transform .4s ease;
}

.category-card:hover {
    transform: translateY(-7px);
}

.category-large {
    grid-row: span 2;
    background: #d9d1ff;
}

.category-dark {
    background: #171717;
    color: white;
}

.category-pink {
    background: #ffbed6;
}

.category-green {
    background: var(--green);
}

.category-content {
    position: relative;
    z-index: 4;
}

.category-content > span {
    font-size: 15px;
    font-weight: 700;
    opacity: .55;
}

.category-content h3 {
    font-family: var(--font-display);
    font-size: 43px;
    letter-spacing: -3px;
    margin-top: 10px;
}

.category-content p {
    font-size: 15px;
    opacity: .65;
    margin-top: 4px;
}

.category-content a {
    display: inline-block;
    margin-top: 20px;

    font-size: 15px;
    font-weight: 700;
}

.category-visual {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}


/* small headphone */

.mini-headphone {
    width: 190px;
    height: 210px;
    border: 28px solid #171717;
    border-bottom: 0;
    border-radius: 100px 100px 0 0;
    position: relative;
}

.mini-headphone::before,
.mini-headphone::after {
    content: "";
    position: absolute;
    bottom: -25px;
    width: 60px;
    height: 95px;
    background: #171717;
    border-radius: 20px;
}

.mini-headphone::before {
    left: -28px;
}

.mini-headphone::after {
    right: -28px;
}


/* watch */

.watch-visual {
    position: absolute;
    right: 40px;
    bottom: -55px;

    width: 160px;
    height: 270px;

    background: #282828;

    border-radius: 80px;

    transform: rotate(15deg);

    padding: 45px 15px;
}

.watch-face {
    height: 180px;

    background: #050505;
    border-radius: 45px;

    display: grid;
    place-items: center;

    color: white;
    font-family: var(--font-display);
    font-size: 18px;
}


/* shoe */

.shoe-visual {
    position: absolute;
    right: 20px;
    bottom: 20px;

    width: 240px;
    height: 170px;

    transform: rotate(-12deg);
}

.shoe-shape {
    width: 230px;
    height: 80px;

    position: absolute;
    bottom: 15px;

    background: white;

    border-radius: 70% 30% 25% 20%;

    transform: skewX(-15deg);

    box-shadow: 0 30px 30px rgba(0,0,0,.12);
}

.shoe-shape::after {
    content: "";

    position: absolute;

    width: 145px;
    height: 25px;

    right: -10px;
    bottom: -5px;

    background: #171717;

    border-radius: 20px;
}


/* bag */

.bag-visual {
    position: absolute;
    right: 25px;
    bottom: 20px;
}

.bag-shape {
    width: 180px;
    height: 170px;

    background: #151515;

    border-radius: 15px 15px 30px 30px;

    position: relative;
}

.bag-shape::before {
    content: "";

    position: absolute;

    width: 90px;
    height: 65px;

    border: 13px solid #151515;
    border-bottom: 0;

    border-radius: 60px 60px 0 0;

    top: -45px;
    left: 45px;
}


/* =========================================
   SHOP
========================================= */

.shop {
    background: #101010;
    color: white;
}

.shop .eyebrow {
    color: #777;
}

.shop-heading {
    align-items: flex-end;
}

.filter-tabs {
    display: flex;
    gap: 7px;

    padding: 5px;

    background: rgba(255,255,255,.07);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 100px;
}

.filter {
    padding: 9px 15px;

    background: transparent;
    color: #777;

    border-radius: 100px;

    font-size: 13px;
    font-weight: 600;

    transition: .3s;
}

.filter:hover,
.filter.active {
    color: black;
    background: white;
}


/* =========================================
   PRODUCTS
========================================= */

.products-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 16px;
}

.product-card {
    position: relative;

    color: var(--black);

    background: #e8e7e2;

    border-radius: 23px;

    overflow: hidden;

    transition: .4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image {
    height: 330px;

    position: relative;

    display: grid;
    place-items: center;

    overflow: hidden;
}

.product-card:nth-child(4n+1) .product-image {
    background: #d7d0ff;
}

.product-card:nth-child(4n+2) .product-image {
    background: #f9c2d7;
}

.product-card:nth-child(4n+3) .product-image {
    background: #c8ef8a;
}

.product-card:nth-child(4n+4) .product-image {
    background: #ddd;
}

.product-badge {
    position: absolute;

    left: 15px;
    top: 15px;

    padding: 7px 10px;

    background: rgba(255,255,255,.6);
    backdrop-filter: blur(10px);

    border-radius: 100px;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: .8px;

    z-index: 3;
}

.wishlist {
    position: absolute;

    right: 15px;
    top: 15px;

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255,255,255,.6);
    backdrop-filter: blur(10px);

    z-index: 4;

    transition: .3s;
}

.wishlist:hover {
    background: white;
    transform: scale(1.08);
}

.wishlist.liked {
    color: #ef5278;
}

.wishlist svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}


/* Product CSS art */

.product-object {
    position: relative;

    transition: transform .5s cubic-bezier(.2,.8,.2,1);
}

.product-card:hover .product-object {
    transform: scale(1.08) rotate(-3deg);
}


/* speaker */

.speaker {
    width: 145px;
    height: 230px;

    border-radius: 35px;

    background: linear-gradient(
        135deg,
        #333,
        #080808
    );

    box-shadow: 25px 35px 35px rgba(0,0,0,.2);
}

.speaker::after {
    content: "";

    position: absolute;

    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: #111;

    left: 38px;
    top: 75px;

    box-shadow:
        0 0 0 8px #222,
        0 0 0 12px #0a0a0a;
}


/* watch product */

.product-watch {
    width: 135px;
    height: 175px;

    border-radius: 42px;

    background: #111;

    padding: 13px;

    box-shadow: 25px 35px 35px rgba(0,0,0,.2);
}

.product-watch::before,
.product-watch::after {
    content: "";

    position: absolute;

    width: 62px;
    height: 75px;

    background: #181818;

    left: 37px;

    z-index: -1;
}

.product-watch::before {
    top: -50px;
    border-radius: 35px 35px 0 0;
}

.product-watch::after {
    bottom: -50px;
    border-radius: 0 0 35px 35px;
}

.watch-display {
    height: 100%;

    background: #050505;

    border-radius: 32px;

    display: grid;
    place-items: center;

    color: white;

    font-family: var(--font-display);
    font-size: 15px;
}


/* sneaker */

.product-sneaker {
    width: 220px;
    height: 90px;

    background: white;

    border-radius: 70% 30% 20% 20%;

    transform: skewX(-15deg);

    box-shadow: 20px 35px 30px rgba(0,0,0,.15);
}

.product-sneaker::after {
    content: "";

    position: absolute;

    right: -5px;
    bottom: -5px;

    width: 145px;
    height: 25px;

    border-radius: 20px;

    background: #222;
}


/* bag */

.product-bag {
    width: 170px;
    height: 190px;

    background: #222;

    border-radius: 20px 20px 35px 35px;

    box-shadow: 25px 35px 35px rgba(0,0,0,.2);
}

.product-bag::before {
    content: "";

    position: absolute;

    width: 90px;
    height: 60px;

    border: 12px solid #222;
    border-bottom: 0;

    border-radius: 60px 60px 0 0;

    top: -48px;
    left: 40px;
}

.product-info {
    padding: 20px;
}

.product-info-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: -.5px;
}

.product-info p {
    font-size: 11px;
    color: #888;
    margin-top: 4px;
}

.product-price {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
}

.add-btn {
    width: 100%;

    margin-top: 18px;

    padding: 12px;

    background: #101010;
    color: white;

    border-radius: 100px;

    font-size: 11.4px;
    font-weight: 700;

    transition: .3s;
}

.add-btn:hover {
    background: var(--purple);
}

.product-card.hidden {
    display: none;
}


/* =========================================
   SHOWCASE
========================================= */

.showcase {
    min-height: 850px;

    background: #d9d1ff;

    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;
}

.showcase-image {
    position: relative;

    min-height: 750px;

    display: grid;
    place-items: center;
}

.showcase-ring {
    width: 520px;
    height: 520px;

    border: 1px solid rgba(0,0,0,.12);

    border-radius: 50%;

    position: absolute;
}

.showcase-ring::after {
    content: "";

    position: absolute;
    inset: 60px;

    border: 1px solid rgba(0,0,0,.1);
    border-radius: 50%;
}

.showcase-phone {
    width: 280px;
    height: 560px;

    border-radius: 42px;

    background: #111;

    padding: 10px;

    box-shadow:
        40px 50px 60px rgba(0,0,0,.2);

    transform: rotate(9deg);

    position: relative;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;

    border-radius: 34px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 20%,
            #c4b8ff,
            #7660d5 40%,
            #111 80%
        );

    position: relative;
}

.phone-camera {
    position: absolute;

    width: 80px;
    height: 22px;

    top: 10px;
    left: 50%;

    transform: translateX(-50%);

    background: #111;

    border-radius: 20px;

    z-index: 4;
}

.phone-ui {
    position: absolute;

    inset: 35px 25px 25px;

    color: white;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.phone-ui small {
    font-size: 8px;
    letter-spacing: 2px;
}

.phone-ui strong {
    font-family: var(--font-display);

    font-size: 40px;

    line-height: .9;

    letter-spacing: -3px;
}

.phone-ui span {
    font-family: var(--font-display);
    font-size: 12px;
}

.showcase-content {
    padding: 130px 9vw 100px 5vw;

    align-self: center;
}

.showcase h2 {
    font-family: var(--font-display);

    font-size: clamp(50px, 5vw, 78px);

    line-height: .92;

    letter-spacing: -5px;

    max-width: 600px;
}

.showcase-content > p {
    max-width: 450px;

    color: #555;

    font-size: 14px;
    line-height: 1.8;

    margin-top: 35px;
}

.showcase-points {
    margin-top: 35px;

    border-top: 1px solid rgba(0,0,0,.12);
}

.showcase-points div {
    padding: 15px 0;

    display: flex;
    gap: 25px;

    border-bottom: 1px solid rgba(0,0,0,.12);
}

.showcase-points span {
    font-size: 9px;
    opacity: .5;
}

.showcase-points p {
    font-size: 12px;
    font-weight: 600;
}

.outline-btn {
    margin-top: 35px;

    padding: 15px 20px;

    display: flex;
    align-items: center;
    gap: 30px;

    background: transparent;

    border: 1px solid #101010;

    border-radius: 100px;

    font-size: 11px;
    font-weight: 700;

    transition: .3s;
}

.outline-btn:hover {
    background: #101010;
    color: white;
}


/* =========================================
   TRENDING
========================================= */

/* =========================================
   TRENDING PRODUCTS
========================================= */

.trending-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.trend-item {
    min-height: 390px;
    position: relative;
    overflow: hidden;

    padding: 25px;
    border-radius: var(--radius);

    isolation: isolate;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.trend-item:hover {
    transform: translateY(-8px);
}


/* =========================================
   TREND COLORS
========================================= */

.trend-one {
    background: #d9d1ff;
}

.trend-two {
    background: #c8ef8a;
}

.trend-three {
    background: #ffbed6;
}


/* =========================================
   NUMBER
========================================= */

.trend-number {
    position: relative;
    z-index: 5;

    font-size: 13px;
    opacity: .5;
}


/* =========================================
   TREND INFO
========================================= */

.trend-info {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    z-index: 10;

    pointer-events: none;
}

.trend-info span {
    display: block;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.trend-info h3 {
    margin-top: 5px;

    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1;

    letter-spacing: -1.5px;
}

.trend-info p {
    margin-top: 5px;

    font-size: 15px;
    line-height: 1.4;
}


/* =========================================
   TREND ART — COMMON
========================================= */

.trend-shoe,
.trend-headphone {
    position: absolute;

    z-index: 2;

    display: grid;
    place-items: center;

    pointer-events: none;
}


/* =========================================
   SHOE
========================================= */

/* SNEAKER */
.trend-shoe {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
    width: 280px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.runner {
    position: relative;
    width: 230px;
    height: 100px;
    background: linear-gradient(145deg, #ffffff, #e5e5e5);
    border-radius: 70px 45px 25px 20px;
    box-shadow: 20px 25px 30px rgba(0,0,0,.18);
}

/* shoe sole */
.runner::after {
    content: "";
    position: absolute;
    left: -5px;
    bottom: -14px;
    width: 240px;
    height: 22px;
    background: #fff;
    border-radius: 20px 25px 15px 25px;
}

/* shoe heel */
.runner::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 15px;
    width: 65px;
    height: 70px;
    background: #d7d7d7;
    border-radius: 35px 10px 15px 35px;
}

/* laces */
.runner-laces {
    position: absolute;
    top: 20px;
    left: 75px;
    width: 75px;
    z-index: 5;
}

.runner-laces span {
    display: block;
    width: 65px;
    height: 4px;
    background: #aaa;
    margin: 8px 0;
    border-radius: 10px;
}

/* logo */
.runner-logo {
    position: absolute;
    left: 45px;
    top: 48px;
    width: 35px;
    height: 15px;
    border-bottom: 5px solid #222;
    border-radius: 50%;
    transform: rotate(-15deg);
    z-index: 5;
}


/* =========================================
   WATCH
========================================= */

.trend-watch {
    position: absolute;

    z-index: 2;

    top: 38px;
    left: 50%;

    width: 170px;
    height: 260px;

    padding: 40px 16px;

    background: #181818;

    border-radius: 90px;

    transform:
        translateX(-50%)
        rotate(12deg);

    box-shadow:
        25px 30px 40px rgba(0,0,0,.15);
}

.trend-watch-face {
    height: 180px;

    background: #050505;

    border-radius: 50px;

    display: grid;
    place-items: center;

    color: white;

    font-family: var(--font-display);
}


/* =========================================
   HEADPHONE
========================================= */

.trend-headphone {
    top: 42%;
    left: 50%;

    width: 300px;
    height: 250px;

    transform: translate(-50%, -50%);
}


/* Headphone band */

.trend-headphone div {
    position: relative;

    width: 210px;
    height: 190px;

    border: 28px solid #171717;

    border-bottom: 0;

    border-radius:
        100px 100px 0 0;

    transform: translateY(-5px);
}


/* Left + right ear cups */

.trend-headphone div::before,
.trend-headphone div::after {
    content: "";

    position: absolute;

    bottom: -55px;

    width: 65px;
    height: 100px;

    background: #171717;

    border-radius: 20px;

    box-shadow:
        12px 15px 25px rgba(0,0,0,.12);
}

.trend-headphone div::before {
    left: -28px;
}

.trend-headphone div::after {
    right: -28px;
}


/* =========================================
   KEEP ART ABOVE BACKGROUND
========================================= */

.trend-shoe,
.trend-watch,
.trend-headphone {
    pointer-events: none;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .trending-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .trend-item {
        min-height: 360px;
    }
}


@media (max-width: 600px) {

    .trending-row {
        grid-template-columns: 1fr;
    }

    .trend-item {
        min-height: 390px;
    }

    .trend-headphone {
        transform:
            translate(-50%, -50%)
            scale(.9);
    }

    .trend-shoe {
        transform:
            translate(-50%, -50%)
            scale(.9);
    }

    .trend-watch {
        transform:
            translateX(-50%)
            rotate(12deg)
            scale(.9);
    }
}


/* =========================================
   REVIEWS
========================================= */

.reviews {
    display: grid;

    grid-template-columns: .75fr 1.25fr;

    gap: 10vw;

    background: #101010;

    color: white;
}

.reviews .eyebrow {
    color: #777;
}

.reviews h2 {
    font-family: var(--font-display);

    font-size: clamp(48px, 5vw, 72px);

    letter-spacing: -5px;

    line-height: .92;
}

.reviews-intro > p {
    color: #888;

    font-size: 13px;
    line-height: 1.7;

    max-width: 300px;

    margin-top: 25px;
}

.review-score {
    display: flex;
    gap: 20px;
    align-items: center;

    margin-top: 40px;
}

.review-score > strong {
    font-family: var(--font-display);
    font-size: 55px;
    letter-spacing: -4px;
}

.review-score span {
    display: block;

    color: #777;

    font-size: 15px;

    margin-top: 5px;
}

.stars {
    color: #f2c94c;
    letter-spacing: 3px;
    font-size: 17px;
}

.reviews-slider {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    align-self: center;
}

.review-card {
    min-height: 340px;

    padding: 25px;

    background: #1c1c1c;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-highlight {
    background: #d9d1ff;
    color: #101010;
    transform: translateY(35px);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    background: #333;

    border-radius: 50%;

    font-size: 10px;
    font-weight: 700;
}

.review-highlight .avatar {
    background: #101010;
    color: white;
}

.review-top strong {
    display: block;
    font-size: 15px;
}

.review-top span {
    display: block;

    font-size: 12px;

    color: #777;

    margin-top: 3px;
}

.review-top b {
    margin-left: auto;

    color: #f2c94c;

    font-size: 15px;
}

.review-card blockquote {
    font-family: var(--font-display);

    font-size: 22px;

    line-height: 1.2;

    letter-spacing: -1px;
}

.review-card small {
    font-size: 12px;
    color: #777;
}


/* =========================================
   NEWSLETTER
========================================= */

.newsletter {
    min-height: 620px;

    position: relative;

    display: grid;
    place-items: center;

    overflow: hidden;

    background: var(--purple);

    text-align: center;
}

.newsletter-content {
    position: relative;
    z-index: 3;

    max-width: 700px;
}

.newsletter .eyebrow {
    color: rgba(0,0,0,.5);
}

.newsletter h2 {
    font-family: var(--font-display);

    font-size: clamp(60px, 7vw, 100px);

    line-height: .85;

    letter-spacing: -7px;
}

.newsletter h2 em {
    color: white;
}

.newsletter p {
    max-width: 430px;

    margin: 30px auto;

    font-size: 13px;
    line-height: 1.7;

    color: rgba(0,0,0,.6);
}

.newsletter form {
    width: 100%;

    display: flex;

    background: rgba(255,255,255,.25);

    border: 1px solid rgba(255,255,255,.4);

    padding: 5px;

    border-radius: 100px;

    backdrop-filter: blur(15px);
}

.newsletter input {
    flex: 1;

    min-width: 0;

    border: 0;
    outline: 0;

    background: transparent;

    padding: 15px 20px;

    color: #101010;

    font-size: 12px;
}

.newsletter input::placeholder {
    color: rgba(0,0,0,.5);
}

.newsletter button {
    padding: 0 25px;

    border-radius: 100px;

    background: #101010;
    color: white;

    font-size: 11px;
    font-weight: 700;
}

#newsletterMessage {
    display: block;

    margin-top: 12px;

    font-size: 10px;
}

.newsletter-circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.25);
}

.circle-one {
    width: 500px;
    height: 500px;

    right: -120px;
    top: -160px;
}

.circle-two {
    width: 700px;
    height: 700px;

    left: -300px;
    bottom: -400px;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: #101010;
    color: white;

    padding: 80px 8vw 25px;
}

.footer-main {
    display: grid;

    grid-template-columns: 2fr repeat(3, 1fr);

    gap: 60px;

    padding-bottom: 80px;
}

.footer-brand p {
    max-width: 250px;

    color: #777;

    font-size: 13px;

    line-height: 1.7;

    margin-top: 20px;
}

.socials {
    display: flex;

    gap: 8px;

    margin-top: 30px;
}

.socials a {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 50%;

    font-size: 9px;

    transition: .3s;
}

.socials a:hover {
    background: white;
    color: black;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 13px;
}

.footer-column h4 {
    font-size: 12px;
    letter-spacing: 1.5px;

    color: #777;

    margin-bottom: 10px;
}

.footer-column a {
    font-size: 12px;

    color: #aaa;

    transition: .3s;
}

.footer-column a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);

    padding-top: 25px;

    display: flex;
    justify-content: space-between;

    color: #555;

    font-size: 11px;
    letter-spacing: 1px;
}


/* =========================================
   CART DRAWER
========================================= */

.cart-overlay {
    position: fixed;

    inset: 0;

    background: rgba(0,0,0,.45);

    backdrop-filter: blur(5px);

    z-index: 2000;

    opacity: 0;
    visibility: hidden;

    transition: .4s;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;

    top: 0;
    right: 0;

    width: min(450px, 100%);

    height: 100vh;

    background: #f4f3ef;

    z-index: 2001;

    transform: translateX(100%);

    transition: .5s cubic-bezier(.7,0,.2,1);

    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-header {
    padding: 30px;

    display: flex;
    justify-content: space-between;

    border-bottom: 1px solid var(--line);
}

.cart-header > div span {
    font-size: 11px;
    color: #888;
    letter-spacing: 1.5px;
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 23px;
    letter-spacing: -1px;
    margin-top: 5px;
}

.cart-header button,
.search-close,
.mobile-close {
    width: 35px;
    height: 35px;

    border-radius: 50%;

    background: white;

    font-size: 22px;

    display: grid;
    place-items: center;
}

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 20px 30px;
}

.empty-cart {
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.empty-icon {
    width: 70px;
    height: 70px;

    display: grid;
    place-items: center;

    background: white;

    border-radius: 50%;

    font-size: 30px;

    margin-bottom: 20px;
}

.empty-cart h3 {
    font-family: var(--font-display);
    font-size: 21px;
}

.empty-cart p {
    max-width: 250px;

    margin: 8px 0 20px;

    color: #888;

    font-size: 11px;
    line-height: 1.6;
}

.empty-cart button {
    background: #101010;
    color: white;

    padding: 13px 20px;

    border-radius: 100px;

    font-size: 10px;
    font-weight: 700;
}

.cart-product {
    display: flex;

    gap: 14px;

    padding: 12px 0;

    border-bottom: 1px solid var(--line);
}

.cart-product-image {
    width: 85px;
    height: 85px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    background: #d9d1ff;

    overflow: hidden;
}

.cart-product-image .product-object {
    transform: scale(.45);
}

.cart-product-info {
    flex: 1;
}

.cart-product-info h4 {
    font-family: var(--font-display);
    font-size: 15px;
}

.cart-product-info p {
    color: #888;
    font-size: 11px;
    margin-top: 4px;
}

.cart-product-bottom {
    margin-top: 12px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 9px;

    background: white;

    border-radius: 100px;

    padding: 4px 7px;
}

.quantity button {
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    background: transparent;
    font-size: 15px;
}

.quantity span {
    font-size: 11px;
    font-weight: 700;
}

.remove {
    background: transparent;
    color: #999;
    font-size: 12px;
    margin-top: 15px;
}

.cart-product-price {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
}

.cart-footer {
    padding: 25px 30px 30px;

    border-top: 1px solid var(--line);
}

.subtotal {
    display: flex;
    justify-content: space-between;

    font-size: 20px;
}

.subtotal strong {
    font-family: var(--font-display);
    font-size: 18px;
}

.cart-footer > p {
    color: #888;
    font-size: 11px;
    margin-top: 8px;
}

.checkout-btn {
    width: 100%;

    padding: 16px;

    margin-top: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #101010;
    color: white;

    border-radius: 100px;

    font-size: 12px;
    font-weight: 700;
}


/* =========================================
   SEARCH
========================================= */

.search-overlay {
    position: fixed;

    inset: 0;

    background: rgba(244,243,239,.96);

    backdrop-filter: blur(20px);

    z-index: 3000;

    opacity: 0;
    visibility: hidden;

    transition: .4s;
}

.search-overlay.open {
    opacity: 1;
    visibility: visible;
}

.search-close {
    position: absolute;

    right: 5vw;
    top: 30px;
}

.search-content {
    width: min(850px, 85%);

    margin: 16vh auto;
}

.search-content > span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #888;
}

.search-input-wrap {
    display: flex;

    margin-top: 15px;

    border-bottom: 2px solid #101010;
}

.search-input-wrap input {
    flex: 1;

    border: 0;
    outline: 0;

    background: transparent;

    padding: 20px 0;

    font-family: var(--font-display);

    font-size: clamp(30px, 5vw, 55px);

    letter-spacing: -3px;
}

.search-input-wrap button {
    background: transparent;

    font-size: 30px;
}

.search-suggestions {
    display: flex;

    gap: 8px;

    margin-top: 20px;

    flex-wrap: wrap;
}

.search-suggestions button {
    padding: 9px 13px;

    border: 1px solid #ddd;

    border-radius: 100px;

    background: white;

    font-size: 9px;
}

.search-results {
    margin-top: 40px;
}

.search-result {
    padding: 15px 0;

    display: flex;
    justify-content: space-between;

    border-bottom: 1px solid #ddd;
}

.search-result strong {
    font-family: var(--font-display);
}

.search-result span {
    font-size: 11px;
}


/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu {
    position: fixed;

    inset: 0;

    background: #101010;
    color: white;

    z-index: 2500;

    transform: translateY(-100%);

    transition: .5s cubic-bezier(.7,0,.2,1);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-close {
    position: absolute;

    top: 25px;
    right: 25px;

    background: #222;
    color: white;
}

.mobile-menu-inner {
    padding: 120px 30px;
}

.mobile-menu-inner > p {
    color: #777;
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

.mobile-menu-inner a {
    display: flex;
    justify-content: space-between;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255,255,255,.1);

    font-family: var(--font-display);

    font-size: 16px;

    letter-spacing: -2px;
}


/* =========================================
   TOAST
========================================= */

.toast {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 5000;

    padding: 12px 16px;

    display: flex;
    align-items: center;
    gap: 10px;

    background: #101010;
    color: white;

    border-radius: 100px;

    transform: translateY(120px);

    opacity: 0;

    transition: .4s;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast > span {
    width: 20px;
    height: 20px;

    display: grid;
    place-items: center;

    background: var(--green);
    color: #101010;

    border-radius: 50%;

    font-size: 10px;
}

.toast p {
    font-size: 10px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .hero {
        padding-left: 6vw;
        padding-right: 6vw;
    }

    .hero h1 {
        font-size: 80px;
    }

    .hero-product-image {
        transform: scale(.8);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 800px) {

    .nav-links {
        display: none;
    }

    .menu-btn {
        width: 40px;
        height: 40px;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;

        background: white;

        border-radius: 50%;
    }

    .menu-btn span {
        width: 15px;
        height: 1px;
        background: #101010;
    }

    .hero {
        grid-template-columns: 1fr;

        padding-top: 80px;
    }

    .hero-content {
        text-align: center;
        padding-bottom: 0;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-product {
        min-height: 480px;
    }

    .hero-product-image {
        transform: scale(.75);
    }

    .hero-bottom {
        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        margin-top: 20px;
    }

    .hero-stats {
        display: none;
    }

    .scroll-label {
        margin: auto;
    }

    .section {
        padding: 90px 6vw;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 20px;
    }

    .filter-tabs {
        margin-top: 25px;

        width: max-content;
        max-width: 100%;

        overflow-x: auto;
    }

    .bento-grid {
        grid-template-columns: 1fr;

        grid-template-rows: repeat(4, 330px);
    }

    .category-large {
        grid-row: auto;
    }

    .showcase {
        grid-template-columns: 1fr;
    }

    .showcase-image {
        min-height: 550px;
    }

    .showcase-content {
        padding: 80px 6vw;
    }

    .trending-row {
        grid-template-columns: 1fr;
    }

    .reviews {
        grid-template-columns: 1fr;
    }

    .reviews-slider {
        grid-template-columns: 1fr;
    }

    .review-highlight {
        transform: none;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 550px) {

    .announcement {
        font-size: 7px;
        gap: 10px;
    }

    .navbar {
        height: 68px;
        padding: 0 20px;
    }

    .logo {
        font-size: 24px;
    }

    .wishlist-nav {
        display: none;
    }

    .hero {
        padding: 70px 20px 30px;
    }

    .hero h1 {
        font-size: clamp(62px, 18vw, 90px);
        letter-spacing: -5px;
    }

    .hero-content > p {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 18px;
    }

    .hero-product {
        min-height: 390px;
    }

    .hero-product-image {
        transform: scale(.58);
    }

    .floating-card {
        transform: scale(.8);
    }

    .card-top {
        right: -10px;
    }

    .card-bottom {
        left: -10px;
    }

    .hero-orbit {
        transform: scale(.7);
    }

    .section-heading h2 {
        font-size: 52px;
        letter-spacing: -4px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 350px;
    }

    .newsletter {
        padding: 80px 20px;
    }

    .newsletter h2 {
        font-size: 65px;
        letter-spacing: -5px;
    }

    .newsletter form {
        border-radius: 20px;
        flex-direction: column;
        padding: 6px;
    }

    .newsletter input {
        width: 100%;
        padding: 15px;
    }

    .newsletter button {
        min-height: 45px;
    }

    .footer {
        padding: 60px 20px 20px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .mobile-menu-inner a {
        font-size: 16px;
    }

    .headphones-small {
        position: absolute;
        inset: 0;

        display: grid;
        place-items: center;

        transform: translateX(65px) scale(1);
    }

}


@media (min-width: 769px) {

    .hero {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .hero-content {
        grid-column: 1;
        grid-row: 1;
    }

    .hero-product {
        grid-column: 2;
        grid-row: 1;
    }

}