/* style.css - complete design system */
:root {
    --bg: #0A141B;
    --bg1: #0E1A24;
    --bg2: #12222E;
    --bg3: #172C3B;
    --bg4: #1D3749;
    --bg5: #244458;
    --G: #2A9D8F;
    --G2: #4FBFAF;
    --G3: #7AE0D0;
    --G4: #B3F0E6;
    --Gl: #D9F9F3;
    --sage: #9AB8B0;
    --A: #E8A87C;
    --A2: #F0B990;
    --A3: #F9D1B0;
    --W: #F0F7F5;
    --W2: #D0E2DE;
    --W3: #8EAEB0;
    --W4: #4A6A6E;
    --glass: rgba(255, 255, 255, .055);
    --glb: rgba(255, 255, 255, .09);
    --gln: rgba(10, 20, 27, .6);
    --bdrg: rgba(42, 157, 143, .2);
    --bdrg2: rgba(42, 157, 143, .38);
    --bdra: rgba(232, 168, 124, .22);
    --bdrw: rgba(240, 247, 245, .07);
    --bdrw2: rgba(240, 247, 245, .14);
    --sh1: 0 4px 24px rgba(0, 0, 0, .35);
    --sh2: 0 12px 50px rgba(0, 0, 0, .5);
    --sh3: 0 24px 80px rgba(0, 0, 0, .65);
    --shg: 0 8px 32px rgba(42, 157, 143, .3);
    --sha: 0 8px 32px rgba(232, 168, 124, .25);
    --FD: 'DM Serif Display', serif;
    --FM: 'Manrope', sans-serif;
    --FC: 'Cinzel', serif;
    --ease: .28s cubic-bezier(.4, 0, .2, 1);
    --spring: .48s cubic-bezier(.34, 1.56, .64, 1);
    --slow: .6s cubic-bezier(.16, 1, .3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--FM);
    background: var(--bg);
    color: var(--W);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: var(--bg1);
}

::-webkit-scrollbar-thumb {
    background: var(--G3);
    border-radius: 2px;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .03;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

#orderPop {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: .4s;
}

#orderPop.show {
    opacity: 1;
    pointer-events: all;
}

.op-back {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 27, .93);
    backdrop-filter: blur(24px);
}

.op-panel {
    position: relative;
    background: var(--bg2);
    border: 1px solid var(--bdrg);
    width: 92%;
    max-width: 420px;
    padding: 3rem 3.5rem;
    text-align: center;
    border-radius: 24px;
    animation: opIn .5s cubic-bezier(.34, 1.56, .64, 1) both;
    overflow: hidden;
    box-shadow: var(--sh3);
}

.op-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--G), var(--G3), var(--A), var(--G3));
}

@keyframes opIn {
    from {
        transform: scale(.88) translateY(24px);
        opacity: 0;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.op-ring {
    width: 72px;
    height: 72px;
    border: 2px solid var(--G3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(42, 157, 143, .1);
    animation: ringSpin .6s .2s both;
}

@keyframes ringSpin {
    from {
        transform: scale(0) rotate(-90deg);
    }

    to {
        transform: none;
    }
}

.op-ring i {
    font-size: 1.5rem;
    color: var(--G3);
}

.op-heading {
    font-family: var(--FD);
    font-size: 2rem;
    color: var(--W);
    margin-bottom: .3rem;
}

.op-sub {
    font-family: var(--FM);
    font-size: .88rem;
    color: var(--W3);
    margin-bottom: 1.8rem;
}

.op-id-box {
    background: var(--bg3);
    border: 1px solid var(--bdrg);
    border-radius: 12px;
    padding: 1.1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.op-id-lbl {
    font-family: var(--FC);
    font-size: .52rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--W3);
    display: block;
    margin-bottom: .3rem;
}

.op-id-val {
    font-family: var(--FC);
    font-size: 1.6rem;
    color: var(--G4);
}

.op-timer {
    font-family: var(--FM);
    font-size: .8rem;
    color: var(--W3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.op-timer i {
    color: var(--A);
}

.op-prog {
    width: 100%;
    height: 3px;
    background: var(--bg4);
    border-radius: 2px;
    margin-top: 1.2rem;
    overflow: hidden;
}

.op-prog-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--G), var(--G3));
    transition: width linear;
}

.toast-wrap {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9997;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.toast {
    background: var(--bg3);
    color: var(--W);
    padding: .85rem 1.3rem;
    border-radius: 12px;
    font-family: var(--FM);
    font-size: .78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 9px;
    animation: tIn .4s cubic-bezier(.34, 1.56, .64, 1);
    box-shadow: var(--sh2);
    border: 1px solid var(--bdrg);
}

@keyframes tIn {
    from {
        opacity: 0;
        transform: translateX(16px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 27, .75);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 2000;
}

.overlay.open {
    opacity: 1;
    pointer-events: all;
}

#nav {
    position: sticky;
    top: 0;
    z-index: 900;
    transition: var(--ease);
}

.nav-wrap {
    background: rgba(10, 20, 27, .94);
    backdrop-filter: blur(32px);
    border-bottom: 1px solid var(--bdrw);
}

#nav.scrolled .nav-wrap {
    box-shadow: var(--sh2);
}

.nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-logo {
    font-family: var(--FD);
    font-size: 1.5rem;
    color: var(--W);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    letter-spacing: .01em;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--G2), var(--G));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: var(--spring);
    box-shadow: var(--shg);
}

.nav-logo:hover .nav-logo-mark {
    transform: rotate(15deg) scale(1.1);
}

.nav-logo-name {
    background: linear-gradient(135deg, var(--W), var(--Gl));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    flex: 1;
    display: flex;
    align-items: center;
    gap: .15rem;
    margin-left: 1.5rem;
}

