:root {
    color-scheme: dark;
    --bg: #070707;
    --bg-soft: #111111;
    --panel: #161616;
    --panel-strong: #1f1f1f;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.2);
    --text: #f3f3f3;
    --muted: #b4b4b4;
    --ink: #111111;
    --paper: #f5f2ed;
    --paper-line: #d8d2c6;
    --accent: #ff1d5e;
    --accent-soft: #ff4d82;
    --gold: #f6dc58;
    --radius: 28px;
    --shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Barlow", sans-serif;
    background:
        radial-gradient(circle at top, rgba(255, 29, 94, 0.12), transparent 24%),
        linear-gradient(180deg, #080808 0%, #050505 100%);
    color: var(--text);
}

body.admin-body {
    background:
        radial-gradient(circle at top, rgba(255, 29, 94, 0.10), transparent 28%),
        linear-gradient(180deg, #0b0b0b 0%, #060606 100%);
}

body.admin-shell-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(255, 29, 94, 0.10), transparent 24%),
        linear-gradient(180deg, #090909 0%, #050505 100%);
}

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

button,
input,
textarea {
    font: inherit;
}

.page-shell {
    min-height: 100vh;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    padding: 14px 18px;
    border-radius: 999px;
    background: #20b455;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(6, 6, 6, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar,
.main-nav,
.announcement-bar,
.hero-banner,
.highlight-product,
.collection-grid,
.products-strip,
.newsletter-band,
.site-footer,
.page-hero,
.contact-layout,
.content-card {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    display: grid;
    grid-template-columns: minmax(240px, 380px) 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 18px 0 16px;
}

.search-pill {
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
    overflow: hidden;
}

.search-pill input {
    flex: 1;
    border: 0;
    background: transparent;
    color: var(--text);
    padding: 14px 18px;
}

.search-pill input::placeholder {
    color: #8f8f8f;
}

.search-pill button {
    border: 0;
    background: var(--accent);
    color: white;
    width: 52px;
    height: 52px;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.brand {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
    background: transparent;
    mix-blend-mode: screen;
    filter: brightness(1.08) contrast(1.12);
}

.brand-stack {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-stack strong {
    font-family: "Rajdhani", sans-serif;
    font-size: 28px;
    line-height: 1;
}

.brand-stack small {
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.topbar-actions {
    display: flex;
    gap: 16px;
}

.icon-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color .2s;
}
.icon-link:hover { color: white; }
.icon-link svg { flex-shrink: 0; }

.icon-link em {
    position: absolute;
    top: -8px;
    right: -12px;
    font-style: normal;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 800;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.main-nav a,
.menu-trigger {
    color: #f1f1f1;
    font-size: 15px;
    font-weight: 600;
}

.main-nav a.is-active {
    color: var(--gold);
}

.menu-wrap {
    position: relative;
}

.menu-trigger {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.menu-trigger::after {
    content: "▾";
    margin-left: 8px;
    color: var(--muted);
}

.mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: min(1040px, calc(100vw - 40px));
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    padding: 20px 28px 28px;
    background: rgba(243, 239, 232, 0.98);
    color: var(--ink);
    border-radius: 0 0 24px 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: none;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(0);
    transition: opacity 180ms ease;
    z-index: 50;
}

.menu-wrap:hover .mega-menu,
.menu-wrap:focus-within .mega-menu,
.mega-menu.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mega-column h3 {
    margin: 0 0 12px;
    font-family: "Rajdhani", sans-serif;
    font-size: 22px;
}

.mega-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.mega-column a {
    color: #313131;
}

.announcement-bar {
    padding: 0 0 16px;
    color: #929292;
    font-size: 14px;
}

.home-page {
    padding: 24px 0 0;
    position: relative;
}

.home-page::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 520px;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 29, 94, 0.14), transparent 30%),
        radial-gradient(circle at 88% 10%, rgba(246, 220, 88, 0.10), transparent 24%);
    pointer-events: none;
}

.hero-banner {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 32px;
    padding: 34px 0 22px;
}

.hero-copy,
.product-summary,
.collection-card,
.content-card,
.contact-info-panel,
.contact-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 42px;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0 0 16px;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(46px, 7vw, 76px);
    line-height: 0.92;
}

.hero-copy p,
.page-hero p,
.content-card p,
.catalog-copy p,
.collection-card p,
.product-summary p {
    color: var(--muted);
    line-height: 1.7;
}

.section-tag,
.catalog-kicker,
.breadcrumb {
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 700;
}

.hero-actions,
.buy-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.cart-inline-form,
.card-cart-form,
.cart-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.product-cart-feedback {
    margin-top: 18px;
    display: grid;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px solid rgba(0, 200, 100, 0.22);
    background:
        linear-gradient(135deg, rgba(0, 200, 100, 0.10), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.03);
}

.product-cart-feedback-copy {
    display: grid;
    gap: 6px;
}

.product-cart-feedback-copy strong {
    font-size: 16px;
    color: #dfffea;
}

.product-cart-feedback-copy p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

.product-cart-feedback-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-secondary-action {
    min-width: 180px;
}

body.cart-drawer-open {
    overflow: hidden;
}

.product-cart-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    z-index: 70;
}

.product-cart-drawer-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.product-cart-drawer {
    position: fixed;
    top: 20px;
    right: 20px;
    width: min(420px, calc(100vw - 24px));
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(145deg, rgba(255, 29, 94, 0.10), rgba(255, 255, 255, 0.03)),
        #111216;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
    transform: translate3d(0, -16px, 0);
    opacity: 0;
    pointer-events: none;
    transition: transform 200ms ease, opacity 200ms ease;
    z-index: 71;
}

.product-cart-drawer.is-open {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    pointer-events: auto;
}

.product-cart-drawer-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.product-cart-drawer-head {
    display: grid;
    gap: 8px;
    padding-right: 42px;
}

.product-cart-drawer-head h2 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    line-height: 0.95;
}

