/* ===========================================================
   MAX IMPORTS — Tema Dark
   =========================================================== */

:root {
    --bg:        #0a0a0c;
    --bg-2:      #121216;
    --bg-3:      #1a1a20;
    --surface:   #16161c;
    --border:    #26262e;
    --border-2:  #33333d;
    --text:      #f4f4f6;
    --text-dim:  #a0a0ac;
    --text-mute: #6b6b78;

    --gold:      #f0a92b;
    --gold-2:    #e8871e;
    --gold-soft: rgba(240, 169, 43, .12);

    --green:     #22c55e;
    --red:       #ef4444;

    --radius:    14px;
    --radius-sm: 10px;
    --shadow:    0 10px 40px rgba(0,0,0,.45);
    --shadow-gold: 0 8px 30px rgba(240,169,43,.22);

    --container: 1200px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Barra de topo ---------- */
.topbar {
    background: linear-gradient(90deg, var(--gold-2), var(--gold));
    color: #1a1000;
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 7px 20px;
}
.topbar__text {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .3px;
    text-align: center;
}

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,10,12,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
.header__inner {
    display: flex;
    align-items: center;
    gap: 26px;
    height: 78px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand__logo { height: 42px; width: auto; }
/* usado no admin */
.brand__mark {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #0a0a0c;
    padding: 3px 8px;
    border-radius: 7px;
    font-style: italic;
    font-weight: 900;
    transform: skewX(-6deg);
    display: inline-block;
}
.brand__text { color: var(--text); letter-spacing: 2px; font-size: .9rem; }

.search {
    flex: 1;
    max-width: 560px;
    display: flex;
    background: var(--bg-3);
    border: 1px solid var(--border-2);
    border-radius: 100px;
    overflow: hidden;
    transition: .18s;
}
.search:focus-within { border-color: var(--gold); }
.search__input {
    flex: 1;
    background: none;
    border: none;
    padding: 13px 20px;
    color: var(--text);
    font-family: inherit;
    font-size: .95rem;
}
.search__input:focus { outline: none; }
.search__input::placeholder { color: var(--text-mute); }
.search__btn {
    padding: 0 20px;
    color: #0a0a0c;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    display: grid;
    place-items: center;
}
.search__btn:hover { filter: brightness(1.08); }

.header__actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.header__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: .9rem;
    font-weight: 600;
    transition: .15s;
}
.header__link:hover { color: var(--gold); }

.cart-btn {
    position: relative;
    display: grid;
    place-items: center;
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    color: var(--text);
    flex-shrink: 0;
    transition: .18s;
}
.cart-btn:hover { border-color: var(--gold); color: var(--gold); }
.cart-btn__badge {
    position: absolute;
    top: -6px; right: -6px;
    background: var(--gold);
    color: #0a0a0c;
    font-size: .7rem;
    font-weight: 800;
    min-width: 20px; height: 20px;
    border-radius: 10px;
    display: grid; place-items: center;
    padding: 0 5px;
}

/* ---------- Barra de categorias ---------- */
.catbar {
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 78px;
    z-index: 99;
}
.catbar__inner {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}
.catbar__inner::-webkit-scrollbar { display: none; }
.catbar__link {
    padding: 14px 16px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-dim);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: .15s;
}
.catbar__link:hover { color: var(--text); border-bottom-color: var(--gold); }
.catbar__link--hot { color: var(--gold); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    flex-shrink: 0;
}
.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: .25s;
}