.nav-lnk {
    font-family: var(--FM);
    font-size: .99rem;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--W3);
    text-decoration: none;
    padding: .38rem .9rem;
    border-radius: 30px;
    transition: var(--ease);
    display: flex;
    align-items: center;
    gap: .35rem;
}

.nav-lnk i {
    font-size: .6rem;
    opacity: .6;
}

.nav-lnk:hover {
    color: var(--W);
    background: var(--glass);
}

.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}

.nav-cur {
    font-family: var(--FM);
    font-size: .72rem;
    font-weight: 600;
    background: var(--glass);
    border: 1px solid var(--bdrw2);
    border-radius: 30px;
    padding: .3rem .85rem;
    color: var(--W2);
    cursor: pointer;
    outline: none;
    transition: var(--ease);
}

.nav-cur:hover {
    border-color: var(--bdrg);
    color: var(--G4);
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--bdrw);
    border-radius: 50%;
    background: transparent;
    color: var(--W3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    transition: var(--ease);
    position: relative;
}

.nav-btn:hover {
    border-color: var(--bdrg);
    color: var(--G3);
    background: rgba(42, 157, 143, .1);
}

.nav-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    background: var(--A);
    color: var(--bg);
    font-size: .42rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg);
    border-radius: 50%;
}

#hero {
    min-height: calc(100vh - 68px);
    background: var(--bg);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hbg-mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 70% 30%, rgba(42, 157, 143, .18) 0%, transparent 55%), radial-gradient(ellipse 40% 50% at 15% 70%, rgba(26, 44, 56, .4) 0%, transparent 55%), radial-gradient(ellipse 50% 40% at 85% 80%, rgba(232, 168, 124, .07) 0%, transparent 60%);
}

.hbg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(42, 157, 143, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(42, 157, 143, .04) 1px, transparent 1px);
    background-size: 52px 52px;
}

.hbg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.hbl1 {
    width: 500px;
    height: 500px;
    background: rgba(42, 157, 143, .12);
    top: -150px;
    right: -80px;
    animation: blobFloat 18s ease-in-out infinite alternate;
}

.hbl2 {
    width: 350px;
    height: 350px;
    background: rgba(232, 168, 124, .06);
    bottom: -80px;
    left: -50px;
    animation: blobFloat 14s ease-in-out infinite alternate-reverse;
}

.hbl3 {
    width: 250px;
    height: 250px;
    background: rgba(42, 157, 143, .08);
    top: 40%;
    left: 40%;
    animation: blobFloat 20s ease-in-out infinite alternate;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -20px) scale(1.08);
    }
}

.hero-leaf {
    position: absolute;
    pointer-events: none;
    opacity: .06;
    font-size: 8rem;
    color: var(--G3);
    user-select: none;
}

.hl1 {
    top: 10%;
    left: 5%;
    animation: leafSway 8s ease-in-out infinite alternate;
    transform: rotate(-20deg);
}

.hl2 {
    bottom: 15%;
    right: 6%;
    font-size: 6rem;
    animation: leafSway 11s ease-in-out infinite alternate-reverse;
    transform: rotate(25deg);
}

.hl3 {
    top: 60%;
    left: 2%;
    font-size: 4rem;
    animation: leafSway 9s ease-in-out infinite alternate;
    transform: rotate(-10deg);
}

@keyframes leafSway {
    0% {
        transform: rotate(-20deg) translateY(0);
    }

    100% {
        transform: rotate(-15deg) translateY(-15px);
    }
}

.hero-layout {
    flex: 1;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 2rem;
}

.hero-text {
    padding: 4rem 0;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--glass);
    border: 1px solid var(--bdrg);
    border-radius: 30px;
    padding: .4rem 1rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(12px);
    animation: fadeUp .6s .05s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hero-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--G3);
    box-shadow: 0 0 8px var(--G3);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

.hero-pill span {
    font-family: var(--FM);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--Gl);
}

.hero-h1 {
    font-family: var(--FD);
    font-size: clamp(3rem, 5.5vw, 7rem);
    color: var(--W);
    line-height: 1.05;
    margin-bottom: 1.2rem;
    letter-spacing: -.01em;
}

.hero-h1 .line {
    display: block;
    overflow: hidden;
}

.hero-h1 .word {
    display: inline-block;
    animation: wordUp .85s cubic-bezier(.16, 1, .3, 1) both;
}

.hero-h1 .line:nth-child(1) .word {
    animation-delay: .1s;
}

.hero-h1 .line:nth-child(2) .word {
    animation-delay: .18s;
}

.hero-h1 .line:nth-child(3) .word {
    animation-delay: .26s;
}

@keyframes wordUp {
    from {
        transform: translateY(110%);
        opacity: 0;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.hero-h1 .green {
    color: var(--G3);
}

.hero-h1 .gold {
    color: var(--A2);
}

.hero-desc {
    font-family: var(--FM);
    font-size: .95rem;
    color: var(--W3);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 2.5rem;
    animation: fadeUp .7s .35s both;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeUp .7s .45s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--G2), var(--G));
    color: var(--W);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--FM);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    cursor: pointer;
    transition: var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(42, 157, 143, .4);
    background: linear-gradient(135deg, var(--G3), var(--G2));
}

