/*
  Korax Store — CSS limpo e consolidado
  Arquivo gerado a partir do CSS enviado, removendo duplicações e patches repetidos.
*/


/* Base */

:root {
    --bg: #07080f;
    --bg-2: #0a0b13;
    --panel: rgba(8, 10, 18, .76);
    --panel-2: rgba(10, 12, 22, .64);
    --panel-3: rgba(255, 255, 255, .045);
    --text: #f7f8fb;
    --muted: #b7bac5;
    --muted2: #8d929f;
    --accent: #ffd43b;
    --accent2: #f7b500;
    --accent3: #ffb000;
    --accent-soft: rgba(255, 212, 59, .115);
    --accent-border: rgba(255, 212, 59, .42);
    --line: rgba(255, 255, 255, .095);
    --line-soft: rgba(255, 255, 255, .055);
    --danger: #ff5571;
    --radius: 14px;
    --shadow: 0 12px 30px rgba(0, 0, 0, .26);
    --shadow-soft: 0 7px 18px rgba(0, 0, 0, .20);
    --max: 1260px;
}

* {
    box-sizing: border-box;
}

/* Garante que o atributo HTML "hidden" sempre vença regras de display de
   componentes (ex: .primary-btn, .ghost-btn). Sem isso, botões escondidos
   via JS (como "Novo tópico" no fórum) continuavam visíveis na tela mesmo
   sem o listener de clique pronto, parecendo "travados" ao clicar. */
[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 500;
    overflow-x: hidden;
    font-size: 14px;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.25;
}

.desktop-only {
    display: initial;
}


/* Aviso e header */

.notice {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 16px;
    background: var(--accent);
    color: #07080f;
    font-size: 13px;
    font-weight: 750;
    line-height: 1;
    border-bottom: 1px solid rgba(0, 0, 0, .18);
}

.notice strong {
    display: inline-flex;
    align-items: center;
    height: 20px;
    padding: 0 7px;
    border-radius: 4px;
    background: #07080f;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .01em;
}

.header {
    height: 62px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 clamp(18px, 4.2vw, 72px);
    background: rgba(7, 8, 15, .96);
    border-bottom: 1px solid rgba(255, 255, 255, .075);
    position: relative;
    z-index: 30;
}

.header.sticky {
    position: sticky;
    top: 0;
    backdrop-filter: blur(14px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: max-content;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.03em;
}

.brand img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .35));
}

.verified {
    width: 18px;
    height: 18px;
    color: #3d7cff;
    fill: #3d7cff;
    stroke: #fff;
}

.header-left-actions,
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-actions {
    margin-left: auto;
}

.round-btn,
.login-btn,
.ip-btn,
.cart-btn {
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 12px;
    background: rgba(255, 255, 255, .035);
    color: #f8f8fb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 13px;
    font-size: 13px;
    font-weight: 800;
    transition: background .18s ease, border-color .18s ease, transform .18s ease, color .18s ease;
}

.round-btn {
    width: 36px;
    padding: 0;
    border-radius: 999px;
}

.round-btn:hover,
.login-btn:hover {
    background: rgba(255, 255, 255, .065);
    transform: translateY(-1px);
}

.ip-btn {
    min-width: 172px;
    background: rgba(255, 212, 59, .055);
    border-color: var(--accent-border);
    color: var(--accent);
}

.ip-btn:hover {
    background: rgba(255, 212, 59, .11);
    transform: translateY(-1px);
}

.cart-btn,
.primary-btn,
.buy-btn,
.category-card a,
.cta-strip a {
    border: 0;
    background: var(--accent);
    color: #07080f;
    box-shadow: none;
}

.cart-btn:hover,
.primary-btn:hover,
.buy-btn:hover,
.category-card a:hover,
.cta-strip a:hover {
    background: #ffe16a;
    transform: translateY(-1px);
}

.cart-count {
    display: none;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #07080f;
    color: #fff;
    place-items: center;
    padding: 0 6px;
    font-size: 10px;
}

.search {
    width: min(330px, 23vw);
    height: 38px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .10);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    color: #b9bcc6;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .015);
}

.search:focus-within {
    border-color: rgba(255, 255, 255, .20);
    background: rgba(255, 255, 255, .06);
}

.search input {
    width: 100%;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    font-size: 14px;
}

.search input::placeholder {
    color: #b9bcc6;
}


/* Fundos e hero */

.page-bg {
    position: relative;
    background-image: linear-gradient(180deg, rgba(7, 8, 15, .44), rgba(7, 8, 15, .58)), url("assets/background.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    isolation: isolate;
}

.page-bg:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: rgba(5, 7, 12, .28);
    backdrop-filter: blur(1.8px) saturate(.95);
}

.shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient( 90deg, rgba(7, 9, 16, 0), rgba(7, 9, 16, 0) 55%, rgba(7, 9, 16, 0));
}

.hero {
    min-height: 430px;
    height: 520px;
    max-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(560px, 50vw);
    margin-left: clamp(20px, 4.2vw, 72px);
    padding-bottom: 4px;
}

.hero h1 {
    margin: 0 0 22px;
    font-size: clamp(34px, 3.25vw, 52px);
    line-height: 1.02;
    letter-spacing: -1.4px;
    font-weight: 700 !important;
    color: #fff;
    text-shadow: 0 4px 18px rgba(0, 0, 0, .28);
}

.hero h1 span {
    color: var(--accent);
}

.primary-btn {
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 17px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 900;
    transition: background .18s ease, transform .18s ease;
}

.primary-btn.full {
    width: 100%;
}

.hero-character {
    position: absolute;
    z-index: 10;
    right: clamp(-1000px, -25vw, 90px);
    top: 30%;
    width: clamp(340px, 14.5vw, 515px);
    transform: translateY(-44%) rotate(4deg);
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, .40));
}

.scroll-down {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid var(--accent-border);
    background: rgba(255, 212, 59, .09);
    color: var(--accent);
    display: grid;
    place-items: center;
    transition: background .18s ease, transform .18s ease;
}

.scroll-down:hover {
    background: rgba(255, 212, 59, .16);
    transform: translateX(-50%) translateY(-2px);
}


/* Componentes */

.page-bg>* {
    position: relative;
    z-index: 2;
}

.section {
    position: relative;
    padding: 46px clamp(18px, 4.2vw, 72px) 52px;
    min-height: auto;
    isolation: isolate;
}

.section>* {
    position: relative;
    z-index: 3;
}

.compact-section {
    padding-top: 42px;
}

.section-pill {
    min-height: 34px;
    border-radius: 12px;
    border: 1px solid var(--accent-border);
    background: rgba(255, 212, 59, .10);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 13px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.section-title.center {
    text-align: center;
}

.section-title h2 {
    margin: 22px 0 6px;
    font-size: clamp(26px, 2.4vw, 36px);
    line-height: 1.05;
    letter-spacing: -0.8px;
    font-weight: 700 !important;
}

.section-title p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    font-weight: 500;
}

.category-row {
    max-width: var(--max);
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.category-card {
    min-height: 142px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .11);
    background: rgb(0, 42, 255);
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: 112px 1fr;
    align-items: center;
    gap: 16px;
    padding: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    border-color: rgb(255, 200, 0);
    background: rgba(0, 42, 255, 0);
}

.category-card img {
    width: 112px;
    height: 112px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .24);
}

.category-card h2 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.05;
    letter-spacing: -.035em;
    font-weight: 950;
}

.category-card p {
    margin: 0 0 14px;
    color: #c3c6ce;
    font-size: 13px;
    line-height: 1.34;
    max-width: 250px;
}

.category-card a {
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 15px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 950;
    transition: background .18s ease, transform .18s ease;
}

.loading-card {
    grid-column: 1/-1;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .09);
    background: rgba(8, 10, 18, .70);
    backdrop-filter: blur(12px);
    padding: 20px;
    color: #d5d7de;
    font-weight: 850;
    text-align: center;
    font-size: 13px;
}

.benefits {
    max-width: var(--max);
    margin: 56px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 38px;
}

.benefits article {
    min-height: 154px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .085);
    background: rgba(7, 8, 15, .70);
    backdrop-filter: blur(10px);
    padding: 22px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.benefits span,
.cta-strip span {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border-radius: 12px;
    background: rgba(255, 212, 59, .10);
    color: var(--accent);
    display: grid;
    place-items: center;
}

.benefits span svg {
    width: 26px;
    height: 26px;
}

.benefits h3 {
    margin: 15px 0 7px;
    font-size: 19px;
    line-height: 1.1;
    letter-spacing: -.035em;
    font-weight: 950;
}

.benefits p {
    margin: 0 auto;
    max-width: 330px;
    color: #c4c6cf;
    font-size: 13.5px;
    line-height: 1.42;
}

.buyers-section {
    padding-top: 48px;
}

.buyers {
    max-width: 980px;
    margin: 36px auto 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 18px;
}

.buyer {
    height: 174px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(7, 8, 15, .63);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.buyer.first {
    height: 214px;
    border-color: rgba(255, 212, 59, .55);
}

.avatar {
    width: 70px;
    height: 70px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    position: relative;
    color: var(--accent);
    background: rgba(255, 212, 59, .12);
    border: 5px solid rgba(255, 212, 59, .34);
    border-width: 4px;
}

.avatar svg {
    width: 31px;
    height: 31px;
}

.avatar b {
    position: absolute;
    right: -9px;
    bottom: 4px;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: var(--accent2);
    color: #111;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 950;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .25);
}

.second .avatar {
    border-color: rgba(210, 214, 226, .48);
    color: #d7dbe4;
    background: rgba(210, 214, 226, .10);
}

.second .avatar b {
    background: #d0d4df;
    color: #2b2d34;
}

.third .avatar {
    border-color: rgba(255, 160, 48, .48);
    color: #ffad3d;
    background: rgba(255, 160, 48, .11);
}

.third .avatar b {
    background: #ff9733;
    color: #fff;
}

.crown {
    position: absolute;
    top: -22px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--accent2);
    color: #111;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .32);
}

.buyer h3 {
    margin: 16px 0 5px;
    font-size: 16px;
    letter-spacing: -.02em;
    font-weight: 950;
}

.buyer p {
    margin: 0;
    color: var(--accent2);
    font-size: 15px;
    letter-spacing: 3px;
    font-weight: 900;
}

.second p {
    color: #bfc2cc;
}

.cta-strip {
    max-width: 980px;
    min-height: 84px;
    margin: 0 auto;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .075);
    background: rgba(7, 8, 15, .68);
    backdrop-filter: blur(13px);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    box-shadow: var(--shadow-soft);
}

.cta-strip span {
    width: 46px;
    height: 46px;
    margin: 0;
}

.cta-strip h3 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 950;
}

.cta-strip p {
    margin: 0;
    color: #c3c5ce;
    font-size: 13.5px;
}

.cta-strip a {
    margin-left: auto;
    border-radius: 11px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 950;
    transition: background .18s ease, transform .18s ease;
}

.faq-section {
    padding-top: 50px;
    padding-bottom: 62px;
}

.faq {
    max-width: 780px;
    margin: 50px auto 0;
    margin-top: 34px;
}

.faq details {
    margin-bottom: 10px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, .075);
    background: rgba(7, 8, 15, .68);
    backdrop-filter: blur(12px);
    padding: 0 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.faq summary {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 15.5px;
    font-weight: 950;
    letter-spacing: -.02em;
    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary:after {
    content: "⌄";
    font-size: 20px;
    color: #fff;
    opacity: .9;
    transition: transform .18s ease;
}

.faq details[open] summary:after {
    transform: rotate(180deg);
}

.faq p {
    margin: 0 0 17px;
    color: #c6c8d0;
    line-height: 1.46;
    font-size: 13.5px;
}

.footer {
    background: #07080f;
    border-top: 1px solid rgba(255, 255, 255, .075);
}

.footer-top {
    max-width: var(--max);
    margin: 0 auto;
    padding: 36px clamp(18px, 4.2vw, 72px) 30px;
    display: flex;
    justify-content: space-between;
    gap: 28px;
}

.footer h2 {
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    letter-spacing: -.04em;
    font-weight: 950;
}

.footer h2 img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.footer p {
    max-width: 540px;
    margin: 0 0 14px;
    color: #c6c8d0;
    font-size: 13.5px;
    line-height: 1.48;
}

.footer nav {
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    text-align: right;
    font-weight: 850;
    font-size: 13.5px;
}

.footer nav h3 {
    margin: 0 0 3px;
    font-size: 17px;
    font-weight: 950;
}

.footer nav a {
    color: #f1f2f5;
    transition: color .18s ease;
}

.footer nav a:hover {
    color: var(--accent);
}

.footer-bottom {
    min-height: 72px;
    border-top: 1px solid rgba(255, 255, 255, .065);
    padding: 20px clamp(18px, 4.2vw, 72px);
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 20px;
    max-width: var(--max);
    margin: 0 auto;
}

.footer-bottom p {
    margin: 0 0 7px;
    color: #b7bac5;
    font-size: 12px;
}

.footer-bottom div {
    display: flex;
    gap: 16px;
}

.footer-bottom svg {
    width: 22px;
    height: 22px;
}

.category-page {
    position: relative;
    min-height: 620px;
    padding: 44px clamp(18px, 4.2vw, 72px) 72px;
}

.category-page>* {
    position: relative;
    z-index: 3;
}

.category-heading {
    max-width: var(--max);
    margin: 0 auto 38px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.back {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(7, 8, 15, .86);
    border: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    place-items: center;
    transition: background .18s ease, transform .18s ease;
}

.back:hover {
    background: rgba(255, 255, 255, .07);
    transform: translateY(-1px);
}

.category-heading h1 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -.04em;
    font-weight: 950;
}

.products-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.product-card {
    border-radius: 12px 12px 15px 15px;
    overflow: hidden;
    background: rgba(9, 11, 20, .72);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .30);
    backdrop-filter: blur(11px);
    transition: transform .18s ease, border-color .18s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 212, 59, .24);
}

