/* ===================== NIKE (demo) ===================== */
:root {
    --bg: #ffffff;
    --ink: #111111;
    --muted: #707070;
    --soft: #f4f4f4;
    --line: #e3e3e3;
    --red: #e4002b;
    --display: 'Clash Display', sans-serif;
    --body: 'General Sans', sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --ease: cubic-bezier(.16, 1, .3, 1);
}

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

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--body);
    line-height: 1.55;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

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

::selection {
    background: var(--ink);
    color: #fff;
}

.kick {
    display: inline-block;
    font-family: var(--mono);
    font-size: .74rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 1rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: background .3s var(--ease), color .3s var(--ease), border-color .3s, transform .2s;
}

.btn--b {
    background: var(--ink);
    color: #fff;
}

.btn--b:hover {
    background: #000;
    transform: translateY(-2px);
}

.btn--w {
    background: #fff;
    color: var(--ink);
}

.btn--w:hover {
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .5);
}

.btn--ghost:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}

.btn--block {
    width: 100%;
    justify-content: center;
}

/* ===== cursor: tênis Jordan desenhado em CSS ===== */
body,
a,
button,
.pill,
.prod,
[data-mag],
summary,
.qv__sizes button {
    cursor: none;
}

.shoe {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 84px;
    height: 56px;
    pointer-events: none;
    filter: drop-shadow(0 9px 12px rgba(0, 0, 0, .45));
    will-change: transform;
}

.shoe span {
    position: absolute;
    display: block;
}