.btn-primary i {
    transition: transform var(--ease);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-ghost {
    background: var(--glass);
    border: 1px solid var(--bdrw2);
    color: var(--W2);
    padding: 13px 28px;
    border-radius: 50px;
    font-family: var(--FM);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ease);
    backdrop-filter: blur(12px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-ghost:hover {
    border-color: var(--bdrg);
    color: var(--Gl);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 0;
    animation: fadeUp .7s .55s both;
}

.ht-item {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .75rem 1.2rem;
    background: var(--glass);
    border: 1px solid var(--bdrw);
    border-right: none;
    backdrop-filter: blur(12px);
    transition: var(--ease);
}

.ht-item:last-child {
    border-right: 1px solid var(--bdrw);
    border-radius: 0 12px 12px 0;
}

.ht-item:first-child {
    border-radius: 12px 0 0 12px;
}

.ht-item:hover {
    background: var(--glb);
    border-color: var(--bdrg);
}

.ht-ico {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(42, 157, 143, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--G3);
    flex-shrink: 0;
}

.ht-lbl {
    font-family: var(--FM);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--W3);
}

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 500px;
}

.hero-main-card {
    background: var(--glass);
    border: 1px solid var(--bdrg);
    border-radius: 28px;
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    width: 320px;
    box-shadow: var(--sh3);
    position: relative;
    z-index: 3;
    animation: heroCardFloat 4s ease-in-out infinite alternate, fadeUp .8s .15s both;
}

@keyframes heroCardFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-12px);
    }
}

.hmc-img {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    position: relative;
}

.hmc-img img {
    max-height: 220px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, .5));
    transition: transform .5s;
}

.hero-main-card:hover .hmc-img img {
    transform: scale(1.06) translateY(-6px);
}

.hmc-img-bg {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 157, 143, .12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hmc-tag {
    font-family: var(--FM);
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--G4);
    margin-bottom: .4rem;
}

.hmc-name {
    font-family: var(--FD);
    font-size: 1.3rem;
    color: var(--W);
    margin-bottom: .3rem;
    line-height: 1.2;
}

.hmc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: .9rem;
    padding-top: .9rem;
    border-top: 1px solid var(--bdrw);
}

.hmc-btn {
    background: linear-gradient(135deg, var(--G2), var(--G));
    color: var(--W);
    border: none;
    padding: .5rem 1.2rem;
    border-radius: 30px;
    font-family: var(--FM);
    font-size: .72rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--ease);
}

.hmc-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shg);
}

.hero-mini-card {
    position: absolute;
    background: var(--glass);
    border: 1px solid var(--bdrw2);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    padding: .9rem 1rem;
    box-shadow: var(--sh2);
    z-index: 4;
}

.hmc-1 {
    top: 8%;
    right: -12%;
    animation: miniFloat1 5s ease-in-out infinite alternate;
}

.hmc-2 {
    bottom: 12%;
    left: -12%;
    animation: miniFloat2 6s ease-in-out infinite alternate;
}

@keyframes miniFloat1 {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes miniFloat2 {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

.hmc-mini-ico {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(42, 157, 143, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .45rem;
    font-size: .9rem;
    color: var(--G3);
}

.hmc-mini-lbl {
    font-family: var(--FM);
    font-size: .65rem;
    font-weight: 700;
    color: var(--W);
    white-space: nowrap;
}

.hmc-mini-sub {
    font-family: var(--FM);
    font-size: .58rem;
    color: var(--W3);
}

.hero-ticker {
    background: linear-gradient(90deg, var(--G), var(--G2), var(--G3), var(--G2), var(--G));
    padding: .6rem 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.ticker-track {
    display: flex;
    animation: tick 32s linear infinite;
    width: max-content;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.tick-item {
    white-space: nowrap;
    font-family: var(--FC);
    font-size: .95rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(240, 247, 245, .75);
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.tick-sep {
    color: rgba(240, 247, 245, .35);
    font-size: .5rem;
}

@keyframes tick {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.sec {
    padding: 6rem 0;
}

.sec-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
}

.sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.sec-kicker {
    font-family: var(--FC);
    font-size: .6rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--G4);
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .6rem;
}

.sec-kicker::before {
    content: '';
    width: 16px;
    height: 1.5px;
    background: var(--G3);
    border-radius: 1px;
    display: block;
}

.sec-title {
    font-family: var(--FD);
    font-size: clamp(1.8rem, 3vw, 3rem);
    color: var(--W);
    line-height: 1.1;
}

.sec-title em {
    color: var(--G4);
    font-style: italic;
}

.btn-see-all {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--FM);
    font-size: .75rem;
    font-weight: 600;
    color: var(--G4);
    background: var(--glass);
    border: 1px solid var(--bdrg);
    border-radius: 30px;
    padding: .42rem 1rem;
    cursor: pointer;
    transition: var(--ease);
    backdrop-filter: blur(8px);
    text-decoration: none;
    flex-shrink: 0;
}

.btn-see-all:hover {
    background: rgba(42, 157, 143, .15);
    color: var(--Gl);
}

.btn-see-all i {
    font-size: .58rem;
}

#categories {
    background: var(--bg1);
    position: relative;
    overflow: hidden;
}

#categories::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(42, 157, 143, .04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.cat-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    cursor: pointer;
    transition: var(--spring);
}

.cat-pill:hover {
    transform: translateY(-6px);
}

.cp-ring-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 2px;
    background: var(--bg3);
    transition: var(--ease);
    box-shadow: var(--sh1);
}

.cat-pill.active .cp-ring-wrap,
.cat-pill:hover .cp-ring-wrap {
    background: linear-gradient(135deg, var(--G3), var(--A));
    box-shadow: 0 8px 32px rgba(42, 157, 143, .25);
}

.cp-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg3);
}

.cp-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.cat-pill:hover .cp-inner img {
    transform: scale(1.1);
}

.cp-name {
    font-family: var(--FM);
    font-size: .75rem;
    font-weight: 600;
    color: var(--W2);
    text-align: center;
}

.cat-pill.active .cp-name {
    color: var(--G4);
}

#why {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

#why::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(42, 157, 143, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(42, 157, 143, .04) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}

.why-head {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
}