.product-image {
    height: 250px;
    display: grid;
    place-items: end center;
    overflow: hidden;
    position: relative;
    background: #282936;
}

.product-image:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .16), transparent 58%);
    opacity: .8;
    pointer-events: none;
}

.product-image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image.dark {
    background: #34313b;
}

.product-image.green {
    background: #0b4040;
}

.product-image.red {
    background: #770919;
}

.product-info {
    padding: 14px;
}

.product-info h2 {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: -.025em;
    font-weight: 950;
    margin-bottom: 11px;
}

.price-line {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 5px;
    font-size: 12px;
}

.price-line del {
    color: #aeb1bc;
    font-size: 15px;
}

.price-line span {
    min-height: 24px;
    border-radius: 7px;
    border: 1px solid var(--accent-border);
    background: rgba(255, 212, 59, .10);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 950;
}

.price-line svg {
    width: 15px;
    height: 15px;
}

.product-info strong {
    display: block;
    margin-bottom: 3px;
    color: var(--accent);
    font-size: 19px;
    line-height: 1;
    font-weight: 950;
}

.product-info p {
    margin: 0 0 18px;
    color: #c3c5cf;
    font-size: 13px;
    margin-bottom: 13px;
}

.buy-btn {
    width: 100%;
    height: 40px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 950;
    transition: background .18s ease, transform .18s ease;
}

.monthly-goal {
    max-width: var(--max);
    margin: 54px auto 0;
    position: relative;
    z-index: 3;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, .075);
    background: rgba(7, 8, 15, .70);
    backdrop-filter: blur(13px);
    padding: 23px;
    box-shadow: var(--shadow-soft);
    margin-top: 42px;
}

.monthly-goal h2 {
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    letter-spacing: -.035em;
    font-weight: 950;
}

.monthly-goal h2 svg {
    color: var(--accent);
}

.monthly-goal p {
    margin: 0 0 22px;
    color: #c6c8d0;
    font-size: 13.5px;
    margin-bottom: 15px;
}

.bar {
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, .13);
}

.bar span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.bar-footer {
    margin-top: 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #c4c6cf;
    font-size: 13px;
}

.bar-footer b {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
}

.cart-page {
    min-height: calc(100vh - 74px);
    padding: 54px 20px;
}

.cart-panel {
    position: relative;
    z-index: 3;
    max-width: 650px;
    margin: 0 auto;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .085);
    background: rgba(7, 8, 15, .76);
    backdrop-filter: blur(14px);
    padding: 26px;
    box-shadow: var(--shadow-soft);
}

.cart-panel h1 {
    margin: 0 0 24px;
    font-size: 25px;
    letter-spacing: -.04em;
    margin-bottom: 18px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 14px 0;
    font-size: 13.5px;
}

.cart-item p {
    margin: 4px 0 0;
    color: #bfc2cc;
}

.cart-total {
    margin-top: 8px;
    padding: 17px 0;
    border-top: 1px solid rgba(255, 255, 255, .09);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 950;
}

.toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    border-radius: 12px;
    border: 1px solid var(--accent-border);
    background: #11131d;
    color: #fff;
    padding: 11px 14px;
    box-shadow: var(--shadow-soft);
    font-weight: 850;
    font-size: 13px;
}

.admin-page {
    min-height: calc(100vh - 74px);
    padding: 46px clamp(18px, 4.2vw, 72px) 72px;
}

.admin-page>* {
    position: relative;
    z-index: 3;
}

.admin-login-card,
.admin-shell {
    max-width: 1220px;
    margin: 0 auto;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .085);
    background: rgba(7, 8, 15, .76);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-soft);
    padding: 26px;
}

.admin-login-card {
    max-width: 520px;
}

.admin-login-card h1,
.admin-top h1 {
    margin: 20px 0 8px;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -.05em;
    font-weight: 950;
}

.admin-login-card p,
.admin-top p,
.muted {
    color: #c6c8d0;
    line-height: 1.55;
}

.admin-help {
    margin-top: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .075);
    background: rgba(255, 255, 255, .04);
    padding: 16px;
    color: #c8cad2;
    line-height: 1.5;
}

.admin-help code {
    background: rgba(255, 212, 59, .12);
    color: var(--accent);
    padding: 2px 6px;
    border-radius: 6px;
}

.admin-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.admin-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 22px 0;
}

.tab-btn,
.ghost-btn,
.danger-btn {
    height: 38px;
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, .095);
    background: rgba(255, 255, 255, .045);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 14px;
    font-weight: 900;
    transition: .18s;
    font-size: 13px;
}

.tab-btn.active,
.ghost-btn:hover {
    border-color: var(--accent-border);
    background: rgba(255, 212, 59, .10);
    color: var(--accent);
}

.danger-btn {
    background: rgba(255, 53, 81, .12);
    border-color: rgba(255, 53, 81, .25);
    color: #ff7b91;
}

.danger-btn:hover {
    background: rgba(255, 53, 81, .20);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.admin-grid.two {
    display: grid;
    grid-template-columns: minmax(320px, 460px) 1fr;
    gap: 22px;
    align-items: start;
}

.admin-card {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .035);
    padding: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.admin-card h2 {
    margin: 0 0 18px;
    font-size: 19px;
    letter-spacing: -.03em;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.admin-form.compact {
    margin-top: 24px;
}

.admin-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #e8e9ef;
    font-weight: 850;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    min-height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .24);
    color: #fff;
    padding: 0 14px;
    outline: none;
    font-size: 13px;
}

.admin-form textarea {
    min-height: 92px;
    padding-top: 12px;
    resize: vertical;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    border-color: var(--accent-border);
    box-shadow: 0 0 0 4px rgba(255, 212, 59, .08);
}

.admin-form select option {
    background: #090b13;
    color: #fff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.check-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.check-row label,
.check-inline {
    flex-direction: row !important;
    align-items: center;
}

.check-row input,
.check-inline input {
    width: auto;
    min-height: auto;
}

.admin-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.admin-message {
    min-height: 24px;
    margin: 12px 0;
    color: #cfd0d9;
    font-weight: 850;
}

.admin-message.success {
    color: #76f0a2;
}

.admin-message.error {
    color: #ff7b91;
}

.admin-message.info {
    color: var(--accent);
}

.admin-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-list-item {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: 12px;
    align-items: center;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, .075);
    background: rgba(255, 255, 255, .035);
    padding: 10px;
}

.admin-list-item.no-img {
    grid-template-columns: 1fr auto;
}

.admin-list-item img {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    object-fit: cover;
    background: rgba(255, 255, 255, .05);
}

.admin-list-item b {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.admin-list-item p {
    margin: 0;
    color: #bbbcc7;
    font-size: 12px;
}

.row-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.row-actions .ghost-btn,
.row-actions .danger-btn {
    height: 38px;
    padding: 0 12px;
    border-radius: 10px;
}

.login-btn {
    color: #fff;
}

.category-card,
.benefits article,
.buyer,
.cta-strip,
.faq details,
.product-card,
.monthly-goal,
.cart-panel,
.admin-login-card,
.admin-shell,
.admin-card {
    background: rgba(0, 0, 0, 0.581);
    border-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(1px);
}

h1,
h2,
h3,
h4,
.brand,
.primary-btn,
.buy-btn,
.category-card a,
.cta-strip a,
.login-btn,
.ip-btn,
.cart-btn,
.section-pill {
    font-weight: 700 !important;
}

p,
.faq p,
.category-card p,
.benefits p,
.footer p,
.section-title p {
    font-weight: 400 !important;
}

.buyer .avatar {
    overflow: visible;
}

.buyer .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
    display: block;
}

.buyer .avatar img+svg,
.buyer .avatar svg {
    display: none;
}

.buyer .avatar b {
    z-index: 3;
}

.buyer .avatar.contain img {
    object-fit: contain;
    padding: 6px;
    background: rgba(255, 255, 255, 0.04);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0);
    transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.footer-socials a:hover {
    background: rgba(255, 212, 59, 0.12);
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-socials svg {
    width: 22px;
    height: 22px;
}

.team-section {
    padding-top: 64px;
    padding-bottom: 78px;
}

.team-grid {
    max-width: 980px;
    margin: 42px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.team-card {
    min-height: 245px;
    border-radius: 18px;
    padding: 24px 18px;
    background: rgba(0, 0, 0, 0.581);
    border: 1px solid rgba(255, 255, 255, 0);
    backdrop-filter: blur(1px);
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.team-card:hover {
    transform: translateY(-3px);
    background: rgba(0, 0, 0, 0.68);
    border-color: rgba(255, 212, 59, 0.18);
}

.team-avatar {
    width: 84px;
    height: 84px;
    border-radius: 999px;
    padding: 4px;
    background: rgba(255, 212, 59, 0.12);
    border: 3px solid rgba(255, 212, 59, 0.34);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 14px;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
    display: block;
}

.team-role {
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 212, 59, 0.12);
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 10px;
}

.team-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.team-card p {
    margin: 0;
    color: #c3c5ce;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 400;
}

.team-card.owner .team-avatar {
    border-color: rgba(255, 0, 0, 0.5);
}

.team-card.admin .team-avatar {
    border-color: rgba(254, 108, 108, 0.45);
}

.team-card.mod .team-avatar {
    border-color: rgba(80, 160, 255, 0.45);
}

.team-card.helper .team-avatar {
    border-color: rgba(80, 255, 150, 0.45);
}

.product-detail-page {
    min-height: calc(100vh - 62px);
    padding: 38px clamp(18px, 4.2vw, 72px) 72px;
}

.product-detail-page::before {
    background: rgba(5, 7, 12, 0.42);
    backdrop-filter: blur(2px) saturate(0.92);
}

.product-detail-shell,
.product-benefits,
.similar-products-wrap {
    position: relative;
    z-index: 3;
    max-width: var(--max);
    margin: 0 auto;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(320px, 470px) 1fr;
    gap: 18px;
    align-items: start;
}

.product-detail-card,
.product-description-card,
.product-benefits article,
.similar-product-card {
    background: rgba(0, 0, 0, 0.581);
    border: 1px solid rgba(255, 255, 255, 0);
    backdrop-filter: blur(1px);
    box-shadow: var(--shadow-soft);
}

.product-detail-card {
    border-radius: 18px;
    overflow: hidden;
}

.product-detail-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-detail-info {
    position: relative;
    padding: 18px;
}

.product-detail-info h1 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.product-detail-price-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.product-detail-price-line del {
    color: #aeb1bc;
    font-size: 14px;
}

.product-detail-price-line span {
    min-height: 24px;
    border-radius: 8px;
    border: 1px solid rgba(48, 211, 229, 0.35);
    background: rgba(48, 211, 229, 0.12);
    color: #30d3e5;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 2px 7px;
    font-size: 12px;
    font-weight: 800;
}

.product-detail-info strong {
    display: block;
    color: var(--accent);
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 5px;
}

.product-detail-info p {
    margin: 0;
    color: #c6c8d0;
    font-size: 14px;
}

.product-stock {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
}

.product-stock span {
    min-height: 26px;
    border-radius: 8px;
    padding: 4px 9px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.product-detail-actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-detail-actions .buy-btn {
    height: 44px;
    border-radius: 12px;
}

.detail-secondary-btn {
    width: 100%;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.detail-secondary-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.065);
    border-color: rgba(255, 255, 255, 0.14);
}

.product-description-card {
    min-height: 420px;
    border-radius: 18px;
    padding: 24px;
}

.product-description-card h2 {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.product-description-text {
    color: #f4f5f8;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;
}

.product-description-text p {
    margin: 0 0 10px;
}

.product-description-text b,
.product-description-text strong {
    font-weight: 800;
}

.product-description-text ul {
    margin: 10px 0;
    padding-left: 20px;
}

.product-description-text li {
    margin-bottom: 7px;
}

.product-benefits {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-benefits article {
    min-height: 150px;
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
}

.product-benefits span {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--accent);
    background: rgba(255, 212, 59, 0.12);
    border: 1px solid rgba(255, 212, 59, 0.22);
}

.product-benefits h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
}

.product-benefits p {
    max-width: 330px;
    margin: 0 auto;
    color: #c6c8d0;
    font-size: 13.5px;
    line-height: 1.45;
}

.similar-products-wrap {
    margin-top: 44px;
}

.similar-products-wrap h2 {
    margin: 0 0 24px;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.similar-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 260px));
    gap: 18px;
}