/* sola branca */
.shoe__sole {
    left: 2px;
    right: 0;
    bottom: 0;
    height: 15px;
    background: linear-gradient(#ffffff, #e9e9e9);
    border-radius: 9px 26px 13px 11px / 9px 18px 15px 13px;
}

.shoe__sole::after {
    content: '';
    position: absolute;
    left: 7px;
    right: 8px;
    bottom: 4px;
    height: 3.5px;
    background: var(--red);
    border-radius: 4px;
}

/* cano alto */
.shoe__collar {
    left: 3px;
    top: 0;
    width: 34px;
    height: 31px;
    background: linear-gradient(160deg, #2c2c2c, #050505);
    border-radius: 17px 15px 3px 2px;
}

.shoe__heel {
    left: 1px;
    bottom: 12px;
    width: 27px;
    height: 27px;
    background: linear-gradient(160deg, #1d1d1d, #000);
    border-radius: 13px 4px 4px 7px;
}

/* cabedal */
.shoe__upper {
    left: 11px;
    bottom: 11px;
    width: 64px;
    height: 28px;
    background: linear-gradient(165deg, #272727, #0a0a0a);
    border-radius: 14px 27px 5px 9px;
}

/* biqueira */
.shoe__toe {
    right: -1px;
    bottom: 9px;
    width: 33px;
    height: 25px;
    background: linear-gradient(180deg, #1a1a1a, #000);
    border-radius: 7px 21px 7px 16px;
}

/* cadarço */
.shoe__lace {
    left: 27px;
    top: 7px;
    width: 27px;
    height: 16px;
    background: repeating-linear-gradient(118deg, #f3f3f3 0 3px, transparent 3px 7px);
    border-radius: 4px;
    transform: skewX(-8deg);
    opacity: .92;
}

/* swoosh */
.shoe__sw {
    right: 12px;
    bottom: 14px;
    width: 39px;
    height: 15px;
    color: var(--red);
    transform: rotate(-3deg);
}

.shoe__sw svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media (hover:none),
(pointer:coarse) {

    .shoe {
        display: none;
    }

    body,
    a,
    button,
    .pill,
    .prod,
    summary {
        cursor: auto;
    }
}

/* HEADER */
.hd {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem clamp(1.2rem, 4vw, 2.6rem);
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.hd__swoosh {
    width: 64px;
    height: 23px;
    color: var(--ink);
    display: block;
}

.hd__nav {
    display: flex;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hd__nav a {
    font-weight: 600;
    font-size: .95rem;
    position: relative;
}

.hd__nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--ink);
    transition: width .35s var(--ease);
}

.hd__nav a:hover::after {
    width: 100%;
}

.hd__bag {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--ink);
}

.hd__bag svg {
    width: 26px;
    height: 26px;
}

.hd__count {
    position: absolute;
    top: -6px;
    right: -8px;
    display: grid;
    place-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-family: var(--mono);
    font-size: .66rem;
}

@media (max-width:860px) {
    .hd__nav {
        display: none;
    }
}

/* HERO */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: clamp(6rem, 12vw, 9rem) clamp(1.2rem, 4vw, 3rem) clamp(4rem, 8vw, 7rem);
    overflow: hidden;
    color: #fff;
    background: #c20f1a;
}

.hero__stage {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bgimg,
.hero__shoeWrap,
.hero__shoe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* o fundo vermelho e o tênis vêm da MESMA foto (1600x1067):
   sobrepostos com object-position idêntico, o tênis pousa exato na própria sombra */
.hero__bgimg {
    object-fit: cover;
    object-position: center 56%;
    z-index: 0;
}

.hero__shoeWrap {
    z-index: 1;
    will-change: transform;
}

.hero__shoe {
    object-fit: cover;
    object-position: center 56%;
    will-change: transform, opacity;
}

html.motion .hero__shoe {
    opacity: 0;
}

.hero__veil {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(96deg, rgba(120, 6, 14, .82) 0%, rgba(120, 6, 14, .42) 30%, rgba(120, 6, 14, 0) 55%),
        linear-gradient(0deg, rgba(70, 2, 8, .55) 0%, rgba(70, 2, 8, 0) 32%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 1340px;
    margin: 0 auto;
    width: 100%;
}

.hero__kick {
    font-family: var(--mono);
    font-size: .78rem;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.hero__h {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(3.4rem, 12.5vw, 10.5rem);
    line-height: .9;
    letter-spacing: -.03em;
    text-transform: uppercase;
    margin: 1rem 0 1.6rem;
}

.hero__h .line {
    display: block;
    overflow: hidden;
    padding-top: .12em;
    margin-top: -.04em;
}

.hero__h .outline span {
    color: transparent;
    -webkit-text-stroke: 2px #fff;
}

.hero__h [data-char] {
    display: inline-block;
}

.hero__p {
    max-width: 38ch;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    opacity: .94;
    margin-bottom: 2.2rem;
    text-shadow: 0 1px 12px rgba(80, 0, 6, .4);
}

.hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__tag {
    position: absolute;
    right: clamp(1.2rem, 4vw, 3rem);
    bottom: clamp(2rem, 5vw, 3.4rem);
    z-index: 3;
    font-family: var(--mono);
    font-size: .76rem;
    letter-spacing: .04em;
    opacity: .9;
}

.hero__tag b {
    font-weight: 500;
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 1.6rem;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    font-family: var(--mono);
    font-size: .64rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .85;
}

.hero__scroll span {
    width: 1.5px;
    height: 34px;
    background: linear-gradient(#fff, transparent);
    transform-origin: top;
}

html.motion .hero__scroll span {
    animation: scrollcue 1.8s var(--ease) infinite;
}

@keyframes scrollcue {

    0%,
    100% {
        transform: scaleY(.35);
        opacity: .3;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@media (max-width:760px) {

    .hero__tag,
    .hero__scroll {
        display: none;
    }

    .hero__bgimg,
    .hero__shoe {
        object-position: center 62%;
    }

    .hero__veil {
        background:
            linear-gradient(180deg, rgba(120, 6, 14, .5) 0%, rgba(120, 6, 14, 0) 28%),
            linear-gradient(0deg, rgba(70, 2, 8, .72) 0%, rgba(70, 2, 8, 0) 42%);
    }
}

/* STRIP */
.strip {
    background: var(--ink);
    color: #fff;
    overflow: hidden;
    padding: .8rem 0;
}

.strip__t {
    display: flex;
    width: max-content;
    font-family: var(--display);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}

html.motion .strip__t {
    animation: marq 26s linear infinite;
}

@keyframes marq {
    to {
        transform: translateX(-50%)
    }
}

/* CATÁLOGO */
.cat {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.2rem, 4vw, 3rem);
}

.cat__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cat__title {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3.4rem);
    letter-spacing: -.02em;
}

.cat__filters {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.pill {
    padding: .55rem 1.1rem;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-weight: 600;
    font-size: .85rem;
    cursor: pointer;
    transition: all .25s var(--ease);
}

.pill:hover {
    border-color: var(--ink);
}

.pill.is-active {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.prods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.6rem) clamp(1rem, 1.6vw, 1.2rem);
}

.prod {
    cursor: pointer;
    will-change: transform, opacity;
}

.prod__frame {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--soft);
    border-radius: 10px;
}

.prod__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.prod:hover .prod__frame img {
    transform: scale(1.07);
}

.prod__flag {
    position: absolute;
    top: .8rem;
    left: .8rem;
    background: var(--red);
    color: #fff;
    font-family: var(--mono);
    font-size: .66rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .3rem .6rem;
    border-radius: 4px;
}

.prod__add {
    position: absolute;
    right: .8rem;
    bottom: .8rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 0;
    cursor: pointer;
    font-size: 1.3rem;
    display: grid;
    place-content: center;
    box-shadow: 0 6px 18px -6px rgba(0, 0, 0, .3);
    transform: translateY(8px) scale(.8);
    opacity: 0;
    transition: all .35s var(--ease);
}

.prod:hover .prod__add {
    transform: none;
    opacity: 1;
}

.prod__meta {
    padding: .9rem .2rem 0;
}

.prod__cat {
    font-size: .82rem;
    color: var(--muted);
}

.prod__name {
    font-weight: 600;
    font-size: 1rem;
    margin: .15rem 0;
}

.prod__price {
    font-weight: 600;
}

.prod.is-hidden {
    display: none;
}

@media (max-width:1000px) {
    .prods {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:680px) {
    .prods {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DROP */
.drop {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 6rem) clamp(1.2rem, 4vw, 3rem);
}

.drop__media {
    aspect-ratio: 5/4;
    overflow: hidden;
    border-radius: 14px;
    background: var(--soft);
}

.drop__media img {
    width: 100%;
    height: 112%;
    object-fit: cover;
    will-change: transform;
}

.drop__h {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -.02em;
    margin-bottom: 1.2rem;
    max-width: 14ch;
}

.drop__txt p {
    color: var(--muted);
    max-width: 42ch;
    margin-bottom: 1.8rem;
}

@media (max-width:820px) {
    .drop {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
.ft {
    border-top: 1px solid var(--line);
    padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 4vw, 3rem) 2.4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.ft__top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: clamp(2rem, 6vw, 5rem);
    padding-bottom: 3rem;
}

.ft__swoosh {
    width: 88px;
    height: 31px;
    color: var(--ink);
}

.ft__brand p {
    margin-top: 1.2rem;
    color: var(--muted);
    max-width: 26ch;
    font-size: .95rem;
}

.ft__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ft__col {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.ft__col h4 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: .4rem;
}

.ft__col a {
    color: var(--muted);
    font-size: .92rem;
    width: fit-content;
    transition: color .25s var(--ease);
}

.ft__col a:hover {
    color: var(--ink);
}

.ft__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.8rem;
    border-top: 1px solid var(--line);
}

.ft__made {
    font-size: .82rem;
    color: var(--muted);
    max-width: 52ch;
}

.ft__made a {
    color: var(--ink);
    font-weight: 600;
    border-bottom: 1px solid var(--ink);
}

.ft__copy {
    font-family: var(--mono);
    font-size: .72rem;
    color: var(--muted);
    letter-spacing: .06em;
}

@media (max-width:820px) {
    .ft__top {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }
}

@media (max-width:520px) {
    .ft__cols {
        grid-template-columns: 1fr 1fr;
        gap: 1.8rem 1rem;
    }
}

/* ===== KICKER variante clara ===== */
.kick--w {
    color: #fff;
}

/* ===== CAT head (kicker + título) ===== */
.cat__head .kick {
    margin-bottom: .6rem;
}

/* ===== TECNOLOGIA ===== */
.tec {
    background: var(--ink);
    color: #fff;
    padding: clamp(4rem, 9vw, 8rem) clamp(1.2rem, 4vw, 3rem);
}

.tec__head {
    max-width: 1400px;
    margin: 0 auto 3.4rem;
}

.tec__title {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3.6rem);
    letter-spacing: -.02em;
    line-height: 1.02;
    margin: .6rem 0 1rem;
    max-width: 18ch;
}

.tec__sub {
    color: rgba(255, 255, 255, .62);
    max-width: 50ch;
    font-size: 1.02rem;
}

.tec__grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.tec__card {
    position: relative;
    overflow: hidden;
    padding: 2rem 1.6rem 2.2rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    background: linear-gradient(170deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0));
    transition: border-color .35s var(--ease), transform .35s var(--ease);
}

.tec__card:hover {
    border-color: rgba(255, 255, 255, .4);
    transform: translateY(-5px);
}

.tec__ic {
    display: grid;
    place-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid var(--red);
    color: var(--red);
    margin-bottom: 1.4rem;
}

.tec__ic svg {
    width: 30px;
    height: 30px;
}

.tec__card h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: .5rem;
}

.tec__card p {
    color: rgba(255, 255, 255, .66);
    font-size: .95rem;
    line-height: 1.5;
}

.tec__n {
    position: absolute;
    top: 1.1rem;
    right: 1.3rem;
    font-family: var(--mono);
    font-size: .76rem;
    color: rgba(255, 255, 255, .3);
}

@media (max-width:900px) {
    .tec__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:520px) {
    .tec__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== DROP extras ===== */
.drop__media {
    position: relative;
}

.drop__badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
    font-family: var(--mono);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .45rem .8rem;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.drop__list {
    list-style: none;
    margin: 0 0 1.9rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.drop__list li {
    position: relative;
    padding-left: 1.7rem;
    color: var(--muted);
    font-size: .98rem;
}

.drop__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .5em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--red);
}

/* ===== MANIFESTO ===== */
.mani {
    position: relative;
    overflow: hidden;
    background: var(--red);
    color: #fff;
    padding: clamp(4.5rem, 11vw, 9rem) clamp(1.2rem, 4vw, 3rem);
}

.mani__inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.mani__h {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.8rem, 4.6vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -.02em;
    margin: 1rem auto 1.4rem;
    max-width: 20ch;
}

.mani__p {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    opacity: .9;
}

.mani__ghost {
    position: absolute;
    left: 50%;
    bottom: -.18em;
    transform: translateX(-50%);
    z-index: 1;
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(7rem, 26vw, 24rem);
    line-height: .8;
    letter-spacing: -.04em;
    color: rgba(255, 255, 255, .1);
    white-space: nowrap;
    pointer-events: none;
}

/* ===== BENEFÍCIOS ===== */
.bene {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.2rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.4rem, 3vw, 2.6rem);
}

.bene__item {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.bene__ic {
    display: grid;
    place-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--soft);
    color: var(--ink);
    margin-bottom: .4rem;
    transition: background .3s var(--ease), color .3s var(--ease);
}

.bene__item:hover .bene__ic {
    background: var(--ink);
    color: #fff;
}

.bene__ic svg {
    width: 28px;
    height: 28px;
}

.bene__item h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.16rem;
}

.bene__item p {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.5;
    max-width: 28ch;
}

@media (max-width:900px) {
    .bene {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.2rem 1.6rem;
    }
}

@media (max-width:460px) {
    .bene {
        grid-template-columns: 1fr;
    }
}

/* QUICK VIEW + CART */
.qv,
.cart {
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.qv[hidden],
.cart[hidden] {
    display: none;
}

.qv__scrim,
.cart__scrim {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, .5);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity .4s var(--ease);
}

.qv.is-open .qv__scrim,
.cart.is-open .cart__scrim {
    opacity: 1;
}

.qv__panel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(880px, 94vw);
    max-height: 92vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: translate(-50%, -45%);
    opacity: 0;
    transition: transform .5s var(--ease), opacity .4s;
}

.qv.is-open .qv__panel {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.qv__close {
    position: absolute;
    top: .9rem;
    right: .9rem;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    font-size: 1.3rem;
}

.qv__img {
    aspect-ratio: 1/1;
    background: var(--soft);
    border-radius: 16px 0 0 16px;
    overflow: hidden;
}

.qv__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qv__info {
    padding: clamp(1.5rem, 4vw, 2.6rem);
    display: flex;
    flex-direction: column;
}

.qv__cat {
    font-family: var(--mono);
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--red);
}

.qv__title {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin: .3rem 0;
}

.qv__price {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.qv__desc {
    color: var(--muted);
    margin-bottom: 1.6rem;
}

.qv__lbl {
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: .6rem;
}

.qv__sizes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .5rem;
    margin-bottom: 1.6rem;
}

.qv__sizes button {
    padding: .7rem 0;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--body);
    transition: border-color .2s, background .2s;
}

.qv__sizes button:hover {
    border-color: var(--ink);
}

.qv__sizes button.is-active {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.qv__note {
    margin-top: .9rem;
    font-size: .78rem;
    color: var(--muted);
}

@media (max-width:720px) {
    .qv__panel {
        grid-template-columns: 1fr;
    }

    .qv__img {
        border-radius: 16px 16px 0 0;
        aspect-ratio: 16/11;
    }
}

/* CART */
.cart__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
}

.cart.is-open .cart__panel {
    transform: none;
}

.cart__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.2rem;
}

.cart__head button {
    background: none;
    border: 0;
    color: var(--muted);
    cursor: pointer;
}

.cart__items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.6rem;
}