.why-h {
    font-family: var(--FD);
    font-size: clamp(3rem, 7vw, 8rem);
    color: var(--W);
    line-height: .86;
    letter-spacing: -.02em;
}

.why-h em {
    color: var(--G3);
    font-style: italic;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.why-grid .wc:nth-child(even) {
    transform: translateY(1.2rem);
}

.wc {
    background: var(--glass);
    border: 1px solid var(--bdrw);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: var(--ease);
}

.wc:hover {
    border-color: var(--bdrg);
    transform: translateY(-5px) !important;
    box-shadow: var(--sh2);
}

.wc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--G), var(--A));
    transform: scaleX(0);
    transform-origin: left;
    transition: .45s;
}

.wc:hover::before {
    transform: scaleX(1);
}

.wc-num {
    font-family: var(--FD);
    font-size: 5rem;
    color: rgba(42, 157, 143, .05);
    position: absolute;
    top: -.3rem;
    right: .5rem;
    line-height: 1;
}

.wc-ico {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(42, 157, 143, .1);
    border: 1px solid var(--bdrg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--G3);
    margin-bottom: 1rem;
    transition: var(--spring);
    position: relative;
    z-index: 1;
}

.wc:hover .wc-ico {
    background: var(--G);
    color: var(--W);
    transform: rotate(-5deg) scale(1.1);
}

.wc-title {
    font-family: var(--FM);
    font-size: .9rem;
    font-weight: 700;
    color: var(--W);
    margin-bottom: .5rem;
    position: relative;
    z-index: 1;
}

.wc-body {
    font-family: var(--FM);
    font-size: .82rem;
    color: var(--W3);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

#promos {
    background: var(--bg1);
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.promo-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    height: 260px;
    cursor: pointer;
    transition: var(--ease);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh3);
}

.promo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.35) saturate(.7);
    transition: transform .6s, filter .4s;
}

.promo-card:hover .promo-img {
    transform: scale(1.06);
    filter: brightness(.45) saturate(.9);
}

.promo-over {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(10, 20, 27, .9) 0%, rgba(10, 20, 27, .3) 60%, transparent 100%);
}

.promo-glass-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--glass);
    border: 1px solid var(--bdrg);
    border-radius: 12px;
    padding: .5rem .9rem;
    backdrop-filter: blur(12px);
}

.promo-badge-text {
    font-family: var(--FM);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--G4);
}

.disc-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--A);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sha);
}

.disc-n {
    font-family: var(--FC);
    font-size: 1.2rem;
    color: var(--bg);
    line-height: 1;
}

.disc-off {
    font-family: var(--FM);
    font-size: .42rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: rgba(10, 20, 27, .8);
}

.promo-tag {
    font-family: var(--FM);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--G4);
    margin-bottom: .7rem;
}

.promo-h {
    font-family: var(--FD);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    color: var(--W);
    line-height: 1.1;
    margin-bottom: .5rem;
}

.promo-p {
    font-family: var(--FM);
    font-size: .82rem;
    color: rgba(240, 247, 245, .6);
    line-height: 1.55;
    margin-bottom: 1rem;
    max-width: 240px;
}

.promo-btn {
    background: var(--glass);
    border: 1px solid var(--bdrg);
    color: var(--Gl);
    border-radius: 30px;
    padding: .5rem 1.3rem;
    font-family: var(--FM);
    font-size: .72rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--ease);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    width: fit-content;
    backdrop-filter: blur(8px);
}

.promo-btn:hover {
    background: var(--G);
    border-color: var(--G);
    color: var(--W);
}

#sale {
    background: var(--bg2);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.sale-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(42, 157, 143, .12) 0%, transparent 55%), radial-gradient(ellipse 40% 60% at 80% 50%, rgba(232, 168, 124, .07) 0%, transparent 55%);
    pointer-events: none;
}

.sale-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sale-div {
    background: var(--bdrw);
}

.sale-kicker {
    font-family: var(--FC);
    font-size: .6rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--A2);
    margin-bottom: .6rem;
}

.sale-h {
    font-family: var(--FD);
    font-size: clamp(1.8rem, 3vw, 3rem);
    color: var(--W);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.sale-h em {
    color: var(--G4);
    font-style: italic;
}

.sale-p {
    font-family: var(--FM);
    font-size: .9rem;
    color: var(--W3);
    line-height: 1.72;
    margin-bottom: 1.5rem;
    max-width: 360px;
}

.sale-cta {
    background: linear-gradient(135deg, var(--G2), var(--G));
    color: var(--W);
    border: none;
    padding: 13px 28px;
    border-radius: 30px;
    font-family: var(--FM);
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--ease);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    box-shadow: var(--shg);
}

.sale-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(42, 157, 143, .4);
}

.countdown-wrap {
    text-align: center;
}

.cd-label {
    font-family: var(--FC);
    font-size: .58rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--W3);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}

.cd-label i {
    color: var(--A2);
}

.countdown {
    display: flex;
    gap: .75rem;
    justify-content: center;
}

.cd-box {
    background: var(--glass);
    border: 1px solid var(--bdrg);
    border-radius: 16px;
    padding: 1.2rem .9rem;
    text-align: center;
    backdrop-filter: blur(12px);
    min-width: 70px;
    position: relative;
    overflow: hidden;
}

.cd-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--G), var(--A));
}

.cd-n {
    font-family: var(--FD);
    font-size: 2.4rem;
    color: var(--W);
    display: block;
    line-height: 1;
}

.cd-l {
    font-family: var(--FM);
    font-size: .52rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--W3);
    margin-top: .3rem;
    display: block;
}

#shop {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

#shop::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(42, 157, 143, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(42, 157, 143, .03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.shop-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
}