.similar-product-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.18s ease, background 0.18s ease;
}

.similar-product-card:hover {
    transform: translateY(-3px);
    background: rgba(0, 0, 0, 0.68);
}

.similar-product-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.similar-product-info {
    padding: 13px;
}

.similar-product-info h3 {
    margin: 0 0 9px;
    font-size: 15px;
    font-weight: 700;
}

.similar-product-info strong {
    display: block;
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 11px;
}

.similar-product-info a {
    width: 100%;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: #07080f;
    font-size: 13px;
    font-weight: 800;
}

.product-error {
    max-width: 700px;
    margin: 0 auto;
    padding: 26px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.581);
    color: #fff;
    text-align: center;
}

.product-error h1 {
    margin: 0 0 8px;
    font-size: 26px;
}

.product-error p {
    margin: 0 0 18px;
    color: #c6c8d0;
}


/* Responsivo */

@media (max-width:1280px) {
    .header {
        padding: 0 30px;
    }
    .search {
        width: 270px;
    }
    .hero-content {
        margin-left: 36px;
        width: min(520px, 55vw);
    }
    .hero h1 {
        font-size: clamp(32px, 3.8vw, 48px);
    }
    .category-card {
        grid-template-columns: 96px 1fr;
        gap: 14px;
    }
    .category-card img {
        width: 96px;
        height: 96px;
    }
    .product-image {
        height: 220px;
    }
}

@media (max-width:980px) {
    .notice {
        height: 28px;
        font-size: 12px;
    }
    .notice strong {
        height: 22px;
        font-size: 12px;
    }
    .header {
        height: auto;
        min-height: 64px;
        padding: 10px 18px;
        flex-wrap: wrap;
        gap: 8px;
    }
    .brand {
        font-size: 17px;
    }
    .brand img {
        width: 34px;
        height: 34px;
    }
    .verified {
        width: 21px;
        height: 21px;
    }
    .header-left-actions {
        gap: 8px;
    }
    .header-actions {
        width: 100%;
        margin-left: 0;
        gap: 8px;
    }
    .search {
        order: 3;
        width: 100%;
        height: 36px;
    }
    .login-btn {
        display: none;
    }
    .hero {
        height: 430px;
        min-height: 410px;
        max-height: none;
    }
    .hero-content {
        width: auto;
        margin: 0 22px;
    }
    .hero h1 {
        font-size: 34px;
        line-height: 1.03;
        margin-bottom: 18px;
    }
    .hero-character {
        right: 18px;
        width: 118px;
        opacity: .8;
    }
    .scroll-down {
        bottom: 24px;
    }
    .section,
    .category-page {
        padding-left: 18px;
        padding-right: 18px;
    }
    .section {
        padding-top: 40px;
        padding-bottom: 44px;
    }
    .category-row,
    .benefits,
    .buyers,
    .products-grid {
        grid-template-columns: 1fr;
    }
    .category-card {
        grid-template-columns: 92px 1fr;
        min-height: 124px;
    }
    .category-card img {
        width: 92px;
        height: 92px;
    }
    .benefits article {
        min-height: 142px;
    }
    .buyers {
        gap: 14px;
    }
    .buyer,
    .buyer.first {
        height: 168px;
    }
    .cta-strip {
        min-height: auto;
        padding: 22px;
        align-items: flex-start;
    }
    .footer-top,
    .footer-bottom {
        display: block;
        padding-left: 22px;
        padding-right: 22px;
    }
    .footer nav {
        text-align: left;
        margin-top: 28px;
    }
    .footer-bottom div {
        margin-top: 20px;
    }
    .product-image {
        height: 250px;
    }
    .category-page {
        padding-top: 42px;
    }
    .desktop-only {
        display: none;
    }
    .admin-top {
        display: block;
    }
    .admin-top .primary-btn {
        margin-top: 18px;
    }
    .admin-grid.two {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .admin-list-item,
    .admin-list-item.no-img {
        grid-template-columns: 1fr;
    }
    .admin-list-item img {
        width: 82px;
        height: 82px;
    }
    .row-actions {
        justify-content: flex-start;
    }
    .admin-login-card,
    .admin-shell {
        padding: 24px;
    }
    .admin-login-card h1,
    .admin-top h1 {
        font-size: 34px;
    }
}

@media (max-width:560px) {
    .header {
        padding: 9px 14px;
    }
    .ip-btn {
        font-size: 0;
        width: 36px;
        min-width: 36px;
        padding: 0;
    }
    .ip-btn svg {
        margin: 0;
    }
    .cart-btn {
        padding: 0 11px;
    }
    .round-btn,
    .login-btn,
    .ip-btn,
    .cart-btn {
        height: 36px;
        border-radius: 11px;
    }
    .hero {
        height: 390px;
        min-height: 390px;
    }
    .hero h1 {
        font-size: 29px;
        letter-spacing: -.045em;
        margin-bottom: 17px;
    }
    .hero-character {
        width: 96px;
        right: 0;
        top: 55%;
        opacity: .62;
    }
    .primary-btn {
        height: 38px;
        padding: 0 14px;
        font-size: 12px;
    }
    .section-pill {
        min-height: 32px;
        font-size: 12px;
    }
    .section-title h2 {
        font-size: 26px;
    }
    .section-title p {
        font-size: 14px;
    }
    .category-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
        text-align: left;
    }
    .category-card img {
        width: 104px;
        height: 104px;
    }
    .category-card h2 {
        font-size: 18px;
    }
    .category-card p {
        font-size: 13px;
    }
    .benefits article {
        padding: 20px 18px;
    }
    .benefits span,
    .cta-strip span {
        width: 46px;
        height: 46px;
    }
    .benefits h3 {
        font-size: 18px;
    }
    .benefits p {
        font-size: 13px;
    }
    .faq summary {
        height: 52px;
        font-size: 14px;
    }
    .faq details {
        padding: 0 16px;
    }
    .product-image {
        height: 220px;
    }
    .monthly-goal {
        padding: 20px;
    }
    .cart-panel {
        padding: 20px;
    }
    .cta-strip {
        display: block;
    }
    .cta-strip a {
        margin: 14px 0 0;
        display: inline-flex;
    }
    .footer h2 {
        font-size: 20px;
    }
    .footer p {
        font-size: 13px;
    }
}

@media (max-width: 980px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 620px;
    }
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    .product-detail-card {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
    .product-description-card {
        min-height: auto;
    }
    .product-benefits {
        grid-template-columns: 1fr;
    }
    .similar-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .team-section {
        padding-top: 48px;
        padding-bottom: 58px;
    }
    .team-grid {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }
    .team-card {
        min-height: 220px;
        padding: 22px 18px;
    }
    .team-avatar {
        width: 76px;
        height: 76px;
    }
    .product-detail-page {
        padding: 24px 14px 52px;
    }
    .product-description-card {
        padding: 20px;
    }
    .product-description-text {
        font-size: 15px;
    }
    .similar-products-grid {
        grid-template-columns: 1fr;
    }
}


/* Tela de pagamento Pix após finalizar pedido */

.pix-payment-card {
    text-align: center;
}

.pix-payment-card h2 {
    margin: 10px 0 4px;
    font-size: 28px;
    letter-spacing: -.04em;
    color: #fff;
}

.pix-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 212, 59, .12);
    border: 1px solid rgba(255, 212, 59, .25);
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.pix-value {
    margin: 0 0 18px;
    color: #d7d9e2;
    font-size: 17px;
}

.pix-qr-box {
    width: min(100%, 440px);
    margin: 18px auto;
    padding: 12px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
}

.pix-qr-box img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.pix-instructions {
    text-align: left;
    margin: 20px 0;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .075);
    background: rgba(255, 255, 255, .04);
}

.pix-instructions h3 {
    margin: 0 0 8px;
    color: #fff;
}

.pix-instructions p,
.pix-instructions li {
    color: #c8cad2;
    line-height: 1.55;
}

.pix-instructions ol {
    margin: 12px 0 0;
    padding-left: 22px;
}

.pix-copy-area {
    margin: 18px 0;
    text-align: left;
}

.pix-copy-area small {
    display: block;
    margin-bottom: 8px;
    color: #c8cad2;
}

.pix-copy-line {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pix-copy-line code {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .08);
}

@media (max-width: 560px) {
    .pix-payment-card h2 {
        font-size: 22px;
    }
    .pix-copy-line {
        flex-direction: column;
        align-items: stretch;
    }
}

.orders-list {
    display: grid;
    gap: 16px;
}

.order-card {
    background: rgba(18, 24, 24, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
}

.order-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.order-buyer {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
}

.order-id {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

.order-status {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.order-status.pending {
    background: rgba(251, 191, 36, 0.16);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.35);
}

.order-status.paid {
    background: rgba(34, 197, 94, 0.16);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.35);
}

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.order-info {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 12px;
}

.order-info span {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.order-info strong {
    color: #fff;
    font-size: 14px;
}

.order-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.order-actions button {
    border: 0;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 800;
    cursor: pointer;
}

.btn-details {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.btn-paid {
    background: #22c55e;
    color: #06130a;
}

.btn-cancel {
    background: rgba(239, 68, 68, 0.14);
    color: #ef4444;
}

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

@media (max-width: 520px) {
    .order-card-header {
        flex-direction: column;
    }
    .order-info-grid {
        grid-template-columns: 1fr;
    }
}

#ordersList {
    display: grid;
    gap: 18px;
}

.order-card {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)), rgba(9, 13, 14, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

.order-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(34, 197, 94, 0.16), transparent 35%), radial-gradient(circle at bottom left, rgba(251, 146, 60, 0.11), transparent 35%);
    pointer-events: none;
}

.order-card>* {
    position: relative;
    z-index: 1;
}

.order-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.order-small {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.order-top h3 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    line-height: 1;
}

.order-badge {
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.order-badge.pending {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.14);
    border-color: rgba(251, 191, 36, 0.35);
}

.order-badge.paid,
.order-badge.approved {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.14);
    border-color: rgba(34, 197, 94, 0.35);
}

.order-badge.canceled,
.order-badge.cancelled {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.14);
    border-color: rgba(239, 68, 68, 0.35);
}

.order-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
}

.order-customer,
.order-price {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.order-customer span,
.order-price span,
.order-info span {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.order-customer strong {
    display: block;
    color: #fff;
    font-size: 20px;
    line-height: 1.15;
}

.order-price {
    min-width: 150px;
    text-align: right;
}

.order-price strong {
    display: block;
    color: #22c55e;
    font-size: 24px;
    line-height: 1;
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.order-info {
    padding: 13px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.055);
}

.order-info strong {
    display: block;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-footer {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.success-btn {
    border: 0;
    border-radius: 12px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 900;
    color: #04120a;
    background: linear-gradient(135deg, #22c55e, #86efac);
}

@media (max-width: 900px) {
    .order-main {
        grid-template-columns: 1fr;
    }
    .order-price {
        text-align: left;
    }
    .order-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .order-top {
        flex-direction: column;
    }
    .order-grid {
        grid-template-columns: 1fr;
    }
    .order-customer strong,
    .order-price strong {
        font-size: 20px;
    }
}

#ordersList {
    display: grid;
    gap: 18px;
}

.order-card {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)), rgba(9, 13, 14, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

.order-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(34, 197, 94, 0.16), transparent 35%), radial-gradient(circle at bottom left, rgba(251, 146, 60, 0.11), transparent 35%);
    pointer-events: none;
}

.order-card>* {
    position: relative;
    z-index: 1;
}

.order-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.order-small {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.order-top h3 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    line-height: 1;
}

.order-badge {
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.order-badge.pending {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.14);
    border-color: rgba(251, 191, 36, 0.35);
}

.order-badge.paid,
.order-badge.approved {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.14);
    border-color: rgba(34, 197, 94, 0.35);
}

.order-badge.canceled,
.order-badge.cancelled {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.14);
    border-color: rgba(239, 68, 68, 0.35);
}

.order-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
}