.cart__empty {
    color: var(--muted);
    padding: 2rem 0;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
}

.cart-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    flex: none;
}

.cart-item__info {
    flex: 1;
}

.cart-item__info b {
    font-weight: 600;
}

.cart-item__info span {
    display: block;
    font-size: .78rem;
    color: var(--muted);
}

.cart-item__rm {
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--muted);
    font-size: 1.2rem;
}

.cart__foot {
    padding: 1.6rem;
    border-top: 1px solid var(--line);
}

.cart__total {
    display: flex;
    justify-content: space-between;
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
}

/* TOAST — só existe na tela quando tem mensagem (sem "bolinha" parada) */
.toast {
    position: fixed;
    left: 50%;
    bottom: 2rem;
    transform: translate(-50%, 200%);
    z-index: 1100;
    background: var(--ink);
    color: #fff;
    padding: .9rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .9rem;
    box-shadow: 0 14px 34px -10px rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: transform .5s var(--ease), opacity .4s var(--ease), visibility 0s linear .4s;
    pointer-events: none;
}

.toast.is-on {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
    transition: transform .5s var(--ease), opacity .4s var(--ease);
}

/* ===================== CHECKOUT ===================== */
.co {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.co[hidden] {
    display: none;
}

.co__scrim {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, .55);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity .4s var(--ease);
}