.shop-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.shop-sidebar {
    width: 248px;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.sb-card {
    background: var(--glass);
    border: 1px solid var(--bdrw);
    border-radius: 20px;
    padding: 1.4rem;
    backdrop-filter: blur(16px);
    overflow: hidden;
    position: relative;
}

.sb-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--G), var(--G3), var(--A));
}

.sb-ttl {
    font-family: var(--FC);
    font-size: .58rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--W3);
    margin-bottom: .9rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.sb-ttl i {
    color: var(--G3);
    font-size: .6rem;
}

.sc-search {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: var(--bg3);
    border: 1px solid var(--bdrw2);
    border-radius: 12px;
    padding: .55rem .85rem;
    transition: .25s;
}

.sc-search:focus-within {
    border-color: var(--bdrg);
}

.sc-search i {
    color: var(--W4);
    font-size: .68rem;
    flex-shrink: 0;
    transition: .25s;
}

.sc-search:focus-within i {
    color: var(--G3);
}

.sc-search input {
    background: none;
    border: none;
    outline: none;
    font-family: var(--FM);
    font-size: .85rem;
    color: var(--W);
    width: 100%;
}

.sc-search input::placeholder {
    color: var(--W4);
}

.sp-cat {
    border-bottom: 1px solid var(--bdrw);
}

.sp-cat:last-child {
    border: none;
}

.sp-cat-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .7rem 0;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--ease);
    text-align: left;
}

.sp-cat-btn.open .sp-cat-lbl {
    color: var(--G4);
}

.sp-cat-ico {
    font-size: .85rem;
    width: 18px;
    flex-shrink: 0;
}

.sp-cat-lbl {
    font-family: var(--FM);
    font-size: .84rem;
    font-weight: 500;
    color: var(--W2);
    flex: 1;
    transition: color var(--ease);
}

.sp-cat-chev {
    font-size: .5rem;
    color: var(--W4);
    transition: transform var(--ease);
}

.sp-cat-btn.open .sp-cat-chev {
    transform: rotate(90deg);
    color: var(--G3);
}

.sp-subs {
    display: none;
    padding-bottom: .3rem;
}

.sp-subs.open {
    display: block;
}

.sp-sub-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .45rem .2rem .45rem 1.2rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--ease);
    text-align: left;
    border-left: 2px solid transparent;
}

.sp-sub-btn:hover {
    border-left-color: rgba(42, 157, 143, .3);
}

.sp-sub-btn.active {
    border-left-color: var(--G3);
}

.sp-sub-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--W4);
    flex-shrink: 0;
    transition: background var(--ease);
}

.sp-sub-btn.active .sp-sub-dot {
    background: var(--G3);
    box-shadow: 0 0 6px rgba(42, 157, 143, .5);
}

.sp-sub-lbl {
    font-family: var(--FM);
    font-size: .8rem;
    color: var(--W3);
    flex: 1;
    transition: color var(--ease);
}

.sp-sub-btn.active .sp-sub-lbl,
.sp-sub-btn:hover .sp-sub-lbl {
    color: var(--G4);
}

.sc-sort {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--bdrw2);
    border-radius: 12px;
    padding: .55rem .85rem;
    font-family: var(--FM);
    font-size: .84rem;
    color: var(--W2);
    outline: none;
    cursor: pointer;
    transition: .25s;
}

.shop-main {
    flex: 1;
    min-width: 0;
}

.shop-hdr {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--bdrw);
}

.shop-bc {
    font-family: var(--FC);
    font-size: .54rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--W4);
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: .55rem;
}

.bc-sep {
    color: var(--W4);
    font-size: .4rem;
}

.bc-cur {
    color: var(--G4);
}

.shop-h {
    font-family: var(--FD);
    font-size: 1.9rem;
    color: var(--W);
    line-height: 1;
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

@media(max-width:1400px) {
    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:680px) {
    .prod-grid {
        grid-template-columns: 1fr;
    }
}

.pcard {
    background: var(--glass);
    border: 1px solid var(--bdrw);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pcard:hover {
    transform: translateY(-6px);
    border-color: var(--bdrg);
    box-shadow: var(--sh2), var(--shg);
}

.pcard::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(42, 157, 143, .04) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform .6s ease;
    pointer-events: none;
}

.pcard:hover::after {
    transform: translateX(100%);
}

.pc-img-wrap {
    height: 290px;
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.3rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.pc-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .45));
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    z-index: 2;
}

.pcard:hover .pc-img-wrap img {
    transform: scale(1.1) translateY(-5px);
}

.pc-img-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 157, 143, .1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .4s;
}

.pc-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 3;
}

.pc-bdg {
    font-family: var(--FM);
    font-size: .5rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .18rem .55rem;
    border-radius: 20px;
}

.pbdg-new {
    background: var(--G);
    color: var(--W);
}

.pc-wish {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--bdrw2);
    color: var(--W3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    transition: var(--ease);
    z-index: 3;
    backdrop-filter: blur(8px);
}

.pc-wish:hover,
.pc-wish.on {
    background: rgba(232, 168, 124, .15);
    color: var(--A2);
    border-color: var(--bdra);
}

.pc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 27, .78);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .28s;
    z-index: 4;
}

.pcard:hover .pc-overlay {
    opacity: 1;
}

.pc-add-btn {
    background: linear-gradient(135deg, var(--G2), var(--G));
    color: var(--W);
    border: none;
    padding: 11px 22px;
    border-radius: 30px;
    font-family: var(--FM);
    font-size: .75rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transform: translateY(8px);
    transition: .28s cubic-bezier(.16, 1, .3, 1);
    box-shadow: var(--shg);
}

.pcard:hover .pc-add-btn {
    transform: none;
}

.pc-add-btn:hover {
    background: linear-gradient(135deg, var(--G3), var(--G2));
}