.order-customer,
.order-price {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.order-customer span,
.order-price span,
.order-info span {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.order-customer strong {
    display: block;
    color: #fff;
    font-size: 20px;
    line-height: 1.15;
}

.order-price {
    min-width: 150px;
    text-align: right;
}

.order-price strong {
    display: block;
    color: #22c55e;
    font-size: 24px;
    line-height: 1;
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.order-info {
    padding: 13px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.055);
}

.order-info strong {
    display: block;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-footer {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.success-btn {
    border: 0;
    border-radius: 12px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 900;
    color: #04120a;
    background: linear-gradient(135deg, #22c55e, #86efac);
}

@media (max-width: 900px) {
    .order-main {
        grid-template-columns: 1fr;
    }
    .order-price {
        text-align: left;
    }
    .order-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .order-top {
        flex-direction: column;
    }
    .order-grid {
        grid-template-columns: 1fr;
    }
    .order-customer strong,
    .order-price strong {
        font-size: 20px;
    }
}


/* ========================================================================== */


/* KoraxMc Store — redesign visual inspirado na organização da Hylex          */


/* Escopo restrito às páginas públicas que usam a classe .store-theme.        */


/* ========================================================================== */

.store-theme {
    --store-bg: #242525;
    --store-header: #141414;
    --store-footer: #1a1a1a;
    --store-card: #333333;
    --store-card-soft: #3b3b3b;
    --store-text: #ffffff;
    --store-muted: #c9c9c9;
    --store-subtle: #9f9f9f;
    --store-line: rgba(255, 255, 255, .10);
    --store-accent: #ffb300;
    --store-accent-hover: #ffc33a;
    --store-content: 1516px;
    margin: 0;
    min-height: 100vh;
    background: var(--store-bg);
    color: var(--store-text);
    font-family: "Montserrat", "Manrope", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
}

.store-theme main {
    background: var(--store-bg);
}

.store-theme a,
.store-theme button,
.store-theme input,
.store-theme select,
.store-theme textarea {
    font-family: inherit;
}

.store-theme .page-bg,
.store-theme .category-page,
.store-theme .product-detail-page,
.store-theme .cart-page {
    background: var(--store-bg);
    background-image: none;
}

.store-theme .page-bg::before,
.store-theme .product-detail-page::before,
.store-theme .shade {
    display: none;
}


/* Header */

.store-theme .header {
    position: relative;
    width: 100%;
    height: 80px;
    padding: 0;
    display: block;
    background: var(--store-header);
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .025);
    backdrop-filter: none;
    box-shadow: none;
    z-index: 100;
}

.store-theme .header.sticky {
    position: sticky;
    top: 0;
    background: rgba(20, 20, 20, .985);
    backdrop-filter: blur(10px);
}

.store-theme .header-inner {
    width: min(var(--store-content), calc(100% - 48px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 54px;
}

.store-theme .brand {
    flex: 0 0 auto;
    min-width: 40px;
    gap: 0;
    color: #fff;
}

.store-theme .brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: none;
}

.store-theme .brand-name,
.store-theme .verified {
    display: none;
}

.store-theme .store-nav {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 34px;
    white-space: nowrap;
}

.store-theme .store-nav>a,
.store-theme .store-nav>button {
    position: relative;
    height: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #f8f8f8;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .01em;
    text-transform: uppercase;
    transition: color .16s ease;
}

.store-theme .store-nav>a:hover,
.store-theme .store-nav>button:hover {
    color: var(--store-accent);
    background: transparent;
    transform: none;
}

.store-theme .store-nav>a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 23px;
    height: 1px;
    background: currentColor;
}

.store-theme .header-actions {
    height: 100%;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.store-theme .search {
    position: relative;
    width: 40px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    box-shadow: none;
    display: flex;
    justify-content: flex-end;
    overflow: visible;
    transition: width .2s ease;
}

.store-theme .search svg {
    flex: 0 0 auto;
    width: 27px;
    height: 27px;
    stroke-width: 1.55;
}

.store-theme .search input {
    position: absolute;
    top: 50%;
    right: 34px;
    width: 0;
    height: 40px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    border-radius: 0;
    background: var(--store-header);
    color: #fff;
    opacity: 0;
    outline: 0;
    transform: translateY(-50%);
    transition: width .2s ease, opacity .15s ease, padding .2s ease;
}

.store-theme .search:hover input,
.store-theme .search:focus-within input {
    width: 230px;
    padding: 0 10px;
    opacity: 1;
}

.store-theme .cart-btn {
    position: relative;
    width: 42px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color .16s ease;
}

.store-theme .cart-btn:hover {
    color: var(--store-accent);
    background: transparent;
    transform: none;
}

.store-theme .cart-btn svg {
    width: 27px;
    height: 27px;
    stroke-width: 1.55;
}

.store-theme .cart-label {
    display: none;
}

.store-theme .cart-count {
    position: absolute;
    right: -6px;
    top: 5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--store-accent);
    color: #141414;
    font-size: 10px;
    font-weight: 800;
    place-items: center;
}

.store-theme .back-to-store {
    width: auto;
    gap: 9px;
    color: #fff;
    font-size: 14px;
    font-weight: 650;
}

.store-theme .back-to-store span {
    display: inline;
}


/* Home — abertura */

.store-theme .store-intro {
    width: min(var(--store-content), calc(100% - 48px));
    height: auto;
    min-height: 0;
    margin: 0 auto;
    padding: 44px 0 30px;
    display: block;
    overflow: visible;
    background: transparent;
}

.store-theme .store-intro .hero-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.store-theme .store-intro h1 {
    margin: 0;
    color: var(--store-accent);
    font-size: clamp(46px, 3vw, 58px);
    line-height: 1.08;
    letter-spacing: -.045em;
    font-weight: 500 !important;
    text-shadow: none;
}

.store-theme .store-intro p {
    margin: 36px 0 0;
    color: var(--store-muted);
    font-size: 19px;
    line-height: 1.55;
    font-weight: 600;
    letter-spacing: .01em;
}


/* Categorias da home */

.store-theme .section {
    background: transparent;
}

.store-theme .store-categories {
    width: min(var(--store-content), calc(100% - 48px));
    margin: 0 auto;
    padding: 0 0 93px;
}

.store-theme .category-row {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 246px));
    gap: 46px;
    justify-content: start;
}

.store-theme .category-card {
    position: relative;
    width: 246px;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    display: block;
    overflow: visible;
    transition: none;
}

.store-theme .category-card:hover {
    border: 0;
    background: transparent;
    transform: none;
}

.store-theme .category-card>img {
    width: 246px;
    height: 246px;
    display: block;
    border: 0;
    border-radius: 11px;
    background: var(--store-card);
    object-fit: contain;
    box-shadow: none;
    transition: opacity .18s ease;
}

.store-theme .category-card:hover>img {
    opacity: .88;
}

.store-theme .category-card>div {
    padding: 18px 0 0;
}

.store-theme .category-card h2 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    line-height: 1.28;
    letter-spacing: -.025em;
    font-weight: 650;
}

.store-theme .category-card h2::after {
    content: " →";
    font-size: 24px;
    font-weight: 400;
    vertical-align: -1px;
}

.store-theme .category-card p {
    display: none;
}

.store-theme .category-card a {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: transparent;
    font-size: 0;
    opacity: 0;
    z-index: 3;
}

.store-theme .category-card a:hover {
    background: transparent;
    transform: none;
}

.store-theme .loading-card {
    min-height: 90px;
    padding: 30px;
    border: 0;
    border-radius: 11px;
    background: var(--store-card);
    color: var(--store-muted);
    box-shadow: none;
    backdrop-filter: none;
    font-size: 15px;
    font-weight: 550;
}


/* Sobre a loja */

.store-theme .store-about {
    width: min(var(--store-content), calc(100% - 48px));
    margin: 0 auto;
    padding: 0 0 43px;
}

.store-theme .store-about>h2 {
    margin: 0 0 37px;
    color: #fff;
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: -.025em;
    font-weight: 650;
}

.store-theme .store-about-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 320px));
    gap: 47px;
    justify-content: start;
}

.store-theme .store-about-grid article {
    min-height: 306px;
    padding: 30px 34px;
    border: 0;
    border-radius: 11px;
    background: var(--store-card-soft);
    color: #fff;
    text-align: center;
    box-shadow: none;
}

.store-theme .store-about-grid h3 {
    margin: 0 0 19px;
    font-size: 23px;
    line-height: 1.35;
    letter-spacing: -.02em;
    font-weight: 650;
}

.store-theme .store-about-grid p {
    margin: 0;
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.72;
    font-weight: 500;
}

.store-theme .store-about-grid strong,
.store-theme .store-about-grid a {
    color: var(--store-accent);
    font-weight: 650;
}

.store-theme .store-about-grid a {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
}

.store-theme .store-about-grid a svg {
    width: 18px;
    height: 18px;
}


/* Conteúdo complementar da home */

.store-theme .buyers-section,
.store-theme .faq-section,
.store-theme .team-section {
    width: min(var(--store-content), calc(100% - 48px));
    margin: 0 auto;
    padding: 70px 0;
    border-top: 1px solid var(--store-line);
}

.store-theme .section-title.center {
    text-align: left;
}

.store-theme .section-title h2 {
    margin: 0 0 9px;
    color: #fff;
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: -.025em;
    font-weight: 650 !important;
}

.store-theme .section-title p {
    color: var(--store-muted);
    font-size: 16px;
    font-weight: 500;
}

.store-theme .section-pill {
    display: none;
}

.store-theme .buyers {
    max-width: none;
    margin: 35px 0 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 320px));
    gap: 30px;
    align-items: stretch;
}

.store-theme .buyer,
.store-theme .buyer.first,
.store-theme .buyer.second {
    height: 210px;
    padding: 25px;
    border: 0;
    border-radius: 11px;
    background: var(--store-card);
    box-shadow: none;
    backdrop-filter: none;
}

.store-theme .buyer .avatar {
    width: 80px;
    height: 80px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    overflow: hidden;
}

.store-theme .buyer .avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-theme .buyer h3 {
    margin: 15px 0 5px;
    font-size: 18px;
    font-weight: 650;
}

.store-theme .buyer p,
.store-theme .second p {
    color: var(--store-accent);
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 600;
}

.store-theme .cta-strip {
    width: 100%;
    max-width: none;
    min-height: 96px;
    margin: 0;
    padding: 22px 26px;
    border: 0;
    border-radius: 11px;
    background: var(--store-card);
    box-shadow: none;
    backdrop-filter: none;
}

.store-theme .cta-strip span {
    display: none;
}

.store-theme .cta-strip h3 {
    font-size: 18px;
    font-weight: 650;
}

.store-theme .cta-strip p {
    color: var(--store-muted);
    font-size: 15px;
}

.store-theme .cta-strip a {
    padding: 13px 22px;
    border-radius: 999px;
    background: var(--store-accent);
    color: #171717;
    font-size: 14px;
    font-weight: 700;
}

.store-theme .faq {
    max-width: none;
    margin: 35px 0 0;
}

.store-theme .faq details {
    margin: 0;
    padding: 0 3px;
    border: 0;
    border-bottom: 1px solid var(--store-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.store-theme .faq summary {
    height: 68px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.store-theme .faq p {
    max-width: 850px;
    margin-bottom: 25px;
    color: var(--store-muted);
    font-size: 15px;
    line-height: 1.7;
}

.store-theme .team-grid {
    max-width: none;
    margin: 35px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 320px));
    gap: 30px;
    justify-content: start;
}

.store-theme .team-card {
    min-height: 280px;
    padding: 30px;
    border: 0;
    border-radius: 11px;
    background: var(--store-card);
    box-shadow: none;
    backdrop-filter: none;
}

.store-theme .team-avatar {
    width: 92px;
    height: 92px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
}

.store-theme .team-role {
    color: var(--store-accent);
}


/* Página de categoria */

.store-theme .category-page {
    min-height: calc(100vh - 80px);
    padding: 52px 0 90px;
}

.store-theme .products-wrap,
.store-theme .product-benefits {
    width: min(var(--store-content), calc(100% - 48px));
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.store-theme .category-heading {
    width: 100%;
    max-width: none;
    margin: 0 0 38px;
    gap: 0;
}

.store-theme .category-heading .back {
    display: none;
}

.store-theme .category-heading h1 {
    margin: 0;
    color: var(--store-accent);
    font-size: clamp(44px, 3vw, 56px);
    line-height: 1.12;
    letter-spacing: -.04em;
    font-weight: 500;
    text-transform: none;
}

.store-theme .products-grid {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 320px));
    gap: 47px 46px;
    justify-content: start;
}

.store-theme .product-card {
    position: relative;
    width: 320px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
    transition: none;
}

.store-theme .product-card:hover {
    border: 0;
    transform: none;
}

.store-theme .product-image,
.store-theme .product-image.dark,
.store-theme .product-image.green,
.store-theme .product-image.red {
    width: 320px;
    height: 320px;
    border-radius: 11px;
    background: var(--store-card);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.store-theme .product-image::before {
    display: none;
}

.store-theme .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity .18s ease;
}

.store-theme .product-card:hover .product-image img {
    opacity: .88;
}

.store-theme .product-info {
    padding: 10px 12px 0;
}

.store-theme .product-info h2 {
    margin: 0 0 9px;
    color: var(--store-accent);
    font-size: 19px;
    line-height: 1.35;
    letter-spacing: -.02em;
    font-weight: 550;
}

.store-theme .price-line {
    min-height: 0;
    margin: 0 0 4px;
    gap: 7px;
}

.store-theme .price-line:empty {
    display: none;
}

.store-theme .price-line del {
    color: var(--store-subtle);
    font-size: 13px;
}

.store-theme .price-line span {
    min-height: 21px;
    padding: 2px 6px;
    border: 0;
    border-radius: 4px;
    background: rgba(255, 179, 0, .16);
    color: var(--store-accent);
    font-size: 10px;
}

.store-theme .product-info strong {
    margin: 0;
    color: #fff;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 500;
}

.store-theme .product-info p {
    display: none;
}

.store-theme .product-card .buy-btn {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: transparent;
    font-size: 0;
    opacity: 0;
    z-index: 4;
}

.store-theme .product-benefits {
    margin-top: 86px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 320px));
    gap: 47px;
    justify-content: start;
}