.co.is-open .co__scrim {
    opacity: 1;
}

.co__panel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(560px, 94vw);
    max-height: 92vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 20px;
    padding: clamp(1.6rem, 4vw, 2.6rem);
    transform: translate(-50%, -46%);
    opacity: 0;
    transition: transform .55s var(--ease), opacity .4s var(--ease);
}

.co.is-open .co__panel {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.co__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    font-size: 1.3rem;
    line-height: 1;
}

.co__view {
    animation: coIn .5s var(--ease);
}

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

/* stepper */
.co__steps {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1.6rem;
}

.co__steps>span {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted);
}

.co__steps i {
    display: grid;
    place-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--soft);
    color: var(--muted);
    font-style: normal;
    font-size: .76rem;
    font-family: var(--mono);
}

.co__steps>span.is-on {
    color: var(--ink);
}

.co__steps>span.is-on i {
    background: var(--ink);
    color: #fff;
}

.co__steps>span.is-done i {
    background: var(--red);
    color: #fff;
}

.co__steps-line {
    flex: 1;
    height: 2px;
    background: var(--line);
    border-radius: 2px;
}

.co__steps-line.is-on {
    background: var(--ink);
}

.co__h {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.4rem, 3.5vw, 1.9rem);
    letter-spacing: -.01em;
    margin-bottom: 1.2rem;
}

.co__h--c {
    text-align: center;
    margin-bottom: .4rem;
}

/* métodos */
.co__methods {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    margin-bottom: 1.4rem;
}

