/* =========================================================
   IZIMBA COMMERCE
   GLOBAL STYLES
========================================================= */

:root {

    --black: #0a0a0a;
    --dark: #111111;
    --dark-soft: #181818;

    --white: #ffffff;
    --off-white: #f6f6f3;
    --light: #eeeeea;

    --gray-100: #e7e7e3;
    --gray-200: #d2d2cd;
    --gray-400: #8b8b85;
    --gray-600: #555550;
    --gray-800: #252522;

    --border-light: rgba(10, 10, 10, 0.11);
    --border-dark: rgba(255, 255, 255, 0.14);

    --max-width: 1380px;

    --transition: 0.35s cubic-bezier(.2,.8,.2,1);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    background: var(--off-white);
    color: var(--black);

    line-height: 1.6;

    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: none;
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    margin: 0 auto;
}


/* =========================================================
   PAGE LOADER
========================================================= */

.page-loader {
    position: fixed;
    inset: 0;

    z-index: 9999;

    background: var(--black);

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    color: white;

    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.24em;

    margin-left: 0.24em;
}

.loader-line {
    width: 150px;
    height: 1px;

    margin-top: 25px;

    background: rgba(255,255,255,.15);

    overflow: hidden;
}

.loader-line span {
    display: block;

    width: 50%;
    height: 100%;

    background: white;

    animation: loaderProgress 1.2s infinite ease-in-out;
}

@keyframes loaderProgress {

    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(300%);
    }

}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    background: #050505;
    color: rgba(255,255,255,.72);

    font-size: 11px;

    letter-spacing: .08em;
    text-transform: uppercase;
}

.top-bar-inner {
    min-height: 36px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-right {
    gap: 15px;
}

.top-bar a {
    transition: color var(--transition);
}

.top-bar a:hover {
    color: white;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: white;

    box-shadow:
        0 0 0 4px rgba(255,255,255,.07);

    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }

}

.top-divider {
    width: 1px;
    height: 13px;

    background: rgba(255,255,255,.2);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;

    z-index: 500;

    background: rgba(246,246,243,.92);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid transparent;

    transition:
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.site-header.scrolled {
    border-bottom-color: var(--border-light);

    box-shadow:
        0 10px 40px rgba(0,0,0,.06);
}

.header-inner {
    min-height: 84px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.brand {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    flex-shrink: 0;
}

.brand-mark {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    background: var(--black);
    color: white;

    font-size: 18px;
    font-weight: 900;

    transform: skew(-8deg);
}

.brand-name {
    font-size: 20px;
    font-weight: 900;

    letter-spacing: .18em;
}

.desktop-nav {
    display: flex;
    align-items: center;

    gap: 34px;
}

.nav-link {
    position: relative;

    font-size: 13px;
    font-weight: 600;

    color: #555;

    padding: 31px 0;

    transition: color var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 23px;

    width: 100%;
    height: 1px;

    background: var(--black);

    transform: scaleX(0);
    transform-origin: right;

    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--black);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-button,
.cart-button {
    position: relative;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    background: transparent;

    color: var(--black);

    transition:
        background var(--transition),
        transform var(--transition);
}

.icon-button:hover,
.cart-button:hover {
    background: white;
    transform: translateY(-2px);
}

.icon-button svg,
.cart-button svg {
    width: 19px;
    height: 19px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-count {
    position: absolute;

    top: 5px;
    right: 2px;

    min-width: 16px;
    height: 16px;

    padding: 0 4px;

    border-radius: 20px;

    background: var(--black);
    color: white;

    display: grid;
    place-items: center;

    font-size: 9px;
    font-weight: 800;

    transition: transform var(--transition);
}

.cart-count.bump {
    animation: cartBump .35s ease;
}

@keyframes cartBump {

    50% {
        transform: scale(1.5);
    }

}

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    background: transparent;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 5px;
}

.mobile-menu-button span {
    width: 21px;
    height: 1px;

    background: var(--black);

    transition: transform var(--transition);
}


/* =========================================================
   SEARCH
========================================================= */

.search-overlay {
    position: fixed;
    inset: 0;

    z-index: 800;

    background: rgba(8,8,8,.94);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}

.search-overlay.open {
    opacity: 1;
    visibility: visible;
}

.search-overlay-inner {
    width: min(760px, calc(100% - 40px));

    text-align: center;
}

.search-overlay h2 {
    margin: 18px 0 30px;

    font-size: clamp(36px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -.05em;
}

.search-field-wrapper {
    display: flex;

    border-bottom: 1px solid rgba(255,255,255,.35);

    margin-bottom: 20px;
}

.search-field-wrapper input {
    width: 100%;

    background: transparent;
    border: none;
    outline: none;

    color: white;

    font-size: 24px;

    padding: 16px 0;
}

.search-field-wrapper input::placeholder {
    color: rgba(255,255,255,.35);
}

.search-field-wrapper button {
    background: transparent;
    color: white;

    font-weight: 700;

    padding: 0 8px;
}

.search-overlay p {
    color: rgba(255,255,255,.55);
}

.close-search {
    position: fixed;

    top: 30px;
    right: 35px;

    width: 48px;
    height: 48px;

    background: rgba(255,255,255,.08);

    color: white;

    border-radius: 50%;

    font-size: 28px;

    transition:
        background var(--transition),
        transform var(--transition);
}

.close-search:hover {
    background: rgba(255,255,255,.16);
    transform: rotate(90deg);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;

    z-index: 900;

    width: min(420px, 100%);

    background: var(--black);

    color: white;

    padding: 30px;

    transform: translateX(100%);

    transition: transform .5s cubic-bezier(.2,.8,.2,1);

    display: flex;
    flex-direction: column;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 60px;
}

.mobile-menu-header button {
    background: transparent;

    color: white;

    font-size: 32px;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;

    gap: 24px;
}

.mobile-menu nav a {
    font-size: 32px;
    font-weight: 700;

    letter-spacing: -.04em;

    color: rgba(255,255,255,.65);

    transition: color var(--transition);
}

.mobile-menu nav a:hover {
    color: white;
}

.mobile-menu-footer {
    margin-top: auto;

    padding-top: 30px;

    border-top: 1px solid rgba(255,255,255,.14);

    display: flex;
    flex-direction: column;

    gap: 5px;
}

.mobile-menu-footer span {
    color: rgba(255,255,255,.4);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.mobile-menu-footer a {
    font-size: 16px;
}


/* =========================================================
   GENERAL
========================================================= */

.section-padding {
    padding: 130px 0;
}

.section-light {
    background: var(--off-white);
}

.section-dark {
    position: relative;

    background: var(--black);
    color: white;

    overflow: hidden;
}

.eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .17em;

    color: var(--gray-600);
}

.eyebrow::before {
    content: "";

    width: 24px;
    height: 1px;

    background: currentColor;
}

.eyebrow.light {
    color: rgba(255,255,255,.55);
}

.section-heading {
    margin-bottom: 65px;
}

.section-heading h2 {
    max-width: 780px;

    margin-top: 17px;

    font-size: clamp(46px, 6vw, 88px);

    line-height: .98;

    letter-spacing: -.065em;
}

.section-heading h2 span {
    color: var(--gray-400);
}

.split-heading {
    display: grid;

    grid-template-columns: 1.5fr .65fr;

    gap: 80px;

    align-items: end;
}

.heading-side-text {
    padding-bottom: 10px;
}

.heading-side-text p {
    color: var(--gray-600);

    font-size: 16px;

    margin-bottom: 25px;
}

.text-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    font-weight: 800;

    font-size: 13px;

    border-bottom: 1px solid var(--black);

    padding-bottom: 5px;
}

.text-link span {
    transition: transform var(--transition);
}

.text-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 25px;

    padding: 0 25px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .04em;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition);
}