.pc-body {
    padding: .9rem 1rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pc-cat {
    font-family: var(--FM);
    font-size: .52rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--G4);
    margin-bottom: 4px;
}

.pc-name {
    font-family: var(--FM);
    font-size: .88rem;
    font-weight: 500;
    color: var(--W);
    line-height: 1.35;
    margin-bottom: auto;
    padding-bottom: .6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .28s;
}

.pcard:hover .pc-name {
    color: var(--Gl);
}

.pc-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: .6rem;
    border-top: 1px solid var(--bdrw);
}

.pc-price {
    font-family: var(--FD);
    font-size: 1.25rem;
    color: var(--W);
}

.pc-quick {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--bdrg);
    color: var(--G3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    transition: var(--ease);
}

.pc-quick:hover {
    background: var(--G);
    color: var(--W);
    border-color: var(--G);
    box-shadow: var(--shg);
}

.empty {
    text-align: center;
    padding: 6rem 2rem;
    color: var(--W4);
}

.empty i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
    opacity: .15;
    color: var(--G3);
}

#inspo {
    background: var(--bg1);
}

.inspo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.inspo-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.in-cell {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.in-cell:nth-child(3) {
    grid-column: 1/3;
}

.in-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.5) saturate(.8);
    display: block;
    transition: transform .6s, filter .4s;
}

.in-cell:nth-child(1),
.in-cell:nth-child(2) {
    height: 180px;
}

.in-cell:nth-child(3) {
    height: 200px;
}

.in-cell:hover img {
    transform: scale(1.06);
    filter: brightness(.65) saturate(.95);
}

.in-cell-ov {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 27, .3);
    opacity: 0;
    transition: .28s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.in-cell:hover .in-cell-ov {
    opacity: 1;
}

.inspo-h {
    font-family: var(--FD);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: var(--W);
    line-height: 1.05;
    margin-bottom: 1.2rem;
}

.inspo-h em {
    color: var(--G4);
    font-style: italic;
}

.inspo-p {
    font-family: var(--FM);
    font-size: .92rem;
    color: var(--W3);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.inspo-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.is-stat-n {
    font-family: var(--FD);
    font-size: 2.2rem;
    color: var(--G4);
    display: block;
    line-height: 1;
}

.is-stat-l {
    font-family: var(--FM);
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--W3);
}

.btn-inspo {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--G2), var(--G));
    color: var(--W);
    border: none;
    padding: 13px 28px;
    border-radius: 30px;
    font-family: var(--FM);
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--ease);
    box-shadow: var(--shg);
}

.btn-inspo:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(42, 157, 143, .4);
}

#reviews {
    background: var(--bg1);
}

.rev-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3.5rem;
    gap: 2rem;
}

.rev-big-h {
    font-family: var(--FD);
    font-size: clamp(2.5rem, 6vw, 8rem);
    color: var(--W);
    line-height: .86;
}

.rev-big-h em {
    color: var(--G4);
    font-style: italic;
}

.rev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.rv {
    background: var(--glass);
    border: 1px solid var(--bdrw);
    border-radius: 20px;
    padding: 1.8rem;
    backdrop-filter: blur(12px);
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

.rv::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(var(--G3), var(--A2));
    opacity: 0;
    transition: .3s;
}

.rv:hover {
    border-color: var(--bdrg);
    transform: translateY(-5px);
    box-shadow: var(--sh2);
}

.rv:hover::before {
    opacity: 1;
}

.rv-quote {
    font-family: var(--FD);
    font-size: 5rem;
    color: rgba(42, 157, 143, .08);
    line-height: 1;
    display: block;
    margin-bottom: .3rem;
}

.rv-stars {
    display: flex;
    gap: 3px;
    margin-bottom: .9rem;
}

.rv-stars i {
    color: var(--A2);
    font-size: .72rem;
}

.rv-text {
    font-family: var(--FM);
    font-size: .88rem;
    font-style: italic;
    color: var(--W2);
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.rv-sep {
    height: 1px;
    background: var(--bdrw);
    margin-bottom: .9rem;
}

.rv-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.rv-av {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--G), var(--G3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--FC);
    font-size: .9rem;
    color: var(--W);
    flex-shrink: 0;
}

.rv-name {
    font-family: var(--FM);
    font-size: .82rem;
    font-weight: 700;
    color: var(--W);
    display: flex;
    align-items: center;
    gap: .3rem;
}

.rv-name i {
    color: var(--G3);
    font-size: .6rem;
}

.rv-role {
    font-family: var(--FM);
    font-size: .68rem;
    color: var(--W4);
}

.rv-prod {
    font-family: var(--FC);
    font-size: .5rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--G4);
    margin-top: .7rem;
}

#faq {
    background: var(--bg);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 8rem;
    align-items: start;
}

.faq-h {
    font-family: var(--FD);
    font-size: clamp(3rem, 7vw, 9rem);
    color: var(--W);
    line-height: .84;
    margin-bottom: 1.2rem;
}

.faq-h em {
    color: var(--G3);
    font-style: italic;
    display: block;
}

.faq-p {
    font-family: var(--FM);
    font-size: .9rem;
    color: var(--W3);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 280px;
}