.co__method {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    text-align: left;
    padding: 1rem 1.1rem;
    border: 1.5px solid var(--line);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    transition: border-color .25s var(--ease), background .25s var(--ease);
}

.co__method:hover {
    border-color: #bdbdbd;
}

.co__method.is-active {
    border-color: var(--ink);
    background: #fafafa;
}

.co__mIc {
    display: grid;
    place-content: center;
    width: 44px;
    height: 44px;
    flex: none;
    border-radius: 11px;
    background: var(--soft);
    color: var(--ink);
}

.co__method.is-active .co__mIc {
    background: var(--ink);
    color: #fff;
}

.co__mIc svg {
    width: 24px;
    height: 24px;
}

.co__mInfo {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.co__mInfo b {
    font-weight: 600;
    font-size: 1rem;
}

.co__mInfo small {
    color: var(--muted);
    font-size: .82rem;
}

.co__mChk {
    width: 22px;
    height: 22px;
    flex: none;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    position: relative;
    transition: border-color .2s;
}

.co__method.is-active .co__mChk {
    border-color: var(--ink);
}

.co__method.is-active .co__mChk::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--ink);
}

/* cartão */
.co__card {
    margin-bottom: 1.4rem;
}

.co__card[hidden] {
    display: none;
}

.co__cardPreview {
    position: relative;
    aspect-ratio: 16/9.6;
    max-width: 320px;
    margin: 0 auto 1.2rem;
    padding: 1.2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #1c1c1c 0%, #000 55%, #2a0a0e 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 18px 40px -16px rgba(0, 0, 0, .6);
    overflow: hidden;
}

.co__cardPreview::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, rgba(228, 0, 43, .55), transparent 70%);
    pointer-events: none;
}

.co__cardBrand {
    align-self: flex-end;
    color: rgba(255, 255, 255, .85);
}

.co__cardBrand svg {
    width: 30px;
    height: 30px;
}

.co__cardNum {
    font-family: var(--mono);
    font-size: 1.15rem;
    letter-spacing: .12em;
}

.co__cardRow {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--mono);
    font-size: .76rem;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .82);
    text-transform: uppercase;
}

.co__cardName {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
}

.co__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
}

.co__field {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink);
}

.co__field--full {
    grid-column: 1 / -1;
}

.co__field input,
.co__field select {
    font-family: var(--body);
    font-size: .95rem;
    font-weight: 500;
    padding: .75rem .85rem;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    outline: none;
    transition: border-color .2s;
}

.co__field input:focus,
.co__field select:focus {
    border-color: var(--ink);
}

/* resumo */
.co__summary {
    border-top: 1px solid var(--line);
    padding-top: 1.1rem;
    margin-bottom: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.co__line {
    display: flex;
    justify-content: space-between;
    font-size: .95rem;
    color: var(--muted);
}

.co__line[hidden] {
    display: none;
}

.co__free {
    color: #1a8a3d;
    font-weight: 600;
}

.co__disc {
    color: var(--red);
    font-weight: 600;
}

.co__line--total {
    margin-top: .3rem;
    padding-top: .7rem;
    border-top: 1px solid var(--line);
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--ink);
}

.co__pay {
    margin-bottom: .9rem;
}

.co__safe {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .78rem;
    color: var(--muted);
    text-align: center;
}

.co__safe svg {
    width: 16px;
    height: 16px;
    flex: none;
}

.co__safe--c {
    margin-top: .8rem;
}

/* ===== confirmação ===== */
.co__hero {
    text-align: center;
    margin-bottom: 1.6rem;
}

.co__check {
    display: inline-grid;
    place-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    margin-bottom: 1rem;
}

.co__check svg {
    width: 38px;
    height: 38px;
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
}

.co.is-open .co__check svg {
    animation: coCheck .6s var(--ease) .2s forwards;
}

@keyframes coCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.co__order {
    color: var(--muted);
    font-size: .92rem;
}

.co__order b {
    color: var(--ink);
    font-family: var(--mono);
    letter-spacing: .02em;
}

/* eta */
.co__eta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    border: 1.5px solid var(--ink);
    border-radius: 14px;
    margin-bottom: 1.4rem;
}

.co__etaIc {
    display: grid;
    place-content: center;
    width: 44px;
    height: 44px;
    flex: none;
    border-radius: 11px;
    background: var(--ink);
    color: #fff;
}

.co__etaIc svg {
    width: 24px;
    height: 24px;
}

.co__eta>div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.co__etaLbl {
    font-size: .76rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.co__etaDate {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.2;
}

.co__etaTag {
    font-family: var(--mono);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--red);
    background: rgba(228, 0, 43, .1);
    padding: .35rem .6rem;
    border-radius: 6px;
    flex: none;
}

/* rastreamento */
.co__track {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.4rem;
}

.co__tstep {
    display: flex;
    gap: 1rem;
    position: relative;
}

.co__tstep::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 18px;
    bottom: -6px;
    width: 2px;
    background: var(--line);
}

.co__tstep:last-child::before {
    display: none;
}

.co__tdot {
    width: 18px;
    height: 18px;
    flex: none;
    border-radius: 50%;
    border: 2px solid var(--line);
    background: #fff;
    margin-top: 2px;
    z-index: 1;
}