.store-theme .product-benefits article {
    min-height: 245px;
    padding: 32px 28px;
    border: 0;
    border-radius: 11px;
    background: var(--store-card-soft);
    box-shadow: none;
    backdrop-filter: none;
}

.store-theme .product-benefits span {
    width: 46px;
    height: 46px;
    margin: 0 auto 17px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 179, 0, .12);
    color: var(--store-accent);
}

.store-theme .product-benefits h3 {
    margin-bottom: 12px;
    font-size: 21px;
    font-weight: 650;
}

.store-theme .product-benefits p {
    color: var(--store-muted);
    font-size: 16px;
    line-height: 1.65;
}


/* Detalhes do produto */

.store-theme .product-detail-page {
    min-height: calc(100vh - 80px);
    padding: 54px 0 90px;
}

.store-theme .product-detail-shell,
.store-theme .similar-products-wrap {
    width: min(var(--store-content), calc(100% - 48px));
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.store-theme .product-detail-grid {
    display: grid;
    grid-template-columns: minmax(520px, 650px) minmax(420px, 1fr);
    grid-template-rows: auto auto;
    column-gap: 72px;
    row-gap: 0;
    align-items: start;
}

.store-theme .product-detail-card {
    display: contents;
}

.store-theme .product-detail-card,
.store-theme .product-description-card,
.store-theme .similar-product-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.store-theme .product-detail-image {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

.store-theme .product-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.store-theme .product-detail-info {
    grid-column: 2;
    grid-row: 1;
    padding: 0 0 27px;
    background: transparent;
}

.store-theme .product-detail-info h1 {
    margin: 0 0 23px;
    color: #fff;
    font-size: clamp(36px, 2.5vw, 44px);
    line-height: 1.18;
    letter-spacing: -.035em;
    font-weight: 650;
}

.store-theme .product-detail-price-line {
    margin-bottom: 9px;
}

.store-theme .product-detail-price-line del {
    color: var(--store-subtle);
    font-size: 15px;
}

.store-theme .product-detail-price-line span {
    min-height: 23px;
    padding: 2px 7px;
    border: 0;
    border-radius: 4px;
    background: rgba(255, 179, 0, .14);
    color: var(--store-accent);
    font-size: 11px;
}

.store-theme .product-detail-info strong {
    margin: 0 0 21px;
    color: #fff;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 500;
}

.store-theme .product-detail-info>p {
    margin: 0;
    color: var(--store-muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.store-theme .product-detail-actions {
    margin-top: 29px;
    gap: 12px;
}

.store-theme .product-detail-actions .buy-btn,
.store-theme .detail-secondary-btn {
    width: 100%;
    height: 56px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
}

.store-theme .product-detail-actions .buy-btn {
    background: var(--store-accent);
    color: #171717;
}

.store-theme .product-detail-actions .buy-btn:hover {
    background: var(--store-accent-hover);
    transform: none;
}

.store-theme .detail-secondary-btn {
    border: 1px solid rgba(255, 255, 255, .30);
    background: transparent;
    color: #fff;
}

.store-theme .detail-secondary-btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .04);
    transform: none;
}

.store-theme .product-description-card {
    grid-column: 2;
    grid-row: 2;
    min-height: 0;
    margin-top: 0;
    padding: 28px 0 0;
    border-top: 1px solid var(--store-line);
}

.store-theme .product-description-card h2 {
    margin: 0 0 17px;
    font-size: 22px;
    font-weight: 650;
}

.store-theme .product-description-text {
    color: var(--store-muted);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
}

.store-theme .product-description-text strong,
.store-theme .product-description-text b {
    color: var(--store-accent);
}

.store-theme .similar-products-wrap {
    margin-top: 76px;
}

.store-theme .similar-products-wrap h2 {
    margin: 0 0 38px;
    color: #fff;
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: -.025em;
    font-weight: 650;
}

.store-theme .similar-products-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 246px));
    gap: 46px;
    justify-content: start;
}

.store-theme .similar-product-card {
    position: relative;
    width: 246px;
    overflow: visible;
    transition: none;
}

.store-theme .similar-product-card:hover {
    background: transparent;
    transform: none;
}

.store-theme .similar-product-card>img {
    width: 246px;
    height: 246px;
    border-radius: 11px;
    background: var(--store-card);
    object-fit: contain;
    transition: opacity .18s ease;
}

.store-theme .similar-product-card:hover>img {
    opacity: .88;
}

.store-theme .similar-product-info {
    padding: 10px 12px 0;
}

.store-theme .similar-product-info h3 {
    margin: 0 0 8px;
    color: var(--store-accent);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 550;
}

.store-theme .similar-product-info strong {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}

.store-theme .similar-product-info a {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: transparent;
    color: transparent;
    font-size: 0;
    opacity: 0;
    z-index: 3;
}


/* Carrinho e checkout */

.store-theme .cart-page {
    min-height: calc(100vh - 80px);
    padding: 64px 24px 100px;
}

.store-theme .cart-panel {
    width: min(900px, 100%);
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.store-theme .cart-panel>h1 {
    margin: 0 0 34px;
    color: var(--store-accent);
    font-size: clamp(40px, 3vw, 52px);
    line-height: 1.15;
    letter-spacing: -.04em;
    font-weight: 500;
}

.store-theme .cart-panel>.muted {
    margin: -15px 0 30px;
    color: var(--store-muted);
    font-size: 16px;
    line-height: 1.65;
}

.store-theme #cartItems {
    display: grid;
    gap: 12px;
}

.store-theme .cart-item {
    min-height: 96px;
    padding: 20px 22px;
    border: 0;
    border-radius: 11px;
    background: var(--store-card);
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 22px;
}

.store-theme .cart-item b {
    color: #fff;
    font-size: 17px;
    font-weight: 650;
}

.store-theme .cart-item p {
    margin: 5px 0 0;
    color: var(--store-muted);
    font-size: 14px;
}

.store-theme .cart-item strong {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.store-theme .cart-item .round-btn {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: transparent;
    color: #fff;
}

.store-theme .cart-total {
    margin: 30px 0 22px;
    padding: 23px 0;
    border-top: 1px solid var(--store-line);
    border-bottom: 1px solid var(--store-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 20px;
}

.store-theme .cart-total b {
    color: var(--store-accent);
    font-size: 24px;
    font-weight: 650;
}

.store-theme .primary-btn,
.store-theme .cart-panel .primary-btn {
    height: 56px;
    border-radius: 999px;
    border: 0;
    background: var(--store-accent);
    color: #171717;
    box-shadow: none;
    font-size: 16px;
    font-weight: 700;
}

.store-theme .primary-btn:hover,
.store-theme .cart-panel .primary-btn:hover {
    background: var(--store-accent-hover);
    transform: none;
}

.store-theme .admin-help {
    margin: 0 0 28px;
    padding: 22px;
    border: 0;
    border-radius: 11px;
    background: var(--store-card);
    color: var(--store-muted);
    font-size: 15px;
    line-height: 1.6;
}

.store-theme .admin-form {
    display: grid;
    gap: 22px;
}

.store-theme .admin-form label {
    display: grid;
    gap: 9px;
    color: var(--store-accent);
    font-size: 16px;
    font-weight: 650;
}

.store-theme .admin-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.store-theme .admin-form input,
.store-theme .admin-form select,
.store-theme .admin-form textarea {
    width: 100%;
    height: 52px;
    padding: 0 17px;
    border: 1px solid transparent;
    border-radius: 11px;
    background: var(--store-card);
    color: #fff;
    outline: 0;
    font-size: 15px;
    font-weight: 500;
    transition: border-color .16s ease, background .16s ease;
}

.store-theme .admin-form input:focus,
.store-theme .admin-form select:focus,
.store-theme .admin-form textarea:focus {
    border-color: rgba(255, 179, 0, .65);
    background: #373737;
}

.store-theme .admin-form input::placeholder {
    color: #969696;
}

.store-theme .coupon-row {
    grid-template-columns: 1fr auto !important;
}

.store-theme .ghost-btn {
    height: 52px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 650;
}

.store-theme .ghost-btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .04);
}

.store-theme .admin-message {
    margin: 0;
}


/* Rodapé */

.store-theme .footer {
    margin: 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .025);
    background: var(--store-footer);
}

.store-theme .footer-top {
    width: min(var(--store-content), calc(100% - 48px));
    max-width: none;
    margin: 0 auto;
    padding: 50px 0 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    text-align: center;
}

.store-theme .footer-identity {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.store-theme .footer h2 {
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.store-theme .footer h2 img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.store-theme .footer p {
    max-width: 760px;
    margin: 0 0 20px;
    color: #d0d0d0;
    font-size: 16px;
    line-height: 1.6;
}

.store-theme .footer-identity strong {
    min-width: 480px;
    padding: 0 30px 17px;
    border-bottom: 1px solid rgba(255, 255, 255, .23);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .025em;
}

.store-theme .footer nav {
    min-width: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 46px;
    text-align: center;
}

.store-theme .footer nav a {
    color: #dedede;
    font-size: 15px;
    font-weight: 500;
}

.store-theme .footer nav a:hover {
    color: var(--store-accent);
}

.store-theme .footer-bottom {
    width: min(var(--store-content), calc(100% - 48px));
    max-width: none;
    min-height: 68px;
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 25px;
    align-items: center;
}

.store-theme .footer-bottom p {
    margin: 0;
    color: #999;
    font-size: 12px;
}

.store-theme .footer-socials a {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #aaa;
}


/* Responsivo */

@media (max-width: 1550px) {
    .store-theme .category-row {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 30px;
    }
    .store-theme .category-card,
    .store-theme .category-card>img {
        width: 100%;
    }
    .store-theme .category-card>img {
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .store-theme .store-about-grid,
    .store-theme .products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 30px;
    }
    .store-theme .product-card,
    .store-theme .product-image,
    .store-theme .product-image.dark,
    .store-theme .product-image.green,
    .store-theme .product-image.red {
        width: 100%;
    }
    .store-theme .product-image,
    .store-theme .product-image.dark,
    .store-theme .product-image.green,
    .store-theme .product-image.red {
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .store-theme .similar-products-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 30px;
    }
    .store-theme .similar-product-card,
    .store-theme .similar-product-card>img {
        width: 100%;
    }
    .store-theme .similar-product-card>img {
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 1180px) {
    .store-theme .header-inner {
        gap: 30px;
    }
    .store-theme .store-nav {
        gap: 22px;
    }
    .store-theme .store-nav>a,
    .store-theme .store-nav>button {
        font-size: 14px;
    }
    .store-theme .category-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .store-theme .store-about-grid,
    .store-theme .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .store-theme .product-detail-grid {
        grid-template-columns: minmax(420px, 1fr) minmax(380px, 1fr);
        column-gap: 45px;
    }
    .store-theme .similar-products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .store-theme .header {
        height: 70px;
    }
    .store-theme .header-inner {
        width: min(100% - 32px, var(--store-content));
        gap: 20px;
    }
    .store-theme .brand img {
        width: 45px;
        height: 45px;
    }
    .store-theme .store-nav>a:nth-child(2),
    .store-theme .store-nav>button {
        display: none;
    }
    .store-theme .search:hover input,
    .store-theme .search:focus-within input {
        width: 180px;
    }
    .store-theme .store-intro,
    .store-theme .store-categories,
    .store-theme .store-about,
    .store-theme .buyers-section,
    .store-theme .faq-section,
    .store-theme .team-section,
    .store-theme .products-wrap,
    .store-theme .product-benefits,
    .store-theme .product-detail-shell,
    .store-theme .similar-products-wrap,
    .store-theme .footer-top,
    .store-theme .footer-bottom {
        width: calc(100% - 40px);
    }
    .store-theme .category-row,
    .store-theme .store-about-grid,
    .store-theme .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }
    .store-theme .product-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }
    .store-theme .product-detail-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 0;
    }
    .store-theme .product-detail-image,
    .store-theme .product-detail-info,
    .store-theme .product-description-card {
        grid-column: 1;
        grid-row: auto;
    }
    .store-theme .product-detail-image {
        max-width: 650px;
        margin: 0 auto 35px;
    }
    .store-theme .product-detail-info {
        padding-bottom: 28px;
    }
    .store-theme .similar-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .store-theme .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .store-theme .footer-bottom div {
        justify-content: center;
    }
}