.product-cart-drawer-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.product-cart-drawer-item {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-cart-drawer-item strong {
    font-size: 15px;
}

.product-cart-drawer-item small {
    color: var(--muted);
    font-size: 13px;
}

.product-cart-drawer-actions {
    display: grid;
    gap: 10px;
}

.product-cart-drawer-actions .button-primary,
.product-cart-drawer-actions .button-ghost {
    width: 100%;
}

@media (max-width: 640px) {
    .product-cart-drawer {
        top: auto;
        right: 12px;
        left: 12px;
        bottom: 12px;
        width: auto;
        border-radius: 24px;
    }
}

.button-primary,
.button-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

.button-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
    color: white;
    border: 0;
}

.button-primary.large {
    min-width: 220px;
}

.button-ghost {
    border: 1px solid var(--line-strong);
    color: var(--text);
}

.hero-artwork,
.product-visual {
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(180deg, #f1efec 0%, #d8d2c9 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-artwork svg,
.product-visual svg {
    width: 100%;
    height: auto;
    display: block;
}

/* catalog-art: imagem do card de produto */
.catalog-art {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f3ef;
}

.catalog-art .product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 260ms ease;
}

.catalog-art svg {
    width: 100%;
    height: 100%;
    display: block;
}

.catalog-card:hover .catalog-art .product-photo {
    transform: scale(1.05);
}

.highlight-product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 28px;
    padding: 24px 0 8px;
}

.product-gallery {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 16px;
}

.thumb-list {
    display: grid;
    gap: 12px;
    align-content: start;
}

.thumb {
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
    height: 72px;
    border-radius: 18px;
}