.co__tstep.is-active .co__tdot {
    border-color: var(--ink);
    background: var(--ink);
}

.co__tbody {
    padding-bottom: 1.1rem;
}

.co__tbody b {
    font-weight: 600;
    font-size: .95rem;
}

.co__tbody span {
    display: block;
    font-size: .82rem;
    color: var(--muted);
}

.co__tstep.is-active .co__tbody b {
    color: var(--ink);
}

/* endereço */
.co__addr {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--soft);
    border-radius: 14px;
    margin-bottom: 1.4rem;
}

.co__addrIc {
    color: var(--ink);
    flex: none;
}

.co__addrIc svg {
    width: 22px;
    height: 22px;
}

.co__addrLbl {
    font-size: .76rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.co__addr p {
    font-size: .94rem;
    margin-top: .2rem;
}

/* itens */
.co__items {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin-bottom: 1.3rem;
}

.co__item {
    display: flex;
    align-items: center;
    gap: .9rem;
}

.co__item img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    flex: none;
}

.co__item__i {
    flex: 1;
}

.co__item__i b {
    font-weight: 600;
    font-size: .92rem;
}

.co__item__i span {
    display: block;
    font-size: .78rem;
    color: var(--muted);
}

.co__item__p {
    font-weight: 600;
    font-size: .92rem;
}

@media (max-width:480px) {
    .co__fields {
        grid-template-columns: 1fr 1fr;
    }

    .co__eta {
        flex-wrap: wrap;
    }

    .co__etaTag {
        order: 3;
    }
}

/* reveal */
html.motion [data-fade] {
    opacity: 0;
    transform: translateY(24px);
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition-duration: .001ms !important;
    }
}

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

::-webkit-scrollbar-track {
    background: var(--soft);
}

::-webkit-scrollbar-thumb {
    background: var(--ink);
    border-radius: 10px;
    border: 2px solid var(--soft);
}

/* ===================== HEADER TOOLS (busca + conta) ===================== */
.hd__tools {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.search {
    position: relative;
    display: flex;
    align-items: center;
    gap: .3rem;
    background: var(--soft);
    border: 1.5px solid transparent;
    border-radius: 999px;
    padding: .35rem .5rem .35rem .7rem;
    transition: border-color .25s var(--ease), background .25s;
}

.search:focus-within {
    border-color: var(--ink);
    background: #fff;
}

.search__btn {
    display: grid;
    place-content: center;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--ink);
    padding: 0;
}

.search__btn svg {
    width: 19px;
    height: 19px;
}

.search__in {
    border: 0;
    background: none;
    outline: none;
    font-family: var(--body);
    font-size: .9rem;
    width: clamp(140px, 15vw, 220px);
    color: var(--ink);
}

.search__res {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(360px, 86vw);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .35);
    border: 1px solid var(--line);
    overflow: hidden;
    display: none;
}

.search__res:not(:empty) {
    display: block;
}

.sr {
    display: flex;
    align-items: center;
    gap: .8rem;
    width: 100%;
    text-align: left;
    padding: .7rem .9rem;
    background: none;
    border: 0;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    transition: background .2s;
}

.sr:last-child {
    border-bottom: 0;
}

.sr:hover {
    background: var(--soft);
}

.sr img {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--soft);
    flex: none;
}

.sr span {
    display: flex;
    flex-direction: column;
}

.sr b {
    font-weight: 600;
    font-size: .9rem;
}

.sr small {
    color: var(--muted);
    font-size: .78rem;
}

.sr__none {
    padding: 1rem;
    color: var(--muted);
    font-size: .88rem;
}

.hd__acc {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--ink);
    font-family: var(--body);
    font-weight: 600;
    font-size: .9rem;
    padding: .3rem;
}

.hd__accIco {
    width: 23px;
    height: 23px;
}

.hd__acc.is-logged .hd__accIco {
    display: none;
}

.hd__accIni {
    display: grid;
    place-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
}

.hd__accIni[hidden] {
    display: none;
}

@media (max-width:560px) {
    .hd__accLbl {
        display: none;
    }

    .search__in {
        width: 0;
        padding: 0;
    }

    .search.is-open .search__in {
        width: 150px;
    }
}

/* ===================== CARD: favorito, nota, promoção ===================== */
.prod__fav {
    position: absolute;
    top: .7rem;
    right: .7rem;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    border: 0;
    cursor: pointer;
    display: grid;
    place-content: center;
    color: var(--ink);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), background .2s;
}

.prod:hover .prod__fav,
.prod__fav.is-on {
    opacity: 1;
    transform: none;
}

.prod__fav svg {
    width: 19px;
    height: 19px;
}

.prod__fav.is-on svg path {
    fill: var(--red);
    stroke: var(--red);
}

.prod__off {
    position: absolute;
    top: .8rem;
    left: .8rem;
    z-index: 2;
    background: var(--ink);
    color: #fff;
    font-family: var(--mono);
    font-size: .66rem;
    letter-spacing: .04em;
    padding: .3rem .5rem;
    border-radius: 4px;
}

.prod__flag+.prod__off,
.prod__frame .prod__flag~.prod__off {
    top: 2.6rem;
}

