:root {
    --bg: #111116;
    --surface: #18181f;
    --surface-2: #202029;
    --surface-3: #252633;
    --line: rgba(255, 255, 255, .08);
    --text: #f3f6ff;
    --muted: #aeb6c8;
    --soft: #cdd4e6;
    --blue: #1264bd;
    --blue-2: #1f4e85;
    --green: #00d48b;
    --yellow: #ff9e1b;
    --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background: var(--bg);
    font-family: "Inter", system-ui, sans-serif;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.market-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(430px, 100%);
    min-height: 78px;
    margin-inline: auto;
    padding: 8px 13px;
    border-bottom: 1px solid var(--line);
    background: rgba(17, 17, 22, .96);
    backdrop-filter: blur(16px);
}
.market-logo img { width: 154px; height: 58px; object-fit: contain; }
.icon-button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 8px;
    background: #282934;
    color: #dbe5f7;
    cursor: pointer;
}

.product-page {
    width: min(430px, 100%);
    display: flex;
    flex-direction: column;
    margin-inline: auto;
    padding: 20px 13px 30px;
}
.checkout-card { order: 7; }
.simple-info-card { order: 8; }
.description-card { order: 9; }
.reviews-section { order: 6; }
.seller-card { order: 10; }
.related-section { order: 11; }
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 22px;
    color: #f2f6ff;
    font-size: 14px;
    font-weight: 600;
}
.breadcrumbs i { color: #9097aa; font-size: 9px; }

.product-title-card {
    margin-bottom: 18px;
}
.product-title-card h1 {
    margin: 0;
    max-width: 340px;
    font-size: 21px;
    line-height: 1.12;
    letter-spacing: 0;
    font-weight: 800;
}
.gallery-card,
.purchase-card,
.rating-card,
.checkout-card,
.simple-info-card,
.description-card,
.reviews-section,
.seller-card,
.related-section {
    margin-top: 20px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .045);
    border-radius: var(--radius);
    background: var(--surface);
}
.section-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}
.section-row h2,
.gallery-card h2,
.simple-info-card h2,
.description-card h2,
.seller-card h2,
.related-section h2,
.reviews-section h2 {
    margin: 0;
    color: #f4f7ff;
    font-size: 22px;
    line-height: 1.1;
}
.gallery-card h2 span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 7px;
    padding: 3px 7px;
    border-radius: 6px;
    background: #3a3a47;
    color: #fff;
    font-size: 12px;
}
.carousel-buttons { display: flex; gap: 8px; }
.carousel-buttons button {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #343541;
    color: #d8deec;
    cursor: pointer;
}
.gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar,
.reviews-track::-webkit-scrollbar,
.related-track::-webkit-scrollbar { display: none; }
.gallery-track > img,
.hero-cover-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 7px;
    scroll-snap-align: start;
}