@media (max-width: 680px) {
    .store-theme .header-inner {
        gap: 12px;
    }
    .store-theme .brand-name {
        display: inline;
        margin-left: 8px;
        font-size: 15px;
        font-weight: 700;
    }
    .store-theme .store-nav {
        display: none;
    }
    .store-theme .search input {
        display: none;
    }
    .store-theme .header-actions {
        gap: 9px;
    }
    .store-theme .back-to-store span {
        display: none;
    }
    .store-theme .store-intro {
        padding-top: 34px;
    }
    .store-theme .store-intro h1 {
        font-size: 43px;
    }
    .store-theme .store-intro p {
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.55;
    }
    .store-theme .store-categories {
        padding-bottom: 65px;
    }
    .store-theme .category-row,
    .store-theme .store-about-grid,
    .store-theme .products-grid,
    .store-theme .product-benefits,
    .store-theme .similar-products-grid,
    .store-theme .buyers,
    .store-theme .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .store-theme .category-card,
    .store-theme .product-card,
    .store-theme .similar-product-card {
        width: 100%;
    }
    .store-theme .category-card>img,
    .store-theme .product-image,
    .store-theme .product-image.dark,
    .store-theme .product-image.green,
    .store-theme .product-image.red,
    .store-theme .similar-product-card>img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .store-theme .store-about-grid article {
        min-height: 0;
        padding: 30px 24px;
    }
    .store-theme .cta-strip {
        align-items: flex-start;
        flex-direction: column;
    }
    .store-theme .cta-strip a {
        margin: 5px 0 0;
    }
    .store-theme .category-page,
    .store-theme .product-detail-page,
    .store-theme .cart-page {
        padding-top: 42px;
    }
    .store-theme .admin-form .form-row,
    .store-theme .coupon-row {
        grid-template-columns: 1fr !important;
    }
    .store-theme .footer-identity strong {
        min-width: 0;
        width: 100%;
        padding-inline: 10px;
    }
    .store-theme .footer h2 {
        font-size: 27px;
    }
    .store-theme .footer h2 img {
        width: 56px;
        height: 56px;
    }
}


/* Ajustes finais de apresentação */

.store-theme .category-heading h1 {
    text-transform: lowercase;
}

.store-theme .category-heading h1::first-letter {
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .store-theme .store-nav>button,
    .store-theme .store-nav>a:nth-child(3) {
        display: none;
    }
}


/* ========================================================================== */


/* KoraxMc Admin Dashboard + Notícias + Pix Estático                          */


/* ========================================================================== */

.admin-dashboard {
    --admin-bg: #0f1012;
    --admin-sidebar: #141518;
    --admin-panel: #191b1f;
    --admin-panel-2: #202228;
    --admin-line: rgba(255, 255, 255, .08);
    --admin-text: #f5f5f5;
    --admin-muted: #969aa3;
    --admin-accent: #ffb300;
    margin: 0;
    min-height: 100vh;
    color: var(--admin-text);
    background: var(--admin-bg);
    font-family: "Montserrat", Arial, sans-serif;
}

.admin-dashboard *,
.admin-dashboard *::before,
.admin-dashboard *::after {
    box-sizing: border-box;
}

.admin-dashboard button,
.admin-dashboard input,
.admin-dashboard textarea,
.admin-dashboard select {
    font: inherit;
}

.admin-dashboard .admin-shell {
    width: 100%;
    max-width: none;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    background: var(--admin-bg);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    background: var(--admin-sidebar);
    border-right: 1px solid var(--admin-line);
    z-index: 30;
}

.admin-brand {
    height: 58px;
    padding: 0 10px 22px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid var(--admin-line);
}

.admin-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.admin-brand div {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.admin-brand strong {
    font-size: 17px;
    font-weight: 800;
}

.admin-brand span {
    color: var(--admin-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-dashboard .admin-tabs {
    margin: 26px 0 0;
    padding: 0;
    display: grid;
    gap: 7px;
    border: 0;
    background: transparent;
}

.admin-dashboard .tab-btn {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: #9da0a8;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: .16s ease;
}

.admin-dashboard .tab-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
}

.admin-dashboard .tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, .045);
}

.admin-dashboard .tab-btn.active {
    color: #151515;
    background: var(--admin-accent);
    border-color: var(--admin-accent);
    box-shadow: 0 8px 24px rgba(255, 179, 0, .12);
}

.admin-sidebar-footer {
    margin-top: auto;
    padding-top: 20px;
    display: grid;
    gap: 7px;
    border-top: 1px solid var(--admin-line);
}

.admin-side-link {
    width: 100%;
    min-height: 43px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 0;
    border-radius: 9px;
    color: #a7a9af;
    background: transparent;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.admin-side-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, .045);
}

.admin-side-link.danger:hover {
    color: #ff7b7b;
    background: rgba(239, 68, 68, .08);
}

.admin-side-link svg {
    width: 18px;
    height: 18px;
}

.admin-workspace {
    min-width: 0;
    padding: 0 42px 60px;
}

.admin-toolbar {
    min-height: 108px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--admin-line);
}

.admin-eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--admin-accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}

.admin-toolbar h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(23px, 2vw, 30px);
    letter-spacing: -.035em;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 11px;
}

.admin-user-avatar {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #25272d;
    border: 1px solid var(--admin-line);
    color: var(--admin-accent);
}

.admin-user-avatar svg {
    width: 19px;
}

.admin-user div {
    display: grid;
    gap: 3px;
}

.admin-user strong {
    font-size: 12px;
    color: #fff;
}

.admin-user small {
    max-width: 190px;
    color: var(--admin-muted);
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-dashboard .admin-message {
    min-height: 0;
    margin: -12px 0 22px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--admin-muted);
    font-size: 12px;
}

.admin-dashboard .admin-message:empty {
    display: none;
}

.admin-dashboard .admin-message.success,
.admin-dashboard .admin-message.error,
.admin-dashboard .admin-message.info {
    display: block;
    padding: 12px 14px;
    border-radius: 9px;
    border: 1px solid var(--admin-line);
}

.admin-dashboard .admin-message.success {
    color: #8ce4aa;
    background: rgba(34, 197, 94, .07);
    border-color: rgba(34, 197, 94, .2);
}

.admin-dashboard .admin-message.error {
    color: #ff9b9b;
    background: rgba(239, 68, 68, .07);
    border-color: rgba(239, 68, 68, .2);
}

.admin-dashboard .admin-message.info {
    color: #a8c7ff;
    background: rgba(59, 130, 246, .07);
    border-color: rgba(59, 130, 246, .2);
}

.admin-dashboard .tab-panel {
    display: none;
    animation: adminFade .16s ease;
}

.admin-dashboard .tab-panel.active {
    display: block;
}

@keyframes adminFade {
    from {
        opacity: 0;
        transform: translateY(3px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.admin-section-heading {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.admin-section-heading h2 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 24px;
    letter-spacing: -.03em;
}

.admin-section-heading p {
    margin: 0;
    color: var(--admin-muted);
    font-size: 12px;
    line-height: 1.6;
}

.admin-section-heading .ghost-btn {
    flex: 0 0 auto;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    margin-bottom: 17px;
}

.admin-stat-card {
    min-height: 132px;
    padding: 19px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-radius: 13px;
    background: var(--admin-panel);
    border: 1px solid var(--admin-line);
}

.admin-stat-card>span {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--admin-accent);
    background: rgba(255, 179, 0, .08);
}

.admin-stat-card svg {
    width: 20px;
}

.admin-stat-card div {
    display: grid;
}

.admin-stat-card small {
    color: var(--admin-muted);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.admin-stat-card strong {
    margin: 8px 0 4px;
    color: #fff;
    font-size: 30px;
    line-height: 1;
}

.admin-stat-card p {
    margin: 0;
    color: #777b84;
    font-size: 10px;
}

.admin-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 17px;
}

.admin-dashboard .admin-card {
    padding: 22px;
    border-radius: 13px;
    background: var(--admin-panel);
    border: 1px solid var(--admin-line);
    box-shadow: none;
}

.admin-card-title {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.admin-card-title h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 16px;
    letter-spacing: -.02em;
}

.admin-card-title p {
    margin: 0;
    color: var(--admin-muted);
    font-size: 11px;
    line-height: 1.5;
}

.admin-quick-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.admin-quick-actions button {
    min-height: 62px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid var(--admin-line);
    border-radius: 10px;
    color: #d9d9db;
    background: var(--admin-panel-2);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.admin-quick-actions button:hover {
    color: var(--admin-accent);
    border-color: rgba(255, 179, 0, .25);
}

.admin-quick-actions svg {
    width: 17px;
}

.admin-payment-summary {
    display: grid;
    gap: 11px;
}

.admin-payment-summary>div {
    padding: 12px 13px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-radius: 9px;
    background: var(--admin-panel-2);
    border: 1px solid rgba(255, 255, 255, .04);
}

.admin-payment-summary small {
    color: var(--admin-muted);
    font-size: 10px;
}

.admin-payment-summary strong {
    max-width: 65%;
    color: #fff;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-status-badge {
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.admin-status-badge.success {
    color: #7ee5a0;
    background: rgba(34, 197, 94, .1);
}

.admin-status-badge.warning {
    color: #ffd166;
    background: rgba(245, 158, 11, .1);
}

.admin-dashboard .admin-grid.two {
    grid-template-columns: minmax(330px, .8fr) minmax(470px, 1.2fr);
    align-items: start;
    gap: 17px;
}

/* Abas de fórum (categorias/cargos/membros): formulários mais largos e
   confortáveis, já que têm listas de permissões e campos lado a lado. */
.admin-dashboard .admin-grid.two.forum-admin-grid {
    grid-template-columns: minmax(420px, 1.05fr) minmax(380px, .95fr);
}

.admin-permission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 9px 20px;
    margin-top: 4px;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 4px;
}

.admin-dashboard .forum-role-permission-row {
    color: var(--admin-text);
    font-size: 12px;
    padding: 3px 0;
}

.admin-forum-subtab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    margin-left: 6px;
    border-radius: 999px;
    background: var(--danger, #ff5571);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}
.admin-forum-subtab-badge[hidden] { display: none; }

.admin-dashboard .admin-news-grid {
    grid-template-columns: minmax(390px, .9fr) minmax(500px, 1.1fr);
}

.admin-dashboard .payment-grid {
    grid-template-columns: minmax(400px, .9fr) minmax(360px, .7fr);
    align-items: start;
    gap: 17px;
}

.admin-list-card {
    min-height: 520px;
}

.admin-orders-card {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
}

.admin-dashboard .admin-form {
    display: grid;
    gap: 14px;
}

.admin-dashboard .admin-form>label,
.admin-dashboard .form-row>label {
    display: grid;
    gap: 7px;
    color: #c8c9cd;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .055em;
}

.admin-dashboard .admin-form input,
.admin-dashboard .admin-form select,
.admin-dashboard .admin-form textarea {
    width: 100%;
    min-height: 43px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    outline: 0;
    color: #f2f2f2;
    background: #111216;
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    transition: border-color .14s ease, box-shadow .14s ease;
}

.admin-dashboard .admin-form textarea {
    resize: vertical;
    line-height: 1.6;
}

.admin-dashboard .admin-form input:focus,
.admin-dashboard .admin-form select:focus,
.admin-dashboard .admin-form textarea:focus {
    border-color: rgba(255, 179, 0, .52);
    box-shadow: 0 0 0 3px rgba(255, 179, 0, .055);
}

.admin-dashboard .admin-form input::placeholder,
.admin-dashboard .admin-form textarea::placeholder {
    color: #555962;
}

.admin-dashboard .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}

.admin-dashboard .check-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 2px 0;
}

.admin-dashboard .check-row label,
.admin-dashboard .check-inline {
    display: flex !important;
    align-items: center;
    gap: 8px;
    color: #b5b7bd !important;
    font-size: 10px !important;
    font-weight: 700;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.admin-dashboard input[type="checkbox"] {
    width: 16px;
    min-height: 16px;
    height: 16px;
    accent-color: var(--admin-accent);
}

.admin-dashboard .admin-actions {
    display: flex;
    gap: 9px;
    padding-top: 5px;
}

.admin-dashboard .primary-btn,
.admin-dashboard .ghost-btn,
.admin-dashboard .danger-btn,
.admin-dashboard .success-btn {
    min-height: 39px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.admin-dashboard .primary-btn {
    border: 1px solid var(--admin-accent);
    color: #171717;
    background: var(--admin-accent);
}

.admin-dashboard .primary-btn:hover {
    filter: brightness(1.06);
    transform: none;
}

.admin-dashboard .ghost-btn {
    border: 1px solid var(--admin-line);
    color: #d5d5d7;
    background: #22242a;
}

.admin-dashboard .ghost-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .16);
    background: #282b31;
}

.admin-dashboard .danger-btn {
    min-width: 39px;
    padding: 0;
    border: 1px solid rgba(239, 68, 68, .12);
    color: #ff7f7f;
    background: rgba(239, 68, 68, .07);
}

.admin-dashboard .success-btn {
    border: 1px solid rgba(34, 197, 94, .2);
    color: #8be5aa;
    background: rgba(34, 197, 94, .09);
}

.admin-dashboard .primary-btn svg,
.admin-dashboard .ghost-btn svg,
.admin-dashboard .danger-btn svg,
.admin-dashboard .success-btn svg {
    width: 15px;
    height: 15px;
}

.admin-dashboard .icon-only {
    min-width: 39px;
    padding: 0;
}

.admin-dashboard .admin-help {
    padding: 13px;
    border: 1px solid rgba(255, 179, 0, .13);
    border-radius: 9px;
    color: #aaaeb5;
    background: rgba(255, 179, 0, .035);
    font-size: 10px;
    line-height: 1.65;
}

.admin-dashboard .admin-help b {
    color: #e6e6e6;
}

.admin-dashboard .admin-list {
    display: grid;
    gap: 8px;
}

.admin-dashboard .admin-list-item,
.admin-dashboard .admin-list-item.no-img {
    min-width: 0;
    min-height: 72px;
    padding: 10px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 10px;
    background: #15171b;
}

.admin-dashboard .admin-list-item.no-img {
    grid-template-columns: 42px minmax(0, 1fr) auto;
}

.admin-dashboard .admin-list-item img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    background: #22242a;
}

.admin-list-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: var(--admin-accent);
    background: rgba(255, 179, 0, .07);
}