.btn span {
    font-size: 18px;

    transition: transform var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:hover span {
    transform: translateX(5px);
}

.btn-primary {
    background: white;
    color: var(--black);
}

.btn-primary:hover {
    background: var(--off-white);
}

.btn-outline-light {
    border: 1px solid rgba(255,255,255,.3);
    color: white;
}

.btn-outline-light:hover {
    border-color: white;
    background: rgba(255,255,255,.06);
}

.btn-dark {
    background: var(--black);
    color: white;
}

.btn-dark:hover {
    background: #252525;
}

.full-button {
    width: 100%;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 780px;

    display: flex;
    align-items: center;

    position: relative;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;

    opacity: .08;

    background-image:
        linear-gradient(
            rgba(255,255,255,.3) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.3) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 80%
        );
}

.hero-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .12;
}

.hero-glow-one {
    top: 15%;
    right: 5%;

    background: white;
}

.hero-glow-two {
    bottom: -30%;
    left: 20%;

    background: #777;
}

.hero-container {
    width: min(
        calc(100% - 48px),
        1380px
    );

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    gap: 80px;

    align-items: center;

    position: relative;

    z-index: 2;
}

.hero-content {
    padding: 80px 0;
}

.hero-label {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .16em;

    color: rgba(255,255,255,.55);

    margin-bottom: 25px;
}

.hero-label span {
    width: 8px;
    height: 8px;

    background: white;

    border-radius: 50%;
}

.hero h1 {
    max-width: 800px;

    font-size: clamp(58px, 7vw, 105px);

    line-height: .91;

    letter-spacing: -.075em;

    font-weight: 800;
}

.hero h1 span {
    color: #777;
}

.hero-description {
    max-width: 580px;

    color: rgba(255,255,255,.55);

    font-size: 17px;

    line-height: 1.8;

    margin-top: 35px;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 38px;
}

.hero-trust {
    display: flex;

    gap: 42px;

    margin-top: 70px;

    padding-top: 28px;

    border-top: 1px solid rgba(255,255,255,.12);
}

.trust-item {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.trust-item strong {
    font-size: 11px;

    color: rgba(255,255,255,.35);

    letter-spacing: .1em;
}

.trust-item span {
    font-size: 12px;

    color: rgba(255,255,255,.72);
}

.hero-visual {
    position: relative;

    min-height: 560px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.hero-card-main {
    position: relative;

    width: min(440px, 80%);

    aspect-ratio: .84;

    border: 1px solid rgba(255,255,255,.16);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.015)
        );

    backdrop-filter: blur(20px);

    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transform: rotate(4deg);

    animation: heroCardFloat 6s ease-in-out infinite;
}

@keyframes heroCardFloat {

    0%, 100% {
        transform: rotate(4deg) translateY(0);
    }

    50% {
        transform: rotate(2deg) translateY(-15px);
    }

}

.hero-card-top {
    display: flex;
    justify-content: space-between;

    color: rgba(255,255,255,.7);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .12em;
}

.hero-card-status {
    color: rgba(255,255,255,.35);
}

.hero-orbit {
    position: relative;

    width: 260px;
    height: 260px;

    margin: auto;
}

.orbit-ring {
    position: absolute;

    inset: 0;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 50%;
}

.orbit-ring-one {
    transform: rotate(45deg) scaleY(.48);

    animation: orbitRotate 10s linear infinite;
}

.orbit-ring-two {
    transform: rotate(-45deg) scaleY(.48);

    animation: orbitRotateReverse 14s linear infinite;
}

@keyframes orbitRotate {

    to {
        transform: rotate(405deg) scaleY(.48);
    }

}

@keyframes orbitRotateReverse {

    to {
        transform: rotate(-405deg) scaleY(.48);
    }

}