.purchase-card { display: grid; gap: 12px; }
.item-select-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}
.select-wrap {
    position: relative;
    z-index: 5;
}
.select-wrap select {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}
.select-display {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 44px 0 17px;
    border: 1px solid rgba(147, 91, 255, .34);
    border-radius: 12px;
    outline: 0;
    background:
        radial-gradient(circle at 100% 0, rgba(147, 91, 255, .2), transparent 40%),
        linear-gradient(135deg, #20202b, #14141c);
    color: #edf2ff;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 14px 35px rgba(0,0,0,.16);
}
.select-display[aria-expanded="true"] {
    border-color: rgba(0, 212, 139, .48);
    box-shadow: 0 0 0 2px rgba(0, 212, 139, .08), inset 0 1px 0 rgba(255,255,255,.06);
}
.select-display i { transition: transform .18s ease; }
.select-display[aria-expanded="true"] i { transform: rotate(180deg); }
.item-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    gap: 7px;
    padding: 8px;
    border: 1px solid rgba(147, 91, 255, .26);
    border-radius: 13px;
    background: rgba(20, 20, 28, .98);
    box-shadow: 0 22px 55px rgba(0,0,0,.45);
    backdrop-filter: blur(16px);
}
.item-option {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 10px;
    padding: 11px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    background: #191923;
    color: #edf2ff;
    text-align: left;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.item-option strong { font-size: 14px; line-height: 1.25; }
.item-option small { color: #aeb7cc; font-size: 11px; font-weight: 700; }
.item-option em {
    align-self: start;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(0, 212, 139, .12);
    color: var(--green);
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}
.item-option span {
    width: fit-content;
    grid-column: 1;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(147, 91, 255, .12);
    color: #d9c6ff;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}
.item-option.is-selected {
    border-color: rgba(0, 212, 139, .56);
    background:
        radial-gradient(circle at 100% 0, rgba(0, 212, 139, .14), transparent 38%),
        linear-gradient(135deg, #211c32, #151620);
    box-shadow: 0 0 0 2px rgba(0, 212, 139, .08), inset 0 1px 0 rgba(255,255,255,.07);
}
.select-wrap > i {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #a7afc0;
    pointer-events: none;
    font-size: 11px;
}
.stock-line {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: -2px 1px 0;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
}
.stock-line strong {
    min-width: 18px;
    display: inline-grid;
    place-items: center;
    padding: 1px 5px;
    border-radius: 999px;
    background: rgba(0, 212, 139, .12);
    box-shadow: 0 0 0 0 rgba(0, 212, 139, .32);
    animation: stockPulse 1.8s ease-in-out infinite;
}
@keyframes stockPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 139, .25); }
    50% { box-shadow: 0 0 0 6px rgba(0, 212, 139, 0); }
}
.selected-product {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 5px 12px;
    padding: 14px;
    border: 1px solid rgba(147, 91, 255, .44);
    border-radius: 13px;
    background:
        radial-gradient(circle at 0 0, rgba(147, 91, 255, .18), transparent 38%),
        linear-gradient(135deg, rgba(34, 25, 54, .96), rgba(18, 19, 27, .96));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.selected-product strong { font-size: 14px; line-height: 1.25; }
.selected-product span { color: #fff; font-size: 17px; font-weight: 900; }
.selected-product small { grid-column: 1 / -1; color: var(--green); font-size: 12px; }
.primary-buy,
.buy-button {
    width: 100%;
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid #1679d4;
    border-radius: 9px;
    background: var(--blue-2);
    color: #d5dded;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
}
.primary-buy:disabled {
    opacity: .72;
    cursor: not-allowed;
}
.safe-buy,
.delivery-note,
.checkout-security {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 6px 0 0;
    color: #dfe7fb;
    font-size: 13px;
    font-weight: 700;
}
.safe-buy i,
.delivery-note i,
.checkout-security i { color: #dfe7fb; }

.rating-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.rating-card strong { font-size: 25px; }
.rating-card span { color: var(--yellow); letter-spacing: 1px; }
.rating-card small { color: #b7bfce; font-size: 14px; }

.checkout-heading { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.checkout-heading h2 { margin: 6px 0 3px; font-size: 20px; }
.checkout-heading p { margin: 0; color: var(--muted); font-size: 12px; }
.secure-pill { color: var(--green); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.checkout-step-label {
    align-self: start;
    padding: 6px 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 10px;
    white-space: nowrap;
}
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field > span:first-child { color: #d7deee; font-size: 11px; font-weight: 700; }
.field > span:first-child small { color: #8f98ac; font-size: 10px; font-weight: 700; }
.input-wrap {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid rgba(221, 228, 245, .16);
    border-radius: 8px;
    background: #12121a;
}
.input-wrap:focus-within { border-color: #1679d4; }
.input-wrap i { color: #8993a8; }
.input-wrap input,
.input-wrap select {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    font-size: 16px;
}
.input-wrap option { color: #fff; background: #191923; }
.input-wrap input::placeholder { color: #697386; }
.field.invalid .input-wrap { border-color: #ff5672; }

.email-delivery-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 12px 0 16px;
    padding: 10px 11px;
    border: 1px solid rgba(147, 91, 255, .24);
    border-radius: 10px;
    background: rgba(147, 91, 255, .08);
    color: #d8def0;
    font-size: 11px;
    font-weight: 700;
}
.email-delivery-note i { margin-top: 2px; color: #b897ff; }

.payment-methods {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
}
.payment-methods legend { margin-bottom: 8px; color: #dfe6f5; font-size: 12px; font-weight: 800; }
.payment-option {
    min-height: 61px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #15151e;
    cursor: pointer;
}
.payment-option.selected { border-color: var(--green); background: rgba(0, 212, 139, .06); }
.payment-option input { position: absolute; opacity: 0; pointer-events: none; }
.payment-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #242633;
}
.pix-icon { color: var(--green); }
.payment-option > span:nth-of-type(2) { display: flex; flex-direction: column; }
.payment-option strong { font-size: 12px; }
.payment-option small { color: var(--muted); font-size: 10px; }
.card-fields { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.card-preview {
    min-height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #243042, #121722);
}
.card-chip { width: 34px; height: 23px; border-radius: 4px; background: linear-gradient(135deg, #e3cc80, #967332); }
.card-preview > strong { max-width: 100%; font-size: 12px; letter-spacing: 0; overflow-wrap: anywhere; }
.card-preview > div { display: flex; justify-content: space-between; color: #c7cfde; font-size: 10px; }
.checkout-security { margin: 15px 0; color: #9ea7b9; font-size: 11px; font-weight: 600; text-align: center; }
.order-summary { display: grid; gap: 8px; padding: 13px 0; border-top: 1px solid var(--line); }
.order-summary > div { display: flex; justify-content: space-between; gap: 14px; color: var(--muted); font-size: 12px; }
.order-summary strong { color: #fff; text-align: right; }
.order-summary .total-row { padding-top: 10px; border-top: 1px dashed var(--line); color: #fff; font-weight: 800; }
.order-summary .total-row strong { font-size: 20px; }
.form-error { margin: 2px 0 10px; padding: 10px; border: 1px solid rgba(255, 86, 114, .34); border-radius: 8px; background: rgba(255, 86, 114, .08); color: #ff9bae; font-size: 12px; }
.buy-button { border-color: #1679d4; background: var(--blue); color: #fff; text-transform: none; }
.buy-button.loading i { animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.payment-result { padding-top: 12px; text-align: center; }
.result-icon { width: 56px; height: 56px; display: grid; place-items: center; margin: 0 auto 14px; border-radius: 50%; background: rgba(0, 212, 139, .12); color: var(--green); }
.payment-result h3 { margin: 0 0 6px; }
.payment-result p { color: var(--muted); font-size: 12px; }
.pix-result img { width: 190px; height: 190px; margin: 0 auto 12px; padding: 8px; border-radius: 8px; background: #fff; }
.pix-result label,
.boleto-result label { display: block; margin-bottom: 7px; color: var(--muted); font-size: 11px; text-align: left; }
.copy-field { display: flex; gap: 7px; }
.copy-field input { min-width: 0; flex: 1; height: 42px; padding: 0 10px; border: 1px solid var(--line); border-radius: 7px; background: #111119; color: #dbe5f8; }
.copy-field button,
.secondary-button,
.result-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid rgba(0, 212, 139, .35);
    border-radius: 7px;
    background: rgba(0, 212, 139, .08);
    color: var(--green);
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
}
.result-link,
.secondary-button { width: 100%; margin-top: 10px; }

.approved-result {
    display: grid;
    gap: 12px;
    margin-top: 16px;
    text-align: left;
}

.approved-result[hidden] { display: none; }

.approved-result p {
    margin: 0;
    color: #dbe7ff;
    font-size: 13px;
    line-height: 1.55;
}

.approved-result strong { color: #fff; }

.approved-email-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px;
    border: 1px solid rgba(0, 212, 139, .28);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 212, 139, .12), rgba(30, 119, 255, .08));
    color: #f8fbff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.approved-email-box i { color: var(--green); margin-top: 2px; }

.approved-check-title {
    color: #fff !important;
    font-weight: 900;
}

.approved-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.approved-checklist li {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    background: rgba(255, 255, 255, .035);
    color: #dce8ff;
    font-size: 12px;
    font-weight: 800;
}

.approved-checklist i { color: var(--green); }

.approved-support {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
}

.approved-support a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: #fff;
    font-size: 21px;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
    transition: transform .2s ease, filter .2s ease;
}

.approved-support a:first-child { background: linear-gradient(135deg, #0ac75b, #079747); }
.approved-support a:last-child { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.approved-support a:hover { transform: translateY(-2px); filter: brightness(1.08); }
.approved-thanks { text-align: center; color: #fff !important; font-weight: 800; }

.simple-info-card,
.description-card { display: grid; gap: 12px; }
.simple-info-card {
    position: relative;
    overflow: hidden;
    border-color: rgba(0, 212, 139, .16);
    background:
        radial-gradient(circle at 90% 0, rgba(0, 212, 139, .16), transparent 34%),
        linear-gradient(180deg, #1b1c24, #15161d);
}
.simple-info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    pointer-events: none;
}
.simple-info-card article {
    display: flex;
    gap: 12px;
    padding: 13px;
    border-top: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, .035);
}
.simple-info-card article:first-of-type { border-top: 0; }
.simple-info-card i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 40px;
    border-radius: 50%;
    background: rgba(0, 212, 139, .14);
    color: var(--green);
    box-shadow: 0 0 28px rgba(0, 212, 139, .12);
}
.simple-info-card strong,
.description-card strong { display: block; margin-bottom: 4px; color: #fff; font-size: 14px; }
.simple-info-card p,
.description-card p { margin: 0; color: #c8d0df; font-size: 12px; }
.section-kicker {
    width: fit-content;
    padding: 5px 9px;
    border: 1px solid rgba(147, 91, 255, .34);
    border-radius: 999px;
    background: rgba(147, 91, 255, .12);
    color: #c7a8ff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .7px;
    text-transform: uppercase;
}
.description-lead {
    padding-bottom: 3px;
    line-height: 1.55;
}
.plan-options { display: grid; gap: 11px; }
.plan-detail {
    position: relative;
    overflow: hidden;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 11px;
    background: linear-gradient(145deg, #1c1c26, #15151d);
}
.plan-detail.featured {
    border-color: rgba(147, 91, 255, .46);
    background:
        radial-gradient(circle at 100% 0, rgba(147, 91, 255, .22), transparent 34%),
        linear-gradient(145deg, #211b31, #15151d);
}
.plan-detail > span {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: #d9dff0;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}
.plan-detail.featured > span {
    background: rgba(147, 91, 255, .18);
    color: #d9c6ff;
}
.plan-detail ul { display: grid; gap: 7px; margin: 10px 0 0; padding: 0; list-style: none; }
.plan-detail li { position: relative; padding-left: 17px; color: #cad3e4; font-size: 12px; }
.plan-detail li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.terms-alert {
    position: relative;
    display: grid;
    gap: 12px;
    overflow: hidden;
    padding: 18px;
    border: 1px solid rgba(255, 188, 54, .45);
    border-radius: 18px;
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 188, 54, .2), transparent 25%),
        radial-gradient(circle at 90% 0, rgba(255, 188, 54, .12), transparent 34%),
        linear-gradient(145deg, rgba(34, 32, 29, .98), rgba(16, 17, 21, .98));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 14px 32px rgba(0,0,0,.22);
}
.terms-alert::after {
    content: "";
    width: 52%;
    height: 1px;
    margin-left: 60px;
    background: linear-gradient(90deg, rgba(255, 188, 54, .85), rgba(255, 188, 54, 0));
    box-shadow: 0 0 14px rgba(255, 188, 54, .62);
}
.terms-alert strong {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 11px;
    color: #f4bd3f;
    font-size: 17px;
    line-height: 1.1;
    letter-spacing: -.25px;
}
.terms-alert strong > span {
    display: block;
    min-width: 0;
    color: #f4bd3f;
}
.terms-alert strong em {
    color: #f5f5f7;
    font-style: normal;
}
.terms-alert strong::before {
    content: "!";
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 4px solid #f4bd3f;
    background: rgba(244, 189, 63, .08);
    color: #f4bd3f;
    font-size: 26px;
    box-shadow: 0 0 20px rgba(244, 189, 63, .2);
}
.terms-alert p {
    order: 3;
    margin: 0;
    color: #f0f1f5;
    font-size: 14px;
    line-height: 1.55;
    text-shadow: 0 1px 0 rgba(0,0,0,.35);
}
.terms-alert mark {
    padding: 0 2px;
    background: transparent;
    color: #f4bd3f;
    font-weight: 900;
}
.terms-alert small {
    order: 4;
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
    gap: 10px;
    padding: 11px;
    border: 1px solid rgba(244, 189, 63, .3);
    border-radius: 12px;
    background: rgba(255, 188, 54, .055);
    color: #f4bd3f;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}
.terms-alert small i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 2px solid rgba(244, 189, 63, .75);
    color: #f4bd3f;
    font-size: 15px;
}

.reviews-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(284px, 88%);
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    scrollbar-width: none;
}
.review-card {
    min-height: 132px;
    display: grid;
    grid-template-columns: 42px 1fr 18px;
    gap: 10px;
    padding: 14px;
    border-radius: 8px;
    background: #202028;
    scroll-snap-align: start;
}
.review-avatar,
.seller-badge {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #ffffff, #1482ff 30%, #005cc2 64%, #00152e);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}
.seller-badge {
    width: 54px;
    height: 54px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    background: #10121b;
    box-shadow: 0 0 26px rgba(147, 91, 255, .18);
}
.seller-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-avatar.photo { background: linear-gradient(135deg, #6d684c, #151515); }
.review-card strong {
    width: fit-content;
    display: block;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(20, 130, 255, .13);
    color: #dbeafe;
    font-size: 13px;
}
.review-card small { display: block; color: #b5bdce; font-size: 11px; }
.review-card p { margin: 5px 0 0; color: #cbd4e8; font-size: 13px; line-height: 1.35; }
.review-card > i { color: var(--green); font-size: 13px; }

.seller-card { display: grid; gap: 13px; }
.seller-card {
    overflow: hidden;
    border-color: rgba(147, 91, 255, .16);
    background:
        radial-gradient(circle at 85% 0, rgba(147, 91, 255, .16), transparent 35%),
        linear-gradient(180deg, #1b1b24, #15151b);
}
.seller-hero { display: flex; align-items: center; gap: 12px; }
.seller-hero strong { display: flex; align-items: center; gap: 7px; font-size: 16px; }
.seller-hero em { padding: 2px 8px; border-radius: 999px; background: rgba(0, 212, 139, .18); color: var(--green); font-size: 10px; font-style: normal; }
.seller-hero small { display: block; color: #cdd5e6; font-size: 12px; }
.seller-hero small span { color: var(--yellow); }
.seller-score-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}
.seller-score-grid div {
    min-height: 74px;
    display: grid;
    align-content: center;
    gap: 3px;
    padding: 10px 6px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    background: rgba(255,255,255,.035);
    text-align: center;
}
.seller-score-grid strong { color: #fff; font-size: 15px; line-height: 1.1; }
.seller-score-grid span { color: #aeb7cc; font-size: 9px; line-height: 1.25; }
.seller-card dl { display: grid; gap: 7px; margin: 0; padding-top: 10px; border-top: 1px solid var(--line); }
.seller-card dl div { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 6px 0; }
.seller-card dt { color: #b9c2d3; font-size: 13px; font-weight: 700; }
.seller-card dd { margin: 0; color: var(--green); font-size: 13px; font-weight: 800; text-align: right; }
.seller-card dl div:first-child dd { color: #dce5f8; }
.seller-guarantee {
    display: grid;
    place-items: center;
    gap: 7px;
    min-height: 158px;
    padding: 18px;
    border: 1px solid rgba(0, 212, 139, .13);
    border-radius: 12px;
    background:
        radial-gradient(circle at 50% 0, rgba(0, 212, 139, .15), transparent 36%),
        #1c1c24;
    text-align: center;
}
.seller-guarantee i { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: rgba(0, 212, 139, .12); color: var(--green); font-size: 24px; }
.seller-guarantee span { color: #cbd4e6; }

.related-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(150px, 47%);
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.related-card {
    overflow: hidden;
    display: block;
    padding: 0;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 8px;
    background: #181820;
    color: inherit;
    text-align: left;
    cursor: pointer;
    scroll-snap-align: start;
}
.related-card:focus-visible { outline: 2px solid #935bff; outline-offset: 3px; }
.related-card img {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
}
.related-card div { display: grid; gap: 10px; padding: 11px; }
.related-card strong { min-height: 54px; font-size: 14px; line-height: 1.25; }
.related-card span { padding-top: 12px; border-top: 1px solid var(--line); color: #d7deec; font-size: 20px; font-weight: 900; }
.related-card small,
.related-seller {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    color: #c5cce0;
    font-size: 12px;
}
.related-card small img,
.related-seller img {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 0 14px rgba(20,130,255,.2);
}
.related-card small b,
.related-seller b {
    min-width: 0;
    max-width: 74px;
    overflow: hidden;
    color: #edf2ff;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.related-seller i {
    width: 16px;
    height: 16px;
    display: grid;
    place-items: center;
    flex: 0 0 16px;
    border-radius: 50%;
    background: rgba(147, 91, 255, .16);
    color: #b897ff;
    font-size: 9px;
}
.related-seller em {
    flex: 0 0 auto;
    color: #cdd5e6;
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

.market-footer {
    width: min(430px, 100%);
    margin: 0 auto;
    padding: 28px 14px 34px;
    border-top: 1px solid var(--line);
    background:
        radial-gradient(circle at 50% 0, rgba(147, 91, 255, .12), transparent 35%),
        #111116;
    text-align: left;
}
.market-footer img { width: 118px; margin: 0 0 18px; }
.footer-help {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    background: #191921;
}
.footer-help h2 { margin: 0; font-size: 16px; text-transform: uppercase; }
.footer-help p { margin: 0; color: #c8d1e4; font-size: 14px; line-height: 1.55; }
.footer-help a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    background: #2a2b35;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}
.footer-help .footer-whatsapp {
    background: linear-gradient(135deg, #00a86b, #00d48b);
    color: #07130f;
}
.footer-help .footer-instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af 76%, #515bd4);
    color: #fff;
}
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin: 18px 0 15px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.footer-legal a { color: #e2e7f6; font-size: 12px; font-weight: 700; }
.market-footer p { margin: 6px 0 0; color: #8f98aa; font-size: 12px; }

.purchase-toast {
    position: fixed;
    right: max(12px, calc((100vw - 430px) / 2 + 12px));
    top: 88px;
    z-index: 40;
    width: min(286px, calc(100vw - 24px));
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border: 1px solid rgba(0, 212, 139, .24);
    border-radius: 14px;
    background: rgba(24, 24, 31, .96);
    box-shadow: 0 18px 45px rgba(0,0,0,.36);
    backdrop-filter: blur(16px);
    color: #eaf1ff;
    font-size: 11px;
}
.purchase-toast i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    border-radius: 50%;
    background: rgba(0, 212, 139, .13);
    color: var(--green);
}
.purchase-toast strong { color: #fff; }

@media (min-width: 760px) {
    body { background: #0e0e13; }
    .market-header,
    .product-page,
    .market-footer { max-width: 430px; }
}

@media (max-width: 370px) {
    .product-page { padding-inline: 10px; }
    .product-title-card h1 { font-size: 19px; }
    .reviews-track { grid-auto-columns: 92%; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