/* ---------- Hero / Banner ---------- */
.hero { padding: 34px 0; }
.hero__banner {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 30px;
    padding: 50px 54px;
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(700px 400px at 90% 10%, rgba(240,169,43,.20), transparent 60%),
        linear-gradient(120deg, #16161c 0%, #0f0f13 60%);
    border: 1px solid var(--border-2);
}
.hero__content { position: relative; z-index: 2; }

/* Banner com foto de fundo / carrossel */
.hero__banner--foto {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    display: flex;
    align-items: center;
}
.hero__banner--foto .hero__content { position: relative; z-index: 2; max-width: 560px; }
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center 26%;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.1s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__banner--foto::before {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, rgba(10,10,12,.94) 0%, rgba(10,10,12,.72) 42%, rgba(10,10,12,.25) 100%);
}
.hero__dots {
    position: absolute; bottom: 16px; left: 54px; z-index: 3;
    display: flex; gap: 8px;
}
.hero__dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(255,255,255,.4);
    transition: .2s;
}
.hero__dot.is-active { background: var(--gold); width: 24px; border-radius: 5px; }
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: var(--gold-soft);
    border: 1px solid rgba(240,169,43,.3);
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}
.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}
.hero h1 .grad {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 1.08rem;
    color: var(--text-dim);
    max-width: 480px;
    margin-bottom: 28px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__art {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
}
.hero__art img {
    width: 100%;
    max-width: 360px;
    filter: drop-shadow(0 20px 50px rgba(240,169,43,.28));
    animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Categorias (cards) ---------- */
.cats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.cat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: .2s;
}
.cat-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.cat-card__emoji { font-size: 2rem; }
.cat-card__name { font-weight: 700; flex: 1; }
.cat-card__arrow { color: var(--gold); font-size: 1.3rem; transition: .2s; }
.cat-card:hover .cat-card__arrow { transform: translateX(4px); }

/* ---------- Botões ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 700;
    font-size: .98rem;
    transition: .2s;
    white-space: nowrap;
    border: 1px solid transparent;
}
.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #0a0a0c;
    box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(240,169,43,.34); }
.btn--ghost {
    background: var(--bg-3);
    color: var(--text);
    border-color: var(--border-2);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--whats {
    background: #25d366;
    color: #06210f;
}
.btn--whats:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37,211,102,.3); }
.btn--block { width: 100%; }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }

/* ---------- Faixa de vantagens ---------- */
.perks {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-2);
}
.perks__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
}
.perk {
    background: var(--bg-2);
    padding: 26px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.perk__icon {
    width: 42px; height: 42px;
    border-radius: 11px;
    background: var(--gold-soft);
    color: var(--gold);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.perk strong { display: block; font-size: .95rem; }
.perk span { font-size: .82rem; color: var(--text-mute); }

/* ---------- Seções ---------- */
.section { padding: 60px 0; }
.section--tight { padding: 30px 0 10px; }
.section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 38px;
    flex-wrap: wrap;
}
.section__title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -.8px;
}
.section__title small {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.section__sub { color: var(--text-dim); max-width: 460px; }

/* ---------- Filtros categoria ---------- */
.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}
.filter {
    padding: 9px 18px;
    border-radius: 100px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    color: var(--text-dim);
    font-size: .9rem;
    font-weight: 600;
    transition: .18s;
}
.filter:hover { color: var(--text); border-color: var(--border-2); }
.filter.is-active {
    background: var(--gold);
    color: #0a0a0c;
    border-color: var(--gold);
}