.orbit-center {
    position: absolute;

    width: 92px;
    height: 92px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: white;

    color: black;

    display: grid;
    place-items: center;

    font-size: 38px;
    font-weight: 900;

    box-shadow:
        0 0 80px rgba(255,255,255,.16);
}

.hero-card-bottom {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.1);
}

.hero-card-bottom small {
    display: block;

    color: rgba(255,255,255,.35);

    font-size: 10px;

    margin-bottom: 5px;
}

.hero-card-bottom strong {
    font-size: 18px;
}

.hero-arrow {
    width: 42px;
    height: 42px;

    border: 1px solid rgba(255,255,255,.18);

    display: grid;
    place-items: center;

    border-radius: 50%;
}

.floating-card {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    background: white;
    color: black;

    padding: 12px 17px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.3);

    animation: floatingCard 5s ease-in-out infinite;
}

.floating-card-one {
    left: 0;
    top: 24%;

    transform: rotate(-5deg);
}

.floating-card-two {
    right: -10px;
    bottom: 23%;

    transform: rotate(5deg);

    animation-delay: -2s;
}

@keyframes floatingCard {

    0%, 100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -10px;
    }

}

.floating-icon {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    background: black;
    color: white;

    font-size: 9px;
    font-weight: 800;
}

.floating-card strong {
    display: block;

    font-size: 12px;
}

.floating-card small {
    display: block;

    color: #777;

    font-size: 10px;
}

.hero-scroll {
    position: absolute;

    left: 50%;
    bottom: 30px;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,.3);

    font-size: 8px;

    letter-spacing: .16em;
}

.scroll-line {
    width: 1px;
    height: 38px;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,.5),
        transparent
    );

    animation: scrollLine 1.8s infinite;
}

@keyframes scrollLine {

    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }

}


/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
    background: white;

    border-bottom: 1px solid var(--border-light);
}

.trust-strip-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.trust-strip-item {
    min-height: 115px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 20px 25px;

    border-right: 1px solid var(--border-light);
}

.trust-strip-item:last-child {
    border-right: none;
}

.trust-number {
    font-size: 10px;
    font-weight: 900;

    color: #999;
}

.trust-strip-item strong {
    display: block;

    font-size: 12px;
}

.trust-strip-item small {
    display: block;

    color: #999;

    font-size: 10px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-stats {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stat-card {
    min-height: 280px;

    padding: 30px;

    border-right: 1px solid var(--border-light);

    display: flex;
    flex-direction: column;

    transition:
        background var(--transition),
        color var(--transition);
}

.stat-card:last-child {
    border-right: none;
}

.stat-card:hover {
    background: white;
}

.stat-card-dark {
    background: var(--black);
    color: white;
}

.stat-card-dark:hover {
    background: #181818;
}

.stat-index {
    font-size: 10px;

    color: #999;

    margin-bottom: auto;
}

.stat-card strong {
    font-size: 27px;

    letter-spacing: -.04em;

    margin-bottom: 10px;
}

.stat-card p {
    color: var(--gray-600);

    font-size: 13px;
}

.stat-card-dark p {
    color: rgba(255,255,255,.45);
}


/* =========================================================
   SHOP
========================================================= */

.shop-section {
    padding: 130px 0;
}

.shop-heading {
    display: grid;

    grid-template-columns: 1.2fr .6fr;

    gap: 80px;

    align-items: end;
}

.shop-heading p {
    color: var(--gray-600);

    font-size: 15px;
}

.shop-toolbar {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 35px;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--border-light);
}

.category-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}

.category-btn {
    background: transparent;

    border: 1px solid var(--border-light);

    color: #666;

    padding: 10px 16px;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .08em;

    transition: all var(--transition);
}

.category-btn:hover,
.category-btn.active {
    background: var(--black);
    color: white;

    border-color: var(--black);
}

.results-count {
    color: #999;

    font-size: 11px;

    white-space: nowrap;
}

.products-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.product-card {
    background: white;

    border: 1px solid var(--border-light);

    overflow: hidden;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 25px 70px rgba(0,0,0,.08);
}

.product-card.hidden {
    display: none;
}

.product-image {
    height: 400px;

    position: relative;

    overflow: hidden;

    display: grid;
    place-items: center;
}

.product-image-one {
    background:
        linear-gradient(
            145deg,
            #dadad6,
            #f7f7f4
        );
}

.product-image-two {
    background:
        linear-gradient(
            145deg,
            #cfcfcb,
            #eeeeeb
        );
}

.product-image-three {
    background:
        linear-gradient(
            145deg,
            #e1e1dd,
            #c9c9c5
        );
}

.product-image-four {
    background:
        linear-gradient(
            145deg,
            #d7d7d2,
            #f2f2ef
        );
}

.product-image-five {
    background:
        linear-gradient(
            145deg,
            #c8c8c3,
            #e6e6e2
        );
}

.product-image-six {
    background:
        linear-gradient(
            145deg,
            #e5e5e1,
            #ccccca
        );
}

.product-badge {
    position: absolute;

    top: 18px;
    left: 18px;

    background: var(--black);
    color: white;

    padding: 7px 10px;

    font-size: 8px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .1em;

    z-index: 3;
}

.product-number {
    position: absolute;

    right: 18px;
    top: 18px;

    color: rgba(0,0,0,.35);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .1em;
}

.product-shape {
    width: 190px;
    height: 240px;

    background: #222;

    box-shadow:
        25px 30px 70px rgba(0,0,0,.25);

    position: relative;

    transition:
        transform .8s cubic-bezier(.2,.8,.2,1);
}

.product-card:hover .product-shape {
    transform: translateY(-15px) rotate(-5deg);
}

.shape-inner {
    position: absolute;

    inset: 18px;

    border: 1px solid rgba(255,255,255,.25);
}

.desk-shape {
    width: 220px;
    height: 170px;

    background: #333;

    display: flex;

    align-items: flex-end;

    gap: 9px;

    padding: 20px;
}