.prod__rate {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin: .2rem 0;
    font-size: .78rem;
    color: var(--muted);
}

.prod__stars {
    color: #f5a623;
    letter-spacing: -1px;
    font-size: .82rem;
}

.prod__old {
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 400;
    margin-right: .3rem;
    font-size: .92em;
}

.prod__now {
    color: var(--red);
}

.cat__empty {
    text-align: center;
    color: var(--muted);
    padding: 3rem 0;
}

/* quick view extras */
.qv__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.qv__fav {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    display: grid;
    place-content: center;
    color: var(--ink);
}

.qv__fav svg {
    width: 20px;
    height: 20px;
}

.qv__fav.is-on svg path {
    fill: var(--red);
    stroke: var(--red);
}

.qv__rate {
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: .3rem;
}

.qv__stars {
    color: #f5a623;
    letter-spacing: -1px;
}

.qv__price .prod__old {
    font-size: 1rem;
}

/* ===================== CAP DROP (boné + JUST DO IT) ===================== */
.capdrop {
    position: relative;
    min-height: 92svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #000;
    color: #fff;
    text-align: center;
    padding: clamp(4rem, 9vw, 8rem) clamp(1.2rem, 4vw, 3rem);
}

.capdrop__bg {
    position: absolute;
    inset: -6% 0;
    z-index: 0;
    background: #000 url('../../image/nike/just-do-it.png') no-repeat center 50% / clamp(560px, 92%, 1500px);
    opacity: .9;
}

.capdrop__glow {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(60% 50% at 50% 42%, rgba(228, 0, 43, .28), transparent 70%);
    pointer-events: none;
}

.capdrop__cap {
    position: relative;
    z-index: 2;
    width: clamp(220px, 34vw, 420px);
    margin-bottom: -2%;
    filter: drop-shadow(0 40px 50px rgba(0, 0, 0, .65));
    will-change: transform, opacity;
}

.capdrop__cap img {
    width: 100%;
    height: auto;
    display: block;
}

.capdrop__copy {
    position: relative;
    z-index: 3;
    max-width: 540px;
}

.capdrop__h {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2.6rem, 8vw, 5.5rem);
    line-height: .92;
    letter-spacing: -.03em;
    text-transform: uppercase;
    margin: .6rem 0 1rem;
}

.capdrop__copy p {
    color: rgba(255, 255, 255, .82);
    max-width: 42ch;
    margin: 0 auto 1.8rem;
    font-size: 1.05rem;
}

/* ===================== AUTH (login / cadastro) ===================== */
.auth {
    position: fixed;
    inset: 0;
    z-index: 1400;
}

.auth[hidden] {
    display: none;
}

.auth__scrim {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, .55);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity .4s var(--ease);
}

.auth.is-open .auth__scrim {
    opacity: 1;
}

.auth__panel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(420px, 94vw);
    background: #fff;
    border-radius: 20px;
    padding: clamp(1.8rem, 4vw, 2.6rem);
    text-align: center;
    transform: translate(-50%, -46%);
    opacity: 0;
    transition: transform .5s var(--ease), opacity .4s var(--ease);
}

.auth.is-open .auth__panel {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.auth__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0;
    background: var(--soft);
    font-size: 1.2rem;
    cursor: pointer;
}

.auth__logo {
    width: 58px;
    height: 21px;
    color: var(--ink);
    margin-bottom: 1.2rem;
}

.auth__title {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.7rem;
}

.auth__sub {
    color: var(--muted);
    font-size: .9rem;
    margin: .4rem auto 1.5rem;
    max-width: 30ch;
}

.auth__form {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    text-align: left;
}

.auth__field {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    font-size: .82rem;
    font-weight: 600;
}

.auth__field input {
    font-family: var(--body);
    font-size: .98rem;
    padding: .8rem .9rem;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    outline: none;
    transition: border-color .2s;
}

.auth__field input:focus {
    border-color: var(--ink);
}

.auth__err {
    color: var(--red);
    font-size: .82rem;
    min-height: 1em;
    margin: -.2rem 0 .2rem;
}

.auth__form .btn {
    margin-top: .4rem;
}

.auth__switch {
    margin-top: 1.2rem;
    font-size: .88rem;
    color: var(--muted);
}

.auth__switch button {
    background: none;
    border: 0;
    color: var(--ink);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--body);
    font-size: .88rem;
    text-decoration: underline;
}

.auth__demo {
    margin-top: 1.2rem;
    font-size: .72rem;
    color: var(--muted);
}

/* ===================== PAINEL DO CLIENTE ===================== */
.acc {
    position: fixed;
    inset: 0;
    z-index: 1350;
}

.acc[hidden] {
    display: none;
}

.acc__scrim {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, .5);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity .4s var(--ease);
}

.acc.is-open .acc__scrim {
    opacity: 1;
}

.acc__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(460px, 100%);
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
}

.acc.is-open .acc__panel {
    transform: none;
}

.acc__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0;
    background: var(--soft);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 3;
}

.acc__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.8rem 1.6rem 1.3rem;
    border-bottom: 1px solid var(--line);
}

.acc__avatar {
    display: grid;
    place-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    flex: none;
}

.acc__id {
    display: flex;
    flex-direction: column;
}