.admin-list-icon svg {
    width: 18px;
}

.admin-list-content {
    min-width: 0;
}

.admin-list-title {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.admin-list-title b {
    min-width: 0;
    color: #efeff0;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-dashboard .admin-list-item p {
    margin: 5px 0 0;
    color: #747881;
    font-size: 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-item-status {
    flex: 0 0 auto;
    padding: 4px 6px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.admin-item-status.active {
    color: #77df99;
    background: rgba(34, 197, 94, .09);
}

.admin-item-status.inactive {
    color: #ff8a8a;
    background: rgba(239, 68, 68, .09);
}

.admin-item-status.draft {
    color: #ffc55f;
    background: rgba(245, 158, 11, .09);
}

.admin-dashboard .row-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.admin-dashboard .row-actions .ghost-btn {
    min-height: 34px;
    padding: 0 10px;
}

.admin-dashboard .row-actions .danger-btn,
.admin-dashboard .row-actions .icon-only {
    min-width: 34px;
    min-height: 34px;
}

.admin-empty-state {
    min-height: 220px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    color: #686c75;
    text-align: center;
}

.admin-empty-state svg {
    width: 28px;
    height: 28px;
}

.admin-empty-state p {
    margin: 0 !important;
    font-size: 11px !important;
    white-space: normal !important;
}

.admin-empty-state svg.lucide-loader-circle {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.admin-flow-list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
    list-style: none;
}

.admin-flow-list li {
    display: grid;
    grid-template-columns: 31px 1fr;
    gap: 12px;
    align-items: start;
}

.admin-flow-list li>span {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #181818;
    background: var(--admin-accent);
    font-size: 11px;
    font-weight: 900;
}

.admin-flow-list strong {
    display: block;
    margin: 1px 0 4px;
    color: #eee;
    font-size: 11px;
}

.admin-flow-list p {
    margin: 0;
    color: var(--admin-muted);
    font-size: 10px;
    line-height: 1.55;
}

.admin-dashboard #ordersList {
    gap: 11px;
}

.admin-dashboard .order-card {
    padding: 18px;
    border-radius: 12px;
    background: var(--admin-panel);
    border: 1px solid var(--admin-line);
    box-shadow: none;
    backdrop-filter: none;
}

.admin-dashboard .order-card::before {
    display: none;
}

.admin-dashboard .order-top {
    margin-bottom: 13px;
}

.admin-dashboard .order-top h3 {
    font-size: 16px;
}

.admin-dashboard .order-small {
    font-size: 8px;
}

.admin-dashboard .order-badge {
    padding: 5px 8px;
    font-size: 8px;
}

.admin-dashboard .order-main {
    margin-bottom: 11px;
}

.admin-dashboard .order-customer,
.admin-dashboard .order-price {
    padding: 10px 12px;
    border-radius: 8px;
    background: #15171b;
    border-color: rgba(255, 255, 255, .045);
}

.admin-dashboard .order-customer strong {
    font-size: 14px;
}

.admin-dashboard .order-price {
    min-width: 125px;
}

.admin-dashboard .order-price strong {
    color: var(--admin-accent);
    font-size: 17px;
}

.admin-dashboard .order-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

.admin-dashboard .order-info {
    padding: 9px 10px;
    border-radius: 8px;
    background: #15171b;
}

.admin-dashboard .order-customer span,
.admin-dashboard .order-price span,
.admin-dashboard .order-info span {
    margin-bottom: 4px;
    font-size: 8px;
}

.admin-dashboard .order-info strong {
    font-size: 10px;
}

.admin-dashboard .order-footer {
    margin-top: 11px;
}


/* Página pública de notícias */

.store-news,
.store-news-detail {
    --news-content: 1420px;
}

.news-page,
.news-detail-page {
    min-height: calc(100vh - 80px);
    background: #242525;
}

.news-hero {
    width: min(var(--news-content), calc(100% - 48px));
    margin: 0 auto;
    padding: 64px 0 52px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.news-kicker {
    display: block;
    margin-bottom: 13px;
    color: var(--store-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2em;
}

.news-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -.055em;
}

.news-hero p {
    max-width: 760px;
    margin: 25px 0 0;
    color: #bdbdbd;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 550;
}

.news-content-shell {
    width: min(var(--news-content), calc(100% - 48px));
    margin: 0 auto;
    padding: 44px 0 90px;
}

.featured-news-slot:empty {
    display: none;
}

.featured-news-card {
    min-height: 410px;
    margin-bottom: 62px;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
    border-radius: 12px;
    overflow: hidden;
    background: #313232;
}

.featured-news-image {
    min-height: 410px;
    overflow: hidden;
    background: #1c1d1d;
}

.featured-news-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.featured-news-card:hover .featured-news-image img {
    transform: scale(1.018);
}

.featured-news-content {
    padding: 46px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.featured-label {
    margin-bottom: 24px;
    padding: 7px 11px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    color: #161616;
    background: var(--store-accent);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.featured-label svg {
    width: 14px;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #999;
    font-size: 11px;
    font-weight: 650;
}

.news-card-meta span {
    color: var(--store-accent);
    text-transform: uppercase;
}

.news-card-meta span::after {
    content: "";
    width: 3px;
    height: 3px;
    margin-left: 11px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    background: #777;
}

.featured-news-content h2 {
    margin: 19px 0 15px;
    color: #fff;
    font-size: clamp(31px, 3vw, 45px);
    line-height: 1.12;
    letter-spacing: -.045em;
}

.featured-news-content p {
    margin: 0;
    color: #c3c3c3;
    font-size: 15px;
    line-height: 1.75;
}

.featured-news-content>a {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.featured-news-content>a:hover {
    color: var(--store-accent);
}

.featured-news-content>a svg {
    width: 17px;
}

.news-section-heading {
    margin-bottom: 24px;
}

.news-section-heading h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 29px;
    letter-spacing: -.035em;
}

.news-section-heading p {
    margin: 0;
    color: #999;
    font-size: 13px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.news-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #333434;
}

.news-card-image {
    height: 235px;
    display: block;
    overflow: hidden;
    background: #1c1d1d;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .32s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.025);
}

.news-card-body {
    padding: 23px 24px 25px;
}

.news-card h3 {
    margin: 16px 0 12px;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -.025em;
}

.news-card h3 a {
    color: inherit;
    text-decoration: none;
}

.news-card h3 a:hover {
    color: var(--store-accent);
}

.news-card p {
    min-height: 69px;
    margin: 0;
    color: #bdbdbd;
    font-size: 12px;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-read-link {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--store-accent);
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.news-read-link svg {
    width: 15px;
}

.news-loading,
.news-empty {
    grid-column: 1 / -1;
    min-height: 310px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 13px;
    color: #999;
    text-align: center;
}

.news-loading svg {
    animation: spin 1s linear infinite;
}

.news-empty svg {
    width: 34px;
    height: 34px;
    color: var(--store-accent);
}

.news-empty h2 {
    margin: 5px 0 0;
    color: #fff;
    font-size: 23px;
}

.news-empty p {
    max-width: 500px;
    margin: 0;
    color: #aaa;
    font-size: 13px;
    line-height: 1.65;
}

.news-empty a {
    margin-top: 8px;
    color: var(--store-accent);
    text-decoration: none;
    font-weight: 700;
}

.news-detail-page {
    padding: 60px 0 100px;
}

.news-detail-loading {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #aaa;
}

.news-detail-loading>svg {
    animation: spin 1s linear infinite;
}

.news-detail-loading .news-empty {
    width: min(900px, calc(100% - 48px));
}

.news-article {
    width: min(1060px, calc(100% - 48px));
    margin: 0 auto;
}

.news-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a9a9a9;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.news-back-link:hover {
    color: var(--store-accent);
}

.news-back-link svg {
    width: 17px;
}

.news-article-header {
    padding: 49px 0 39px;
}

.news-article-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    color: #9b9b9b;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .05em;
}

.news-article-meta span {
    color: var(--store-accent);
}

.news-article-header h1 {
    max-width: 930px;
    margin: 20px 0 20px;
    color: #fff;
    font-size: clamp(42px, 5.2vw, 69px);
    line-height: 1.06;
    letter-spacing: -.055em;
}

.news-article-header p {
    max-width: 830px;
    margin: 0;
    color: #bcbcbc;
    font-size: 17px;
    line-height: 1.75;
}

.news-article-cover {
    height: min(570px, 55vw);
    min-height: 330px;
    margin: 0 0 48px;
    overflow: hidden;
    border-radius: 11px;
    background: #1c1d1d;
}

.news-article-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.news-article-content {
    max-width: 820px;
    margin: 0 auto;
    color: #cacaca;
    font-size: 16px;
    line-height: 1.9;
}

.news-article-content p {
    margin: 0 0 25px;
}

.news-article-content h2 {
    margin: 46px 0 18px;
    color: #fff;
    font-size: 29px;
    line-height: 1.25;
    letter-spacing: -.03em;
}

.news-article-content h3 {
    margin: 36px 0 16px;
    color: #fff;
    font-size: 22px;
}

.news-article-content ul {
    margin: 0 0 27px;
    padding-left: 21px;
}

.news-article-content li {
    margin: 8px 0;
}

.news-article-footer {
    max-width: 820px;
    margin: 55px auto 0;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.news-article-footer div {
    display: grid;
    gap: 4px;
}

.news-article-footer span {
    color: #898989;
    font-size: 10px;
    text-transform: uppercase;
}

.news-article-footer strong {
    color: #fff;
    font-size: 13px;
}

.news-article-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--store-accent);
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.news-article-footer svg {
    width: 16px;
}


/* Checkout Pix gerado */

.store-checkout .pix-qr-box {
    min-height: 286px;
    display: grid;
    place-items: center;
    padding: 18px;
    border-radius: 10px;
    background: #fff;
}

.store-checkout .pix-qr-box canvas,
.store-checkout .pix-qr-box img,
.store-checkout .pix-qr-box svg {
    width: min(250px, 100%) !important;
    height: auto !important;
    max-height: 250px;
    display: block;
}

.store-checkout .pix-txid {
    margin: 13px 0 20px;
    color: #9d9d9d;
    font-size: 11px;
    text-align: center;
}

.store-checkout .pix-txid strong {
    color: #ddd;
}

.store-checkout .pix-copy-line code {
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.5;
}

@media (max-width: 1180px) {
    .admin-dashboard .admin-shell {
        grid-template-columns: 225px minmax(0, 1fr);
    }
    .admin-workspace {
        padding-inline: 28px;
    }
    .admin-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .admin-overview-grid,
    .admin-dashboard .admin-grid.two,
    .admin-dashboard .admin-news-grid,
    .admin-dashboard .payment-grid {
        grid-template-columns: 1fr;
    }
    .admin-list-card {
        min-height: auto;
    }
    .featured-news-card {
        grid-template-columns: 1fr 420px;
    }
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 840px) {
    .admin-dashboard .admin-shell {
        display: block;
    }
    .admin-sidebar {
        position: sticky;
        height: auto;
        padding: 12px 15px;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: 14px;
        border-right: 0;
        border-bottom: 1px solid var(--admin-line);
    }
    .admin-brand {
        height: auto;
        padding: 0;
        border: 0;
    }
    .admin-brand img {
        width: 35px;
        height: 35px;
    }
    .admin-brand div {
        display: none;
    }
    .admin-dashboard .admin-tabs {
        margin: 0;
        display: flex;
        gap: 5px;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .admin-dashboard .admin-tabs::-webkit-scrollbar {
        display: none;
    }
    .admin-dashboard .tab-btn {
        width: auto;
        min-width: 42px;
        min-height: 39px;
        padding: 0 11px;
        justify-content: center;
    }
    .admin-dashboard .tab-btn span {
        display: none;
    }
    .admin-sidebar-footer {
        margin: 0;
        padding: 0;
        display: flex;
        border: 0;
    }
    .admin-side-link {
        width: 39px;
        min-height: 39px;
        padding: 0;
        justify-content: center;
    }
    .admin-side-link span {
        display: none;
    }
    .admin-workspace {
        padding: 0 18px 45px;
    }
    .admin-toolbar {
        min-height: 88px;
    }
    .admin-user div {
        display: none;
    }
    .admin-dashboard .order-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .featured-news-card {
        display: block;
    }
    .featured-news-image {
        min-height: 350px;
        height: 350px;
    }
    .featured-news-content {
        padding: 34px;
    }
}

@media (max-width: 620px) {
    .admin-workspace {
        padding-inline: 13px;
    }
    .admin-toolbar {
        min-height: 79px;
        margin-bottom: 20px;
    }
    .admin-toolbar h1 {
        font-size: 20px;
    }
    .admin-eyebrow {
        font-size: 8px;
    }
    .admin-section-heading {
        align-items: flex-start;
    }
    .admin-section-heading h2 {
        font-size: 21px;
    }
    .admin-stats-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }
    .admin-stat-card {
        min-height: 104px;
    }
    .admin-quick-actions {
        grid-template-columns: 1fr;
    }
    .admin-dashboard .admin-card {
        padding: 16px;
    }
    .admin-dashboard .form-row {
        grid-template-columns: 1fr;
    }
    .admin-dashboard .admin-list-item,
    .admin-dashboard .admin-list-item.no-img {
        grid-template-columns: 44px minmax(0, 1fr);
    }
    .admin-dashboard .admin-list-item img {
        width: 44px;
        height: 44px;
    }
    .admin-dashboard .row-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
        padding-top: 4px;
    }
    .admin-dashboard .order-grid {
        grid-template-columns: 1fr;
    }
    .admin-dashboard .order-main {
        grid-template-columns: 1fr;
    }
    .admin-dashboard .order-price {
        text-align: left;
    }
    .news-hero,
    .news-content-shell,
    .news-article {
        width: min(100% - 28px, var(--news-content));
    }
    .news-hero {
        padding: 44px 0 37px;
    }
    .news-hero h1 {
        font-size: 45px;
    }
    .news-hero p {
        font-size: 14px;
    }
    .news-content-shell {
        padding-top: 28px;
    }
    .featured-news-card {
        margin-bottom: 42px;
    }
    .featured-news-image {
        min-height: 245px;
        height: 245px;
    }
    .featured-news-content {
        padding: 25px 22px 29px;
    }
    .featured-news-content h2 {
        font-size: 28px;
    }
    .news-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }
    .news-card-image {
        height: 215px;
    }
    .news-detail-page {
        padding: 38px 0 70px;
    }
    .news-article-header {
        padding: 36px 0 29px;
    }
    .news-article-header h1 {
        font-size: 39px;
    }
    .news-article-header p {
        font-size: 14px;
    }
    .news-article-cover {
        height: 270px;
        min-height: 270px;
        margin-bottom: 34px;
    }
    .news-article-content {
        font-size: 14px;
        line-height: 1.85;
    }
    .news-article-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* Login do painel */

.admin-auth-page {
    margin: 0;
    min-height: 100vh;
    color: #f4f4f4;
    background: #0f1012;
    font-family: "Montserrat", Arial, sans-serif;
}

.admin-auth-page * {
    box-sizing: border-box;
}

.admin-auth-shell {
    width: min(1100px, calc(100% - 40px));
    min-height: 100vh;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(400px, .7fr);
    align-items: center;
    gap: 90px;
}

.admin-auth-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    text-decoration: none;
}

.admin-auth-brand img {
    width: 105px;
    height: 105px;
    object-fit: contain;
}

.admin-auth-brand div {
    display: grid;
    gap: 7px;
}

.admin-auth-brand strong {
    font-size: 40px;
    line-height: 1;
    letter-spacing: -.05em;
}

.admin-auth-brand span {
    color: #ffb300;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.admin-auth-page .admin-login-card {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 15px;
    background: #191b1f;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
}

.admin-auth-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffb300;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
}

.admin-auth-kicker svg {
    width: 15px;
}

.admin-auth-page .admin-login-card h1 {
    margin: 18px 0 9px;
    color: #fff;
    font-size: 30px;
    letter-spacing: -.04em;
}

.admin-auth-page .admin-login-card>p {
    margin: 0 0 27px;
    color: #92969f;
    font-size: 12px;
    line-height: 1.65;
}

.admin-auth-page .admin-form {
    display: grid;
    gap: 15px;
}

.admin-auth-page .admin-form label {
    display: grid;
    gap: 7px;
    color: #c6c8cd;
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.admin-auth-page .admin-form input {
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 9px;
    outline: 0;
    color: #fff;
    background: #111216;
    font: inherit;
    font-size: 12px;
}

.admin-auth-page .admin-form input:focus {
    border-color: rgba(255, 179, 0, .55);
    box-shadow: 0 0 0 3px rgba(255, 179, 0, .055);
}

.admin-auth-page .primary-btn {
    min-height: 46px;
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 9px;
    color: #171717;
    background: #ffb300;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.admin-auth-page .primary-btn svg {
    width: 16px;
}

.admin-auth-page .admin-message {
    margin: 16px 0 0;
    font-size: 11px;
    line-height: 1.5;
}

.admin-auth-page .admin-message:empty {
    display: none;
}

.admin-auth-page .admin-message.error,
.admin-auth-page .admin-message.info,
.admin-auth-page .admin-message.success {
    padding: 11px 12px;
    border-radius: 8px;
}

.admin-auth-page .admin-message.error {
    color: #ff9898;
    background: rgba(239, 68, 68, .08);
}

.admin-auth-page .admin-message.info {
    color: #b3cbff;
    background: rgba(59, 130, 246, .08);
}

.admin-auth-page .admin-message.success {
    color: #8ee0aa;
    background: rgba(34, 197, 94, .08);
}

.admin-auth-back {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #8f939b;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
}

.admin-auth-back:hover {
    color: #fff;
}

.admin-auth-back svg {
    width: 15px;
}

@media (max-width: 800px) {
    .admin-auth-shell {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 45px 0;
    }
    .admin-auth-brand {
        justify-content: center;
    }
    .admin-auth-brand img {
        width: 64px;
        height: 64px;
    }
    .admin-auth-brand strong {
        font-size: 28px;
    }
}

@media (max-width: 500px) {
    .admin-auth-shell {
        width: min(100% - 24px, 1100px);
    }
    .admin-auth-page .admin-login-card {
        padding: 25px 20px;
    }
}

.team-section {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.team-category {
    background: #181818;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    overflow: hidden;
}

.team-header {
    padding: 18px 28px;
}

.team-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .5px;
}

.team-header span {
    opacity: .75;
}

.owner .team-header {
    background: linear-gradient(90deg, #ff3a3a, #d30000);
}

.admin .team-header {
    background: linear-gradient(90deg, #ff7a00, #ffae00);
}

.modplus .team-header {
    background: linear-gradient(90deg, #8d2cff, #ff00ff);
}

.mod .team-header {
    background: linear-gradient(90deg, #7c00ff, #c200ff);
}

.helper .team-header {
    background: linear-gradient(90deg, #4169E1, #4169E1);
}

.owner .team-header {
    background: linear-gradient(90deg, #800000, #800000);
}

.admin .team-header {
    background: linear-gradient(90deg, #A52A2A, #A52A2A);
}

.modplus .team-header {
    background: linear-gradient(90deg, #8d2cff, #ff00ff);
}

.mod .team-header {
    background: linear-gradient(90deg, #7c00ff, #c200ff);
}

.helper .team-header {
    background: linear-gradient(90deg, #4169E1, #4169E1);
}

.member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: .2s;
}

.member img {
    width: 72px;
    image-rendering: pixelated;
    transition: .2s;
}

.member span {
    margin-top: 10px;
    font-weight: 700;
    color: #fff;
    font-size: 15px;
}

.member:hover {
    transform: translateY(-6px);
}

.member:hover img {
    transform: scale(1.08);
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 24px;
}

.team-category {
    background: rgba(20, 20, 20, .85);
    border-radius: 24px;
    overflow: hidden;
}

.team-header {
    padding: 18px 24px;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    padding: 28px 42px 36px;
}

/* ===================== Sistema de contas (widget + página) ===================== */

.account-slot {
    display: flex;
    align-items: center;
}

.account-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    height: 40px;
    border-radius: 999px;
    background: var(--accent);
    color: #1a1300;
    font-weight: 800;
    font-size: 13px;
    white-space: nowrap;
}

.account-login-btn svg {
    width: 18px;
    height: 18px;
}

.account-widget {
    position: relative;
}

.account-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 999px;
}

.account-trigger:hover {
    background: rgba(255, 255, 255, .06);
}

.account-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    image-rendering: pixelated;
}

.account-name {
    font-size: 13px;
    font-weight: 800;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-trigger svg {
    width: 16px;
    height: 16px;
    opacity: .7;
}

.account-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 10px;
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.account-menu[hidden] {
    display: none;
}

.account-menu-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px 12px;
    border-bottom: 1px solid var(--line-soft);
    margin-bottom: 6px;
}

.account-menu-header img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    image-rendering: pixelated;
}

.account-menu-header strong {
    display: block;
    font-size: 13px;
}

.account-status {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}

.account-menu a,
.account-menu button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 8px;
    border-radius: 8px;
    color: var(--text);
    background: transparent;
    border: 0;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.account-menu a:hover,
.account-menu button:hover {
    background: rgba(255, 255, 255, .06);
}

.account-menu svg {
    width: 16px;
    height: 16px;
    opacity: .8;
}

.account-page {
    max-width: 560px;
    margin: 0 auto;
    padding: 60px 20px 90px;
}

/* ----- Sino de notificações no cabeçalho ----- */
.notif-bell-wrap { position: relative; }
.messages-bell-wrap { text-decoration: none; display: inline-flex; }

.notif-bell-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    border-radius: 999px;
}

.notif-bell-btn:hover { background: rgba(255, 255, 255, .06); }
.notif-bell-btn svg { width: 19px; height: 19px; opacity: .85; }

.notif-bell-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--danger, #ff5571);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.notif-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 320px;
    max-width: 88vw;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 40;
    overflow: hidden;
}

.notif-dropdown[hidden] { display: none; }

.notif-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line-soft);
}

.notif-dropdown-header strong { font-size: 13px; }

.notif-dropdown-header button {
    background: transparent;
    border: 0;
    color: var(--accent);
    font-size: 11.5px;
    font-weight: 700;
    cursor: pointer;
}

.notif-dropdown-list { max-height: 360px; overflow-y: auto; }

.forum-notif-empty { padding: 22px 14px; text-align: center; color: var(--muted); font-size: 12.5px; }

.forum-notif-row {
    display: flex;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--text);
    text-decoration: none;
}

.forum-notif-row:hover { background: rgba(255, 255, 255, .04); }
.forum-notif-row:last-child { border-bottom: 0; }
.forum-notif-row.unread { background: rgba(255, 212, 59, .06); }

.forum-notif-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .06);
    color: var(--accent);
}

.forum-notif-icon svg { width: 15px; height: 15px; }

.forum-notif-content p { margin: 0; font-size: 12.5px; line-height: 1.4; }
.forum-notif-topic { color: var(--muted); font-size: 11.5px !important; margin-top: 2px !important; }
.forum-notif-time { display: block; margin-top: 4px; font-size: 10.5px; color: var(--muted2); }

.account-auth-card,
.account-profile-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
}