.desk-shape div {
    flex: 1;

    height: 70%;

    background: #888;
}

.desk-shape div:nth-child(2) {
    height: 95%;
}

.desk-shape div:nth-child(3) {
    height: 55%;
}

.travel-shape {
    width: 210px;
    height: 160px;

    border-radius: 18px;

    background: #262626;
}

.travel-handle {
    position: absolute;

    width: 80px;
    height: 35px;

    border: 10px solid #222;

    border-bottom: 0;

    border-radius: 30px 30px 0 0;

    top: -27px;
    left: 65px;
}

.tray-shape {
    width: 230px;
    height: 90px;

    border-radius: 8px;

    background: #292929;

    box-shadow:
        25px 35px 60px rgba(0,0,0,.2);
}

.tray-shape::before {
    content: "";

    position: absolute;

    inset: 15px;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 5px;
}

.home-shape {
    width: 210px;
    height: 210px;

    background: #252525;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;
}

.home-shape span {
    width: 60px;
    height: 130px;

    background: #777;
}

.home-shape span:first-child {
    transform: translateY(20px);
}

.kit-shape {
    width: 180px;
    height: 200px;

    background: transparent;

    box-shadow: none;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;
}

.kit-shape span {
    width: 48px;
    height: 140px;

    background: #262626;

    box-shadow:
        10px 20px 30px rgba(0,0,0,.18);
}

.kit-shape span:nth-child(2) {
    height: 180px;
}

.kit-shape span:nth-child(3) {
    height: 110px;
}

.quick-view {
    position: absolute;

    bottom: 18px;
    left: 18px;
    right: 18px;

    height: 45px;

    background: rgba(255,255,255,.92);

    backdrop-filter: blur(10px);

    color: black;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .1em;

    transform: translateY(80px);

    transition: transform var(--transition);
}

.product-card:hover .quick-view {
    transform: translateY(0);
}

.product-info {
    padding: 25px;
}

.product-meta {
    display: flex;
    justify-content: space-between;

    color: #999;

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .1em;

    margin-bottom: 10px;
}

.product-info h3 {
    font-size: 21px;

    letter-spacing: -.04em;
}

.product-info p {
    color: #777;

    font-size: 12px;

    margin-top: 7px;

    min-height: 42px;
}

.product-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 22px;

    padding-top: 18px;

    border-top: 1px solid var(--border-light);
}

.product-bottom strong {
    font-size: 17px;
}

.add-cart {
    background: transparent;

    color: black;

    font-size: 10px;
    font-weight: 800;

    display: flex;

    align-items: center;

    gap: 9px;
}

.add-cart span {
    width: 28px;
    height: 28px;

    border: 1px solid #ccc;

    display: grid;
    place-items: center;

    border-radius: 50%;

    transition:
        background var(--transition),
        color var(--transition);
}

.add-cart:hover span {
    background: black;
    color: white;
}

.empty-products {
    display: none;

    text-align: center;

    padding: 80px 20px;

    border: 1px dashed var(--border-light);
}

.empty-products.show {
    display: block;
}

.empty-products strong {
    font-size: 22px;
}

.empty-products p {
    color: #888;
    margin-top: 7px;
}


/* =========================================================
   STATEMENT
========================================================= */

.statement-section {
    padding: 150px 0;
}

.statement-grid {
    position: absolute;
    inset: 0;

    opacity: .1;

    background:
        linear-gradient(
            90deg,
            transparent 49.8%,
            white 50%,
            transparent 50.2%
        ),
        linear-gradient(
            transparent 49.8%,
            white 50%,
            transparent 50.2%
        );

    background-size: 100px 100px;

    mask-image:
        radial-gradient(
            circle,
            black,
            transparent 70%
        );
}

.statement-container {
    position: relative;
    z-index: 2;
}

.statement-container h2 {
    max-width: 1000px;

    margin-top: 20px;

    font-size: clamp(55px, 8vw, 115px);

    line-height: .9;

    letter-spacing: -.08em;
}

.statement-container h2 span {
    color: #666;
}

.statement-bottom {
    max-width: 1000px;

    display: flex;
    justify-content: space-between;

    align-items: flex-end;

    gap: 60px;

    margin-top: 80px;

    padding-top: 30px;

    border-top: 1px solid rgba(255,255,255,.13);
}

.statement-bottom p {
    max-width: 560px;

    color: rgba(255,255,255,.48);

    font-size: 16px;
}

.statement-mark {
    font-size: 90px;
    font-weight: 900;

    color: rgba(255,255,255,.08);

    line-height: .7;
}


/* =========================================================
   PROCESS
========================================================= */

.process-grid {
    display: grid;

    grid-template-columns: 1fr auto 1fr auto 1fr;

    gap: 30px;

    align-items: stretch;
}