/* ---------- Grid de produtos ---------- */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .22s;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-5px);
    border-color: var(--border-2);
    box-shadow: var(--shadow);
}
.card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
    overflow: hidden;
}
.card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: .35s;
}
.card:hover .card__media img { transform: scale(1.06); }
.card__tag {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--red);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 7px;
}
.card__tag--gold { background: var(--gold); color: #0a0a0c; }
.card__frete {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(34,197,94,.92);
    color: #06210f;
    font-size: .68rem;
    font-weight: 800;
    padding: 4px 9px;
    border-radius: 7px;
}
.card__esgotado {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 2;
    background: rgba(20,20,26,.9);
    color: #fca5a5;
    border: 1px solid rgba(239,68,68,.4);
    font-size: .7rem; font-weight: 800;
    padding: 4px 10px; border-radius: 7px;
}
.card--off .card__media img { filter: grayscale(.7) brightness(.7); }
.card__body { padding: 16px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.card__cat { font-size: .72rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.card__name { font-size: .98rem; font-weight: 600; line-height: 1.35; min-height: 2.7em; }
.card__prices { display: flex; align-items: baseline; gap: 8px; margin-top: auto; flex-wrap: wrap; }
.card__price { font-size: 1.35rem; font-weight: 900; color: var(--text); }
.card__old { font-size: .88rem; color: var(--text-mute); text-decoration: line-through; }
.card__parc { font-size: .82rem; color: var(--green); font-weight: 600; }
.card__btn {
    margin-top: 8px;
    padding: 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #0a0a0c;
    font-weight: 800;
    font-size: .92rem;
    text-align: center;
    transition: .18s;
}
.card__btn:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ---------- Página produto ---------- */
.produto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px 0;
}
.produto__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: crosshair;
}
.produto__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .12s ease-out; }
.produto__zoomhint {
    position: absolute;
    bottom: 12px; left: 12px;
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(10,10,12,.72);
    backdrop-filter: blur(4px);
    color: var(--text);
    font-size: .78rem; font-weight: 600;
    padding: 6px 11px;
    border-radius: 100px;
    pointer-events: none;
    transition: .2s;
}
.produto__media:hover .produto__zoomhint { opacity: 0; }
.produto__thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.produto__thumb {
    width: 72px; height: 72px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border);
    background: var(--bg-3);
    transition: .15s;
}
.produto__thumb img { width: 100%; height: 100%; object-fit: cover; }
.produto__thumb:hover { border-color: var(--border-2); }
.produto__thumb.is-active { border-color: var(--gold); }
.produto__cat { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: .82rem; margin-bottom: 12px; }
.produto h1 { font-size: 2rem; font-weight: 800; letter-spacing: -.6px; margin-bottom: 18px; }
.produto__oldrow { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.produto__prices { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.produto__price { font-size: 2.4rem; font-weight: 900; color: var(--gold); }
.produto__old { font-size: 1.15rem; color: var(--text-mute); text-decoration: line-through; }
.produto__off {
    background: var(--red);
    color: #fff;
    font-weight: 800;
    font-size: .8rem;
    padding: 4px 10px;
    border-radius: 7px;
}
.produto__parc { color: var(--text-dim); font-size: 1rem; margin-bottom: 14px; }
.produto__frete {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(34,197,94,.12);
    border: 1px solid rgba(34,197,94,.3);
    color: #86efac;
    font-weight: 600;
    font-size: .9rem;
    padding: 10px 16px;
    border-radius: 10px;
    margin-bottom: 26px;
}
.produto__desc { color: var(--text-dim); margin-bottom: 28px; line-height: 1.7; }
.field { margin-bottom: 24px; }
.field__label { font-weight: 600; margin-bottom: 12px; font-size: .95rem; }
.sizes { display: flex; gap: 10px; flex-wrap: wrap; }
.size {
    min-width: 52px;
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--bg-3);
    border: 1.5px solid var(--border-2);
    color: var(--text);
    font-weight: 700;
    transition: .15s;
}
.size:hover { border-color: var(--gold); }
.size.is-active { background: var(--gold); color: #0a0a0c; border-color: var(--gold); }
.size.is-off { opacity: .4; text-decoration: line-through; cursor: not-allowed; }
.size.is-off:hover { border-color: var(--border-2); }
.produto__estoque { min-height: 20px; margin-top: 10px; color: var(--gold); font-weight: 700; font-size: .88rem; }
.produto__esgotado {
    background: rgba(239,68,68,.12);
    border: 1px solid rgba(239,68,68,.3);
    color: #fca5a5;
    padding: 12px 16px; border-radius: 10px;
    font-weight: 600; margin-bottom: 20px;
}
.qty {
    display: inline-flex;
    align-items: center;
    background: var(--bg-3);
    border: 1px solid var(--border-2);
    border-radius: 10px;
    overflow: hidden;
}
.qty button { width: 44px; height: 46px; color: var(--text); font-size: 1.3rem; font-weight: 700; }
.qty button:hover { color: var(--gold); }
.qty input {
    width: 50px; height: 46px;
    background: none; border: none;
    color: var(--text);
    text-align: center;
    font-size: 1.05rem; font-weight: 700;
    -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
/* Tabela de medidas */
.medidas { margin-top: 16px; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.medidas summary {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 16px;
    background: var(--bg-3);
    cursor: pointer; font-weight: 600; font-size: .92rem;
    list-style: none; user-select: none;
}
.medidas summary::-webkit-details-marker { display: none; }
.medidas summary::after { content: '+'; margin-left: auto; font-size: 1.2rem; color: var(--text-mute); }
.medidas[open] summary::after { content: '−'; }
.medidas__tab { width: 100%; border-collapse: collapse; }
.medidas__tab th, .medidas__tab td { padding: 10px 16px; text-align: left; border-top: 1px solid var(--border); font-size: .9rem; }
.medidas__tab th { color: var(--text-mute); font-size: .78rem; text-transform: uppercase; letter-spacing: .5px; }
.medidas__nota { padding: 10px 16px 14px; font-size: .8rem; color: var(--text-mute); }

/* Personalização (nome/número) */
.person-toggle {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px;
    background: var(--bg-3);
    border: 1.5px solid var(--border-2);
    border-radius: 12px;
    cursor: pointer;
    transition: .15s;
}
.person-toggle:hover { border-color: var(--gold); }
.person-toggle input { position: absolute; opacity: 0; }
.person-toggle__box {
    width: 22px; height: 22px; flex-shrink: 0;
    border: 2px solid var(--border-2);
    border-radius: 6px;
    position: relative;
    transition: .15s;
}
.person-toggle input:checked + .person-toggle__box {
    background: var(--gold); border-color: var(--gold);
}
.person-toggle input:checked + .person-toggle__box::after {
    content: '✓'; color: #0a0a0c; font-weight: 900; font-size: 14px;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.person-toggle__txt strong { display: block; font-size: .98rem; }
.person-toggle__txt small { color: var(--text-dim); font-size: .84rem; }
.person-toggle__txt small b { color: var(--gold); }
.person-fields { margin-top: 14px; }
.person-fields .input { text-transform: uppercase; }
.person-fields .input#pnum { text-transform: none; }
.person-hint { font-size: .8rem; color: var(--text-mute); margin-top: 8px; }
.cart-item__pers {
    font-size: .82rem; color: var(--gold); font-weight: 600; margin-bottom: 8px;
}
.cart-item__pers span { color: var(--text-mute); font-weight: 400; }

.produto__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.produto__note {
    display: flex; align-items: center; gap: 10px;
    margin-top: 22px; padding-top: 22px;
    border-top: 1px solid var(--border);
    color: var(--text-mute); font-size: .88rem;
}

/* ---------- Carrinho ---------- */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
    padding: 40px 0 70px;
    align-items: start;
}
.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 14px;
}
.cart-item__img {
    width: 92px; height: 92px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-3);
    flex-shrink: 0;
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-weight: 600; margin-bottom: 4px; }
.cart-item__meta { font-size: .85rem; color: var(--text-mute); margin-bottom: 10px; }
.cart-item__bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.cart-item__price { font-weight: 800; font-size: 1.1rem; }
.cart-item__remove { color: var(--text-mute); font-size: .85rem; transition: .15s; }
.cart-item__remove:hover { color: var(--red); }

.summary {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: sticky;
    top: 88px;
}
.summary h3 { font-size: 1.2rem; margin-bottom: 18px; }
.summary__row { display: flex; justify-content: space-between; padding: 9px 0; color: var(--text-dim); }
.summary__row--total {
    border-top: 1px solid var(--border);
    margin-top: 8px; padding-top: 18px;
    color: var(--text);
    font-size: 1.3rem; font-weight: 800;
}
.summary__row--total span:last-child { color: var(--gold); }
.summary .btn { margin-top: 20px; }
.summary__safe { text-align: center; font-size: .82rem; color: var(--text-mute); margin-top: 14px; }

.empty {
    text-align: center;
    padding: 80px 20px;
}
.empty svg { color: var(--text-mute); margin-bottom: 20px; }
.empty h2 { font-size: 1.5rem; margin-bottom: 10px; }
.empty p { color: var(--text-dim); margin-bottom: 26px; }

/* ---------- Alertas ---------- */
.alert {
    padding: 13px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: .92rem;
}
.alert--ok { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.3); color: #86efac; }
.alert--err { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.3); color: #fca5a5; }

/* ---------- Admin ---------- */
.admin-login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 20px;
}
.admin-login__box {
    width: 100%; max-width: 380px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
}
.admin-login__box h1 { text-align: center; margin-bottom: 6px; }
.admin-login__box p { text-align: center; color: var(--text-mute); margin-bottom: 26px; font-size: .9rem; }

.input {
    width: 100%;
    padding: 13px 15px;
    background: var(--bg);
    border: 1px solid var(--border-2);
    border-radius: 10px;
    color: var(--text);
    font-size: .95rem;
    font-family: inherit;
    transition: .15s;
}
.input:focus { outline: none; border-color: var(--gold); }
textarea.input { resize: vertical; min-height: 90px; }
.label { display: block; font-weight: 600; margin-bottom: 8px; font-size: .9rem; }
.form-row { margin-bottom: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.admin-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
    gap: 16px; flex-wrap: wrap;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.admin-table th, .admin-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.admin-table th { font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-mute); background: var(--bg-2); }
.admin-table td { font-size: .92rem; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table img { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; }
.admin-actions { display: flex; gap: 8px; }
.icon-btn {
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--bg-3);
    border: 1px solid var(--border-2);
    color: var(--text-dim);
    font-size: .85rem; font-weight: 600;
    transition: .15s;
}
.icon-btn:hover { color: var(--text); border-color: var(--gold); }
.icon-btn--danger:hover { color: var(--red); border-color: var(--red); }
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: .75rem; font-weight: 700;
}
.badge--on { background: rgba(34,197,94,.15); color: #86efac; }
.badge--off { background: rgba(239,68,68,.15); color: #fca5a5; }

/* Abas do admin */
.tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 14px;
}
.tab {
    padding: 9px 16px;
    border-radius: 10px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    color: var(--text-dim);
    font-size: .9rem;
    font-weight: 600;
    transition: .15s;
}
.tab:hover { color: var(--text); border-color: var(--border-2); }
.tab.is-active { background: var(--gold); color: #0a0a0c; border-color: var(--gold); }

.admin-grid { display: grid; grid-template-columns: 1fr 380px; gap: 26px; align-items: start; }
.admin-h2 { font-size: 1.3rem; margin-bottom: 8px; }
.admin-hint { color: var(--text-mute); font-size: .88rem; margin-bottom: 18px; }
.admin-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
}
.admin-panel--narrow { max-width: 640px; }
.admin-panel .admin-table { border: none; }
.check { display: flex; align-items: center; gap: 8px; cursor: pointer; font-weight: 500; }
.check input { width: 17px; height: 17px; accent-color: var(--gold); }

/* Seletor de tamanhos no cadastro (chips clicáveis) */
.size-picker { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.size-opt { cursor: pointer; user-select: none; }
.size-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.size-opt span {
    display: grid; place-items: center;
    min-width: 46px; padding: 9px 12px;
    background: var(--bg-3);
    border: 1.5px solid var(--border-2);
    border-radius: 9px;
    font-weight: 700; font-size: .9rem;
    transition: .15s;
}
.size-opt input:checked + span { background: var(--gold); color: #0a0a0c; border-color: var(--gold); }
.size-opt input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.mp-box {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px;
    margin-bottom: 20px;
}
.banner-preview {
    height: 160px;
    border-radius: var(--radius-sm);
    background-size: cover;
    background-position: center 28%;
    border: 1px solid var(--border-2);
    margin-bottom: 20px;
    padding: 14px;
    display: flex;
    align-items: flex-start;
}
/* Estoque no cadastro de produto */
.estoque-grid { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.estoque-row { display: flex; align-items: center; gap: 12px; }
.estoque-row .size-opt { min-width: 80px; }
.estoque-in { max-width: 130px; padding: 8px 12px !important; }

/* Cards de pedido (admin) */
.ped {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 14px;
}
.ped__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.ped__head strong { font-size: 1rem; }
.ped__data { color: var(--text-mute); font-size: .82rem; margin: 0 12px; }
.ped__body { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 14px 0; border-top: 1px solid var(--border); }
.ped__lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-mute); margin-bottom: 8px; font-weight: 700; }
.ped__item { font-size: .9rem; color: var(--text-dim); }
.ped__item span { color: var(--text-mute); }
.ped__valores { font-size: .82rem; color: var(--text-mute); margin-top: 8px; }
.ped__end { font-size: .9rem; color: var(--text-dim); margin-bottom: 3px; }
.ped__acoes { display: flex; align-items: flex-end; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.ped__acoes .input { padding: 10px 12px; }
.ped__acoes select.input { min-width: 150px; }

.pedido-card__rastreio {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    background: var(--bg-2);
    border-radius: 8px; padding: 10px 12px;
    font-size: .86rem; color: var(--text-dim);
    margin-bottom: 12px;
}
.pedido-card__rastreio a { color: var(--gold); font-weight: 600; }

/* Lista de banners (carrossel) no admin */
.banner-lista { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.banner-item {
    display: flex; align-items: center; gap: 14px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px;
}
.banner-item__thumb {
    width: 120px; height: 64px; flex-shrink: 0;
    border-radius: 8px;
    background-size: cover; background-position: center 28%;
    border: 1px solid var(--border-2);
}
.banner-item__info { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.banner-item__acoes { display: flex; gap: 6px; }

.gal-admin { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.gal-admin__item { position: relative; width: 68px; height: 68px; border-radius: 9px; overflow: hidden; border: 1px solid var(--border-2); }
.gal-admin__item img { width: 100%; height: 100%; object-fit: cover; }
.gal-admin__del {
    position: absolute; top: 2px; right: 2px;
    width: 20px; height: 20px;
    background: rgba(239,68,68,.92); color: #fff;
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 15px; font-weight: 700; line-height: 1;
}
.gal-admin__del:hover { background: var(--red); }
.admin-login__box p { text-align: center; color: var(--text-mute); margin-bottom: 24px; font-size: .9rem; }

/* ---------- Conta / Login ---------- */
.auth-box {
    max-width: 420px;
    margin: 50px auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
}
.auth-box__title { font-size: 1.5rem; margin-bottom: 6px; }
.auth-box__sub { color: var(--text-dim); margin-bottom: 24px; font-size: .92rem; }
.auth-box__foot { text-align: center; margin-top: 18px; color: var(--text-dim); font-size: .9rem; }
.auth-box__foot a { color: var(--gold); font-weight: 600; }

.conta { padding: 34px 0 60px; }
.conta__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.conta__head h1 { font-size: 1.7rem; }
.conta__grid { display: grid; grid-template-columns: 1fr 380px; gap: 26px; align-items: start; }

.pedido-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 14px;
}
.pedido-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.pedido-card__data { color: var(--text-mute); font-size: .82rem; margin-left: 10px; }
.pedido-card__itens { border-top: 1px solid var(--border); padding-top: 12px; margin-bottom: 12px; }
.pedido-card__item { font-size: .9rem; color: var(--text-dim); padding: 2px 0; }
.pedido-card__item span { color: var(--text-mute); }
.pedido-card__foot { display: flex; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 12px; }
.pedido-card__foot strong { color: var(--gold); font-size: 1.1rem; }

.checkout-login {
    display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    background: var(--gold-soft);
    border: 1px solid rgba(240,169,43,.3);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 22px;
    font-size: .92rem;
}

/* ---------- Nossa loja ---------- */
.loja { padding: 40px 0 60px; }
.loja__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; margin-bottom: 34px; }
.loja__foto { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.loja__foto img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; display: block; }
.loja__selo {
    position: absolute; bottom: 14px; left: 14px;
    background: rgba(10,10,12,.82); backdrop-filter: blur(6px);
    color: var(--text); font-weight: 700; font-size: .85rem;
    padding: 8px 14px; border-radius: 100px;
}
.loja__info { display: flex; flex-direction: column; gap: 18px; }
.loja__bloco { display: flex; gap: 14px; align-items: flex-start; }
.loja__ico {
    width: 46px; height: 46px; flex-shrink: 0;
    border-radius: 12px; background: var(--gold-soft); color: var(--gold);
    display: grid; place-items: center;
}
.loja__bloco strong { display: block; margin-bottom: 3px; }
.loja__bloco p { color: var(--text-dim); font-size: .95rem; line-height: 1.5; }
.loja__mapa { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.loja__mapa iframe { display: block; filter: grayscale(.3); }
@media (max-width: 860px) {
    .loja__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- WhatsApp float ---------- */
.whats-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 8px 26px rgba(37,211,102,.4);
    z-index: 90;
    transition: .2s;
}
.whats-float:hover { transform: scale(1.08); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); margin-top: 40px; }
.footer__inner {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding: 54px 20px 40px;
}
.footer__logo { height: 38px; width: auto; margin-bottom: 16px; }
.footer__desc { color: var(--text-dim); max-width: 340px; font-size: .92rem; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--bg-3);
    border: 1px solid var(--border-2);
    color: var(--text-dim);
    display: grid; place-items: center;
    transition: .15s;
}
.footer__social a:hover { color: var(--gold); border-color: var(--gold); }
.pays { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.pay {
    padding: 6px 11px;
    background: var(--bg-3);
    border: 1px solid var(--border-2);
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--text-dim);
}
.pay--seguro { color: #86efac; }
.pay-badge {
    display: inline-flex;
    width: 46px; height: 30px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.4);
    transition: transform .15s;
}
.pay-badge:hover { transform: translateY(-2px); }
.pay-badge svg { width: 100%; height: 100%; display: block; }
.footer__title { font-size: .95rem; margin-bottom: 16px; }
.footer__link { display: block; color: var(--text-dim); padding: 5px 0; font-size: .9rem; transition: .15s; }
.footer__link:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer__bottom p { text-align: center; color: var(--text-mute); font-size: .85rem; }

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
    .grid { grid-template-columns: repeat(3, 1fr); }
    .perks__grid { grid-template-columns: repeat(2, 1fr); }
    .cats { grid-template-columns: repeat(2, 1fr); }
    .hero__banner { padding: 40px; }
}
@media (max-width: 860px) {
    .hero__banner { grid-template-columns: 1fr; text-align: center; padding: 36px 26px; }
    .hero__banner--foto { min-height: 420px; text-align: left; padding: 30px 26px; }
    .hero__slide { background-position: center 16%; }
    .hero__dots { left: 26px; bottom: 12px; }
    .hero__art { display: none; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .produto { grid-template-columns: 1fr; gap: 30px; }
    .cart-layout { grid-template-columns: 1fr; }
    .summary { position: static; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .admin-grid { grid-template-columns: 1fr; }
    .admin-grid .summary { position: static; }
    .conta__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    /* Header quebra em duas linhas: logo+carrinho em cima, busca embaixo */
    .header__inner { flex-wrap: wrap; height: auto; padding-top: 12px; padding-bottom: 12px; gap: 14px; }
    .search { order: 3; flex-basis: 100%; max-width: none; }
    .header__link span { display: none; }
    .catbar { position: static; }
}
@media (max-width: 620px) {
    .grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .card__body { padding: 13px; }
    .card__price { font-size: 1.15rem; }
    .card__name { font-size: .9rem; }
    .cats { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 26px; }
    .admin-table { display: block; overflow-x: auto; white-space: nowrap; }
    .form-grid { grid-template-columns: 1fr; }
    .whats-float { bottom: 16px; right: 16px; }
    .topbar__text { font-size: .74rem; }
    .ped__body { grid-template-columns: 1fr; gap: 14px; }
    .ped__acoes { flex-direction: column; align-items: stretch; }
    .ped__acoes select.input { min-width: 0; }
}
@media (max-width: 420px) {
    .footer__inner { grid-template-columns: 1fr; }
}