.account-auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}

.account-tab-btn {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--muted);
    font-weight: 800;
    cursor: pointer;
}

.account-tab-btn.active {
    background: var(--accent-soft);
    border-color: var(--accent-border);
    color: var(--accent);
}

.account-auth-form {
    display: none;
}

.account-auth-form.active {
    display: flex;
}

.account-profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.account-profile-avatar {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    image-rendering: pixelated;
    border: 1px solid var(--line);
}

.account-profile-header h1 {
    margin: 0;
    font-size: 22px;
}

.account-banner-preview {
    width: 100%;
    aspect-ratio: 5 / 1.4;
    max-height: 200px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    margin-bottom: 18px;
    background: var(--panel-3);
}

.account-banner-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.account-accent-swatches {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.account-accent-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: var(--swatch-color, transparent);
    cursor: pointer;
    padding: 0;
    box-shadow: 0 0 0 1px var(--line) inset;
}

.account-accent-swatch.active {
    border-color: #fff;
    box-shadow: 0 0 0 2px var(--swatch-color, var(--accent));
}

.account-accent-none {
    background: var(--panel-3);
    color: var(--muted);
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-social-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

.account-social-input-row {
    font-size: 12.5px;
    color: var(--muted);
}

.account-social-input-row input {
    width: 100%;
    margin-top: 4px;
    background: var(--panel-3);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--text);
    padding: 10px 12px;
    font-family: inherit;
    font-size: 13.5px;
}


/* ===================== Editor de notícias (painel admin) ===================== */

.editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.editor-toolbar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 32px;
    padding: 0 8px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.editor-toolbar button:hover {
    border-color: var(--accent-border);
    color: var(--accent);
}

.editor-toolbar .editor-color-input {
    width: 34px;
    height: 32px;
    padding: 2px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    cursor: pointer;
}

.news-image-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.news-image-row input[type="text"] {
    flex: 1;
}

.news-preview {
    border: 1px dashed var(--line);
    border-radius: 10px;
    padding: 16px;
    max-height: 260px;
    overflow: auto;
    background: rgba(0, 0, 0, .18);
}

.news-preview h2,
.news-preview h3,
.news-preview h4 {
    margin: 0 0 10px;
}

.news-preview p {
    margin: 0 0 10px;
    color: var(--muted);
}

/* Linha divisória estilizada (tag <line>), usada em notícias e posts do fórum. */
.content-divider {
    border: none;
    height: 1px;
    margin: 18px 0;
    background: linear-gradient(90deg, transparent, var(--accent-border) 18%, var(--accent-border) 82%, transparent);
}

.admin-item-status.scheduled {
    background: rgba(255, 212, 59, .14);
    color: var(--accent);
}