.process-item {
    min-height: 340px;

    padding: 28px;

    background: white;

    border: 1px solid var(--border-light);

    display: flex;
    flex-direction: column;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.process-item:hover {
    transform: translateY(-7px);

    box-shadow:
        0 25px 70px rgba(0,0,0,.07);
}

.process-number {
    font-size: 10px;

    color: #999;

    font-weight: 800;
}

.process-icon {
    width: 55px;
    height: 55px;

    margin-top: auto;
    margin-bottom: 25px;

    background: var(--black);
    color: white;

    display: grid;
    place-items: center;

    border-radius: 50%;

    font-size: 20px;

    transition: transform .5s ease;
}

.process-item:hover .process-icon {
    transform: rotate(45deg);
}

.process-item h3 {
    font-size: 26px;

    letter-spacing: -.05em;
}

.process-item p {
    color: #777;

    font-size: 13px;

    margin-top: 8px;
}

.process-line {
    width: 35px;
    height: 1px;

    background: #ccc;

    align-self: center;
}


/* =========================================================
   SHIPPING
========================================================= */

.shipping-section {
    padding: 130px 0;

    background: white;

    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.shipping-layout {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 120px;
}

.shipping-intro h2 {
    font-size: clamp(48px, 6vw, 78px);

    line-height: .95;

    letter-spacing: -.07em;

    margin-top: 18px;
}

.shipping-intro h2 span {
    color: #999;
}

.shipping-intro p {
    color: #777;

    max-width: 430px;

    font-size: 15px;

    margin: 30px 0;
}

.shipping-details {
    border-top: 1px solid var(--border-light);
}

.shipping-row {
    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 25px;

    padding: 30px 0;

    border-bottom: 1px solid var(--border-light);
}

.shipping-index {
    font-size: 10px;

    color: #999;

    font-weight: 800;
}

.shipping-row h3 {
    font-size: 20px;

    letter-spacing: -.04em;
}

.shipping-row p {
    max-width: 600px;

    color: #777;

    font-size: 13px;

    margin-top: 5px;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience-section {
    padding: 130px 0;
}

.experience-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;
}

.experience-main h2 {
    font-size: clamp(50px, 6vw, 82px);

    line-height: .94;

    letter-spacing: -.07em;

    margin-top: 20px;
}

.experience-main h2 span {
    color: #666;
}

.experience-main > p {
    max-width: 530px;

    color: rgba(255,255,255,.45);

    font-size: 15px;

    margin-top: 35px;
}

.experience-list {
    border-top: 1px solid rgba(255,255,255,.13);
}

.experience-item {
    display: grid;

    grid-template-columns: 50px 1fr;

    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid rgba(255,255,255,.13);
}

.experience-item > span {
    font-size: 10px;

    color: rgba(255,255,255,.3);
}

.experience-item strong {
    font-size: 18px;
}

.experience-item p {
    color: rgba(255,255,255,.4);

    font-size: 12px;

    margin-top: 4px;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.centered {
    text-align: center;
}

.centered h2 {
    margin-left: auto;
    margin-right: auto;
}

.testimonial-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.testimonial-card {
    background: white;

    border: 1px solid var(--border-light);

    padding: 35px;

    min-height: 330px;

    display: flex;
    flex-direction: column;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.07);
}

.testimonial-featured {
    background: var(--black);
    color: white;
}

.quote-mark {
    font-size: 55px;

    line-height: .6;

    color: #999;

    margin-bottom: 35px;
}

.testimonial-card p {
    font-size: 16px;

    line-height: 1.7;

    max-width: 420px;
}

.testimonial-author {
    margin-top: auto;

    padding-top: 25px;

    border-top: 1px solid var(--border-light);

    display: flex;
    align-items: center;

    gap: 12px;
}

.testimonial-featured .testimonial-author {
    border-top-color: rgba(255,255,255,.15);
}

.author-circle {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #ddd;

    color: black;

    font-size: 11px;
    font-weight: 800;
}

.testimonial-author strong {
    display: block;

    font-size: 11px;
}

.testimonial-author small {
    color: #999;

    font-size: 9px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    padding: 130px 0;

    background: white;
}

.faq-layout {
    display: grid;

    grid-template-columns: .7fr 1.3fr;

    gap: 120px;
}

.faq-intro h2 {
    font-size: clamp(50px, 6vw, 78px);

    line-height: .94;

    letter-spacing: -.07em;

    margin-top: 18px;
}

.faq-intro h2 span {
    color: #999;
}

.faq-intro p {
    max-width: 380px;

    color: #777;

    font-size: 14px;

    margin: 28px 0;
}

.faq-list {
    border-top: 1px solid var(--border-light);
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;

    background: transparent;

    padding: 25px 0;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    text-align: left;

    font-size: 16px;
    font-weight: 700;

    color: black;
}

.faq-plus {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    border: 1px solid #ddd;

    border-radius: 50%;

    display: grid;
    place-items: center;

    font-size: 20px;
    font-weight: 300;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition);
}

.faq-item.open .faq-plus {
    transform: rotate(45deg);

    background: black;
    color: white;
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height .5s ease;
}

.faq-answer p {
    max-width: 700px;

    color: #777;

    font-size: 13px;

    padding: 0 45px 25px 0;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter-section {
    padding: 100px 0;

    background: var(--off-white);
}

.newsletter-box {
    position: relative;

    overflow: hidden;

    background: var(--black);
    color: white;

    padding: 65px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.newsletter-decoration {
    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;

    right: -200px;
    top: -220px;
}

.newsletter-decoration::before,
.newsletter-decoration::after {
    content: "";

    position: absolute;

    inset: 50px;

    border: 1px solid rgba(255,255,255,.06);

    border-radius: 50%;
}

.newsletter-decoration::after {
    inset: 110px;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-content h2 {
    font-size: clamp(45px, 5vw, 70px);

    line-height: .94;

    letter-spacing: -.07em;

    margin-top: 18px;
}

.newsletter-content p {
    color: rgba(255,255,255,.45);

    margin-top: 20px;

    font-size: 14px;
}

.newsletter-form {
    position: relative;
    z-index: 2;
}

.newsletter-form label {
    display: block;

    color: rgba(255,255,255,.55);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .12em;

    margin-bottom: 10px;
}

.newsletter-input {
    display: flex;

    border-bottom: 1px solid rgba(255,255,255,.35);
}

.newsletter-input input {
    width: 100%;

    background: transparent;

    border: none;
    outline: none;

    color: white;

    padding: 16px 0;

    font-size: 15px;
}

.newsletter-input input::placeholder {
    color: rgba(255,255,255,.25);
}

.newsletter-input button {
    background: transparent;

    color: white;

    display: flex;
    align-items: center;

    gap: 15px;

    font-weight: 800;

    white-space: nowrap;
}

.newsletter-input button span {
    transition: transform var(--transition);
}

.newsletter-input button:hover span {
    transform: translateX(5px);
}

.newsletter-form small {
    display: block;

    color: rgba(255,255,255,.3);

    font-size: 9px;

    margin-top: 12px;
}


/* =========================================================
   LOCATION
========================================================= */

.location-section {
    background: white;
}

.location-grid {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 80px;

    align-items: stretch;
}

.location-content h2 {
    font-size: clamp(48px, 6vw, 76px);

    line-height: .95;

    letter-spacing: -.07em;

    margin-top: 18px;
}

.location-content h2 span {
    color: #999;
}

.location-content > p {
    max-width: 480px;

    color: #777;

    font-size: 15px;

    margin-top: 30px;
}

.address-card {
    display: flex;

    align-items: center;

    gap: 17px;

    padding: 25px;

    margin-top: 35px;

    background: var(--off-white);

    border: 1px solid var(--border-light);
}

.address-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    background: black;
    color: white;

    border-radius: 50%;

    font-size: 20px;
}

.address-card span {
    display: block;

    color: #999;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;

    margin-bottom: 5px;
}

.address-card strong {
    font-size: 13px;

    line-height: 1.5;
}

.location-contact {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

    margin-top: 25px;
}

.location-contact span {
    display: block;

    color: #999;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;

    margin-bottom: 6px;
}

.location-contact a {
    font-size: 12px;
    font-weight: 700;

    border-bottom: 1px solid #bbb;

    padding-bottom: 3px;
}

.map-container {
    position: relative;

    min-height: 520px;

    overflow: hidden;

    background: #ddd;
}

.map-container iframe {
    width: 100%;
    height: 100%;

    min-height: 520px;

    border: 0;

    filter:
        grayscale(1)
        contrast(1.05);
}

.map-overlay-card {
    position: absolute;

    left: 20px;
    bottom: 20px;

    background: white;

    padding: 15px 18px;

    display: flex;
    align-items: center;

    gap: 10px;

    box-shadow:
        0 15px 50px rgba(0,0,0,.15);
}

.map-dot {
    width: 9px;
    height: 9px;

    background: black;

    border-radius: 50%;

    box-shadow:
        0 0 0 6px rgba(0,0,0,.08);
}

.map-overlay-card strong {
    display: block;

    font-size: 11px;
}

.map-overlay-card small {
    display: block;

    color: #888;

    font-size: 9px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    padding: 130px 0;
}

.contact-header {
    margin-bottom: 80px;
}

.contact-header h2 {
    max-width: 900px;

    font-size: clamp(55px, 7vw, 95px);

    line-height: .92;

    letter-spacing: -.075em;

    margin-top: 18px;
}

.contact-header h2 span {
    color: #666;
}

.contact-grid {
    display: grid;

    grid-template-columns: .65fr 1.35fr;

    gap: 120px;
}

.contact-lead {
    color: rgba(255,255,255,.48);

    font-size: 15px;

    max-width: 390px;

    margin-bottom: 45px;
}

.contact-method {
    padding: 20px 0;

    border-top: 1px solid rgba(255,255,255,.13);
}

.contact-method span {
    display: block;

    color: rgba(255,255,255,.3);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .14em;

    margin-bottom: 7px;
}

.contact-method a,
.contact-method p {
    color: rgba(255,255,255,.8);

    font-size: 14px;
}

.contact-method a {
    transition: color var(--transition);
}

.contact-method a:hover {
    color: white;
}

.contact-form-wrapper {
    background: #151515;

    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 22px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.form-group label {
    color: rgba(255,255,255,.45);

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .12em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    background: transparent;

    color: white;

    border: 1px solid rgba(255,255,255,.13);

    outline: none;

    padding: 14px 15px;

    font-size: 13px;

    transition:
        border-color var(--transition),
        background var(--transition);
}

.form-group textarea {
    resize: vertical;
}

.form-group select option {
    background: #111;
    color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(255,255,255,.5);

    background: rgba(255,255,255,.03);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,.22);
}

.form-note {
    color: rgba(255,255,255,.3);

    font-size: 10px;

    margin-top: -5px;
}


/* =========================================================
   LEGAL
========================================================= */

.legal-section {
    background: var(--off-white);
}

.legal-header {
    max-width: 850px;

    margin-bottom: 60px;
}

.legal-header h2 {
    font-size: clamp(48px, 6vw, 78px);

    line-height: .95;

    letter-spacing: -.07em;

    margin-top: 18px;
}

.legal-header h2 span {
    color: #999;
}

.legal-header p {
    color: #777;

    max-width: 650px;

    margin-top: 22px;

    font-size: 14px;
}

.legal-card {
    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 45px;

    padding: 50px 0;

    border-top: 1px solid var(--border-light);
}

.legal-card-number {
    font-size: 11px;
    font-weight: 800;

    color: #999;
}

.legal-card-content {
    max-width: 850px;
}

.legal-card-content h3 {
    font-size: 32px;

    letter-spacing: -.05em;

    margin-bottom: 8px;
}

.legal-updated {
    color: #999;

    font-size: 10px;

    margin-bottom: 25px;
}

.legal-card-content p {
    color: #666;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 18px;
}

.legal-card-content h4 {
    font-size: 15px;

    margin: 28px 0 7px;
}

.legal-card-content a {
    font-weight: 700;

    border-bottom: 1px solid #aaa;
}

.business-info-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    margin-top: 30px;
}

.business-info-grid div {
    padding-top: 15px;

    border-top: 1px solid var(--border-light);
}

.business-info-grid span {
    display: block;

    color: #999;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;

    margin-bottom: 6px;
}

.business-info-grid strong {
    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    padding: 140px 0;

    text-align: center;
}

.final-cta-pattern {
    position: absolute;

    inset: 0;

    opacity: .08;

    background:
        radial-gradient(
            circle at center,
            white 1px,
            transparent 1px
        );

    background-size: 30px 30px;
}

.final-cta-container {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    max-width: 900px;

    margin: 20px auto 35px;

    font-size: clamp(58px, 8vw, 110px);

    line-height: .9;

    letter-spacing: -.08em;
}

.final-cta h2 span {
    color: #666;
}


/* =========================================================
   CART
========================================================= */

.cart-overlay {
    position: fixed;

    inset: 0;

    z-index: 1000;

    background: rgba(0,0,0,.55);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;

    z-index: 1100;

    width: min(500px, 100%);

    background: var(--off-white);

    transform: translateX(100%);

    transition:
        transform .5s cubic-bezier(.2,.8,.2,1);

    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    padding: 30px;

    border-bottom: 1px solid var(--border-light);
}

.cart-header h3 {
    font-size: 30px;

    letter-spacing: -.05em;

    margin-top: 5px;
}

.cart-header button {
    width: 42px;
    height: 42px;

    background: transparent;

    font-size: 28px;
}

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 25px 30px;
}

.empty-cart {
    min-height: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;
}

.empty-cart-icon {
    width: 70px;
    height: 70px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: black;
    color: white;

    font-size: 20px;
    font-weight: 800;

    margin-bottom: 20px;
}

.empty-cart h4 {
    font-size: 20px;
}

.empty-cart p {
    color: #888;

    font-size: 12px;

    max-width: 280px;

    margin: 7px 0 20px;
}

.cart-item {
    display: grid;

    grid-template-columns: 75px 1fr auto;

    gap: 15px;

    padding: 15px 0;

    border-bottom: 1px solid var(--border-light);
}

.cart-item-image {
    width: 75px;
    height: 75px;

    background:
        linear-gradient(
            145deg,
            #d5d5d0,
            #eeeeea
        );

    display: grid;
    place-items: center;
}

.cart-item-image span {
    width: 35px;
    height: 45px;

    background: #222;
}

.cart-item-info h4 {
    font-size: 13px;

    margin-bottom: 4px;
}

.cart-item-info p {
    color: #888;

    font-size: 11px;
}

.quantity-controls {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 10px;
}

.quantity-controls button {
    width: 23px;
    height: 23px;

    background: white;

    border: 1px solid #ddd;

    border-radius: 50%;

    font-size: 13px;
}

.quantity-controls span {
    font-size: 11px;
}

.cart-item-price {
    font-size: 12px;
    font-weight: 800;
}

.remove-item {
    background: transparent;

    color: #999;

    font-size: 10px;

    margin-top: 5px;
}

.cart-footer {
    padding: 25px 30px;

    border-top: 1px solid var(--border-light);

    background: white;
}

.cart-total {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 18px;
}

.cart-total span {
    color: #888;

    font-size: 12px;
}

.cart-total strong {
    font-size: 21px;
}

.checkout-button {
    width: 100%;

    height: 55px;

    background: black;
    color: white;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 20px;

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .08em;

    transition: background var(--transition);
}

.checkout-button:hover {
    background: #292929;
}

.checkout-button span {
    font-size: 17px;
}

.cart-footer > small {
    display: block;

    color: #aaa;

    font-size: 8px;

    text-align: center;

    margin-top: 10px;
}


/* =========================================================
   QUICK VIEW MODAL
========================================================= */

.modal-overlay {
    position: fixed;

    inset: 0;

    z-index: 1200;

    background: rgba(0,0,0,.7);

    display: grid;
    place-items: center;

    padding: 25px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.quick-view-modal {
    width: min(850px, 100%);

    background: var(--off-white);

    display: grid;

    grid-template-columns: 1fr 1fr;

    position: relative;

    transform: translateY(30px);

    transition: transform .4s ease;
}

.modal-overlay.open .quick-view-modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 3;

    width: 40px;
    height: 40px;

    background: white;

    border-radius: 50%;

    font-size: 23px;
}

.quick-view-image {
    min-height: 500px;

    background:
        linear-gradient(
            145deg,
            #d4d4d0,
            #f0f0ed
        );

    display: grid;
    place-items: center;

    position: relative;
}

.quick-view-image::after {
    content: "";

    width: 180px;
    height: 230px;

    background: #222;

    box-shadow:
        25px 30px 70px rgba(0,0,0,.2);

    transform: rotate(-5deg);
}

.quick-view-image > span {
    position: absolute;

    left: 20px;
    top: 20px;

    font-size: 10px;

    color: #888;

    z-index: 2;
}

.quick-view-content {
    padding: 60px 45px;

    display: flex;
    flex-direction: column;

    justify-content: center;
}

.quick-view-content h2 {
    font-size: 42px;

    line-height: .98;

    letter-spacing: -.06em;

    margin: 15px 0;
}

.quick-view-content > p {
    color: #777;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 25px;
}

.quick-view-price {
    font-size: 24px;
    font-weight: 800;

    margin-bottom: 25px;
}


/* =========================================================
   COOKIE
========================================================= */

.cookie-notice {
    position: fixed;

    left: 25px;
    bottom: 25px;

    z-index: 1500;

    width: min(440px, calc(100% - 50px));

    background: black;
    color: white;

    padding: 20px;

    display: flex;

    align-items: center;

    gap: 20px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.25);

    transform: translateY(140%);

    transition: transform .5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice strong {
    display: block;

    font-size: 12px;
}

.cookie-notice p {
    color: rgba(255,255,255,.45);

    font-size: 9px;

    margin-top: 4px;
}

.cookie-notice button {
    flex-shrink: 0;

    background: white;
    color: black;

    padding: 10px 14px;

    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #050505;

    color: white;

    padding: 80px 0 30px;
}

.footer-main {
    display: grid;

    grid-template-columns: 1.4fr repeat(3, 1fr);

    gap: 60px;

    padding-bottom: 70px;
}

.footer-brand > p {
    max-width: 330px;

    color: rgba(255,255,255,.38);

    font-size: 12px;

    margin: 25px 0;
}

.footer-logo {
    color: white;
}

.footer-location {
    color: rgba(255,255,255,.25);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .12em;
}

.footer-column {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 11px;
}

.footer-column h4 {
    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .15em;

    color: rgba(255,255,255,.3);

    margin-bottom: 9px;
}

.footer-column a,
.footer-column p {
    color: rgba(255,255,255,.55);

    font-size: 11px;

    transition: color var(--transition);
}

.footer-column a:hover {
    color: white;
}

.footer-column p {
    line-height: 1.7;
}

.footer-bottom {
    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.1);

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: rgba(255,255,255,.25);

    font-size: 9px;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a:hover {
    color: white;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 400;

    width: 44px;
    height: 44px;

    background: black;
    color: white;

    border-radius: 50%;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}


/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .9s cubic-bezier(.2,.8,.2,1),
        transform .9s cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}