.thumb.active {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

.product-summary {
    padding: 34px;
}

.product-summary h2,
.section-heading h2,
.newsletter-band h2 {
    margin: 10px 0 14px;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 0.94;
}

.price-line {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.price-line s {
    color: #919191;
}

.price-line strong {
    font-size: 40px;
    color: #fff;
}

.price-line em {
    color: var(--accent-soft);
    font-style: normal;
    font-weight: 700;
}

.boleto-line {
    color: var(--gold);
    font-weight: 700;
}

.stock-line {
    color: #d6d6d6;
    font-weight: 600;
}

.qty-box {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-height: 52px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
}

.qty-box-editable {
    gap: 10px;
}

.qty-box-editable label {
    color: var(--muted);
    font-size: 14px;
}

.qty-box button {
    border: 0;
    background: transparent;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

.qty-input {
    width: 84px;
    min-height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
    color: white;
    padding: 0 12px;
}

.collection-grid,
.product-card-grid,
.footer-grid {
    display: grid;
    gap: 22px;
}

.collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 34px 0;
}

.collection-card {
    padding: 28px;
}

.collection-card.dark {
    background: linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
}

.collection-card.accent {
    background: linear-gradient(160deg, rgba(255, 29, 94, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.collection-card h3,
.catalog-copy h3,
.contact-info-panel h2 {
    margin: 10px 0 10px;
    font-family: "Rajdhani", sans-serif;
    font-size: 32px;
    line-height: 0.96;
}

.products-strip {
    padding: 12px 0 42px;
}

.section-heading {
    margin-bottom: 22px;
}

.product-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px) and (min-width: 601px) {
    .product-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.catalog-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
        rgba(12, 12, 12, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.catalog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}

.catalog-copy {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.catalog-copy h3 {
    margin: 3px 0 6px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    font-family: "Barlow", sans-serif;
}

.catalog-copy h3 a {
    color: var(--text);
    transition: color 180ms ease;
}

.catalog-copy h3 a:hover {
    color: var(--gold);
}

.catalog-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.catalog-price-row s {
    color: #777;
    font-size: 12px;
}

.catalog-price-row strong {
    font-size: 26px;
    color: #fff;
    font-weight: 800;
    line-height: 1;
}

.catalog-pix {
    color: var(--gold);
    font-weight: 600;
    font-size: 12px;
}

.catalog-stock {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 999px;
    margin-top: 4px;
    align-self: flex-start;
}

.catalog-stock.stock-ok   { background: rgba(32,180,85,0.14); color: #4dd47a; }
.catalog-stock.stock-low  { background: rgba(246,220,88,0.14); color: var(--gold); }
.catalog-stock.stock-out  { background: rgba(255,255,255,0.06); color: #888; }
.catalog-stock.stock-variant { background: rgba(100,120,255,0.14); color: #a0aaff; }

.catalog-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    z-index: 2;
}

.catalog-cta {
    margin-top: auto;
    padding-top: 12px;
    font-size: 13px;
    min-height: 40px;
    padding: 0 14px;
    align-self: flex-start;
    margin-top: 10px;
}

.inner-page {
    padding: 32px 0 0;
}

.page-hero {
    padding: 26px 0 18px;
}

.page-hero.compact h1 {
    font-size: clamp(42px, 6vw, 64px);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 24px;
    padding-bottom: 36px;
}

.product-detail-layout {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 28px;
    padding-bottom: 38px;
}

.product-detail-art {
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(180deg, #f1efec 0%, #d8d2c9 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-art svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.contact-info-panel,
.contact-form,
.content-card {
    padding: 28px;
}

.contact-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.contact-list li {
    display: grid;
    gap: 4px;
}

.contact-list strong {
    color: #fff;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: #ddd;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.newsletter-form input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
    color: white;
    border-radius: 16px;
    padding: 15px 16px;
}

.captcha-box {
    min-height: 72px;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    color: #d7d7d7;
}

.content-card {
    margin-bottom: 40px;
}

.managed-prose p:first-child {
    margin-top: 0;
}

.prose ul {
    margin: 18px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.newsletter-band {
    margin-top: 12px;
    margin-bottom: 28px;
    padding: 30px 36px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 20px;
    align-items: center;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #ff0050 0%, #d1175f 100%);
    box-shadow: var(--shadow);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form button {
    border: 0;
    min-width: 118px;
    border-radius: 16px;
    background: #1c1c1c;
    color: white;
    font-weight: 700;
}

.site-footer {
    padding: 18px 0 36px;
}

.footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 34px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid h3 {
    margin: 0 0 12px;
    font-family: "Rajdhani", sans-serif;
    font-size: 26px;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
    color: var(--muted);
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.footer-base {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    color: #888;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 18px;
}

.flash-banner,
.cart-layout {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 24px;
}

.flash-banner {
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(246, 220, 88, 0.12);
    border: 1px solid rgba(246, 220, 88, 0.28);
    color: #f6e88d;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    padding-bottom: 40px;
}

.cart-list {
    display: grid;
    gap: 18px;
}

.cart-item,
.cart-summary,
.cart-empty {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.cart-item {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 160px;
    gap: 18px;
    padding: 20px;
    align-items: start;
}

.cart-item-art {
    align-self: start;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 220px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, #f1efec 0%, #d8d2c9 100%);
    display: grid;
    place-items: center;
}

.cart-item-art svg,
.cart-item-art .product-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #f5f3ef;
}

.cart-item-copy {
    display: grid;
    align-content: start;
    gap: 10px;
}

.cart-item-copy h2,
.cart-empty h2,
.cart-summary h2 {
    margin: 8px 0 10px;
    font-family: "Rajdhani", sans-serif;
    font-size: 34px;
    line-height: 0.96;
}

.cart-price {
    display: grid;
    align-content: start;
    justify-items: end;
    gap: 8px;
}

.cart-price strong,
.cart-total {
    font-size: 32px;
    color: white;
    font-weight: 800;
}

.cart-price span {
    color: var(--muted);
}

.cart-actions {
    align-items: end;
    gap: 10px;
    margin-top: 6px;
}

.cart-actions label {
    display: grid;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}

.cart-actions .qty-input {
    width: 74px;
    min-height: 46px;
}

.cart-actions .button-ghost {
    min-width: 118px;
}

.cart-summary,
.cart-empty {
    padding: 24px;
}

.cart-summary {
    position: sticky;
    top: 130px;
    height: fit-content;
    display: grid;
    gap: 14px;
}

.flash-success {
    border-color: rgba(111, 211, 111, 0.3);
    background: rgba(111, 211, 111, 0.12);
    color: #bff1bf;
}

.admin-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 32px 0 48px;
}

.admin-app {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar {
    position: sticky;
    top: 0;
    align-self: start;
    height: 100vh;
    padding: 22px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.96);
    overflow-y: auto;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

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

.admin-brand span {
    display: grid;
    gap: 2px;
}

.admin-brand strong {
    font-family: "Rajdhani", sans-serif;
    font-size: 30px;
    line-height: 1;
}

.admin-brand small,
.admin-nav-group h2 {
    color: var(--muted);
}

.admin-nav-group {
    margin-bottom: 18px;
}

.admin-nav-group h2 {
    margin: 0 0 8px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-nav-group nav {
    display: grid;
    gap: 6px;
}

.admin-nav-group a {
    display: block;
    padding: 11px 12px;
    border-radius: 14px;
    color: #e8e8e8;
    transition: background 160ms ease, color 160ms ease;
}

.admin-nav-group a:hover,
.admin-nav-group a.is-active {
    background: rgba(255, 255, 255, 0.08);
}

.admin-nav-group a.is-active {
    color: var(--gold);
}

.admin-sidebar-footer {
    margin-top: 26px;
    display: grid;
    gap: 10px;
}

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

.admin-header-bar {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.admin-header-bar h1 {
    margin: 8px 0 0;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(34px, 4vw, 54px);
}

.admin-header-store {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-panel,
.admin-form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
}

.admin-summary-grid,
.admin-split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.admin-summary-card {
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.admin-summary-card strong {
    display: block;
    margin: 12px 0 6px;
    font-family: "Rajdhani", sans-serif;
    font-size: 42px;
}

.admin-shortcuts,
.admin-card-list,
.admin-stack {
    display: grid;
    gap: 16px;
}

.admin-shortcut-card,
.admin-config-card,
.admin-empty-state {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-shortcut-card strong,
.admin-config-card h3,
.admin-empty-state strong {
    display: block;
    margin-bottom: 6px;
    font-family: "Rajdhani", sans-serif;
    font-size: 28px;
}

.admin-toolbar {
    margin-top: 22px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-toolbar input {
    flex: 1;
    min-width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
    color: white;
    border-radius: 16px;
    padding: 14px 16px;
}

.admin-login {
    min-height: calc(100vh - 64px);
    display: grid;
    place-items: center;
}

.admin-form-card {
    width: min(460px, 100%);
    display: grid;
    gap: 16px;
}

.admin-topbar,
.admin-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.admin-topbar h1 {
    margin: 8px 0 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 44px;
}

.admin-table-wrap {
    margin-top: 22px;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: top;
}

.admin-table th {
    color: #d8d8d8;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-table td small {
    display: block;
    color: var(--muted);
    margin-top: 4px;
}

.table-link {
    color: var(--gold);
    font-weight: 700;
}

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

.admin-row-actions form {
    margin: 0;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.admin-form-grid label,
.admin-form-card label {
    display: grid;
    gap: 8px;
    font-weight: 600;
}

.admin-form-grid input,
.admin-form-grid textarea,
.admin-form-grid select,
.admin-form-card input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
    color: white;
    border-radius: 16px;
    padding: 14px 16px;
}

.admin-inline-note {
    align-content: end;
    color: var(--muted);
    font-size: 14px;
}

.admin-inline-note a {
    color: var(--gold);
}

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

.admin-check {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.admin-check input {
    width: auto;
}

/* ── Config pages: info box ──────────────────────────────── */
.admin-info-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 24px;
}

.admin-info-box h3 {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--accent);
}

.admin-info-box ol,
.admin-info-box ul {
    margin: 0 0 8px;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
}

.admin-info-box p {
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--muted);
}

/* ── Config pages: status row ────────────────────────────── */
.admin-status-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0 0;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.admin-status-indicator {
    flex: 1;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot.green { background: #4caf50; box-shadow: 0 0 6px #4caf5066; }
.status-dot.red   { background: #f44336; box-shadow: 0 0 6px #f4433666; }

.admin-badge-sandbox {
    display: inline-block;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    background: #ff9800;
    color: #000;
    border-radius: 4px;
}

/* ── MercadoPago: payment methods grid ───────────────────── */
.mp-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.mp-method-item {
    background: var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.mp-method-icon {
    font-size: 20px;
    color: var(--accent);
}

.mp-method-item strong {
    font-size: 13px;
    font-weight: 700;
}

.mp-method-item small {
    font-size: 11px;
    color: var(--muted);
}

/* ── Frenet: carriers grid ───────────────────────────────── */
.me-carriers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.me-carrier {
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 600;
    background: var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    color: var(--text);
}

.inline-delete-form {
    margin-top: 14px;
}

.button-inline-danger {
    border: 0;
    background: transparent;
    color: #ff9b9b;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
}

.button-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 99, 99, 0.28);
    background: rgba(255, 99, 99, 0.14);
    color: #ffc5c5;
    font-weight: 700;
}

.admin-toggle-form {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 980px) {
    .admin-app {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .topbar,
    .admin-header-bar,
    .hero-banner,
    .highlight-product,
    .product-detail-layout,
    .cart-layout,
    .admin-form-grid,
    .contact-layout,
    .newsletter-band,
    .footer-grid,
    .collection-grid,
    .product-card-grid {
        grid-template-columns: 1fr;
    }

    .admin-summary-grid,
    .admin-split-grid {
        grid-template-columns: 1fr;
    }

    .main-nav {
        flex-wrap: wrap;
    }

    .mega-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-gallery {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

    .cart-price {
        justify-items: start;
    }

    .thumb-list {
        grid-auto-flow: column;
        grid-auto-columns: 72px;
        overflow-x: auto;
    }
}

@media (max-width: 720px) {
    .topbar {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    .brand {
        justify-self: start;
    }

    .topbar-actions {
        justify-content: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .hero-copy,
    .product-summary,
    .collection-card,
    .contact-info-panel,
    .contact-form,
    .content-card {
        padding: 22px;
    }

    .mega-menu {
        position: static;
        width: 100%;
        margin-top: 16px;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        grid-template-columns: 1fr;
        display: none;
    }

    .menu-wrap:hover .mega-menu,
    .menu-wrap:focus-within .mega-menu {
        display: grid;
    }
}

/* Imagem real de produto */
.product-photo {
    width: 100%;
    display: block;
}

.product-detail-art .product-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f3ef;
}

/* Admin: zona de risco */
.admin-danger-zone {
    margin-top: 40px;
    border: 1px solid #e53e3e;
    border-radius: 10px;
    padding: 24px;
    background: #fff5f5;
}

.admin-danger-zone h3 {
    color: #c53030;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
}

.admin-danger-zone p {
    color: #742a2a;
    font-size: 13px;
    margin-bottom: 16px;
}

.button-danger {
    background: #e53e3e;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
}

.button-danger:hover {
    background: #c53030;
}

/* Admin: preview de imagem */
.admin-image-preview {
    margin-bottom: 10px;
}

/* Seletor de variantes — página do produto */
.variant-selector {
    margin: 18px 0 10px;
}

.variant-selector-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variant-option {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: border-color .15s, background .15s;
    user-select: none;
}

.variant-option input[type="radio"] {
    display: none;
}

.variant-option:hover {
    border-color: #aaa;
}

.variant-option.is-selected {
    border-color: #111;
    background: #111;
    color: #fff;
}

.variant-option .out-of-stock {
    font-size: 11px;
    color: #e53e3e;
    font-weight: 400;
}

.variant-option.is-selected .out-of-stock {
    color: #ffaaaa;
}

/* Variante no carrinho */
.cart-variant-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    background: #f0f0f0;
    border-radius: 4px;
    padding: 2px 8px;
    display: inline-block;
    margin: 2px 0 6px;
}
}

/* ── category filter bar ─────────────────────────────────────────────────── */
.cat-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 24px 0 18px;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    transition: background 150ms ease, color 150ms ease, border-color 150ms ease, transform 150ms ease;
    cursor: pointer;
}

.cat-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    transform: translateY(-1px);
}

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

/* ── catalog section container ───────────────────────────────────────────── */
.catalog-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding-bottom: 60px;
}

.catalog-shell-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 18px 28px;
    align-items: end;
    padding: 18px 0 4px;
}

.catalog-shell-intro h2 {
    margin: 10px 0 0;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 0.95;
}

.catalog-shell-intro p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.catalog-heading {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 0 0 20px;
}

.catalog-heading h2 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 38px;
    line-height: 1;
}

.catalog-heading span {
    color: var(--muted);
    font-size: 15px;
}

.catalog-empty {
    padding: 48px 0;
    color: var(--muted);
    text-align: center;
    font-size: 18px;
}

/* ── hero compact (new homepage hero) ────────────────────────────────────── */
.hero-compact {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    padding: 28px 0 10px;
}

.hero-compact-copy {
    padding: 42px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
        linear-gradient(135deg, rgba(255, 29, 94, 0.08), rgba(0, 0, 0, 0) 40%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-compact-shell::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -80px;
    top: -60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 29, 94, 0.22), transparent 70%);
    pointer-events: none;
}

.hero-copy-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(246, 220, 88, 0.12);
    border: 1px solid rgba(246, 220, 88, 0.22);
    color: #f7e991;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-compact-copy h1 {
    margin: 10px 0 16px;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(42px, 5.5vw, 70px);
    line-height: 0.94;
}

.hero-compact-copy p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 4px;
    max-width: 560px;
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.hero-stat-card {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-card strong {
    font-family: "Rajdhani", sans-serif;
    font-size: 30px;
    line-height: 0.95;
    color: #fff;
}

.hero-stat-card span {
    color: var(--muted);
    font-size: 13px;
}

.hero-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 12px;
    aspect-ratio: 1 / 1;
    position: relative;
}

.hero-mosaic::before {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(135deg, rgba(255, 29, 94, 0.08), rgba(255, 255, 255, 0.01));
    z-index: 0;
}

.hero-mosaic-item {
    display: block;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(180deg, #f1efec 0%, #d8d2c9 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.hero-mosaic-item .product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 300ms ease;
}

.hero-mosaic-item:hover .product-photo {
    transform: scale(1.06);
}

.hero-mosaic-item svg {
    width: 100%;
    height: 100%;
    display: block;
}

.marketplace-band,
.home-showcase {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.marketplace-band {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: center;
    padding: 22px 0 14px;
}

.marketplace-intro h2 {
    margin: 10px 0 0;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 0.95;
}

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

.marketplace-card {
    display: grid;
    gap: 6px;
    min-height: 108px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.marketplace-card strong {
    font-family: "Rajdhani", sans-serif;
    font-size: 24px;
    line-height: 1;
}

.marketplace-card span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.home-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 22px;
    padding: 18px 0 6px;
}

.showcase-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
    gap: 18px;
    padding: 20px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 29, 94, 0.12), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: var(--shadow);
}

.showcase-feature-copy {
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 12px 6px 12px 10px;
}

.showcase-feature-copy h2 {
    margin: 4px 0 2px;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 0.95;
}

.showcase-feature-copy p,
.showcase-feature-copy small {
    color: var(--muted);
    line-height: 1.7;
}

.showcase-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.showcase-price s {
    color: #888;
}

.showcase-price strong {
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 800;
}

.showcase-feature-art {
    display: block;
    min-height: 100%;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(180deg, #f1efec 0%, #d8d2c9 100%);
}

.showcase-feature-art .product-photo,
.showcase-feature-art svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.showcase-side-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.showcase-mini-card {
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 180ms ease, border-color 180ms ease;
}

.showcase-mini-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.18);
}

.showcase-mini-art {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, #f1efec 0%, #d8d2c9 100%);
}

.showcase-mini-art .product-photo,
.showcase-mini-art svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.showcase-mini-copy {
    display: grid;
    gap: 4px;
}

.showcase-mini-copy strong {
    font-size: 15px;
    line-height: 1.4;
}

.showcase-mini-copy small {
    color: var(--muted);
}

/* ── mega column title link ──────────────────────────────────────────────── */
.mega-column h3 a {
    color: inherit;
    text-decoration: none;
}

.mega-column h3 a:hover {
    color: var(--accent);
}

/* ── responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .product-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-compact {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-stat-grid,
    .marketplace-list,
    .showcase-side-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .marketplace-band,
    .home-showcase,
    .showcase-feature,
    .catalog-shell-intro {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-mosaic {
        display: none;
    }
}

@media (max-width: 520px) {
    .cat-filter-bar {
        gap: 6px;
    }

    .cat-pill {
        font-size: 13px;
        padding: 7px 14px;
    }

    .hero-compact-copy,
    .showcase-feature,
    .marketplace-card {
        padding: 20px;
    }

    .hero-stat-grid,
    .marketplace-list,
    .showcase-side-grid,
    .product-card-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ── checkout / frete / pagamento ────────────────────────────────────────── */
.cart-summary-block {
    display: grid;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.cart-summary-block:last-of-type {
    border-bottom: none;
}

.cart-block-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: var(--muted);
    gap: 8px;
}

.cart-total-row strong {
    color: var(--text);
    font-weight: 700;
}

.cart-grand-total {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
}

.cart-grand-total span,
.cart-grand-total strong {
    color: var(--text);
    font-size: 20px;
}

.cart-summary .section-tag {
    margin-bottom: 2px;
}

/* frete calculator */
.frete-cep-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 118px;
    gap: 8px;
    align-items: stretch;
}

.frete-cep-input {
    min-height: 52px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 160ms ease;
}

.frete-cep-input:focus {
    border-color: rgba(255, 255, 255, 0.35);
}

.frete-calc-btn {
    white-space: nowrap;
    width: 100%;
    min-height: 52px;
    border-radius: 16px;
}

.frete-resultado {
    margin-top: 4px;
}

.recipient-address-card {
    margin-top: 10px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 196, 71, 0.22);
    background:
        linear-gradient(135deg, rgba(255, 196, 71, 0.08), rgba(255, 142, 61, 0.03)),
        rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.recipient-address-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.recipient-address-head strong {
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffe59c;
}

.recipient-address-head span {
    font-size: 12px;
    color: var(--muted);
}

.recipient-address-lines {
    display: grid;
    gap: 4px;
}

.recipient-address-lines strong {
    font-size: 15px;
    color: var(--text);
}

.recipient-address-lines span,
.recipient-address-lines small {
    color: var(--muted);
    font-size: 13px;
}

.frete-erro {
    color: #ff6b6b;
    font-size: 13px;
    margin: 0;
}

.frete-carregando {
    color: var(--muted);
    font-size: 13px;
    margin: 0;
}

.frete-options {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.frete-best-block,
.frete-more-block {
    display: grid;
    gap: 10px;
}

.frete-more-block {
    margin-top: 12px;
}

.frete-section-head {
    display: grid;
    gap: 2px;
}

.frete-section-head strong {
    font-size: 13px;
    color: var(--text);
}

.frete-section-head small {
    font-size: 12px;
    color: var(--muted);
}

.frete-options-featured .frete-option-label {
    border-color: rgba(255, 29, 94, 0.34);
    background: rgba(255, 29, 94, 0.08);
}

.frete-option-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: background 140ms ease, border-color 140ms ease;
    font-size: 14px;
}

.frete-option-label.is-static {
    cursor: default;
}

.frete-option-label:hover {
    background: rgba(255, 255, 255, 0.06);
}

.frete-option-label.is-static:hover {
    background: rgba(255, 255, 255, 0.03);
}

.frete-option-label input[type="radio"] {
    accent-color: var(--accent);
    flex-shrink: 0;
}

.frete-option-label input[type="radio"]:checked + .frete-option-info {
    color: var(--text);
}

.frete-options li:has(input:checked) .frete-option-label {
    border-color: var(--accent);
    background: rgba(255, 29, 94, 0.08);
}

.frete-option-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: var(--muted);
}

.frete-option-head {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.frete-option-info strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.frete-option-info small {
    font-size: 12px;
}

.frete-compare {
    color: #cfc4a7;
}

.frete-option-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}

.frete-badges {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.frete-badge {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.frete-badge-best {
    color: #fff1b8;
    background: rgba(255, 196, 71, 0.16);
    border: 1px solid rgba(255, 196, 71, 0.28);
}

.frete-badge-fast {
    color: #a5ecff;
    background: rgba(61, 181, 255, 0.16);
    border: 1px solid rgba(61, 181, 255, 0.28);
}

.product-freight-block {
    display: grid;
    gap: 12px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

/* checkout form */
.cart-checkout-form {
    display: grid;
    gap: 12px;
}

.checkout-label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.04em;
}

.checkout-label input {
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 160ms ease;
}

.checkout-label input:focus {
    border-color: rgba(255, 255, 255, 0.35);
}

.checkout-label input[readonly][data-locked="1"] {
    border-color: rgba(255, 196, 71, 0.25);
    background: rgba(255, 196, 71, 0.08);
    color: #fff2c4;
}

/* MercadoPago button */
.button-mp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    min-height: 58px;
    padding: 0 16px 0 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(135deg, #27aef8 0%, #0a7bd3 58%, #056ab6 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 160ms ease, transform 120ms ease;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(0, 118, 199, 0.30);
}

.button-mp:hover {
    background: linear-gradient(135deg, #34b5fb 0%, #1187de 58%, #0a73c4 100%);
    transform: translateY(-1px);
}

.button-mp:active {
    transform: translateY(0);
}

.button-mp-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.button-mp-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 32px;
    flex-shrink: 0;
}

.button-mp-logo img {
    width: 52px;
    height: 32px;
    display: block;
    object-fit: contain;
}

.button-mp-wordmark {
    display: grid;
    gap: 1px;
    text-align: left;
    min-width: 0;
}

.button-mp-wordmark small {
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.button-mp-wordmark strong {
    font-size: 21px;
    line-height: 0.95;
    white-space: nowrap;
}

.button-mp-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.cart-mp-trustline {
    margin: -2px 0 0;
    color: #cfe7fb;
    text-align: center;
    font-size: 11px;
    line-height: 1.45;
}

.cart-mp-methods {
    font-size: 11px;
    color: var(--muted);
    text-align: center;
    margin: 0;
    letter-spacing: 0.03em;
}

.cart-mp-off {
    text-align: center;
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed var(--line);
    display: grid;
    place-items: center;
}

/* WhatsApp button */
.button-whats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 54px;
    padding: 0 20px;
    border-radius: 16px;
    border: 1px solid rgba(37, 211, 102, 0.4);
    background: rgba(37, 211, 102, 0.08);
    color: #4de47e;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease, transform 120ms ease;
    text-decoration: none;
    text-align: center;
}

.button-whats:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.65);
    transform: translateY(-1px);
}

.cart-or-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cart-or-divider::before,
.cart-or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
}

.cart-whats-block {
    display: grid;
    gap: 14px;
    border-bottom: none !important;
}

.cart-clear-btn {
    width: 100%;
    margin-top: 0;
    font-size: 13px;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 16px;
    opacity: 0.88;
}

.cart-summary > form {
    margin: 0;
    display: block;
}

.cart-help-text {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.cart-help-text a {
    color: var(--accent-soft);
}

/* Pagamento retorno */
.pagamento-retorno-wrap {
    width: min(600px, calc(100% - 32px));
    margin: 0 auto 60px;
    display: grid;
    gap: 24px;
}

.pagamento-status {
    padding: 40px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
    display: grid;
    gap: 14px;
    justify-items: center;
}

.pagamento-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
}

.pagamento-status.aprovado .pagamento-icon {
    background: rgba(111, 211, 111, 0.15);
    color: #6fd36f;
    border: 2px solid rgba(111, 211, 111, 0.4);
}

.pagamento-status.falhou .pagamento-icon {
    background: rgba(255, 107, 107, 0.12);
    color: #ff6b6b;
    border: 2px solid rgba(255, 107, 107, 0.35);
}

.pagamento-status.pendente .pagamento-icon {
    background: rgba(246, 220, 88, 0.12);
    color: #f6dc58;
    border: 2px solid rgba(246, 220, 88, 0.35);
}

.pagamento-status h2 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 28px;
}

.pagamento-status p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.pagamento-id {
    font-size: 12px !important;
    font-family: monospace;
    background: rgba(255,255,255,0.06);
    padding: 6px 12px;
    border-radius: 8px;
    color: var(--muted) !important;
}

.pagamento-acoes {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagamento-nav {
    display: flex;
    justify-content: center;
}

@media (max-width: 640px) {
    .frete-cep-row {
        grid-template-columns: 1fr;
    }
    .frete-calc-btn {
        width: 100%;
    }

    .button-mp {
        flex-direction: column;
        justify-content: center;
        padding: 14px 16px;
    }

    .button-mp-wordmark {
        justify-items: center;
        text-align: center;
    }

    .button-mp-arrow {
        display: none;
    }
}

/* ── Auth (entrar / criar conta) ─────────────────────────────────────────── */
.auth-wrap {
    max-width: 480px;
    margin: 0 auto 60px;
    padding: 0 16px;
}
.auth-tabs {
    display: flex;
    border-bottom: 2px solid var(--line);
    margin-bottom: 28px;
}
.auth-tab {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-weight: 700;
    font-size: 15px;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color .2s, border-color .2s;
}
.auth-tab.is-active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}
.auth-form {
    display: grid;
    gap: 16px;
}
.auth-label {
    display: grid;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
}
.auth-label input {
    width: 100%;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.04);
    color: white;
    border-radius: 12px;
    padding: 13px 16px;
    font-size: 15px;
    transition: border-color .2s;
}
.auth-label input:focus {
    border-color: var(--gold);
    outline: none;
}
.auth-submit {
    width: 100%;
    margin-top: 4px;
}
.auth-hint {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}
.auth-hint a { color: var(--gold); }
.auth-flash { margin-bottom: 4px; }

/* ── Conta do cliente ────────────────────────────────────────────────────── */
.account-wrap {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto 64px;
    padding: 0 24px;
    align-items: start;
}
.account-nav {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    position: sticky;
    top: 24px;
}
.account-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: color .2s, background .2s, border-color .2s;
}
.account-nav-item:hover {
    background: rgba(255,255,255,.04);
    color: white;
}
.account-nav-item.is-active {
    color: var(--gold);
    border-left-color: var(--gold);
    background: rgba(255,200,0,.05);
}
.account-nav-badge {
    background: var(--gold);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    border-radius: 20px;
    padding: 2px 7px;
}
.account-nav-logout {
    border-top: 1px solid var(--line);
    color: #f66;
}
.account-nav-logout:hover { color: #ff4444; }

.account-content { min-width: 0; }
.account-section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}
.account-section-header h2 { margin: 0; font-size: 22px; }
.account-back {
    display: inline-block;
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 4px;
}
.account-back:hover { color: var(--gold); }
.account-empty {
    text-align: center;
    padding: 48px 0;
    color: var(--muted);
    display: grid;
    gap: 16px;
    justify-items: center;
}

/* ── Lista de pedidos ────────────────────────────────────────────────────── */
.orders-list { display: grid; gap: 12px; }
.order-card {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 20px;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s, background .2s;
}
.order-card:hover {
    border-color: var(--gold);
    background: rgba(255,200,0,.04);
}
.order-card-id { display: grid; gap: 2px; }
.order-card-id strong { font-size: 15px; }
.order-card-id small { color: var(--muted); font-size: 12px; }
.order-card-total { text-align: right; display: grid; gap: 2px; }
.order-card-total strong { font-size: 16px; }
.order-card-total small { color: var(--muted); font-size: 12px; }

/* ── Status badges ───────────────────────────────────────────────────────── */
.order-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
}
.status-novo      { background: rgba(150,150,150,.15); color: #aaa; }
.status-aprovado  { background: rgba(0,200,100,.15);   color: #00c864; }
.status-preparando{ background: rgba(255,210,70,.16);  color: #ffd246; }
.status-enviado   { background: rgba(0,150,255,.15);   color: #0096ff; }
.status-entregue  { background: rgba(0,220,120,.15);   color: #00dc78; }
.status-pendente  { background: rgba(255,180,0,.15);   color: #f90; }
.status-cancelado { background: rgba(200,50,50,.15);   color: #f55; }
.status-falhou    { background: rgba(200,50,50,.15);   color: #f55; }

/* ── Detalhe do pedido ───────────────────────────────────────────────────── */
.order-progress-card {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px 24px;
    margin-bottom: 24px;
    display: grid;
    gap: 18px;
}
.order-progress-head h3 { margin: 0 0 6px; font-size: 16px; }
.order-progress-head p { margin: 0; font-size: 13px; color: var(--muted); }
.order-progress-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.order-progress-step {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 0 8px;
}
.order-progress-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    left: calc(50% + 22px);
    width: calc(100% - 28px);
    height: 2px;
    background: rgba(255,255,255,.08);
}
.order-progress-step.is-done:not(:last-child)::after,
.order-progress-step.is-current:not(:last-child)::after {
    background: linear-gradient(90deg, rgba(0,200,100,.7), rgba(255,210,70,.5));
}
.order-progress-dot {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: var(--muted);
    position: relative;
    z-index: 1;
}
.order-progress-step.is-done .order-progress-dot {
    background: rgba(0,200,100,.14);
    border-color: rgba(0,200,100,.34);
    color: #00c864;
}
.order-progress-step.is-current .order-progress-dot {
    background: rgba(255,210,70,.14);
    border-color: rgba(255,210,70,.36);
    color: #ffd246;
}
.order-progress-copy { display: grid; gap: 4px; }
.order-progress-copy strong { font-size: 13px; }
.order-progress-copy small { font-size: 12px; color: var(--muted); }

.order-detail-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
}
.order-items-list {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px 24px;
}
.order-items-list h3 { margin: 0 0 16px; font-size: 16px; }
.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}
.order-item-row:last-child { border-bottom: none; }
.order-item-info { display: grid; gap: 2px; }
.order-item-info small { color: var(--muted); font-size: 12px; }
.order-total-row {
    display: flex;
    justify-content: space-between;
    padding-top: 14px;
    margin-top: 4px;
    border-top: 2px solid var(--line);
    font-size: 17px;
}
.order-detail-aside {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px 24px;
}
.order-detail-aside h3 { margin: 0 0 16px; font-size: 16px; }
.order-info-dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 16px; align-items: start; margin: 0; }
.order-info-dl dt { color: var(--muted); font-size: 13px; font-weight: 600; }
.order-info-dl dd { margin: 0; font-size: 13px; }
.admin-order-status-form { display: grid; gap: 8px; }
.admin-order-status-form select { min-width: 190px; }

/* ── Responsivo conta ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .account-wrap {
        grid-template-columns: 1fr;
    }
    .account-nav {
        position: static;
        display: flex;
        flex-wrap: wrap;
        border-radius: 12px;
    }
    .account-nav-item {
        flex: 1;
        min-width: 100px;
        text-align: center;
        justify-content: center;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 12px 8px;
    }
    .account-nav-item.is-active {
        border-bottom-color: var(--gold);
        border-left-color: transparent;
    }
    .account-nav-logout { border-top: none; border-left: 1px solid var(--line); }
    .order-card { grid-template-columns: 1fr auto; }
    .order-card-mid { display: none; }
    .order-detail-grid { grid-template-columns: 1fr; }
    .order-progress-track { grid-template-columns: 1fr; }
    .order-progress-step { padding-left: 0; }
    .order-progress-step:not(:last-child)::after {
        top: calc(100% + 6px);
        left: 20px;
        width: 2px;
        height: 18px;
    }
}

/* ── Checkout Transparente ───────────────────────────────────────────────── */
.pagamento-checkout-wrap {
    width: min(980px, calc(100% - 32px));
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    align-items: start;
}

.pagamento-resumo {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 24px;
    display: grid;
    gap: 12px;
    position: sticky;
    top: 24px;
}

.pagamento-resumo-title {
    font-family: "Rajdhani", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 2px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pagamento-resumo-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: 13px;
    color: var(--muted);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pagamento-resumo-item small {
    color: var(--muted);
    font-size: 11px;
}

.pagamento-resumo-qty {
    color: var(--muted);
    font-size: 11px;
    margin-left: 4px;
}

.pagamento-resumo-item strong {
    color: var(--text);
    font-size: 13px;
    white-space: nowrap;
}

.pagamento-resumo-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 14px;
    font-weight: 700;
    padding-top: 2px;
}

.pagamento-resumo-total strong {
    color: var(--gold);
    font-size: 22px;
}

.pagamento-resumo-customer {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    display: grid;
    gap: 3px;
}

.pagamento-resumo-customer p {
    margin: 0;
    color: var(--text);
}

.pagamento-resumo-email {
    color: var(--muted) !important;
    font-size: 12px !important;
}

.pagamento-resumo-customer a {
    color: var(--gold);
    font-size: 12px;
    margin-top: 4px;
}

.pagamento-resumo-customer a:hover {
    text-decoration: underline;
}

.pagamento-resumo-testmode {
    font-size: 11px;
    color: var(--accent-soft);
    margin: 0;
    text-align: center;
    padding: 6px 10px;
    background: rgba(255, 29, 94, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(255, 29, 94, 0.2);
}

.pagamento-brick-wrap {
    min-width: 0;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 28px 24px;
}

#paymentBrick_container {
    min-height: 300px;
}

.pagamento-card-form {
    display: grid;
    gap: 16px;
    background: rgba(16, 22, 38, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 24px;
}

.pagamento-card-row,
.pagamento-card-grid {
    display: grid;
    gap: 16px;
}

.pagamento-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pagamento-card-grid-doc {
    grid-template-columns: 140px minmax(0, 1fr);
}

.pagamento-card-label {
    display: grid;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
}

.pagamento-card-label input,
.pagamento-card-label select,
.pagamento-card-frame {
    min-height: 52px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 14px 16px;
}

.pagamento-card-label input,
.pagamento-card-label select {
    width: 100%;
}

.pagamento-card-label input:focus,
.pagamento-card-label select:focus {
    outline: none;
    border-color: rgba(241, 200, 76, 0.65);
    box-shadow: 0 0 0 3px rgba(241, 200, 76, 0.12);
}

.pagamento-card-frame iframe {
    min-height: 22px !important;
}

.pagamento-card-submit {
    justify-self: start;
    min-width: 180px;
}

.pagamento-checkout-pro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 24px;
    text-align: center;
}

.pagamento-checkout-pro-info {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    max-width: 360px;
}

.pagamento-checkout-pro-btn {
    display: inline-flex;
    align-items: center;
    font-size: 17px;
    padding: 16px 32px;
}

.pagamento-checkout-pro-seguro {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.pagamento-fallback-titulo {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

.pagamento-escape {
    margin-top: 20px;
    font-size: 13px;
    color: var(--muted);
    text-align: center;
}

.pagamento-feedback {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    background: rgba(255, 107, 107, 0.12);
    border: 1px solid rgba(255, 107, 107, 0.35);
    color: #ffaaaa;
}

.pagamento-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 48px 0;
    color: var(--muted);
    font-size: 14px;
}

.pagamento-loading p {
    margin: 0;
}

.pagamento-loading-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.4;
    animation: brickpulse 1.2s ease-in-out infinite;
}

.pagamento-loading-dot:nth-child(2) { animation-delay: 0.2s; }
.pagamento-loading-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes brickpulse {
    0%, 80%, 100% { opacity: 0.2; transform: scale(0.85); }
    40%            { opacity: 1;   transform: scale(1.1);  }
}

/* PIX */
.pagamento-pix-box {
    text-align: center;
    display: grid;
    gap: 20px;
    justify-items: center;
    padding: 8px 0 4px;
}

.pagamento-pix-box img {
    width: 220px;
    height: 220px;
    border-radius: 14px;
    background: white;
    padding: 10px;
    display: block;
}

.pagamento-pix-copy {
    width: 100%;
    max-width: 500px;
    display: grid;
    gap: 10px;
}

.pagamento-pix-code {
    font-family: monospace;
    font-size: 10px;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px;
    word-break: break-all;
    color: var(--muted);
    text-align: left;
    user-select: all;
}

@media (max-width: 760px) {
    .pagamento-checkout-wrap {
        grid-template-columns: 1fr;
    }
    .pagamento-resumo {
        position: static;
    }
    .pagamento-card-grid,
    .pagamento-card-grid-doc {
        grid-template-columns: 1fr;
    }
}

/* ── Produtos relacionados ───────────────────────────────────────────────── */
.related-products {
    border-top: 1px solid var(--line);
    margin-top: 12px;
    padding: 48px 0 60px;
}

.related-products-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}
