/*
  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;
}

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;
    }
}