.reveal-delay {
    transition-delay: .12s;
}

.reveal-delay-two {
    transition-delay: .22s;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .desktop-nav {
        gap: 20px;
    }

    .hero-container {
        gap: 40px;
    }

    .shipping-layout,
    .faq-layout {
        gap: 70px;
    }

    .contact-grid {
        gap: 70px;
    }

}


@media (max-width: 1000px) {

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 110px 0 30px;
    }

    .hero-visual {
        min-height: 500px;
        padding-bottom: 100px;
    }

    .hero-scroll {
        display: none;
    }

    .trust-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-strip-item:nth-child(2) {
        border-right: none;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card:nth-child(2) {
        border-right: none;
    }

    .stat-card:nth-child(3) {
        border-top: 1px solid var(--border-light);
    }

    .stat-card:nth-child(4) {
        border-top: 1px solid var(--border-light);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-line {
        display: none;
    }

    .shipping-layout,
    .experience-grid,
    .faq-layout,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .shipping-layout,
    .faq-layout {
        gap: 70px;
    }

    .experience-grid {
        gap: 60px;
    }

    .location-grid {
        gap: 50px;
    }

    .map-container {
        min-height: 450px;
    }

    .map-container iframe {
        min-height: 450px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-box {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


@media (max-width: 700px) {

    .container {
        width: min(
            calc(100% - 30px),
            var(--max-width)
        );
    }

    .top-bar-right {
        display: none;
    }

    .top-bar-inner {
        justify-content: center;
    }

    .header-inner {
        min-height: 70px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .brand-name {
        font-size: 17px;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero h1 {
        font-size: clamp(52px, 15vw, 80px);
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 20px;

        flex-wrap: wrap;

        margin-top: 45px;
    }

    .hero-visual {
        min-height: 420px;
    }

    .hero-card-main {
        width: 75%;

        transform: rotate(2deg);
    }

    .floating-card-one {
        left: -5px;
    }

    .floating-card-two {
        right: -5px;
    }

    .trust-strip-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }

    .trust-strip-item:last-child {
        border-bottom: none;
    }

    .section-padding,
    .shop-section,
    .shipping-section,
    .experience-section,
    .faq-section,
    .contact-section {
        padding: 85px 0;
    }

    .split-heading,
    .shop-heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-heading h2,
    .shipping-intro h2,
    .faq-intro h2 {
        font-size: clamp(44px, 13vw, 65px);
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        border-right: none;

        border-bottom: 1px solid var(--border-light);

        min-height: 220px;
    }

    .stat-card:last-child {
        border-bottom: none;
    }

    .shop-toolbar {
        flex-direction: column;

        align-items: flex-start;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 360px;
    }

    .statement-section {
        padding: 100px 0;
    }

    .statement-container h2 {
        font-size: clamp(50px, 15vw, 75px);
    }

    .statement-bottom {
        flex-direction: column;

        align-items: flex-start;

        margin-top: 55px;
    }

    .process-item {
        min-height: 300px;
    }

    .shipping-row {
        grid-template-columns: 40px 1fr;
    }

    .newsletter-box {
        padding: 40px 25px;
    }

    .location-contact {
        grid-template-columns: 1fr;
    }

    .map-container,
    .map-container iframe {
        min-height: 380px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .legal-card {
        grid-template-columns: 1fr;

        gap: 15px;

        padding: 35px 0;
    }

    .business-info-grid {
        grid-template-columns: 1fr;
    }

    .quick-view-modal {
        grid-template-columns: 1fr;

        max-height: 90vh;

        overflow-y: auto;
    }

    .quick-view-image {
        min-height: 300px;
    }

    .quick-view-content {
        padding: 35px 25px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 45px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .cookie-notice {
        left: 15px;
        bottom: 15px;

        width: calc(100% - 30px);

        flex-direction: column;

        align-items: stretch;
    }

    .cookie-notice button {
        width: 100%;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
    }

}


@media (max-width: 420px) {

    .header-actions {
        gap: 0;
    }

    .icon-button,
    .cart-button,
    .mobile-menu-button {
        width: 39px;
    }

    .hero-visual {
        min-height: 370px;
    }

    .hero-card-main {
        width: 78%;
        padding: 20px;
    }

    .hero-orbit {
        width: 190px;
        height: 190px;
    }

    .orbit-center {
        width: 70px;
        height: 70px;

        font-size: 30px;
    }

    .floating-card {
        padding: 9px;
    }

    .floating-card-one {
        left: 0;
    }

    .floating-card-two {
        right: 0;
    }

    .floating-card strong {
        font-size: 10px;
    }

    .floating-card small {
        font-size: 8px;
    }

    .product-image {
        height: 320px;
    }

    .category-buttons {
        width: 100%;
    }

    .category-btn {
        flex: 1;
    }

}