.faq-contacts {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.faq-c {
    display: flex;
    align-items: center;
    gap: .8rem;
    background: var(--glass);
    border: 1px solid var(--bdrw);
    border-radius: 14px;
    padding: .9rem 1rem;
    cursor: pointer;
    transition: var(--ease);
    backdrop-filter: blur(8px);
    text-decoration: none;
}

.faq-c:hover {
    border-color: var(--bdrg);
    background: var(--glb);
}

.faq-c-ico {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
}

.fci-g {
    background: rgba(42, 157, 143, .15);
    border: 1px solid var(--bdrg);
    color: var(--G3);
}

.fci-a {
    background: rgba(232, 168, 124, .12);
    border: 1px solid var(--bdra);
    color: var(--A2);
}

.faq-c-lbl {
    font-family: var(--FM);
    font-size: .8rem;
    font-weight: 700;
    color: var(--W);
}

.faq-c-val {
    font-family: var(--FM);
    font-size: .68rem;
    color: var(--W3);
}

.faq-c-arr {
    margin-left: auto;
    font-size: .62rem;
    color: var(--W4);
}

.fq {
    background: var(--glass);
    border: 1px solid var(--bdrw);
    border-radius: 16px;
    margin-bottom: .65rem;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: var(--ease);
}

.fq.open {
    border-color: var(--bdrg);
    box-shadow: 0 4px 20px rgba(42, 157, 143, .1);
}

.fq-row {
    padding: 1.2rem 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
    transition: background .22s;
}

.fq-row:hover {
    background: var(--glb);
}

.fq-ico {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: rgba(42, 157, 143, .1);
    border: 1px solid var(--bdrg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .62rem;
    color: var(--G3);
    flex-shrink: 0;
    transition: var(--ease);
}

.fq.open .fq-ico {
    background: var(--G);
    color: var(--W);
}

.fq-txt {
    font-family: var(--FM);
    font-size: .88rem;
    font-weight: 600;
    color: var(--W);
    flex: 1;
}

.fq.open .fq-txt {
    color: var(--G4);
}

.fq-tog {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    border: 1px solid var(--bdrw2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: var(--W3);
    flex-shrink: 0;
    transition: var(--spring);
}

.fq.open .fq-tog {
    background: var(--G3);
    color: var(--bg);
    border-color: var(--G3);
    transform: rotate(45deg);
}

.fq-ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s ease, padding .28s;
}

.fq.open .fq-ans {
    max-height: 200px;
    padding: 0 1.3rem 1.2rem;
}

.fq-ans p {
    font-family: var(--FM);
    font-size: .86rem;
    color: var(--W3);
    line-height: 1.75;
    padding-left: 1.8rem;
    border-left: 2px solid var(--bdrg);
}

footer {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.footer-topline {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--G), var(--G3), var(--A), var(--G3), var(--G), transparent);
}

.footer-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.fbg1 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 157, 143, .08) 0%, transparent 65%);
    top: -100px;
    left: -50px;
}

.fbg2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 168, 124, .05) 0%, transparent 65%);
    bottom: -60px;
    right: 5%;
}

.footer-ghost {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--FD);
    font-size: clamp(8rem, 16vw, 22rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(42, 157, 143, .04);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    font-style: italic;
}

.footer-brand {
    max-width: 1440px;
    margin: 0 auto;
    padding: 5rem 3rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    border-bottom: 1px solid var(--bdrw);
    position: relative;
    z-index: 1;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-mark {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--G2), var(--G));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shg);
}

.footer-logo-name {
    font-family: var(--FD);
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--W), var(--Gl));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.footer-tagline {
    font-family: var(--FM);
    font-size: .93rem;
    color: var(--W4);
    line-height: 1.7;
    max-width: 340px;
    margin-bottom: 1.5rem;
}

.footer-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
}

.ft {
    background: var(--glass);
    border: 1px solid var(--bdrw);
    border-radius: 16px;
    padding: .9rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    backdrop-filter: blur(8px);
    transition: var(--ease);
}

.ft:hover {
    border-color: var(--bdrg);
}

.ft-ico {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    flex-shrink: 0;
}

.ft-ico-g {
    background: rgba(42, 157, 143, .15);
    border: 1px solid var(--bdrg);
    color: var(--G3);
}

.ft-ico-a {
    background: rgba(232, 168, 124, .1);
    border: 1px solid var(--bdra);
    color: var(--A2);
}

.ft-lbl {
    font-family: var(--FM);
    font-size: .98rem;
    font-weight: 700;
    color: var(--W2);
}

.ft-sub {
    font-family: var(--FM);
    font-size: .8rem;
    color: var(--W4);
    margin-top: 1px;
}

.footer-nav {
    max-width: 1440px;
    margin: 0 auto;
    padding: 3rem 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    border-bottom: 1px solid var(--bdrw);
    position: relative;
    z-index: 1;
}

.fn-head {
    font-family: var(--FC);
    font-size: .98rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--W3);
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.fn-head i {
    color: var(--G3);
    font-size: .58rem;
}

.fn-links {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.fn-lnk {
    font-family: var(--FM);
    font-size: .99rem;
    color: var(--W4);
    cursor: pointer;
    transition: color .25s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .45rem;
}

.fn-lnk i {
    font-size: .6rem;
    color: var(--W4);
    transition: color .25s, transform .25s;
}

.fn-lnk:hover {
    color: var(--G4);
}

.fn-lnk:hover i {
    color: var(--G4);
    transform: translateX(2px);
}

.footer-sub {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--bdrw);
    position: relative;
    z-index: 1;
}

.footer-sub-text .fst-h {
    font-family: var(--FD);
    font-size: 1.3rem;
    color: var(--W);
    font-style: italic;
    margin-bottom: .25rem;
}

.footer-sub-text .fst-p {
    font-family: var(--FM);
    font-size: .99rem;
    color: var(--W4);
}

.footer-sub-form {
    display: flex;
    gap: .55rem;
    align-items: center;
}

.fsb {
    background: linear-gradient(135deg, var(--G2), var(--G));
    color: var(--W);
    border: none;
    padding: .58rem 1.2rem;
    border-radius: 30px;
    font-family: var(--FM);
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--ease);
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-shrink: 0;
}

.fsb:hover {
    transform: translateY(-1px);
    box-shadow: var(--shg);
}

.footer-stats {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--bdrw);
    position: relative;
    z-index: 1;
}