.acc__id b {
    font-weight: 600;
    font-size: 1.1rem;
}

.acc__id span {
    color: var(--muted);
    font-size: .85rem;
}

.acc__tabs {
    display: flex;
    gap: .3rem;
    padding: .8rem 1rem;
    overflow-x: auto;
    border-bottom: 1px solid var(--line);
    flex: none;
}

.acc__tabs button {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
    background: none;
    border: 0;
    cursor: pointer;
    font-family: var(--body);
    font-weight: 600;
    font-size: .84rem;
    color: var(--muted);
    padding: .5rem .7rem;
    border-radius: 999px;
    transition: background .2s, color .2s;
}

.acc__tabs button svg {
    width: 16px;
    height: 16px;
}

.acc__tabs button:hover {
    color: var(--ink);
}

.acc__tabs button.is-active {
    background: var(--ink);
    color: #fff;
}

.acc__out {
    color: var(--red) !important;
    margin-left: auto;
}

.acc__content {
    flex: 1;
    overflow-y: auto;
    padding: 1.4rem 1.6rem 2rem;
}

/* pedidos */
.ac-order {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.1rem;
    margin-bottom: 1rem;
}

.ac-order__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ac-order__top b {
    font-family: var(--mono);
    font-size: .92rem;
}

.ac-tag {
    font-size: .7rem;
    font-weight: 600;
    background: var(--soft);
    padding: .25rem .6rem;
    border-radius: 999px;
}

.ac-order__sub {
    font-size: .8rem;
    color: var(--muted);
    margin: .3rem 0 .8rem;
}

.ac-order__items {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: .8rem;
}

.ac-order__items img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--soft);
}

.ac-order__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: .7rem;
    font-size: .9rem;
    color: var(--muted);
}

.ac-order__foot b {
    color: var(--ink);
    font-size: 1.05rem;
}

/* avaliações */
.ac-rev {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.1rem;
    margin-bottom: 1rem;
}

.ac-rev__head {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: .7rem;
}

.ac-rev__head img {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    object-fit: cover;
}

.ac-rev__head b {
    font-weight: 600;
    font-size: .95rem;
}

.ac-rev__stars {
    display: flex;
    gap: .15rem;
    margin-bottom: .7rem;
}

.ac-rev__stars button {
    background: none;
    border: 0;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--line);
    padding: 0;
    transition: color .15s;
}

.ac-rev__stars button.on {
    color: #f5a623;
}

.ac-rev__txt {
    width: 100%;
    min-height: 64px;
    resize: vertical;
    font-family: var(--body);
    font-size: .9rem;
    padding: .7rem .8rem;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    outline: none;
    margin-bottom: .7rem;
}

.ac-rev__txt:focus {
    border-color: var(--ink);
}

.ac-rev__save {
    font-size: .85rem;
    padding: .6rem 1.2rem;
}

/* promoções / favoritos grid */
.ac-coupon {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    background: var(--ink);
    color: #fff;
    border-radius: 14px;
    padding: 1.1rem 1.3rem;
    margin-bottom: 1.3rem;
}

.ac-coupon>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ac-coupon b {
    font-family: var(--mono);
    letter-spacing: .1em;
    border: 1px dashed rgba(255, 255, 255, .5);
    padding: .25rem .7rem;
    border-radius: 6px;
}

.ac-coupon small {
    color: rgba(255, 255, 255, .65);
    font-size: .76rem;
}

.ac-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem;
}

.ac-mini {
    position: relative;
    text-align: left;
    background: var(--soft);
    border: 0;
    border-radius: 12px;
    padding: .6rem;
    cursor: pointer;
    transition: transform .25s var(--ease);
}

.ac-mini:hover {
    transform: translateY(-3px);
}

.ac-mini img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: .5rem;
}

.ac-mini b {
    display: block;
    font-weight: 600;
    font-size: .82rem;
    line-height: 1.2;
}

.ac-mini small {
    font-size: .8rem;
    color: var(--muted);
}

.ac-mini small s {
    margin-right: .3rem;
}

.ac-mini__off {
    position: absolute;
    top: .9rem;
    left: .9rem;
    background: var(--red);
    color: #fff;
    font-family: var(--mono);
    font-size: .62rem;
    padding: .2rem .4rem;
    border-radius: 4px;
}

/* perfil + vazio */
.ac-profile {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.ac-profile label {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    font-size: .82rem;
    font-weight: 600;
}

.ac-profile input {
    font-family: var(--body);
    font-size: .95rem;
    padding: .75rem .85rem;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    outline: none;
}

.ac-profile input:disabled {
    background: var(--soft);
    color: var(--muted);
}

.ac-profile .btn {
    width: fit-content;
}

.ac-profile__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
    margin-top: .8rem;
}

.ac-profile__stats div {
    background: var(--soft);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.ac-profile__stats b {
    display: block;
    font-size: 1.5rem;
    font-family: var(--display);
}

.ac-profile__stats span {
    font-size: .76rem;
    color: var(--muted);
}

.ac-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--muted);
}

.ac-empty p {
    margin-bottom: 1.2rem;
}

@media (max-width:420px) {
    .ac-grid {
        grid-template-columns: 1fr;
    }
}