.fstat {
    flex: 1;
    min-width: 130px;
    padding: .75rem 1rem;
    text-align: center;
    border-right: 1px solid var(--bdrw);
}

.fstat:last-child {
    border: none;
}

.fstat-n {
    font-family: var(--FD);
    font-style: italic;
    font-size: 1.9rem;
    color: var(--G4);
    display: block;
    line-height: 1;
}

.fstat-l {
    font-family: var(--FM);
    font-size: .92rem;
    color: var(--W4);
    margin-top: 2px;
    display: block;
}

.footer-bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1.4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.footer-copy {
    font-family: var(--FM);
    font-size: 1.3rem;
    color: var(--W4);
}

.footer-pay {
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-wrap: wrap;
}

.fpb {
    display: flex;
    align-items: center;
    gap: .3rem;
    background: var(--glass);
    border: 1px solid var(--bdrw);
    border-radius: 8px;
    padding: .25rem .7rem;
    font-family: var(--FM);
    font-size: .99rem;
    font-weight: 600;
    color: var(--W4);
    backdrop-filter: blur(8px);
}

.fpb i {
    font-size: .66rem;
}

.fpb-g i {
    color: var(--G3);
}

.fpb-a i {
    color: var(--A2);
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2001;
    width: 400px;
    max-width: 96vw;
    background: var(--bg2);
    border-left: 1px solid var(--bdrw);
    transform: translateX(100%);
    transition: transform .42s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -16px 0 60px rgba(0, 0, 0, .4);
}

.drawer.open {
    transform: none;
}

.drawer-hd {
    padding: 1.3rem 1.5rem;
    border-bottom: 1px solid var(--bdrw);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg3);
    position: relative;
}

.drawer-hd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--G), var(--G3), var(--A));
}

.drawer-ttl {
    font-family: var(--FD);
    font-size: 1.2rem;
    color: var(--W);
    display: flex;
    align-items: center;
    gap: .5rem;
    font-style: italic;
}

.drawer-ttl i {
    color: var(--G3);
    font-size: 1rem;
}

.drawer-cls {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--bdrw2);
    background: var(--glass);
    color: var(--W3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    transition: var(--ease);
    backdrop-filter: blur(8px);
}

.drawer-cls:hover {
    background: var(--G);
    color: var(--W);
    border-color: var(--G);
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.3rem;
}

.d-item {
    display: flex;
    gap: .75rem;
    align-items: center;
    padding: .8rem 0;
    border-bottom: 1px solid var(--bdrw);
}

.d-img {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    background: var(--bg3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    overflow: hidden;
    border: 1px solid var(--bdrw);
}

.d-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.d-name {
    font-family: var(--FM);
    font-weight: 600;
    font-size: .82rem;
    color: var(--W);
    margin-bottom: 3px;
    line-height: 1.3;
}

.d-price {
    font-family: var(--FD);
    font-size: 1.1rem;
    color: var(--G4);
    font-style: italic;
}

.d-rm {
    background: var(--bg3);
    border: 1px solid var(--bdrw);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .62rem;
    color: var(--W4);
    transition: var(--ease);
    margin-left: auto;
    flex-shrink: 0;
}

.d-rm:hover {
    background: var(--G);
    color: var(--W);
    border-color: var(--G);
}

.drawer-ft {
    padding: 1.3rem;
    border-top: 1px solid var(--bdrw);
    background: var(--bg3);
}

.d-empty {
    text-align: center;
    padding: 3rem;
    color: var(--W4);
}

.d-empty i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: .9rem;
    opacity: .15;
    color: var(--G3);
}

.modal-wrap {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: .28s;
    transform: scale(.97);
}

.modal-wrap.open {
    opacity: 1;
    pointer-events: all;
    transform: none;
}

.modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 27, .92);
    backdrop-filter: blur(20px);
}

.modal-box {
    position: relative;
    background: var(--bg2);
    border: 1px solid var(--bdrg);
    border-radius: 24px;
    max-width: 90vw;
    width: 700px;
    max-height: 88vh;
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: var(--sh3);
}

.modal-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--G), var(--G3), var(--A));
    border-radius: 24px 24px 0 0;
}

.modal-close {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    background: var(--bg3);
    border: 1px solid var(--bdrw2);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--W3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    transition: var(--ease);
}

.modal-close:hover {
    background: var(--G);
    color: var(--W);
    border-color: var(--G);
}

.policy h2 {
    font-family: var(--FD);
    font-size: 1.9rem;
    color: var(--W);
    margin-bottom: 1.2rem;
    font-style: italic;
}

.policy h3 {
    font-family: var(--FC);
    font-size: .82rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--G4);
    margin: 1.4rem 0 .4rem;
}

.policy p,
.policy li {
    font-family: var(--FM);
    font-size: .99rem;
    color: var(--W3);
    line-height: 1.75;
    margin-bottom: .4rem;
}

.policy ul {
    padding-left: 1.5rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity var(--slow), transform var(--slow);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: .06s;
}

.d2 {
    transition-delay: .12s;
}

.d3 {
    transition-delay: .18s;
}

.d4 {
    transition-delay: .24s;
}

.d5 {
    transition-delay: .3s;
}

@media(max-width:1100px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .why-head {
        grid-template-columns: 1fr;
    }

    .why-grid,
    .rev-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .sale-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .inspo-layout {
        grid-template-columns: 1fr;
    }
}

@media(max-width:700px) {

    .nav-inner,
    .sec-inner,
    .shop-inner,
    .footer-brand,
    .footer-nav,
    .footer-stats,
    .footer-sub,
    .footer-bottom {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .why-grid,
    .rev-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }

    .shop-layout {
        flex-direction: column;
    }

    .shop-sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }
}