﻿/* ELOPRIME - identidade visual: cinza escuro (#2d2d2d) no lugar do azul #007bff */
:root {
  --ep-primary: #2d2d2d;
  --ep-primary-hover: #404040;
  --ep-primary-active: #1a1a1a;
  --ep-primary-soft: #4a4a4a;
  --ep-text: #161625;
  --ep-text-muted: #666;
  --ep-text-light: #999;
  --ep-bg: #ffffff;
  --ep-bg-muted: #fafafa;
  --ep-border: rgba(4, 4, 5, 0.1);
  --ep-search-bg: #efefef;
  --ep-footer: #1a1a1a;
  --ep-success: #22c55e;
  --ep-radius: 8px;
  --ep-radius-pill: 24px;
  --ep-shadow: 0 0 0 2px rgba(4, 4, 5, 0.06);
  --ep-container: 1400px;
  --ep-font: "Mulish", "Segoe UI", sans-serif;
  --ep-header-h: 64px;
  --ep-tabbar-h: 0px;
  --ep-safe-top: env(safe-area-inset-top, 0px);
  --ep-safe-bottom: env(safe-area-inset-bottom, 0px);
  --ep-safe-left: env(safe-area-inset-left, 0px);
  --ep-safe-right: env(safe-area-inset-right, 0px);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--ep-font);
  color: var(--ep-text);
  background: var(--ep-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom, 0);
  min-height: 100dvh;
  overscroll-behavior-y: none;
}

[hidden] { display: none !important; }

a { color: var(--ep-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ep-primary-hover); }

img { max-width: 100%; height: auto; display: block; }

button,
a,
.category-tile,
.category-card {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.container {
  width: 100%;
  max-width: var(--ep-container);
  margin: 0 auto;
  padding: 0 1rem;
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
}

.main {
  min-height: 50vh;
  padding-bottom: 0;
}

/* Header â€” logo esquerda, busca no centro (como antes), aÃ§Ãµes na direita */
/* Header â€” cor da pÃ¡gina no topo; ao rolar, vidro translÃºcido (site_base) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ep-bg);
  border-bottom: 1px solid transparent;
  padding-top: env(safe-area-inset-top, 0);
  transition:
    background-color .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    backdrop-filter .28s ease,
    -webkit-backdrop-filter .28s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: rgba(4, 4, 5, 0.08);
  box-shadow: 0 1px 0 rgba(4, 4, 5, 0.04);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
  }
}

.header-bar {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 640px) 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 64px;
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0.35rem 1.25rem;
  padding-left: max(1.25rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
  box-sizing: border-box;
}

.header-left {
  justify-self: start;
}

.header-center {
  justify-self: center;
  width: 100%;
  max-width: 640px;
}

.header-right {
  justify-self: end;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo:hover { opacity: .92; }
.logo-img {
  height: 30px;
  width: auto;
  max-width: 190px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.header-search {
  position: relative;
  width: 100%;
}

.search-box {
  width: 100%;
  display: flex;
  align-items: center;
  background: var(--ep-search-bg);
  border: 1px solid var(--ep-search-bg);
  border-radius: var(--ep-radius-pill);
  height: 44px;
  padding: 0 .35rem 0 .9rem;
  transition: border-color .2s, background .2s;
  gap: .35rem;
}
.search-box:focus-within {
  background: #fff;
  border-color: var(--ep-primary);
}
.search-box__icon {
  display: grid;
  place-items: center;
  color: #999;
  flex-shrink: 0;
}
.search-box input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  font: inherit;
  font-size: 1.05rem;
  color: var(--ep-text);
  min-width: 0;
}
.search-btn {
  border: 0;
  background: transparent;
  color: #333;
  width: 40px;
  height: 36px;
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 999px;
  flex-shrink: 0;
  font: inherit;
  font-weight: 700;
}
.search-btn:hover { background: rgba(4,4,5,.06); }

.search-box__kbd {
  flex-shrink: 0;
  min-width: 28px;
  height: 26px;
  margin-right: .35rem;
  padding: 0 .45rem;
  border: 0;
  border-radius: 8px;
  background: #e4e4e4;
  color: #555;
  font-family: inherit;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-transform: none;
  user-select: none;
  cursor: pointer;
  pointer-events: auto;
}
.search-box.is-active .search-box__kbd {
  background: #ddd;
  color: #333;
  min-width: 34px;
  font-size: .68rem;
}

.search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  width: 100%;
  min-width: 100%;
  max-width: min(720px, 94vw);
  max-height: min(70vh, 520px);
  overflow: auto;
  background: #fff;
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .14);
  z-index: 130;
  padding: .85rem .9rem 1rem;
}
.search-suggest[hidden] { display: none !important; }
.search-suggest__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .85rem;
}
.search-suggest__chip {
  display: inline-flex;
  align-items: center;
  background: rgba(45, 45, 45, .08);
  color: #2d2d2d;
  border-radius: 8px;
  padding: .35rem .7rem;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}
.search-suggest__chip:hover { background: rgba(45, 45, 45, .14); color: #111; }
.search-suggest__section {
  margin: 0 0 .55rem;
  font-size: .92rem;
  font-weight: 700;
  color: #888;
}
.search-suggest__empty {
  margin: .35rem 0 0;
  color: #999;
  font-size: .92rem;
}
.search-suggest__list {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.search-suggest__item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: center;
  padding: .55rem .45rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
}
.search-suggest__item:hover,
.search-suggest__item.is-active {
  background: #f6f6f6;
}
.search-suggest__thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  background: #eee;
}
.search-suggest__title {
  font-size: .9rem;
  font-weight: 500;
  color: #333;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-suggest__title strong { font-weight: 800; color: #111; }
.search-suggest__price {
  margin-top: .2rem;
  font-size: .95rem;
  font-weight: 800;
  color: #111;
}
.search-suggest__badges {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-shrink: 0;
}
.search-suggest__tier {
  background: #2d2d2d;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: .18rem .45rem;
  border-radius: 999px;
  text-transform: lowercase;
}
.search-suggest__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2d2d2d;
  color: #fff;
  display: grid;
  place-items: center;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  border: 0;
  background: transparent;
  color: var(--ep-text);
  font: inherit;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  padding: .35rem .25rem;
}
.nav-link:hover { color: var(--ep-primary); }
.nav-link .chevron { transition: transform .2s; }
.nav-link[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.has-dropdown { position: relative; }
.has-dropdown--mega { position: static; }

/* Fechado por padrão — NÃO usar display:flex no estado base (quebrava [hidden]) */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--ep-border);
  border-radius: var(--ep-radius);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  padding: .5rem;
  flex-direction: column;
  gap: .15rem;
  z-index: 50;
}
.dropdown.is-open {
  display: flex;
}
.dropdown a {
  color: var(--ep-text);
  padding: .55rem .75rem;
  border-radius: 6px;
  font-size: .9rem;
}
.dropdown a:hover { background: var(--ep-bg-muted); color: var(--ep-primary); }
.dropdown .dropdown-all {
  border-top: 1px solid var(--ep-border);
  margin-top: .25rem;
  padding-top: .75rem;
  font-weight: 700;
}

/* Mega menu Categorias */
.cat-mega {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 140;
  width: min(920px, calc(100vw - 1.5rem));
  max-height: min(78vh, 640px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 48px -12px rgba(0, 0, 0, .22);
  border: 1px solid rgba(4, 4, 5, .08);
  overflow: hidden;
  flex-direction: column;
}
.cat-mega.is-open,
.cat-mega:not([hidden]) {
  display: flex;
}
.cat-mega[hidden] {
  display: none !important;
}
.cat-mega__search {
  position: relative;
  padding: 1rem 1.1rem .75rem;
  border-bottom: 1px solid rgba(4, 4, 5, .08);
  flex-shrink: 0;
}
.cat-mega__search-icon {
  position: absolute;
  left: 1.85rem;
  top: 50%;
  transform: translateY(-35%);
  color: #888;
  pointer-events: none;
}
.cat-mega__input {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #efefef;
  padding: 0 1.1rem 0 2.6rem;
  font: inherit;
  font-size: .95rem;
  color: #2d2d2d;
  outline: none;
}
.cat-mega__input::placeholder { color: #888; }
.cat-mega__input:focus {
  box-shadow: 0 0 0 2px rgba(45, 45, 45, .18);
}
.cat-mega__body {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 260px);
  min-height: 0;
  flex: 1;
  overflow: hidden;
}
.cat-mega__main {
  overflow: auto;
  padding: 1rem 1.1rem 1.15rem;
  scrollbar-width: thin;
}
.cat-mega__side {
  background: #f4f6f8;
  border-left: 1px solid rgba(4, 4, 5, .06);
  padding: 1rem .95rem 1.15rem;
  overflow: auto;
}
.cat-mega__heading {
  margin: 0 0 .75rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #555;
}
.cat-mega__section + .cat-mega__section {
  margin-top: 1.25rem;
}
.cat-mega__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .15rem .35rem;
}
.cat-mega__item {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-height: 48px;
  padding: .35rem .4rem;
  border-radius: 10px;
  color: #2d2d2d;
  text-decoration: none;
}
.cat-mega__item:hover {
  background: rgba(4, 4, 5, .05);
}
.cat-mega__thumb {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e8e8e8;
}
.cat-mega__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-mega__name {
  flex: 1;
  min-width: 0;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cat-mega__chevron {
  flex-shrink: 0;
  color: #aaa;
  opacity: .85;
}
.cat-mega__item:hover .cat-mega__chevron { color: #666; }
.cat-mega__all {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  margin-top: 1.1rem;
  color: #2d2d2d;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
}
.cat-mega__all:hover { text-decoration: underline; }
.cat-mega__empty {
  margin: 1rem 0 0;
  color: #888;
  font-size: .92rem;
}
.cat-mega__other {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.cat-mega__other-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .45rem .35rem;
  border-radius: 10px;
  color: #2d2d2d;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
}
.cat-mega__other-item:hover { background: rgba(4, 4, 5, .05); }
.cat-mega__other-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #2d2d2d;
  display: grid;
  place-items: center;
}
.cat-mega__other-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html.theme-dark .cat-mega {
  background: #1e1e21;
  border-color: hsla(0, 0%, 100%, .1);
  box-shadow: none;
}
html.theme-dark .cat-mega__search { border-bottom-color: hsla(0, 0%, 100%, .1); }
html.theme-dark .cat-mega__input {
  background: #2a2a2e;
  color: #eee;
}
html.theme-dark .cat-mega__heading { color: #aaa; }
html.theme-dark .cat-mega__item,
html.theme-dark .cat-mega__other-item,
html.theme-dark .cat-mega__all,
html.theme-dark .cat-mega__name { color: #eee; }
html.theme-dark .cat-mega__item:hover,
html.theme-dark .cat-mega__other-item:hover { background: rgba(255, 255, 255, .06); }
html.theme-dark .cat-mega__side {
  background: #161618;
  border-left-color: hsla(0, 0%, 100%, .08);
}
html.theme-dark .cat-mega__thumb { background: #2a2a2e; }

@media (max-width: 900px) {
  .cat-mega {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: min(960px, calc(100vw - 1rem));
  }
  .cat-mega__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .cat-mega__body { grid-template-columns: 1fr; }
  .cat-mega__side {
    border-left: 0;
    border-top: 1px solid rgba(4, 4, 5, .08);
  }
  .cat-mega__grid { grid-template-columns: 1fr; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--ep-radius-pill);
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-primary {
  background: var(--ep-primary);
  color: #fff !important;
  height: 40px;
  padding: 0 1.25rem;
  font-size: .95rem;
}
.btn-primary:hover { background: var(--ep-primary-hover); color: #fff !important; }
.btn-primary:active { background: var(--ep-primary-active); }
.btn-lg {
  height: 48px;
  padding: 0 3rem;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 1rem;
}
.btn-dark {
  background: var(--ep-primary);
  color: #fff !important;
  height: 48px;
  padding: 0 2rem;
  border-radius: 10px;
}
.btn-anunciar {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  background: #fff;
  color: #333;
  cursor: pointer;
  border-radius: 50%;
  flex-shrink: 0;
  text-decoration: none;
  padding: 0;
}
.icon-btn--outline {
  border: 1px solid rgba(4, 4, 5, .12);
  box-shadow: none;
}
.icon-btn:hover {
  background: #fafafa;
  color: #111;
  border-color: rgba(4, 4, 5, .18);
}

.header-notif,
.header-cart,
.header-account {
  position: relative;
}
.notif-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 130;
  width: min(360px, calc(100vw - 1.5rem));
  min-height: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 40px -8px rgba(0, 0, 0, .22);
  display: grid;
  grid-template-columns: 52px 1fr;
  overflow: hidden;
}
.notif-popover[hidden] { display: none !important; }
.notif-popover__side {
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  padding: .75rem .45rem;
}
.notif-popover__tab {
  width: 36px;
  height: 36px;
  border: 1.5px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #666;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.notif-popover__tab:hover {
  background: rgba(4, 4, 5, .06);
  color: #2d2d2d;
}
.notif-popover__tab.is-active {
  border-color: #2d2d2d;
  background: rgba(45, 45, 45, .08);
  color: #2d2d2d;
}
.notif-popover__main {
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.notif-popover__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1.25rem;
}
.notif-popover__empty-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #efefef;
  color: #666;
  display: grid;
  place-items: center;
  margin-bottom: .85rem;
}
.notif-popover__empty strong {
  display: block;
  margin-bottom: .35rem;
  color: #2d2d2d;
  font-size: 1rem;
}
.notif-popover__empty p {
  margin: 0;
  color: #888;
  font-size: .9rem;
  line-height: 1.4;
  max-width: 220px;
}
.notif-popover__footer {
  display: block;
  text-align: center;
  padding: .9rem 1rem;
  border-top: 1px solid rgba(4, 4, 5, .1);
  color: #2d2d2d;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
}
.notif-popover__footer:hover { text-decoration: underline; }

.header-cart { position: relative; }
.header-cart__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #2d2d2d;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  pointer-events: none;
}
html.theme-dark .header-cart__badge { background: #fff; color: #111; }

.cart-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 50%;
  transform: translateX(50%);
  z-index: 120;
  min-width: 260px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 7px 36px -8px rgba(0, 0, 0, .2);
  padding: 0;
  overflow: hidden;
  text-align: left;
}
.cart-popover[hidden] { display: none !important; }
.cart-popover__empty {
  margin: 0;
  padding: 1.15rem 1.5rem;
  font-size: .98rem;
  font-weight: 600;
  color: #444;
  text-align: center;
  white-space: nowrap;
}
.cart-popover__list {
  list-style: none;
  margin: 0;
  padding: .5rem 0;
  max-height: 240px;
  overflow: auto;
}
.cart-popover__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .55rem 1rem;
  font-size: .88rem;
}
.cart-popover__list a {
  color: #2d2d2d;
  text-decoration: none;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cart-popover__list a:hover { text-decoration: underline; }
.cart-popover__list span { color: #888; flex-shrink: 0; }
.cart-popover__footer {
  display: block;
  text-align: center;
  padding: .85rem 1rem;
  border-top: 1px solid rgba(4, 4, 5, .1);
  color: #2d2d2d;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
}
.cart-popover__footer:hover { text-decoration: underline; }
.account-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 120;
  min-width: 210px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 7px 36px -8px rgba(0, 0, 0, .2);
  overflow: hidden;
  padding: 0;
}
.account-popover[hidden] { display: none !important; }
.account-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-width: 210px;
}
.account-popover--user {
  min-width: 280px;
  width: 280px;
}
.account-menu-head {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.15rem .9rem;
  border-bottom: 1px solid rgba(4, 4, 5, .1);
}
.account-menu-head__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
  flex-shrink: 0;
}
.account-menu-head__hello {
  margin: 0 0 .2rem;
  font-size: 1rem;
  font-weight: 700;
  color: #2d2d2d;
  line-height: 1.2;
}
.account-menu-head__link {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #999;
  text-decoration: none;
}
.account-menu-head__link:hover { color: #2d2d2d; }
.account-menu > li {
  border-bottom: 1px solid rgba(4, 4, 5, .1);
  display: flex;
  transition: background .2s;
}
.account-menu > li:last-child { border-bottom: 0; }
.account-menu > li:hover { background: #fafafa; }
.account-menu a,
.account-menu__theme-btn {
  align-items: center;
  color: #666;
  display: flex;
  flex-direction: row;
  font-size: 16px;
  font-weight: 600;
  height: 54px;
  justify-content: flex-end;
  line-height: 1.2;
  padding: 16px 24px;
  text-align: right;
  white-space: nowrap;
  width: 100%;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  gap: 10px;
  text-decoration: none;
}
.account-menu--user a,
.account-menu--user .account-menu__theme-btn {
  justify-content: flex-start;
  text-align: left;
  padding: 14px 18px;
  height: 52px;
  color: #444;
  font-size: 15px;
}
.account-menu--user a svg,
.account-menu--user .account-menu__theme-btn svg {
  flex-shrink: 0;
  color: #555;
}
.account-menu a:hover,
.account-menu__theme-btn:hover { color: #333; }
.account-menu__logout a {
  color: #e2556a !important;
}
.account-menu__logout a svg { color: #e2556a !important; }
.account-menu__logout:hover { background: #fff5f6 !important; }
.account-menu__staff {
  font-weight: 700 !important;
}
.account-menu__moon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: currentColor;
}

/* Dark theme */
html.theme-dark {
  color-scheme: dark;
}
html.theme-dark body {
  background: #121215;
  color: #ddd;
}
html.theme-dark .site-header {
  background: #121215;
}
html.theme-dark .site-header.is-scrolled {
  background: rgba(30, 30, 33, .86);
  border-bottom-color: hsla(0, 0%, 100%, .1);
}
html.theme-dark .search-box {
  background: #1e1e21;
  border-color: hsla(0, 0%, 100%, .1);
}
html.theme-dark .search-box:focus-within {
  background: #1e1e21;
  border-color: #666;
}
html.theme-dark .search-box input { color: #ddd; }
html.theme-dark .search-box__kbd {
  background: #2a2a2e;
  color: #bbb;
}
html.theme-dark .search-box.is-active .search-box__kbd {
  background: #3a3a40;
  color: #eee;
}
html.theme-dark .nav-link { color: #ddd; }
html.theme-dark .icon-btn {
  background: #1e1e21;
  color: #ddd;
  border-color: hsla(0, 0%, 100%, .12);
}
html.theme-dark .icon-btn:hover {
  background: #2a2a2e;
  color: #fff;
}
html.theme-dark .notif-popover {
  background: #1e1e21;
  border: 1px solid hsla(0, 0%, 100%, .1);
  box-shadow: none;
}
html.theme-dark .notif-popover__side { background: #161618; }
html.theme-dark .notif-popover__tab { color: #aaa; }
html.theme-dark .notif-popover__tab.is-active {
  border-color: #ddd;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}
html.theme-dark .notif-popover__empty-icon {
  background: #2a2a2e;
  color: #ccc;
}
html.theme-dark .notif-popover__empty strong { color: #fff; }
html.theme-dark .notif-popover__empty p { color: #999; }
html.theme-dark .notif-popover__footer {
  border-top-color: hsla(0, 0%, 100%, .1);
  color: #ddd;
}
html.theme-dark .cart-popover,
html.theme-dark .account-popover {
  background: #1e1e21;
  border: 1px solid hsla(0, 0%, 100%, .1);
  box-shadow: none;
}
html.theme-dark .account-menu-head {
  border-bottom-color: hsla(0, 0%, 100%, .1);
}
html.theme-dark .account-menu-head__hello { color: #fff; }
html.theme-dark .account-menu-head__link { color: #888; }
html.theme-dark .account-menu-head__link:hover { color: #ddd; }
html.theme-dark .account-menu__logout:hover { background: rgba(226, 85, 106, .12) !important; }
html.theme-dark .cart-popover__empty { color: #ddd; }
html.theme-dark .cart-popover__list a { color: #eee; }
html.theme-dark .cart-popover__footer {
  border-top-color: hsla(0, 0%, 100%, .1);
  color: #ddd;
}
html.theme-dark .account-menu > li {
  border-bottom-color: hsla(0, 0%, 100%, .1);
}
html.theme-dark .account-menu > li:hover { background: transparent; }
html.theme-dark .account-menu a,
html.theme-dark .account-menu__theme-btn { color: #999; }
html.theme-dark .account-menu a:hover,
html.theme-dark .account-menu__theme-btn:hover { color: #ddd; }
html.theme-dark .listing-page,
html.theme-dark .main { background: #121215; }
html.theme-dark .listing-module,
html.theme-dark .listing-desc,
html.theme-dark .listing-questions,
html.theme-dark .listing-table {
  background: #1e1e21;
  border-color: hsla(0, 0%, 100%, .1);
}
html.theme-dark .listing-summary__title,
html.theme-dark .listing-section__title,
html.theme-dark .listing-module__title { color: #eee; }
html.theme-dark .footer { background: #0d0d0f; }

/* Hero */
.hero {
  position: relative;
  text-align: center;
  padding: 7.25rem 0 2.5rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 10% 20% auto;
  height: 280px;
  background: radial-gradient(ellipse at center, rgba(45,45,45,.08) 0%, rgba(45,45,45,0) 70%);
  pointer-events: none;
}
.hero-title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
}
.hero-subtitle {
  margin: .35rem 0 0;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--ep-primary);
}

/* Sections */
.section { padding: 2.5rem 0 3rem; }
.section--muted { background: var(--ep-bg-muted); }
.section-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.65rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: #333;
  letter-spacing: -.01em;
}

.divider-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 0;
}
.divider-link span {
  flex: 1;
  height: 1px;
  background: var(--ep-border);
}
.divider-link a {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--ep-text-muted);
  white-space: nowrap;
  text-transform: uppercase;
}
.divider-link a:hover { color: var(--ep-primary); }

/* Home — mesmo alinhamento/largura das Categorias Populares */
.section--categories .container,
.section--listings .container,
.section--home-wide .container,
.benefits.section--home-wide .container,
.site-footer .footer-shell {
  max-width: 1640px;
  width: 100%;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.category-card {
  display: block;
  width: 100%;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(4,4,5,.06);
  aspect-ratio: 3 / 4;
  position: relative;
  isolation: isolate;
  transition: transform .2s, box-shadow .2s;
}
.category-card.is-skeleton {
  pointer-events: none;
  background: #fff;
  border: 1px solid rgba(4, 4, 5, .12);
}
.category-card.is-skeleton > *:not(.skeleton-overlay) {
  visibility: hidden;
}
.category-card.is-skeleton:hover {
  transform: none;
  box-shadow: none;
}
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ep-shadow);
  z-index: 1;
}
.category-card__img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

/* Listings */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.35rem 1rem;
}
.listing-card {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  border-radius: 12px;
  padding: .75rem;
  position: relative;
  background: #fff;
  border: 1px solid rgba(4, 4, 5, .14);
  box-shadow: 0 1px 2px rgba(4, 4, 5, .04);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.listing-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
.listing-card__seller {
  position: relative;
  z-index: 2;
}
.listing-card__seller a {
  position: relative;
  z-index: 2;
}
.listing-card:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 45, 45, .28);
  box-shadow: 0 6px 16px rgba(4, 4, 5, .1);
}
.listing-card.is-skeleton {
  pointer-events: none;
  min-height: 260px;
}
.listing-card.is-skeleton > *:not(.skeleton-overlay) {
  visibility: hidden;
}
.listing-card.is-skeleton:hover {
  transform: none;
  box-shadow: 0 1px 2px rgba(4, 4, 5, .04);
  border-color: rgba(4, 4, 5, .14);
}
.listing-card__media {
  border-radius: 10px;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 16 / 11;
  border: 1px solid rgba(4, 4, 5, .08);
  display: block;
}
.listing-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.listing-card__media-wrap {
  position: relative;
  z-index: 2;
}
.listing-card__fav {
  position: absolute;
  top: .5rem;
  right: .5rem;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #2d2d2d;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  opacity: 0;
  transform: scale(.92);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, background .15s, color .15s;
}
.listing-card:hover .listing-card__fav,
.listing-card__fav.is-active,
.listing-card__fav:focus-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.listing-card__fav:hover {
  background: #fff;
  color: #e11d48;
}
.listing-card__fav.is-active {
  color: #e11d48;
}
.listing-card__fav.is-active .listing-card__fav-icon {
  fill: currentColor;
  stroke: currentColor;
}
/* Touch: sem hover — aparece ao tocar no card */
@media (hover: none) {
  .listing-card:active .listing-card__fav,
  .listing-card__fav.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
}

.listing-card--popular .listing-card__title {
  position: relative;
  z-index: 2;
}
.listing-card--popular .price-badge {
  position: relative;
  z-index: 2;
}
.listing-card__title {
  margin: 0;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: uppercase;
}
.listing-card__title a { color: var(--ep-text); }
.listing-card__title a:hover { color: var(--ep-primary); }

.price-badge {
  align-self: center;
  border: 1.5px solid var(--ep-primary);
  color: var(--ep-primary) !important;
  border-radius: 10px;
  padding: .5rem 1.15rem;
  font-weight: 700;
  font-size: .95rem;
  margin: .2rem 0;
}
.price-badge:hover {
  background: var(--ep-primary);
  color: #fff !important;
}

.price-text {
  color: var(--ep-primary);
  font-weight: 700;
  font-size: 1.12rem;
}

.listing-card__seller {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-size: .85rem;
  text-align: center;
  width: 100%;
}
.listing-card__seller a { color: var(--ep-primary); font-weight: 600; }
.listing-card__seller span { color: var(--ep-text-light); }

.listing-card__row {
  display: flex;
  align-items: flex-start;
  gap: .35rem;
}
.listing-card__row .listing-card__title { flex: 1; }

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.25rem;
  padding-top: 1.5rem;
}
.review-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--ep-border);
  border-radius: 1rem;
  padding: 2.25rem 1.1rem 1.25rem;
  transition: transform .2s, box-shadow .2s;
}
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--ep-shadow);
}
.review-card__avatar {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: #f0f0f0;
  object-fit: cover;
  z-index: 1;
}
.review-card__quote {
  position: absolute;
  top: .7rem;
  right: .9rem;
  width: 18px;
  height: 18px;
  color: rgba(45, 45, 45, .28);
  font-size: 1.15rem;
  line-height: 18px;
  text-align: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.review-card__body {
  margin: 0 0 .75rem;
  font-size: .9rem;
  color: #555;
}
.review-card__body .reviewer { color: var(--ep-text-muted); }
.thumb-up {
  display: inline-block;
  vertical-align: -2px;
  margin-right: .3rem;
}
.review-card__listing {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ep-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.15rem;
}
.blog-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(4, 4, 5, .08);
  border-color: rgba(45, 45, 45, .18);
}
.blog-card__stretch {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.blog-card__media {
  display: block;
  background: #eee;
  position: relative;
  z-index: 0;
}
.blog-card__media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.blog-card__body {
  padding: 1rem 1rem .85rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
}
.blog-card__title {
  margin: 0 0 .5rem;
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.35;
}
.blog-card__title a { color: #222; pointer-events: none; }
.blog-card__title a:hover { color: var(--ep-primary); }
.blog-card__excerpt {
  margin: 0;
  font-size: .85rem;
  color: #666;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .75rem 1rem;
  background: #f3f3f3;
  border-top: 1px solid rgba(4, 4, 5, .06);
  position: relative;
  z-index: 0;
}
.blog-card__meta img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: #ddd;
  flex-shrink: 0;
}
.blog-card__meta strong {
  display: block;
  font-size: .9rem;
  color: #333;
  font-weight: 700;
  line-height: 1.2;
}
.blog-card__meta span {
  display: block;
  margin-top: .12rem;
  font-size: .78rem;
  color: #888;
  line-height: 1.3;
}

/* Blog page — layout GGMAX / referência */
.blog-page {
  background: #fff;
  padding-bottom: 4rem;
}
.blog-page__shell {
  max-width: 1640px;
  width: 100%;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}
.blog-page__crumbs {
  margin: 1.1rem 0 1.5rem;
  font-size: .88rem;
  color: #999;
}
.blog-page__crumbs a { color: #999; }
.blog-page__crumbs a:hover { color: var(--ep-primary); }

.blog-featured {
  display: grid;
  grid-template-columns: minmax(200px, 320px) minmax(0, 1fr);
  gap: 1.25rem 1.75rem;
  align-items: start;
  margin-bottom: 2.25rem;
}
.blog-featured__media {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #eee;
  width: 100%;
  max-width: 320px;
}
.blog-featured__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.blog-featured__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 0;
}
.blog-featured__title {
  margin: 0 0 .65rem;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 800;
  line-height: 1.25;
  color: #2d2d2d;
  letter-spacing: -.015em;
  max-width: 36ch;
}
.blog-featured__title a { color: inherit; }
.blog-featured__title a:hover { color: var(--ep-primary); }
.blog-featured__excerpt {
  margin: 0 0 .85rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: #666;
  flex: none;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 48ch;
}
.blog-featured__meta {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-top: 0;
  padding-top: 0;
}
.blog-featured__meta img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #ddd;
  flex-shrink: 0;
}
.blog-featured__meta strong {
  display: block;
  font-size: .92rem;
  color: #333;
  font-weight: 700;
}
.blog-featured__meta span {
  display: block;
  margin-top: .12rem;
  font-size: .82rem;
  color: #888;
}

.blog-grid--page {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem 1.15rem;
}
.blog-card--page .blog-card__media img {
  aspect-ratio: 16 / 10;
}
.blog-card--page .blog-card__body {
  padding: 1rem 1rem .9rem;
}
.blog-card--page .blog-card__title {
  font-size: 1.02rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card--page .blog-card__excerpt {
  -webkit-line-clamp: 3;
  font-size: .86rem;
}
.blog-card--page .blog-card__meta {
  background: #f3f3f3;
  padding: .7rem .95rem;
}

.blog-pagination {
  margin: 2.25rem 0 2rem;
  text-align: center;
}
.blog-pagination__info {
  margin: 0 0 1rem;
  color: #555;
  font-size: .98rem;
}
.blog-pagination__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .45rem;
}
.blog-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 .85rem;
  border-radius: 8px;
  background: #efefef;
  color: #333;
  font-weight: 700;
  font-size: .95rem;
  border: 0;
  text-decoration: none;
}
.blog-pagination__btn:hover {
  background: #e4e4e4;
  color: #111;
}
.blog-pagination__btn.is-active {
  background: var(--ep-primary);
  color: #fff;
}
.blog-pagination__btn--next {
  min-width: 96px;
}
.blog-pagination__ellipsis {
  color: #999;
  padding: 0 .25rem;
  font-weight: 700;
}

.blog-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}
.blog-cta__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  text-align: center;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(4, 4, 5, .14);
  border-radius: 12px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.blog-cta__card:hover {
  border-color: rgba(45, 45, 45, .28);
  box-shadow: 0 6px 18px rgba(4, 4, 5, .06);
}
.blog-cta__card strong {
  font-size: 1.05rem;
  color: #2d2d2d;
  font-weight: 700;
}
.blog-cta__card em {
  font-style: italic;
  color: #888;
  font-size: .92rem;
}

html.theme-dark .blog-page { background: #121212; }
html.theme-dark .blog-featured__title,
html.theme-dark .blog-card__title a { color: #fff; }
html.theme-dark .blog-featured__excerpt,
html.theme-dark .blog-card__excerpt { color: #aaa; }
html.theme-dark .blog-card {
  background: #1a1a1a;
  border-color: hsla(0, 0%, 100%, .1);
}
html.theme-dark .blog-card__meta {
  background: #222;
  border-top-color: hsla(0, 0%, 100%, .08);
}
html.theme-dark .blog-card__meta strong,
html.theme-dark .blog-featured__meta strong { color: #eee; }
html.theme-dark .blog-cta__card {
  background: #1a1a1a;
  border-color: hsla(0, 0%, 100%, .12);
}
html.theme-dark .blog-cta__card strong { color: #fff; }

@media (max-width: 1200px) {
  .blog-grid--page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .blog-featured {
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    gap: .9rem 1rem;
    margin-bottom: 1.75rem;
  }
  .blog-featured__media {
    max-width: 200px;
  }
  .blog-featured__media img {
    aspect-ratio: 1 / 1;
  }
  .blog-featured__title {
    font-size: clamp(1.2rem, 4.5vw, 1.55rem);
    max-width: none;
  }
  .blog-featured__excerpt {
    font-size: .95rem;
    -webkit-line-clamp: 3;
    margin-bottom: .65rem;
    max-width: none;
  }
  .blog-grid--page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem .85rem;
  }
  .blog-page__shell {
    padding-left: .85rem;
    padding-right: .85rem;
  }
}
@media (max-width: 640px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }
  .blog-featured__media {
    max-width: 100%;
  }
  .blog-featured__media img {
    aspect-ratio: 16 / 9;
  }
  .blog-featured__title {
    font-size: 1.4rem;
  }
  .blog-featured__excerpt {
    font-size: 1rem;
    -webkit-line-clamp: 3;
    margin-bottom: .7rem;
  }
  .blog-grid--page {
    grid-template-columns: 1fr;
  }
  .blog-cta {
    grid-template-columns: 1fr;
  }
  .blog-pagination__btn {
    min-width: 36px;
    height: 36px;
    font-size: .9rem;
  }
}

.ad-page__shell {
  max-width: 900px;
}
.ad-page__title {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  color: #2d2d2d;
}
.ad-card {
  background: #fff;
  border: 1px solid rgba(4, 4, 5, .14);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: #555;
  font-size: 1.02rem;
  line-height: 1.7;
}
.ad-card p { margin: 0 0 1rem; }
.ad-card p:last-child { margin-bottom: 0; }
.ad-card a { color: var(--ep-primary); font-weight: 700; }

.collab-intro { max-width: 560px; }
.collab-intro a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.collab-intro a:hover {
  color: #1d4ed8;
}
html.theme-dark .collab-intro a {
  color: #60a5fa;
}
html.theme-dark .collab-intro a:hover {
  color: #93c5fd;
}
.collab-criteria { max-width: 100%; }
.collab-choice {
  border: 0;
  margin: 0 0 1.25rem;
  padding: 0;
}
.collab-choice legend {
  margin-bottom: .75rem;
  font-weight: 700;
  color: #333;
  font-size: .95rem;
}
.collab-choice legend em {
  color: #e11d48;
  font-style: normal;
}
.collab-choice__item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-bottom: .65rem;
  padding: .75rem .9rem;
  border: 1px solid rgba(4, 4, 5, .14);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  color: #333;
}
.collab-choice__item input {
  margin-top: .15rem;
  accent-color: var(--ep-primary);
}

/* Benefits + Footer */
.benefits {
  background: #fff;
  padding: 2rem 0;
  border-top: 1px solid var(--ep-border);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.benefit-card {
  border: 1px solid var(--ep-border);
  border-radius: var(--ep-radius);
  padding: 1.25rem 1.5rem;
}
.benefit-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: .25rem;
}
.benefit-card em {
  font-style: italic;
  color: var(--ep-text-muted);
  font-size: .9rem;
}

.site-footer {
  background: var(--ep-footer);
  color: #fff;
  padding: 3rem 0 0;
}
.footer-shell {
  max-width: 1640px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer-col h3 {
  margin: 0 0 1rem;
  font-size: .85rem;
  letter-spacing: .06em;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-col a { color: rgba(255,255,255,.85); font-size: .92rem; }
.footer-col a:hover { color: #fff; }
.footer-about {
  display: grid;
  gap: .85rem;
}
.footer-logo {
  display: inline-flex;
  line-height: 0;
}
.footer-logo img {
  height: 28px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.footer-about p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
}
.socials {
  display: flex;
  gap: .55rem;
}
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background .2s, border-color .2s, color .2s;
}
.socials a:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: #fff;
}
.socials a svg {
  display: block;
}
.footer-copy {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  padding: 1.1rem 0 1.25rem;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
}
.footer-copy p { margin: 0; }
.footer-copy p + p { margin-top: .35rem; }

/* 404 */
.page-error {
  padding: 3rem 0 5rem;
  text-align: center;
}
.page-error__title {
  margin: 0 0 2.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #333;
}
.page-error__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  text-align: left;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}
.page-error__mascot {
  position: relative;
  display: grid;
  place-items: center;
}
.mascot-blob {
  position: absolute;
  width: 85%;
  height: 75%;
  background: var(--ep-primary);
  border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
  opacity: .9;
  z-index: 0;
}
.page-error__mascot img { position: relative; z-index: 1; }
.page-error__text p {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
}
.page-error__actions { margin-top: 1rem; }

/* Responsive */
@media (max-width: 1199px) {
  .listing-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .category-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: .85rem; }
  .section--categories .container,
  .section--listings .container,
  .section--home-wide .container,
  .benefits.section--home-wide .container,
  .site-footer .footer-shell { padding-left: 1.25rem; padding-right: 1.25rem; }
}

@media (max-width: 991px) {
  .header-bar {
    grid-template-columns: auto 1fr auto;
    padding: 0 .85rem;
    padding-left: max(.85rem, env(safe-area-inset-left));
    padding-right: max(.85rem, env(safe-area-inset-right));
  }
  .header-center { max-width: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .page-error__grid { grid-template-columns: 1fr; text-align: center; }
  .category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .85rem; }
  .category-card { min-height: 0; }
  .listing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem .85rem; }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  :root {
    --ep-header-h: 56px;
    --ep-tabbar-h: calc(56px + env(safe-area-inset-bottom, 0px));
  }
  .listing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem .7rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .7rem; }
  .category-card { min-height: 0; }
  .section--categories .container,
  .section--listings .container,
  .section--home-wide .container,
  .benefits.section--home-wide .container,
  .site-footer .footer-shell { padding-left: .85rem; padding-right: .85rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-bar {
    grid-template-columns: auto 1fr auto;
    min-height: var(--ep-header-h);
    padding: 0 .75rem;
  }
  .header-center { display: none; }
  .nav-link--desktop { display: none !important; }
  .has-dropdown { display: none; }
  .btn-anunciar {
    height: 34px;
    padding: 0 .9rem;
    font-size: .82rem;
  }
  .hero { padding-top: 3.5rem; padding-bottom: 2.5rem; }
  .hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .logo-img { height: 28px; max-width: 160px; }
  .main { padding-bottom: calc(var(--ep-tabbar-h) + 12px); }
  .cookie-banner {
    left: .75rem;
    right: .75rem;
    bottom: calc(var(--ep-tabbar-h) + 12px);
    width: auto;
  }
  .section { padding: 2rem 0; }
  .section-title { font-size: 1.35rem; }
  input, select, textarea { font-size: 16px !important; }
  .icon-btn {
    width: 44px;
    height: 44px;
  }
  .ep-toasts {
    top: calc(var(--ep-safe-top) + .65rem);
    left: .75rem;
    right: .75rem;
    width: auto;
  }
  .site-footer {
    padding-bottom: .5rem;
  }
}

@media (max-width: 420px) {
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .listing-grid { gap: .7rem .5rem; }
}

/* Category page â€” sidebar + hero (estilo site_base) */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
  font-size: .82rem;
  color: #999;
  margin: 1.25rem 0 1.35rem;
}
.breadcrumbs a { color: #999; }
.breadcrumbs a:hover { color: var(--ep-primary); }

.category-hero {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.category-hero__thumb-wrap {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: #1b2838;
  border: 1px solid rgba(4, 4, 5, .08);
}
.category-hero__thumb {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}
.category-hero__text { min-width: 0; }
.category-hero__eyebrow {
  margin: 0;
  color: #999;
  font-size: .9rem;
  font-weight: 500;
}
.category-hero__title {
  margin: .2rem 0 0;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  color: #333;
  line-height: 1.15;
  letter-spacing: -.01em;
}

.category-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.75rem;
  padding-bottom: 3rem;
  align-items: start;
}
.side-card {
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 8px;
  padding: 1.1rem 1.15rem 1.15rem;
  margin-bottom: 1rem;
  background: #fff;
}
.side-card__title {
  margin: 0 0 1rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: #333;
}
.side-cat-search {
  position: relative;
  margin-bottom: 1rem;
}
.side-cat-search__input {
  width: 100%;
  border: 1px solid rgba(4, 4, 5, .12);
  border-radius: 8px;
  padding: .55rem 2.4rem .55rem .75rem;
  font: inherit;
  font-size: .9rem;
  color: #333;
  background: #fff;
}
.side-cat-search__input::placeholder { color: #aaa; }
.side-cat-search__input:focus {
  outline: none;
  border-color: rgba(45, 45, 45, .35);
}
.side-cat-search__icon {
  position: absolute;
  right: .7rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
}
.side-cat-empty {
  margin: 0;
  font-size: .88rem;
  line-height: 1.45;
  color: #888;
}
.side-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  max-height: 22rem;
  overflow-y: auto;
}
.side-cat-list a {
  color: #666;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.3;
}
.side-cat-list a:hover,
.side-cat-list a.is-active { color: var(--ep-primary); }
.side-cat-list li.is-hidden { display: none; }

.filter-form { display: block; }
.filter-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1rem;
}
.filter-prices label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 600;
  color: #333;
}
.filter-prices span { font-weight: 600; }
.filter-prices input {
  border: 1px solid rgba(4, 4, 5, .12);
  border-radius: 8px;
  padding: .55rem .7rem;
  font: inherit;
  font-size: .9rem;
  font-weight: 400;
  color: #333;
  background: #fff;
  width: 100%;
}
.filter-prices input::placeholder { color: #bbb; }
.filter-prices input:focus {
  outline: none;
  border-color: rgba(45, 45, 45, .35);
}
.filter-actions {
  display: flex;
  justify-content: flex-end;
}
.filter-apply {
  height: 40px;
  padding: 0 1.15rem;
  border-radius: 8px;
  font-size: .92rem;
  width: auto;
}
.btn-outline {
  background: #fff;
  color: var(--ep-primary) !important;
  border: 1.5px solid var(--ep-primary);
  height: 40px;
  padding: 0 1.1rem;
  border-radius: var(--ep-radius-pill);
  font-weight: 600;
}
.btn-outline:hover { background: var(--ep-bg-muted); }

.category-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

/* SingleSelect estilo site_base / GGMAX */
.ep-select {
  position: relative;
  min-width: 200px;
}
.ep-select__button {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 8px;
  color: #333;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  height: 40px;
  min-width: 200px;
  padding: 0 10px 0 16px;
  position: relative;
  transition: border-color .2s;
  width: 100%;
}
.ep-select__button:hover,
.ep-select__button:focus,
.ep-select.is-open .ep-select__button {
  border-color: rgba(4, 4, 5, .2);
  outline: none;
}
.ep-select__label {
  background: #fff;
  color: #666;
  font-size: .875rem; /* 14px â€” site_base */
  font-weight: 400;
  line-height: 1;
  margin-left: -8px;
  padding: 0 8px;
  position: absolute;
  top: -8px;
  white-space: nowrap;
}
.ep-select__value {
  color: #333;
  flex: 1;
  font-size: .9375rem; /* ~15px */
  font-weight: 500;
  margin-right: 10px;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ep-select__chevron {
  color: #666;
  flex-shrink: 0;
  transition: transform .2s;
}
.ep-select.is-open .ep-select__chevron {
  transform: rotate(180deg);
}
.ep-select__popover {
  background: #fff;
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
  display: none;
  flex-direction: column;
  min-width: 280px;
  padding: 8px 0;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 40;
}
.ep-select.is-open .ep-select__popover {
  display: flex;
}
.ep-select__option {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: #333;
  display: flex;
  font-size: .9375rem;
  font-weight: 500;
  justify-content: space-between;
  line-height: 1.2;
  margin: 0 8px;
  padding: 12px 14px;
  text-decoration: none;
  transition: background .2s;
}
.ep-select__option:hover {
  background: rgba(4, 4, 5, .05);
  color: #333;
}
.ep-select__option span {
  flex: 1;
  text-align: left;
}
.ep-select__check {
  color: #333;
  flex-shrink: 0;
  height: 16px;
  opacity: 0;
  width: 16px;
}
.ep-select__option.is-selected .ep-select__check {
  opacity: 1;
}

/* Header dropdown tipografia alinhada ao site_base */
.dropdown a {
  color: #333;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.25;
  padding: .7rem .85rem;
}
.dropdown .dropdown-all {
  color: #333;
  font-size: .875rem;
  font-weight: 700;
}
.listing-grid--category {
  grid-template-columns: repeat(5, 1fr);
}
.empty-listings {
  border: 1px dashed var(--ep-border);
  border-radius: 12px;
  padding: 3rem 1.5rem;
  text-align: center;
  background: var(--ep-bg-muted);
}
.empty-listings h2 { margin: 0 0 .5rem; }
.empty-listings p { color: var(--ep-text-muted); margin: 0 0 1.25rem; }

.section--all-categories .container {
  max-width: 1480px;
}
.categories-search {
  position: relative;
  max-width: 420px;
  width: 100%;
  margin: 0 auto 1.75rem;
}
.categories-search__input {
  width: 100%;
  border: 1px solid rgba(4, 4, 5, .12);
  border-radius: 10px;
  padding: .7rem 2.6rem .7rem 1rem;
  font: inherit;
  font-size: .95rem;
  color: #333;
  background: #fff;
  box-shadow: 0 1px 2px rgba(4, 4, 5, .04);
}
.categories-search__input::placeholder { color: #aaa; }
.categories-search__input:focus {
  outline: none;
  border-color: rgba(45, 45, 45, .4);
}
.categories-search__icon {
  position: absolute;
  right: .9rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
}
/* ~9 cards em telas largas (um pouco maiores); auto-ajusta em cada breakpoint */
.category-grid--all {
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: .9rem .65rem;
  max-width: none;
  margin: 0;
  width: 100%;
}
.category-tile {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(4, 4, 5, .14);
  border-radius: 12px;
  padding: .35rem .35rem .55rem;
  box-shadow: 0 1px 2px rgba(4, 4, 5, .04);
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.category-tile.is-skeleton {
  pointer-events: none;
}
.category-tile.is-skeleton > *:not(.skeleton-overlay) {
  visibility: hidden;
}
.category-tile.is-skeleton:hover {
  transform: none;
  box-shadow: 0 1px 2px rgba(4, 4, 5, .04);
  border-color: rgba(4, 4, 5, .14);
}
.category-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 45, 45, .28);
  box-shadow: 0 6px 16px rgba(4, 4, 5, .1);
}
.category-tile.is-hidden { display: none; }
.category-tile__media {
  display: block;
  width: 100%;
  border-radius: 9px;
  overflow: hidden;
  background: rgba(4, 4, 5, .06);
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(4, 4, 5, .1);
}
.category-tile__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.category-tile__name {
  display: block;
  margin-top: .45rem;
  padding: .15rem .25rem 0;
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.25;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.categories-empty {
  text-align: center;
  color: var(--ep-text-muted);
  margin: 2rem 0 0;
  font-size: .95rem;
}

/* Skeleton loading â€” shimmer metÃ¡lico */
@keyframes ep-metal-shine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: .65rem;
  padding: .55rem;
  background: #fff;
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 10px;
  box-sizing: border-box;
}
.is-skeleton > .skeleton-overlay {
  display: flex;
}
.skeleton-overlay--tile {
  padding: .35rem;
  gap: .5rem;
  border-radius: 12px;
}
.sk-bone {
  display: block;
  border-radius: 8px;
  background-color: #d9d9d9;
  background-image: linear-gradient(
    110deg,
    #c8c8c8 0%,
    #d4d4d4 18%,
    #f5f5f5 38%,
    #ffffff 48%,
    #b0b0b0 52%,
    #ffffff 58%,
    #e8e8e8 72%,
    #cfcfcf 100%
  );
  background-size: 220% 100%;
  animation: ep-metal-shine 1.35s linear infinite;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .65),
    inset 0 -1px 0 rgba(0, 0, 0, .06);
}
.sk-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  flex-shrink: 0;
}
.sk-media--portrait {
  aspect-ratio: 3 / 4;
  flex: 1;
  min-height: 0;
  border-radius: 9px;
}
.sk-line {
  height: 10px;
  border-radius: 999px;
  align-self: flex-start;
}
.sk-line--lg { width: 88%; }
.sk-line--md { width: 62%; }
.sk-line--sm { width: 48%; height: 8px; }
.sk-line--center {
  width: 72%;
  height: 9px;
  align-self: center;
  margin-top: .15rem;
}
.sk-btn {
  width: 42%;
  height: 28px;
  border-radius: 8px;
  align-self: center;
  margin: .15rem 0 .1rem;
}
@media (prefers-reduced-motion: reduce) {
  .sk-bone {
    animation: none;
    background-image: none;
    background-color: #ddd;
  }
}

@media (max-width: 1400px) {
  .category-grid--all { grid-template-columns: repeat(8, minmax(0, 1fr)); }
}
@media (max-width: 1200px) {
  .category-grid--all { grid-template-columns: repeat(7, minmax(0, 1fr)); }
}
@media (max-width: 1100px) {
  .category-layout { grid-template-columns: 1fr; }
  .listing-grid--category { grid-template-columns: repeat(3, 1fr); }
  .category-grid--all { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .category-grid--all { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .75rem .5rem; }
  .category-tile__name { font-size: .7rem; }
}
@media (max-width: 767px) {
  .listing-grid--category { grid-template-columns: repeat(2, 1fr); }
  .category-grid--all { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .65rem .45rem; }
  .category-tile { padding: .25rem .25rem .4rem; border-radius: 10px; }
  .category-tile__name { font-size: .68rem; margin-top: .35rem; }
  .divider-link a { font-size: .9rem; }
  .categories-search { margin-bottom: 1.25rem; max-width: none; }
  .category-hero__title { font-size: 1.35rem; }
  .category-hero__thumb-wrap { width: 56px; height: 56px; }
}
@media (max-width: 480px) {
  .category-grid--all { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 360px) {
  .category-grid--all { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Drawer mobile */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 220;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: #fff;
  z-index: 230;
  padding: calc(1rem + env(safe-area-inset-top, 0px)) 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  box-shadow: -8px 0 32px rgba(0, 0, 0, .12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateX(100%);
  transition: transform .25s ease;
}
.mobile-drawer.is-open {
  transform: translateX(0);
}
.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.mobile-drawer__search { width: 100%; }
.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.mobile-drawer__nav a {
  color: var(--ep-text);
  font-weight: 600;
  font-size: 1rem;
  padding: .85rem .6rem;
  border-radius: 8px;
}
.mobile-drawer__nav a:hover,
.mobile-drawer__nav a:active {
  background: var(--ep-bg-muted);
  color: var(--ep-primary);
}
body.drawer-open { overflow: hidden; }

/* Tab bar estilo app (só mobile) */
.app-tabbar {
  display: none;
}
@media (max-width: 767px) {
  .app-tabbar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 180;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid rgba(4, 4, 5, .08);
    padding: .2rem .2rem calc(.25rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -8px 28px rgba(0, 0, 0, .06);
  }
  .app-tabbar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .12rem;
    color: #8a8a8a;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .01em;
    padding: .3rem .1rem;
    border-radius: 12px;
    min-height: 48px;
    -webkit-user-select: none;
    user-select: none;
    transition: color .15s ease, transform .12s ease, background .15s ease;
  }
  .app-tabbar__item:active { transform: scale(.94); }
  .app-tabbar__item svg { display: block; }
  .app-tabbar__item.is-active { color: var(--ep-primary); }
  .app-tabbar__item.is-active svg { stroke-width: 2; }
  .app-tabbar__item--primary {
    color: #fff;
    background: var(--ep-primary);
    border-radius: 16px;
    margin: .15rem .1rem;
    min-height: 44px;
    box-shadow: 0 4px 14px rgba(45, 45, 45, .28);
  }
  .app-tabbar__item--primary.is-active,
  .app-tabbar__item--primary:active { color: #fff; background: var(--ep-primary-hover); }
  .app-tabbar__icon-wrap {
    position: relative;
    display: grid;
    place-items: center;
  }
  .app-tabbar__badge {
    position: absolute;
    top: -6px;
    right: -10px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #e11d48;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    line-height: 16px;
    text-align: center;
  }
  html.theme-dark .app-tabbar {
    background: rgba(18, 18, 18, 0.92);
    border-top-color: hsla(0, 0%, 100%, .1);
  }
  html.theme-dark .app-tabbar__item { color: #9a9a9a; }
  html.theme-dark .app-tabbar__item.is-active { color: #fff; }
}

@media (display-mode: standalone), (display-mode: minimal-ui) {
  .site-header.is-scrolled {
    border-bottom-color: rgba(4, 4, 5, .08);
  }
}

/* Cookies */
.cookie-banner {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  width: min(420px, calc(100vw - 2rem));
}
.cookie-banner__inner {
  background: #fff;
  border: 1px solid var(--ep-border);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  padding: 1.25rem;
}
.cookie-banner__title {
  margin: 0 0 .6rem;
  font-size: 1.05rem;
  font-weight: 800;
}
.cookie-banner__text {
  margin: 0 0 1rem;
  font-size: .88rem;
  color: #555;
  line-height: 1.55;
}
.cookie-banner__actions {
  display: flex;
  gap: .65rem;
}
.cookie-banner__actions .btn-primary { flex: 1; }

.cookie-modal[hidden],
.cookie-banner[hidden] { display: none !important; }

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}
.cookie-modal__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(85vh, 720px);
  background: #fff;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--ep-border);
}
.cookie-modal__header h2 {
  margin: 0;
  font-size: 1.15rem;
}
.cookie-modal__close {
  border: 0;
  background: transparent;
  color: var(--ep-primary);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.cookie-modal__body {
  padding: 1rem 1.25rem;
  overflow: auto;
  font-size: .9rem;
  color: #555;
}
.cookie-modal__footer {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--ep-border);
}
.cookie-modal__footer .btn { flex: 1 1 auto; min-width: 7.5rem; }
.cookie-modal__footer .btn-primary { flex: 1 1 100%; }
.cookie-cat {
  border-top: 1px solid var(--ep-border);
  padding: .9rem 0;
}
.cookie-cat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .35rem;
  color: var(--ep-text);
}
.cookie-cat__always {
  color: #16a34a;
  font-size: .82rem;
  font-weight: 700;
}
.cookie-cat p { margin: 0; }
.link-btn {
  border: 0;
  background: none;
  color: var(--ep-primary);
  cursor: pointer;
  font: inherit;
  padding: 0;
}
.switch {
  position: relative;
  width: 42px;
  height: 24px;
  display: inline-block;
}
.switch input { opacity: 0; width: 0; height: 0; }
.switch span {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 999px;
  cursor: pointer;
  transition: .2s;
}
.switch span::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
}
.switch input:checked + span { background: var(--ep-primary); }
.switch input:checked + span::before { transform: translateX(18px); }


/* Top progress bar (cinza escuro) */
.ep-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10060;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}
.ep-progress.is-on { opacity: 1; }
.ep-progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #2d2d2d, #5a5a5a, #2d2d2d);
  background-size: 200% 100%;
  box-shadow: 0 0 8px rgba(45, 45, 45, .35);
  transition: width .25s ease;
}
.ep-progress.is-loading .ep-progress__bar {
  animation: ep-progress-shine 1s linear infinite;
}
@keyframes ep-progress-shine {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Listing detail — same shell as header (logo + content aligned) + sticky sidebar */
.listing-page {
  padding-bottom: 3.5rem;
  background: #fff;
}
.listing-page__container {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding-left: max(.85rem, env(safe-area-inset-left));
  padding-right: max(1.25rem, env(safe-area-inset-right));
  box-sizing: border-box;
}
.listing-page .breadcrumbs {
  margin: 1rem 0 1.25rem;
}

.listing-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 1.25rem 1.75rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.listing-detail__main {
  min-width: 0;
}
.listing-detail__side {
  min-width: 0;
  width: 100%;
  align-self: start;
}
.listing-side-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 84px;
  z-index: 20;
  width: 100%;
}

/* Inner: gallery + summary side by side */
.listing-detail__top {
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
  gap: .85rem 1rem;
  align-items: start;
  margin-bottom: 1.5rem;
}
.listing-gallery {
  min-width: 0;
}
.listing-summary {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.listing-gallery__preview {
  position: relative;
  background: rgba(4, 4, 5, .05);
  border-radius: .5rem;
  padding: 1px;
}
.listing-gallery__zoom {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #333;
  box-shadow: 0 2px 8px rgba(4, 4, 5, .16);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.listing-gallery__zoom:hover { color: #2d2d2d; }
.listing-gallery__main {
  aspect-ratio: 256 / 152;
  border-radius: .5rem;
  overflow: hidden;
  background: rgba(4, 4, 5, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  transition: aspect-ratio .25s ease;
}
.listing-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 256 / 152;
  transition: aspect-ratio .25s ease;
}

/* Expand inline: quadrado maior, empurra características/descrição */
.listing-detail__top.is-gallery-expanded {
  grid-template-columns: minmax(300px, 440px) minmax(0, 1fr);
  gap: 1rem 1.35rem;
  margin-bottom: 2.75rem;
}
.listing-gallery.is-expanded .listing-gallery__main,
.listing-gallery.is-expanded .listing-gallery__main img {
  aspect-ratio: 1 / 1;
}
.listing-gallery__zoom.is-active {
  color: #2d2d2d;
}
.listing-gallery__zoom .listing-gallery__zoom-icon--collapse { display: none; }
.listing-gallery__zoom.is-active .listing-gallery__zoom-icon--expand { display: none; }
.listing-gallery__zoom.is-active .listing-gallery__zoom-icon--collapse {
  display: block;
}
.listing-gallery__thumbs-row {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  gap: .25rem;
  align-items: center;
  margin-top: 1rem;
  width: 100%;
}
.listing-gallery__nav {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #333;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  opacity: .75;
}
.listing-gallery__nav:hover { opacity: 1; }
.listing-gallery__thumbs {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  scrollbar-width: none;
  min-width: 0;
}
.listing-gallery__thumbs::-webkit-scrollbar { display: none; }
.listing-gallery__thumb {
  border: 3px solid transparent;
  border-radius: .5rem;
  padding: 0;
  background: rgba(4, 4, 5, .1);
  overflow: hidden;
  width: calc(33.333% - .35rem);
  min-width: 56px;
  max-width: 88px;
  aspect-ratio: 3 / 2;
  cursor: pointer;
  flex-shrink: 0;
}
.listing-gallery__thumb.is-active { border-color: #2d2d2d; }
.listing-gallery__thumb:hover { border-color: rgba(4, 4, 5, .2); }
.listing-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.listing-summary__title-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: .5rem;
}
.listing-summary__title {
  margin: 0;
  flex: 1;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  color: #222;
}
.listing-tier {
  display: inline-flex;
  align-items: center;
  background: #2d2d2d;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 5px;
  text-transform: lowercase;
  margin-top: 2px;
  flex-shrink: 0;
  white-space: nowrap;
}
.listing-summary__stats {
  display: flex;
  flex-direction: row;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.listing-summary__stats li {
  border-right: 1px solid rgba(4, 4, 5, .1);
  list-style: none;
  margin-right: 20px;
  padding-right: 20px;
  text-align: center;
}
.listing-summary__stats li:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}
.listing-summary__stats span {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #999;
  margin-bottom: .15rem;
}
.listing-summary__stats strong {
  display: block;
  font-size: 21px;
  font-weight: 700;
  color: #222;
}
.listing-summary__reward {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin: 0 0 1rem;
  color: #39b54a;
  font-size: .95rem;
  font-weight: 800;
}
.listing-summary__reward svg { color: #2d2d2d; flex-shrink: 0; }
.listing-summary__buy {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.listing-summary__price {
  font-size: 1.75rem;
  font-weight: 800;
  color: #2d2d2d;
  line-height: 1;
}
.listing-summary__btn {
  min-width: 150px;
  height: 46px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 700;
  padding: 0 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.listing-section { margin-top: 1.75rem; }
.listing-section__title {
  margin: 0 0 .75rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #222;
  letter-spacing: .02em;
}
.listing-table {
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: .5rem;
  overflow: hidden;
}
.listing-table__row {
  display: grid;
  grid-template-columns: 32% 1fr;
  border-top: 1px solid rgba(4, 4, 5, .1);
}
.listing-table__row:first-child { border-top: 0; }
.listing-table__label {
  padding: .625rem 1rem;
  background: rgba(4, 4, 5, .05);
  font-weight: 600;
  color: #444;
}
.listing-table__value {
  padding: .625rem 1rem;
  color: #333;
  border-left: 1px solid rgba(4, 4, 5, .1);
}

.listing-desc {
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: .5rem;
  overflow: hidden;
  background: #fff;
}
.listing-desc__content {
  padding: 1rem 1.15rem 1.15rem;
  color: #333;
  line-height: 1.65;
  font-size: .95rem;
}
.listing-desc__content p { margin: 0 0 .75rem; }
.listing-desc__content ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}
.listing-desc__content li { margin: .2rem 0; }
.listing-desc__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: rgba(4, 4, 5, .05);
  border-radius: 0 0 .5rem .5rem;
  margin: 1rem -.15rem -.15rem;
  padding: .5rem 1rem;
  font-size: .875rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
}
.listing-share {
  display: flex;
  align-items: center;
  gap: .4rem;
  text-transform: none;
}
.listing-share > span {
  font-size: .8rem;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
}
.listing-share__btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff !important;
  transition: transform .15s, opacity .15s;
}
.listing-share__btn:hover { transform: translateY(-1px); opacity: .92; }
.listing-share__btn--wa { background: #25D366; }
.listing-share__btn--tg { background: #229ED9; }
.listing-share__btn--x { background: #000; }
.listing-share__btn--fb { background: #1877F2; }
.listing-share__btn--mail { background: #2d2d2d; }
.listing-report {
  text-align: right;
  margin-top: .7rem;
}
.listing-report a {
  color: #e67e22;
  font-weight: 600;
  font-size: .9rem;
}

.listing-questions {
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: .5rem;
  padding: 1.75rem 1.15rem;
  text-align: center;
  background: #fff;
}
.listing-questions__empty { margin: 0 0 .55rem; color: #999; }
.listing-questions__login { margin: 0; color: #e67e22; font-weight: 600; font-size: .92rem; }

.listing-module {
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 8px;
  padding: 1.25rem 1.35rem 1.35rem;
  margin-bottom: 1.25rem;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}
.listing-module__title {
  margin: 0 0 1rem;
  font-size: .95rem;
  font-weight: 800;
  color: #333;
  text-align: center;
}
.listing-seller {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .65rem;
  margin-bottom: 1rem;
}
.listing-seller__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(4, 4, 5, .1);
  background: #eee;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .16), 0 2px 4px rgba(0, 0, 0, .23);
}
.listing-seller__id {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .3rem;
  font-size: .95rem;
}
.listing-seller__id a {
  font-weight: 700;
  color: #2d2d2d;
}
.listing-seller__id > span { color: #2d2d2d; font-weight: 700; }
.listing-seller__badge {
  display: inline-block;
  padding: .12rem .45rem;
  border-radius: 999px;
  background: #e8e8e8;
  color: #666;
  font-size: .68rem;
  font-weight: 800;
}
.listing-seller__badge.is-on { background: #dcfce7; color: #16a34a; }
.listing-seller__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .88rem;
  color: #888;
  text-align: left;
}
.listing-seller__list strong { color: #333; font-weight: 700; }
.listing-verify {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.listing-verify li {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  font-size: .92rem;
  color: #444;
}
.listing-verify strong { color: #39b54a; }
.listing-module--safe {
  text-align: center;
  padding: 1.5rem 1rem 1.65rem;
}
.listing-module--safe .listing-safe__icon {
  color: #2d2d2d;
  display: grid;
  place-items: center;
  margin: 0 auto .85rem;
}
.listing-module--safe .listing-safe__icon svg {
  width: 80px;
  height: 80px;
  display: block;
}
.listing-module--safe strong {
  display: block;
  font-size: 1.1rem;
  color: #222;
}
.listing-module--safe em {
  display: block;
  margin-top: .3rem;
  font-style: normal;
  color: #777;
  font-size: .9rem;
}

.listing-similar { margin-top: 1rem; padding-bottom: 1rem; }
.listing-similar__title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  text-align: center;
}
.listing-similar__row {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  gap: .5rem;
  align-items: center;
}
.listing-similar__nav {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #2d2d2d;
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 8px;
}
.listing-similar__nav:hover { background: rgba(4, 4, 5, .06); }
.listing-similar__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2.85rem) / 4);
  gap: .95rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: .25rem .1rem .5rem;
}
.listing-similar__track::-webkit-scrollbar { display: none; }
.listing-similar__item {
  scroll-snap-align: start;
  min-width: 0;
}
.listing-similar__item .listing-card { height: 100%; }

@media (max-width: 1199px) {
  .listing-detail {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 1rem 1.25rem;
  }
  .listing-detail__top {
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    gap: .75rem .85rem;
  }
  .listing-detail__top.is-gallery-expanded {
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
    margin-bottom: 2.25rem;
  }
}
@media (max-width: 991px) {
  .listing-detail {
    grid-template-columns: 1fr;
  }
  .listing-side-sticky {
    position: static;
  }
  .listing-detail__side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .listing-detail__side .listing-side-sticky {
    display: contents;
  }
  .listing-detail__top {
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  }
  .listing-detail__top.is-gallery-expanded {
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  }
  .listing-module { margin-bottom: 0; }
  .listing-module--safe { grid-column: 1 / -1; }
  .listing-table__row { grid-template-columns: 1fr; }
  .listing-table__value { border-left: 0; border-top: 1px solid rgba(4, 4, 5, .1); }
  .listing-similar__track { grid-auto-columns: calc((100% - 1.9rem) / 3); }
}
@media (max-width: 767px) {
  .listing-page__container {
    padding-left: max(.85rem, env(safe-area-inset-left));
    padding-right: max(.85rem, env(safe-area-inset-right));
  }
  .listing-detail__side { grid-template-columns: 1fr; }
  .listing-detail__top { grid-template-columns: 1fr; }
  .listing-detail__top.is-gallery-expanded {
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
  }
  .listing-gallery.is-expanded .listing-gallery__main {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
  .listing-summary__buy { flex-direction: column; align-items: stretch; }
  .listing-summary__btn { width: 100%; }
  .listing-similar__track { grid-auto-columns: calc((100% - .95rem) / 2); }
  .listing-similar__row { grid-template-columns: 28px 1fr 28px; }
  .listing-gallery__zoom { right: 4px; top: 4px; }
}

/* Gallery lightbox / expand image */
body.lightbox-open { overflow: hidden; }
.ep-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, visibility .18s ease;
}
.ep-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.ep-lightbox[hidden] { display: none !important; }
.ep-lightbox.is-open[hidden] { display: flex !important; }
.ep-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(4, 4, 5, .88);
  cursor: zoom-out;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.ep-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(72vw, 980px);
  height: min(70vh, 100%);
  max-width: 72vw;
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: epLightboxIn .22s cubic-bezier(.2, .8, .2, 1);
}
@keyframes epLightboxIn {
  from { transform: scale(.96); opacity: .45; }
  to { transform: scale(1); opacity: 1; }
}
.ep-lightbox__img {
  width: 100%;
  height: 100%;
  max-width: min(72vw, 980px);
  max-height: 70vh;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  background: transparent;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  display: block;
}
.ep-lightbox__close {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #222;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
  padding: 0;
}
.ep-lightbox__close:hover { background: #f3f3f3; }
.ep-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: #222;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
  padding: 0;
  z-index: 3;
}
.ep-lightbox__nav:hover { background: #fff; }
.ep-lightbox__nav--prev { left: max(0.75rem, env(safe-area-inset-left)); }
.ep-lightbox__nav--next { right: max(0.75rem, env(safe-area-inset-right)); }
@media (max-width: 767px) {
  .ep-lightbox { padding: 0.75rem; }
  .ep-lightbox__panel {
    width: 90vw;
    height: 62vh;
    max-width: 90vw;
    max-height: 62vh;
  }
  .ep-lightbox__img {
    max-width: 90vw;
    max-height: 62vh;
    border-radius: 8px;
  }
  .ep-lightbox__nav {
    width: 42px;
    height: 42px;
  }
  .ep-lightbox__nav--prev { left: 0.5rem; }
  .ep-lightbox__nav--next { right: 0.5rem; }
  .ep-lightbox__close { top: 0.65rem; right: 0.65rem; }
}

/* Search page */
.search-page { padding: 1.5rem 0 3.5rem; }
.search-page__container { max-width: 920px; }
.search-page__form { margin-bottom: 1.25rem; }
.search-box--page {
  height: 48px;
  padding-right: .5rem;
}
.search-box--page .search-btn {
  width: auto;
  padding: 0 1.1rem;
  background: #2d2d2d;
  color: #fff;
  border-radius: 999px;
  height: 38px;
}
.search-box--page .search-btn:hover { background: #404040; color: #fff; }
.search-page__hint,
.search-page__empty { color: #888; }
.search-page__title {
  margin: 1.25rem 0 .85rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #222;
}
.search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.search-chip {
  display: inline-flex;
  background: rgba(45, 45, 45, .08);
  color: #2d2d2d;
  border-radius: 8px;
  padding: .4rem .8rem;
  font-size: .88rem;
  font-weight: 700;
}
.search-chip.is-active,
.search-chip:hover {
  background: #2d2d2d;
  color: #fff;
}
.search-results {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.search-result {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: .9rem;
  align-items: center;
  padding: .75rem .9rem;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid rgba(4, 4, 5, .06);
}
.search-result:first-child { border-top: 0; }
.search-result:hover { background: #f7f7f7; }
.search-result__thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  background: #eee;
}
.search-result__thumb--avatar { border-radius: 50%; }
.search-result__title {
  font-size: .95rem;
  font-weight: 500;
  color: #333;
  line-height: 1.35;
}
.search-result__title strong { font-weight: 800; color: #111; }
.search-result__price {
  margin-top: .25rem;
  font-size: 1rem;
  font-weight: 800;
  color: #111;
}
.search-result__meta { color: #888; font-size: .9rem; margin-top: .2rem; }
.search-result__badges {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.search-result__tier {
  background: #2d2d2d;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .5rem;
  border-radius: 999px;
}
.search-result__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2d2d2d;
  color: #fff;
  display: grid;
  place-items: center;
}
@media (max-width: 640px) {
  .search-result {
    grid-template-columns: 56px minmax(0, 1fr);
  }
  .search-result__badges { display: none; }
  .search-result__thumb { width: 56px; height: 56px; }
  .search-suggest {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(94vw, 640px);
  }
}

/* Legal pages (termos, políticas) */
.legal-page {
  background: #fff;
  padding-bottom: 3.5rem;
}
.legal-page__shell.container,
.legal-page__shell {
  max-width: 1640px;
  width: 100%;
  margin: 0 auto;
  padding-left: max(1.25rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
  box-sizing: border-box;
}
.legal-align {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: .35rem;
  align-items: start;
  padding-top: 1.35rem;
}
.legal-align__prefix {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1.85rem;
  font-size: 1.12rem;
  font-weight: 500;
  color: #777;
  white-space: nowrap;
}
.legal-align__prefix a {
  color: #777;
  font-weight: 600;
  text-decoration: none;
}
.legal-align__prefix a:hover { color: var(--ep-primary); }
.legal-align__uso {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 1.85rem;
  font-size: 1.12rem;
  font-weight: 600;
  color: #555;
  line-height: 1.4;
}
.legal-page__title {
  grid-column: 2;
  grid-row: 2;
  margin: 0 0 1.75rem;
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  color: #2d2d2d;
  letter-spacing: -.02em;
}
.legal-card {
  grid-column: 2;
  grid-row: 3;
  width: 100%;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(4, 4, 5, .16);
  border-radius: 10px;
  box-shadow: none;
  padding: clamp(1.5rem, 3.5vw, 2.75rem) clamp(1.25rem, 3.5vw, 2.75rem);
  color: #444;
  font-size: .98rem;
  line-height: 1.7;
  box-sizing: border-box;
}
.legal-card h2 {
  margin: 2rem 0 .85rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #2d2d2d;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.35;
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card h3 {
  margin: 1.35rem 0 .55rem;
  font-size: 1rem;
  font-weight: 700;
  color: #2d2d2d;
  line-height: 1.35;
}
.legal-card p {
  margin: 0 0 .9rem;
}
.legal-card ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.legal-card li {
  margin-bottom: .55rem;
}
.legal-card a {
  color: var(--ep-primary);
  font-weight: 700;
  text-decoration: none;
}
.legal-card a:hover { text-decoration: underline; }
.legal-card strong { color: #2d2d2d; font-weight: 700; }
.legal-card__meta {
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(4, 4, 5, .1);
}
.legal-card__meta p {
  margin: 0;
  font-size: .88rem;
  color: #888;
}
html.theme-dark .legal-page { background: #121214; }
html.theme-dark .legal-card {
  background: #121214;
  border-color: rgba(255, 255, 255, .14);
  color: #c9c9c9;
}
html.theme-dark .legal-page__title,
html.theme-dark .legal-card h2,
html.theme-dark .legal-card h3,
html.theme-dark .legal-card strong { color: #f0f0f0; }
html.theme-dark .legal-align__prefix,
html.theme-dark .legal-align__prefix a { color: #999; }
html.theme-dark .legal-align__uso { color: #ccc; }
html.theme-dark .legal-card__meta { border-top-color: rgba(255, 255, 255, .1); }
html.theme-dark .legal-card__meta p { color: #888; }

@media (max-width: 640px) {
  .legal-page__title,
  .legal-card {
    grid-column: 1 / -1;
  }
}

/* Card legal: direita alinhada ao botão Anunciar (reserva cart + menu) */
.legal-page__shell.legal-page__shell--anunciar {
  padding-right: calc(max(1.5rem, env(safe-area-inset-right)) + 6.75rem);
}
@media (max-width: 991px) {
  .legal-page__shell.legal-page__shell--anunciar {
    padding-right: calc(max(1.5rem, env(safe-area-inset-right)) + 5.5rem);
  }
}
@media (max-width: 640px) {
  .legal-page__shell.legal-page__shell--anunciar {
    padding-right: max(1.25rem, env(safe-area-inset-right));
  }
}

/* Toast — topo direita */
.ep-toasts {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 10050;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  width: min(360px, calc(100vw - 2rem));
  pointer-events: none;
}
.ep-toast {
  pointer-events: auto;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .75rem;
  align-items: start;
  background: #fff;
  border: 1px solid rgba(4, 4, 5, .08);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(4, 4, 5, .12);
  padding: .95rem 1rem 1.15rem;
  overflow: hidden;
  transform: translateX(120%);
  opacity: 0;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), opacity .28s ease;
}
.ep-toast.is-in {
  transform: translateX(0);
  opacity: 1;
}
.ep-toast.is-out {
  transform: translateX(120%);
  opacity: 0;
}
.ep-toast__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2d2d2d;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ep-toast__icon svg {
  display: block;
}
.ep-toast__body {
  margin: 0;
  padding-top: .2rem;
  font-size: .95rem;
  color: #333;
  line-height: 1.4;
}
.ep-toast__close {
  border: 0;
  background: transparent;
  color: #bbb;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  padding: 0;
}
.ep-toast__close:hover { color: #666; background: rgba(4,4,5,.05); }
.ep-toast__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: #2d2d2d;
  transform-origin: left center;
  animation: ep-toast-bar linear forwards;
}
@keyframes ep-toast-bar {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}
.ep-toast--success .ep-toast__icon,
.ep-toast--success .ep-toast__bar { background: #16a34a; }
.ep-toast--error .ep-toast__icon,
.ep-toast--error .ep-toast__bar { background: #dc2626; }
.ep-toast--info .ep-toast__icon,
.ep-toast--info .ep-toast__bar { background: #2d2d2d; }
html.theme-dark .ep-toast {
  background: #1e1e21;
  border-color: rgba(255,255,255,.1);
}
html.theme-dark .ep-toast__body { color: #ddd; }
html.theme-dark .listing-card__fav {
  background: rgba(30, 30, 33, .92);
  color: #eee;
}
html.theme-dark .listing-card__fav:hover,
html.theme-dark .listing-card__fav.is-active {
  color: #fb7185;
}

/* Careers */
.careers-page {
  background: #fff;
  padding-bottom: 4rem;
}
.careers-page__shell {
  max-width: 720px;
}
.careers-page__shell--narrow {
  max-width: 640px;
}
.careers-page .breadcrumbs {
  margin: 1.25rem 0 1.5rem;
  font-size: 1.05rem;
  justify-content: center;
}
.careers-page__title {
  margin: 0 0 2rem;
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #2d2d2d;
}
.careers-hub {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.careers-hub__label {
  margin: 1.75rem 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #333;
}
.careers-hub__list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: stretch;
}
.careers-hub__btn {
  display: block;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(4, 4, 5, .12);
  background: #f3f3f3;
  color: #444;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: background .2s, color .2s, border-color .2s;
}
.careers-hub__btn:hover,
.careers-hub__btn.is-active {
  background: #e8e8e8;
  color: #111;
  border-color: rgba(4, 4, 5, .18);
}
.careers-hub__btn.is-disabled {
  background: #f7f7f7;
  color: #c4c4c4;
  border-color: rgba(4, 4, 5, .06);
  cursor: not-allowed;
  user-select: none;
  pointer-events: auto;
}
.careers-hub__btn.is-disabled:hover {
  background: #f7f7f7;
  color: #c4c4c4;
  border-color: rgba(4, 4, 5, .06);
}

.careers-dev__intro {
  text-align: center;
  color: #444;
  font-size: .98rem;
  line-height: 1.7;
  margin: 0 auto 2.25rem;
  max-width: 560px;
}
.careers-dev__intro p {
  margin: 0 0 1rem;
  text-align: justify;
  text-align-last: center;
}
.careers-dev__intro h2 {
  margin: 1.5rem 0 .75rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #2d2d2d;
  text-align: center;
}
.careers-dev__intro h3 {
  margin: 1.1rem 0 .55rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: #2d2d2d;
  text-align: center;
}
.careers-dev__skills {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: left;
  max-width: 520px;
}
.careers-dev__skills li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: .85rem;
  text-align: justify;
}
.careers-dev__skills li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45rem;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--ep-primary);
}

.careers-gate {
  max-width: 480px;
  margin: 0 auto 2rem;
  text-align: left;
}
.careers-gate__q {
  margin: 0 0 .85rem;
  font-weight: 600;
  color: #333;
  text-align: center;
}
.careers-gate__q em {
  color: #e11d48;
  font-style: normal;
}
.careers-gate__option {
  display: flex;
  align-items: center;
  gap: .65rem;
  width: fit-content;
  margin: 0 auto .75rem;
  padding: .65rem 1rem;
  border: 1px solid rgba(4, 4, 5, .16);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  color: #333;
}
.careers-gate__option input {
  accent-color: var(--ep-primary);
  width: 1.05rem;
  height: 1.05rem;
}
.careers-gate__hint {
  margin: 0 0 1.25rem;
  text-align: center;
  color: #999;
  font-size: .88rem;
}
.careers-form__nav--end {
  justify-content: flex-end;
}

.careers-form {
  max-width: 480px;
  margin: 0 auto;
  padding-top: .5rem;
  text-align: left;
}
.careers-form__heading {
  margin: 0 auto 1.25rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #2d2d2d;
  border-bottom: 2px solid rgba(4, 4, 5, .12);
  padding-bottom: .45rem;
  display: table;
  text-align: center;
}
.careers-field {
  display: block;
  margin-bottom: 1.15rem;
  text-align: left;
}
.careers-field span {
  display: block;
  margin-bottom: .4rem;
  font-weight: 600;
  color: #333;
  font-size: .95rem;
}
.careers-field em {
  color: #e11d48;
  font-style: normal;
}
.careers-field input,
.careers-field textarea {
  width: 100%;
  border: 1px solid rgba(4, 4, 5, .18);
  border-radius: 8px;
  padding: .7rem .85rem;
  font: inherit;
  font-size: 1rem;
  background: #fff;
  color: #222;
  box-sizing: border-box;
}
.careers-field input:focus,
.careers-field textarea:focus {
  outline: none;
  border-color: var(--ep-primary);
}
.careers-field small {
  display: block;
  margin-top: .35rem;
  color: #999;
  font-size: .85rem;
}
.careers-field.is-invalid input,
.careers-field.is-invalid textarea {
  border-color: #e11d48;
}
.careers-form__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: .5rem;
}
.careers-form__back {
  border: 0;
  background: transparent;
  color: #333;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  padding: .5rem 0;
}
.careers-form__back:hover { color: var(--ep-primary); }
.careers-form__next,
.careers-form__submit {
  margin-left: auto;
  min-width: 140px;
}

/* —— Como funciona —— */
.how-page {
  padding: 2.5rem 0 0;
  background: #fff;
}
.how-page__intro {
  padding-bottom: 3rem;
}
.how-page__title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #2d2d2d;
  margin: 0 0 2.75rem;
}
.how-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.75rem;
}
.how-step {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 72%;
  width: 100%;
}
.how-step--reverse {
  flex-direction: row-reverse;
}
.how-step__picture {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  width: 42%;
}
.how-step__picture img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.how-step__text {
  flex: 1 1 auto;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.8;
  color: #444;
  text-align: left;
}
.how-step__index {
  color: var(--ep-primary);
  font-size: 2.25rem;
  font-weight: 800;
  margin-right: .35rem;
  line-height: 1;
  vertical-align: -0.15em;
}
.how-for-you {
  background: #fafafa;
  padding: 4rem 0 5rem;
}
.how-for-you__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 72%;
  margin: 0 auto;
}
.how-for-you__texts {
  flex: 1 1 auto;
  min-width: 0;
}
.how-for-you__texts h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #2d2d2d;
}
.how-for-you__texts p {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  line-height: 2;
  color: #555;
}
.how-for-you__texts p:last-child { margin-bottom: 0; }
.how-for-you__picture {
  flex: 0 0 auto;
  width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-for-you__picture img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

html.theme-dark .how-page { background: #121212; }
html.theme-dark .how-page__title,
html.theme-dark .how-for-you__texts h2 { color: #fff; }
html.theme-dark .how-step__text { color: #ddd; }
html.theme-dark .how-for-you { background: rgba(255, 255, 255, .06); }
html.theme-dark .how-for-you__texts p { color: #ccc; }

@media (max-width: 1199px) {
  .how-step,
  .how-for-you__inner {
    max-width: none;
  }
  .how-for-you__inner {
    flex-direction: column;
  }
  .how-for-you__picture { width: 240px; }
}
@media (max-width: 767px) {
  .how-page { padding-top: 1.5rem; }
  .how-page__title { margin-bottom: 2rem; }
  .how-step,
  .how-step--reverse {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }
  .how-step__picture { width: min(240px, 70%); max-width: 240px; }
  .how-step__text { text-align: left; font-size: 1rem; }
  .how-for-you { padding: 3rem 0 4rem; }
  .how-for-you__inner { gap: 1.75rem; }
  .how-for-you__picture { max-width: 240px; width: auto; }
}

/* —— Vantagens —— */
.advantages-page {
  padding: 2.75rem 0 4.5rem;
  background: #fff;
}
.advantages-page__title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #2d2d2d;
  margin: 0 0 2.75rem;
}
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.advantages-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.advantages-col__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ep-primary);
  color: #fff;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  padding: .55rem 1.35rem;
  border-radius: 999px;
  margin-bottom: 1.35rem;
  line-height: 1.2;
}
.advantages-col__heading {
  margin: 0 0 1.75rem;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--ep-primary);
  letter-spacing: .01em;
}
.advantages-col__heading strong {
  font-weight: 800;
}
.advantages-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  width: 100%;
}
.advantages-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.advantages-list__icon {
  flex: 0 0 auto;
  color: var(--ep-primary);
  margin-top: .1rem;
  display: grid;
  place-items: center;
}
.advantages-list p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.65;
  color: #444;
}
.advantages-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  width: 100%;
  margin-top: auto;
}
.advantages-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  text-align: center;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  padding: 1.35rem .7rem 1.15rem;
  min-height: 148px;
}
.advantages-card__icon {
  color: var(--ep-primary);
  flex: 0 0 auto;
}
.advantages-card span {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #2d2d2d;
  line-height: 1.35;
}

html.theme-dark .advantages-page { background: #121212; }
html.theme-dark .advantages-page__title { color: #fff; }
html.theme-dark .advantages-list p { color: #ccc; }
html.theme-dark .advantages-card {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, .12);
}
html.theme-dark .advantages-card span { color: #eee; }

@media (max-width: 991px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 575px) {
  .advantages-page { padding: 1.75rem 0 3rem; }
  .advantages-page__title { margin-bottom: 2rem; }
  .advantages-cards {
    grid-template-columns: 1fr;
  }
  .advantages-card {
    min-height: 0;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 1rem;
    padding: 1rem 1.1rem;
  }
  .advantages-card span { font-size: .8rem; }
}

/* —— Tarifas e prazos —— */
.fees-page {
  padding: 2.75rem 0 4.5rem;
  background: #fff;
}
.fees-page__shell {
  max-width: 980px;
}
.fees-page__title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #2d2d2d;
  margin: 0 0 1.5rem;
}
.fees-intro {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.fees-intro p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #555;
}
.fees-intro p:last-child { margin-bottom: 0; }
.fees-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 4rem;
}
.fees-plan {
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.85rem;
  min-height: 220px;
}
.fees-plan__name {
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
}
.fees-plan__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.fees-plan__list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .95rem;
  line-height: 1.45;
}
.fees-plan__check {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-top: .05rem;
}
.fees-plan--prata {
  background: #f0f0f0;
  color: #333;
}
.fees-plan--prata .fees-plan__check { color: #666; }
.fees-plan--ouro {
  background: #c9a227;
  color: #1f1603;
}
.fees-plan--ouro .fees-plan__name { color: #1f1603; }
.fees-plan--ouro .fees-plan__check { color: #5c4308; }
.fees-plan--ouro strong { color: #1a1200; }
.fees-plan--diamante {
  background: #3a9fd8;
  color: #06243a;
}
.fees-plan--diamante .fees-plan__name { color: #041a2c; }
.fees-plan--diamante .fees-plan__check { color: #0a4a7a; }
.fees-plan--diamante strong { color: #031420; }

.fees-section--prazos {
  padding-top: .5rem;
}
.fees-table-wrap {
  max-width: 720px;
  margin: 0 auto 2rem;
  overflow-x: auto;
}
.fees-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .98rem;
}
.fees-table th,
.fees-table td {
  padding: .95rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
  color: #333;
  vertical-align: middle;
}
.fees-table th {
  font-weight: 700;
  color: #2d2d2d;
}
.fees-table td:last-child,
.fees-table th:last-child {
  white-space: nowrap;
  width: 38%;
}
.fees-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: -0.2em;
  margin-left: .25rem;
  color: var(--ep-primary);
}
.fees-notes {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fees-notes li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
}
.fees-notes .fees-ico {
  margin: .15rem 0 0;
  flex: 0 0 auto;
}
.fees-notes p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.65;
  color: #555;
}

html.theme-dark .fees-page { background: #121212; }
html.theme-dark .fees-page__title { color: #fff; }
html.theme-dark .fees-intro p,
html.theme-dark .fees-notes p { color: #ccc; }
html.theme-dark .fees-plan--prata {
  background: #2a2a2a;
  color: #eee;
}
html.theme-dark .fees-table th,
html.theme-dark .fees-table td {
  color: #ddd;
  border-bottom-color: rgba(255, 255, 255, .12);
}
html.theme-dark .fees-table th { color: #fff; }

@media (max-width: 991px) {
  .fees-plans { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .fees-plan { min-height: 0; }
}
@media (max-width: 575px) {
  .fees-page { padding: 1.75rem 0 3rem; }
  .fees-table th,
  .fees-table td { padding: .8rem .65rem; font-size: .9rem; }
}

/* —— Formas de pagamento —— */
.pay-page {
  padding: 1.5rem 0 5rem;
  background: #fff;
}
.pay-page__crumbs {
  margin-bottom: 1.75rem;
  font-size: 1.12rem;
  font-weight: 500;
  gap: .55rem;
}
.pay-page__title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #2d2d2d;
  margin: 0 0 2.5rem;
}
.pay-page__section-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #2d2d2d;
}
.pay-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px 2rem;
}
.pay-card {
  flex: 1 1 0;
  min-width: 128px;
  max-width: 150px;
  margin: 5px;
  background: #efefef;
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pay-card__image {
  width: 100%;
  padding-bottom: 100%;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.pay-card__image--contain {
  background-size: 62%;
  background-color: #fff;
}
.pay-card__label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 100%;
  border-top: 1px solid rgba(4, 4, 5, .1);
  background: #efefef;
  padding: 0 .4rem;
}
.pay-card__label h3 {
  margin: 0;
  font-size: .875rem;
  font-weight: 600;
  text-align: center;
  color: #2d2d2d;
  line-height: 1.25;
}

html.theme-dark .pay-page { background: #121212; }
html.theme-dark .pay-page__title,
html.theme-dark .pay-page__section-title { color: #fff; }
html.theme-dark .pay-card {
  background: transparent;
  border-color: hsla(0, 0%, 100%, .1);
}
html.theme-dark .pay-card__image { background-color: #1a1a1a; }
html.theme-dark .pay-card__label {
  background: transparent;
  border-top-color: hsla(0, 0%, 100%, .1);
}
html.theme-dark .pay-card__label h3 { color: #eee; }

@media (max-width: 767px) {
  .pay-card {
    max-width: calc(33.333% - 10px);
    min-width: 100px;
  }
}
@media (max-width: 480px) {
  .pay-card {
    max-width: calc(50% - 10px);
  }
  .pay-card__label h3 { font-size: .8rem; }
}

/* —— Verificador / Selo —— */
.checker-page {
  position: relative;
  overflow: hidden;
  padding: 0 0 5rem;
  background: #fff;
  min-height: 70vh;
}
.checker-page__mascot {
  pointer-events: none;
  position: absolute;
  right: -120px;
  top: 40px;
  width: min(420px, 38vw);
  z-index: 0;
  user-select: none;
}
.checker-page__mascot img {
  width: 100%;
  height: auto;
  display: block;
}
.checker-page__shell {
  position: relative;
  z-index: 1;
}
.checker-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 7rem 0 6rem;
  text-align: center;
}
.checker-form__eyebrow {
  margin: 0;
  color: #999;
  font-size: 1rem;
  font-weight: 700;
}
.checker-form__title {
  margin: .35rem 0 2rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #2d2d2d;
}
.checker-form__row {
  position: relative;
  display: flex;
  align-items: center;
  width: min(480px, 100%);
}
.checker-form__row input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(4, 4, 5, .12);
  border-radius: 8px;
  padding: 0 118px 0 1rem;
  font: inherit;
  font-size: 1rem;
  background: #fff;
  color: #333;
  outline: none;
}
.checker-form__row input:focus {
  border-color: var(--ep-primary);
}
.checker-form__row button {
  position: absolute;
  right: 5px;
  height: 38px;
  min-width: 100px;
  padding: 0 1.1rem;
  border-radius: 8px;
}
.checker-form__result {
  margin-top: 1.25rem;
  max-width: 520px;
  width: 100%;
  text-align: left;
  background: #f7f7f7;
  border: 1px solid rgba(4, 4, 5, .08);
  border-radius: 8px;
  padding: 1rem 1.15rem;
}
.checker-form__result p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
  color: #555;
}
.checker-faqs,
.seal-faqs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: min(560px, 100%);
  margin: 0 auto;
  position: relative;
}
.checker-faq__title {
  width: 100%;
  display: block;
  text-align: left;
  background: rgba(4, 4, 5, .04);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  padding: .85rem 1.5rem;
  transition: background .2s, color .2s;
  font: inherit;
}
.checker-faq__title span {
  color: rgba(4, 4, 5, .5);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
  transition: color .2s;
}
.checker-faq.is-open .checker-faq__title {
  background: var(--ep-primary);
}
.checker-faq.is-open .checker-faq__title span {
  color: #fff;
}
.checker-faq__body {
  border-left: 8px solid var(--ep-primary);
  margin: 1rem 1rem 0;
  padding: .5rem 0 .5rem 1rem;
}
.checker-faq__body p {
  margin: 0;
  font-size: .98rem;
  line-height: 1.7;
  color: #444;
}
.checker-faq__body a {
  font-weight: 600;
}

.seal-page {
  padding: 3.5rem 0 5rem;
  background: #fff;
}
.seal-page__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.seal-page__eyebrow {
  margin: 0;
  color: #999;
  font-size: 1rem;
  font-weight: 600;
}
.seal-page__title {
  margin: .25rem 0 1.25rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #2d2d2d;
}
.seal-page__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #555;
}
.seal-page__grid {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
  max-width: 980px;
}
.seal-page__mascot img {
  width: 100%;
  height: auto;
  display: block;
}
.seal-faqs {
  width: 100%;
  margin: 0;
  gap: .85rem;
}
.seal-faqs__brand {
  margin: 0 0 .35rem;
  font-size: .95rem;
  font-weight: 700;
  color: #666;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html.theme-dark .checker-page,
html.theme-dark .seal-page { background: #121212; }
html.theme-dark .checker-form__title,
html.theme-dark .seal-page__title { color: #fff; }
html.theme-dark .checker-form__row input {
  background: #1a1a1a;
  border-color: hsla(0, 0%, 100%, .12);
  color: #eee;
}
html.theme-dark .checker-faq__title { background: rgba(255, 255, 255, .1); }
html.theme-dark .checker-faq__title span { color: rgba(255, 255, 255, .4); }
html.theme-dark .checker-faq.is-open .checker-faq__title span { color: #fff; }
html.theme-dark .checker-faq__body p,
html.theme-dark .seal-page__lead,
html.theme-dark .checker-form__result p { color: #ccc; }
html.theme-dark .checker-form__result {
  background: #1a1a1a;
  border-color: hsla(0, 0%, 100%, .1);
}
html.theme-dark .seal-faqs__brand { color: #aaa; }

@media (max-width: 1200px) {
  .checker-page__mascot {
    right: -80px;
    width: min(320px, 34vw);
    top: 80px;
  }
}
@media (max-width: 920px) {
  .checker-page__mascot {
    right: -40px;
    width: 220px;
    top: 100px;
  }
  .seal-page__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .seal-page__mascot {
    max-width: 280px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .checker-form {
    margin: 4.5rem 0 3.5rem;
  }
  .checker-form__row {
    width: 100%;
  }
  .checker-faqs { width: 100%; }
}
@media (max-width: 720px) {
  .checker-page__mascot { display: none; }
}

/* —— Anunciar (wizard) —— */
.sell-body {
  margin: 0;
  min-height: 100vh;
  background: #f7f7f7;
  font-family: Mulish, system-ui, sans-serif;
  color: #2d2d2d;
}
.sell-topbar {
  display: block;
  background: #111;
  color: #fff !important;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .55rem 1.25rem;
}
.sell-topbar:hover { color: #ddd !important; }
.sell-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.25rem 3rem;
  min-height: calc(100vh - 36px);
}
.sell-logo {
  display: block;
  margin: .5rem 0 1.75rem;
}
.sell-logo img {
  display: block;
  height: 32px;
  width: auto;
}
.sell-steps {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  width: min(520px, 100%);
  position: relative;
}
.sell-steps::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: #ddd;
  z-index: 0;
}
.sell-steps__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  position: relative;
  z-index: 1;
}
.sell-steps__num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #cfcfcf;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
}
.sell-steps__label {
  font-size: .85rem;
  font-weight: 600;
  color: #999;
}
.sell-steps__item.is-active .sell-steps__num,
.sell-steps__item.is-done .sell-steps__num {
  background: var(--ep-primary, #2d2d2d);
}
.sell-steps__item.is-active .sell-steps__label,
.sell-steps__item.is-done .sell-steps__label {
  color: var(--ep-primary, #2d2d2d);
}
.sell-main {
  width: min(860px, 100%);
  flex: 1;
}
.sell-card {
  background: #fff;
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 10px;
  padding: 1.5rem 1.75rem 2rem;
}
.sell-card__head {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.75rem;
}
.sell-card__icon {
  color: #666;
  display: grid;
  place-items: center;
}
.sell-card__head h1 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2d2d2d;
}
.sell-account {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 180px;
}
.sell-account__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem 1.5rem;
}
.sell-account__col h2 {
  margin: 0 0 .45rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2d2d2d;
}
.sell-account__col p {
  margin: 0 0 1.25rem;
  font-size: .95rem;
  color: #777;
  line-height: 1.45;
}
.sell-account__btn {
  min-width: 140px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 700;
}
.sell-account__divider {
  width: 1px;
  background: rgba(4, 4, 5, .1);
  align-self: stretch;
  margin: .5rem 0;
}
.sell-footer {
  margin-top: 3rem;
  text-align: center;
}
.sell-footer p {
  margin: 0 0 .65rem;
  font-size: .85rem;
  color: #999;
}
.sell-footer a {
  color: #c9a227;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.sell-footer a:hover { color: #a8861a; }

html.theme-dark .sell-body { background: #0f0f0f; color: #eee; }
html.theme-dark .sell-card {
  background: #1a1a1a;
  border-color: hsla(0, 0%, 100%, .1);
}
html.theme-dark .sell-card__head h1,
html.theme-dark .sell-account__col h2 { color: #fff; }
html.theme-dark .sell-account__col p { color: #aaa; }
html.theme-dark .sell-account__divider { background: hsla(0, 0%, 100%, .12); }
html.theme-dark .sell-steps::before { background: #444; }
html.theme-dark .sell-steps__num { background: #555; }
html.theme-dark .sell-steps__label { color: #777; }
html.theme-dark .sell-steps__item.is-active .sell-steps__label,
html.theme-dark .sell-steps__item.is-done .sell-steps__label { color: #ddd; }

/* —— Auth (entrar / cadastro) —— */
.auth-page {
  padding: 3rem 0 5rem;
  background: #fff;
}
.auth-page__shell {
  max-width: 420px;
  margin: 0 auto;
}
.auth-page h1 {
  margin: 0 0 .5rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: #2d2d2d;
}
.auth-page__lead {
  margin: 0 0 1.75rem;
  color: #666;
  line-height: 1.5;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.auth-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .9rem;
  font-weight: 600;
  color: #444;
}
.auth-field input {
  height: 44px;
  border: 1px solid rgba(4, 4, 5, .12);
  border-radius: 8px;
  padding: 0 .9rem;
  font: inherit;
  font-weight: 500;
  outline: none;
}
.auth-field input:focus { border-color: var(--ep-primary); }
.auth-form .btn {
  margin-top: .5rem;
  height: 44px;
}
.auth-page__alt {
  margin: 1.25rem 0 0;
  font-size: .95rem;
  color: #666;
}
html.theme-dark .auth-page { background: #121212; }
html.theme-dark .auth-page h1 { color: #fff; }
html.theme-dark .auth-page__lead,
html.theme-dark .auth-page__alt { color: #aaa; }
html.theme-dark .auth-field { color: #ccc; }
html.theme-dark .auth-field input {
  background: #1a1a1a;
  border-color: hsla(0, 0%, 100%, .12);
  color: #eee;
}

/* —— Auth modal —— */
body.auth-modal-open { overflow: hidden; }
.auth-modal[hidden] { display: none !important; }
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(40, 30, 70, .35);
  backdrop-filter: blur(2px);
}
.auth-modal__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(4, 4, 5, .2);
  padding: 2rem 1.75rem 1.5rem;
}
.auth-modal__close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  border: 0;
  background: transparent;
  color: var(--ep-primary);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  padding: 0;
}
.auth-modal__close:hover { background: rgba(4, 4, 5, .06); }
.auth-modal__title {
  margin: 0 0 1.35rem;
  text-align: center;
  font-size: 1.45rem;
  font-weight: 800;
  color: #2d2d2d;
}
.auth-modal__hint {
  margin: -.5rem 0 1.15rem;
  text-align: center;
  font-size: .92rem;
  line-height: 1.55;
  color: #777;
}
.auth-modal__form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.auth-modal__field {
  display: block;
  position: relative;
}
.auth-modal__field input {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(4, 4, 5, .14);
  border-radius: 8px;
  padding: 0 2.5rem 0 .95rem;
  font: inherit;
  font-size: .98rem;
  outline: none;
  background: #fff;
  color: #333;
  box-sizing: border-box;
}
.auth-modal__field:not(.auth-modal__field--password) input {
  padding-right: .95rem;
}
.auth-modal__field input:focus {
  border-color: var(--ep-primary);
}
.auth-modal__eye {
  position: absolute;
  right: .45rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #999;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 6px;
}
.auth-modal__eye:hover { color: #666; background: rgba(4,4,5,.05); }
.auth-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}
.auth-modal__submit {
  width: 100%;
  height: 46px;
  margin-top: .25rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: 8px;
}
.auth-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-top: .9rem;
}
.auth-social__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  height: 42px;
  border-radius: 8px;
  border: 1.5px solid;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0 .5rem;
  transition: background .15s, color .15s;
}
.auth-social__btn--google {
  border-color: #e57373;
  color: #e53935 !important;
}
.auth-social__btn--google:hover {
  background: rgba(229, 57, 53, .06);
  color: #c62828 !important;
}
.auth-social__btn--discord {
  border-color: #7289da;
  color: #5865f2 !important;
}
.auth-social__btn--discord:hover {
  background: rgba(88, 101, 242, .06);
  color: #4752c4 !important;
}
.auth-social__btn.is-disabled {
  opacity: .55;
  cursor: not-allowed;
}
.auth-modal__footer {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(4, 4, 5, .1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
}
.auth-modal__footer button {
  border: 0;
  background: transparent;
  color: #555;
  font: inherit;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  padding: .15rem;
}
.auth-modal__footer button:hover { color: var(--ep-primary); }
.sell-logged {
  text-align: center;
  padding: 1.5rem 1rem 1rem;
}
.sell-logged p { margin: 0 0 .5rem; color: #444; }
.sell-logged__hint { color: #777 !important; font-size: .95rem; }
.sell-logged__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  margin-top: 1.25rem;
}
.sell-logged__actions .btn {
  min-width: 160px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sell-logged__logout {
  color: #999;
  font-size: .9rem;
  font-weight: 600;
}

html.theme-dark .auth-modal__panel { background: #1a1a1a; }
html.theme-dark .auth-modal__title { color: #fff; }
html.theme-dark .auth-modal__hint,
html.theme-dark .auth-modal__footer button { color: #bbb; }
html.theme-dark .auth-modal__field input {
  background: #121212;
  border-color: hsla(0,0%,100%,.14);
  color: #eee;
}
html.theme-dark .sell-logged p { color: #ccc; }

@media (max-width: 480px) {
  .auth-modal__row,
  .auth-social { grid-template-columns: 1fr; }
  .auth-modal__panel { padding: 1.75rem 1.15rem 1.25rem; }
}

/* —— FAQ —— */
.faq-page {
  padding: 0 0 5rem;
  background: #fff;
}
.faq-page__crumbs {
  font-size: 1.12rem;
  font-weight: 500;
  gap: .55rem;
  margin-bottom: 1.5rem;
}
.faq-page__header {
  text-align: center;
  margin-bottom: 2.75rem;
}
.faq-page__header h1 {
  margin: 0 0 .4rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #2d2d2d;
}
.faq-page__header p {
  margin: 0;
  font-size: 1.05rem;
  color: #777;
}
.faq-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.faq-sidebar {
  flex: 0 0 280px;
  width: 280px;
}
.faq-sidebar__box {
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 8px;
  padding: .5rem 0 1rem;
  position: sticky;
  top: 88px;
}
.faq-sidebar__label {
  margin: 0;
  padding: 1rem 1.5rem;
  color: #666;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.faq-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.faq-sidebar__list a {
  display: block;
  margin: .125rem .5rem;
  padding: .5rem 1rem;
  border-radius: 8px;
  color: #999;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.faq-sidebar__list a:hover {
  background: rgba(4, 4, 5, .04);
  color: #666;
}
.faq-sidebar__list a.is-active {
  background: rgba(4, 4, 5, .1) !important;
  color: #333 !important;
}
.faq-content {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.faq-section {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  scroll-margin-top: 100px;
}
.faq-section h2 {
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(4, 4, 5, .1);
  color: rgba(4, 4, 5, .65);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}
.faq-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item h3 {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  color: #2d2d2d;
  line-height: 1.35;
}
.faq-item__answer {
  border-left: 4px solid var(--ep-primary);
  padding: .25rem 0 .25rem 1rem;
}
.faq-item__answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}
.faq-item__answer a { font-weight: 600; }

html.theme-dark .faq-page { background: #121212; }
html.theme-dark .faq-page__header h1,
html.theme-dark .faq-item h3 { color: #fff; }
html.theme-dark .faq-page__header p,
html.theme-dark .faq-item__answer p { color: #ccc; }
html.theme-dark .faq-sidebar__box {
  border-color: hsla(0, 0%, 100%, .1);
}
html.theme-dark .faq-sidebar__list a.is-active {
  background: rgba(255, 255, 255, .1) !important;
  color: #ddd !important;
}
html.theme-dark .faq-section h2 {
  border-bottom-color: hsla(0, 0%, 100%, .1);
  color: rgba(255, 255, 255, .65);
}

@media (max-width: 991px) {
  .faq-sidebar { display: none; }
  .faq-layout { gap: 0; }
}

/* —— Central de Ajuda —— */
.help-page {
  padding: 0 0 5rem;
  background: #fff;
}
.help-page__crumbs {
  font-size: 1.12rem;
  font-weight: 500;
  gap: .55rem;
  margin-bottom: 1.5rem;
}
.help-page__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.help-page__header h1 {
  margin: 0 0 .85rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #2d2d2d;
}
.help-page__header p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #777;
}
.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}
.help-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.help-card {
  background: #fff;
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 10px;
  padding: 1.35rem 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
}
.help-card--solo {
  max-width: 640px;
  margin: 0 auto;
}
.help-card__title {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .85rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2d2d2d;
}
.help-card__icon {
  color: #666;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.help-card__text,
.help-card__lead {
  margin: 0;
  font-size: .98rem;
  line-height: 1.65;
  color: #555;
}
.help-card__lead { margin-bottom: .85rem; }
.help-card__note {
  margin: .85rem 0 0;
  font-size: .88rem;
  line-height: 1.55;
  color: #999;
}
.help-card__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.25rem;
}
.help-card__actions .btn {
  min-width: 130px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
}
.help-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.help-links li {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.help-links li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ep-primary);
  flex: 0 0 auto;
}
.help-links a {
  color: var(--ep-primary);
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
}
.help-links a:hover { text-decoration: underline; }
.help-socials {
  display: flex;
  justify-content: center;
  gap: .85rem;
  padding: .5rem 0 .25rem;
}
.help-socials a {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--ep-primary);
  border-radius: 10px;
  color: var(--ep-primary);
  display: grid;
  place-items: center;
  transition: background .15s, color .15s;
}
.help-socials a:hover {
  background: var(--ep-primary);
  color: #fff;
}

html.theme-dark .help-page { background: #121212; }
html.theme-dark .help-page__header h1,
html.theme-dark .help-card__title { color: #fff; }
html.theme-dark .help-page__header p,
html.theme-dark .help-card__text,
html.theme-dark .help-card__lead { color: #ccc; }
html.theme-dark .help-card {
  background: #1a1a1a;
  border-color: hsla(0, 0%, 100%, .1);
}
html.theme-dark .help-card__note { color: #888; }
html.theme-dark .help-socials a {
  border-color: #aaa;
  color: #ddd;
}
html.theme-dark .help-socials a:hover {
  background: #ddd;
  color: #121212;
}

@media (max-width: 800px) {
  .help-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .sell-account {
    grid-template-columns: 1fr;
  }
  .sell-account__divider {
    width: auto;
    height: 1px;
    margin: 0 1rem;
  }
  .sell-steps__label { font-size: .75rem; }
  .sell-shell { padding-top: 1.25rem; }
}


/* —— Conta / Minhas compras —— */
.account-page {
  padding: 0 0 4rem;
  background: #fff;
}
.account-page__shell.container,
.account-page__shell {
  max-width: 1640px;
  width: 100%;
  margin: 0 auto;
  padding-left: max(1.25rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
  box-sizing: border-box;
}
.account-page__crumbs {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.account-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  padding-top: .25rem;
  width: 100%;
}
.account-content {
  min-width: 0;
  width: 100%;
  max-width: none;
}
.account-sidebar {
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 10px;
  padding: .75rem .65rem 1rem;
  background: #fff;
  position: sticky;
  top: 84px;
}
.account-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.account-sidebar__link,
.account-sidebar__toggle {
  display: flex;
  align-items: center;
  gap: .65rem;
  width: 100%;
  padding: .7rem .75rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #444;
  font: inherit;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
}
.account-sidebar__link:hover,
.account-sidebar__toggle:hover {
  background: rgba(4, 4, 5, .04);
  color: #2d2d2d;
}
.account-sidebar__link.is-active {
  background: rgba(45, 45, 45, .08);
  color: #2d2d2d;
}
.account-sidebar__toggle {
  justify-content: space-between;
}
.account-sidebar__toggle-label {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}
.account-sidebar__chevron {
  transition: transform .2s;
  opacity: .7;
}
.account-sidebar__group.is-open .account-sidebar__chevron {
  transform: rotate(180deg);
}
.account-sidebar__sub {
  display: none;
  flex-direction: column;
  padding: .15rem 0 .35rem .5rem;
  gap: .1rem;
}
.account-sidebar__group.is-open .account-sidebar__sub {
  display: flex;
}
.account-sidebar__sublink {
  padding: .55rem .75rem .55rem 2.35rem;
  border-radius: 8px;
  color: #555;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
}
.account-sidebar__sublink:hover {
  background: rgba(4, 4, 5, .04);
  color: #2d2d2d;
}
.account-sidebar__sublink.is-active {
  background: rgba(45, 45, 45, .1);
  color: #2d2d2d;
}
.account-sidebar__actions {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-top: 1.25rem;
  padding: 0 .35rem;
}
.account-sidebar__help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  height: 44px;
  border-radius: 8px;
  font-weight: 700;
}
.account-sidebar__discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  height: 44px;
  border-radius: 8px;
  background: #5865f2;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  border: 0;
}
.account-sidebar__discord:hover { background: #4752c4; color: #fff !important; }

.account-content__header {
  margin-bottom: 1.5rem;
}
.account-content__header h1 {
  margin: 0 0 .4rem;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #2d2d2d;
}
.account-content__header p {
  margin: 0;
  color: #777;
  font-size: 1rem;
}

.account-summary-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.account-summary-card {
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 10px;
  padding: 1.15rem 1.2rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.account-summary-card:hover {
  border-color: rgba(4, 4, 5, .2);
  box-shadow: 0 4px 16px rgba(4, 4, 5, .06);
}
.account-summary-card strong {
  display: block;
  margin-bottom: .25rem;
  color: #2d2d2d;
}
.account-summary-card span {
  color: #888;
  font-size: .92rem;
}

.purchase-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.25rem;
}
.purchase-filters__btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  height: 38px;
  padding: 0 .9rem;
  border: 1px solid rgba(4, 4, 5, .14);
  border-radius: 8px;
  background: #fff;
  color: #555;
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
}
.purchase-filters__btn:hover {
  border-color: rgba(4, 4, 5, .28);
  color: #2d2d2d;
}

.purchase-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.purchase-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 10px;
  padding: 1.05rem 1.15rem;
  background: #fff;
}
.purchase-card__top {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .45rem;
  flex-wrap: wrap;
}
.purchase-card__code {
  font-size: 1.05rem;
  color: #2d2d2d;
}
.purchase-card__status {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 999px;
}
.purchase-card__status.is-done {
  background: #e8f8ef;
  color: #1f9d57;
}
.purchase-card__status.is-refunded {
  background: #fdecef;
  color: #d6455d;
}
.purchase-card__item {
  margin: 0 0 .35rem;
  color: #444;
  font-size: .95rem;
}
.purchase-card__item a {
  color: var(--ep-primary);
  font-weight: 600;
  text-decoration: none;
}
.purchase-card__item a:hover { text-decoration: underline; }
.purchase-card__pay {
  margin: 0 0 .45rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  color: #666;
  font-size: .9rem;
  font-weight: 600;
}
.purchase-card__pay-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #efefef;
  display: inline-grid;
  place-items: center;
  font-size: .7rem;
  color: #32bcad;
}
.purchase-card__pay-status { color: #1f9d57; font-weight: 700; }
.purchase-card__meta {
  margin: 0;
  color: #888;
  font-size: .88rem;
  display: flex;
  gap: .55rem;
  align-items: center;
}
.purchase-card__btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  height: 42px;
  padding: 0 1.1rem;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.purchase-empty {
  border: 1px dashed rgba(4, 4, 5, .16);
  border-radius: 10px;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.purchase-empty p {
  margin: 0 0 1rem;
  color: #777;
}

html.theme-dark .account-page { background: #121212; }
html.theme-dark .account-sidebar,
html.theme-dark .purchase-card,
html.theme-dark .account-summary-card {
  background: #1a1a1a;
  border-color: hsla(0, 0%, 100%, .1);
}
html.theme-dark .account-content__header h1,
html.theme-dark .purchase-card__code,
html.theme-dark .account-summary-card strong { color: #fff; }
html.theme-dark .account-sidebar__link,
html.theme-dark .account-sidebar__toggle,
html.theme-dark .account-sidebar__sublink,
html.theme-dark .purchase-card__item { color: #ccc; }
html.theme-dark .account-sidebar__link.is-active,
html.theme-dark .account-sidebar__sublink.is-active {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}
html.theme-dark .purchase-filters__btn {
  background: #1a1a1a;
  border-color: hsla(0, 0%, 100%, .12);
  color: #ccc;
}

@media (max-width: 991px) {
  .account-layout {
    grid-template-columns: 1fr;
  }
  .account-sidebar {
    position: static;
  }
  .account-summary-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .purchase-card {
    flex-direction: column;
    align-items: stretch;
  }
  .purchase-card__btn { width: 100%; justify-content: center; }
}

/* —— Conta: resumo e painéis —— */
.account-content__header--row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.acc-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1rem;
}
.acc-welcome__left {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.acc-welcome__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
}
.acc-welcome__hello {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
  color: #333;
}
.acc-welcome__hide {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: 0;
  background: none;
  color: #888;
  font: inherit;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
.acc-welcome__hide:hover { color: #2d2d2d; }
.acc-balances {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  margin-bottom: 1rem;
}
.acc-balances--2 { grid-template-columns: 1fr 1fr; }
.acc-balances.is-hidden .acc-balance-card__value { filter: blur(6px); user-select: none; }
.acc-balance-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}
.acc-balance-card--highlight {
  border-color: rgba(45, 45, 45, .35);
  box-shadow: 0 0 0 1px rgba(45, 45, 45, .08);
}
.acc-balance-card--solo { max-width: 360px; margin-bottom: 1rem; }
.acc-balance-card__label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #888;
  margin-bottom: .45rem;
}
.acc-balance-card__amount {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-width: 0;
}
.acc-balance-card__value {
  font-size: 1.55rem;
  font-weight: 800;
  color: #2d2d2d;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.acc-balance-card__refresh {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #9a9a9a;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition: color .15s ease, background .15s ease, transform .15s ease;
}
.acc-balance-card__refresh:hover {
  color: #2d2d2d;
  background: rgba(4, 4, 5, .06);
}
.acc-balance-card__refresh.is-spinning svg {
  animation: accRefreshSpin .7s linear;
}
@keyframes accRefreshSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.acc-balance-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.acc-balance-card__btn {
  height: 36px;
  padding: 0 1rem;
  border-radius: 8px;
  font-weight: 700;
}
.acc-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.acc-dot--ok { background: #22c55e; }
.acc-dot--warn { background: #f59e0b; }
.acc-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.acc-panel {
  background: #fff;
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 10px;
  padding: 1.15rem 1.25rem;
}
.acc-panel__title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2d2d2d;
}
.acc-verify__head h2 {
  margin: 0 0 .75rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.acc-verify__head span { color: #22c55e; }
.acc-verify__bar {
  height: 6px;
  background: #eee;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: .85rem;
}
.acc-verify__bar span {
  display: block;
  height: 100%;
  background: #22c55e;
}
.acc-verify__msg {
  margin: 0 0 1rem;
  color: #666;
  font-size: .95rem;
}
.acc-sales-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1rem;
}
.acc-sales-filters button {
  border: 1px solid rgba(4, 4, 5, .12);
  background: #f7f7f7;
  border-radius: 999px;
  padding: .35rem .8rem;
  font: inherit;
  font-size: .85rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
}
.acc-sales-filters button.is-active {
  background: rgba(45, 45, 45, .1);
  border-color: rgba(45, 45, 45, .25);
  color: #2d2d2d;
}
.acc-sales-total {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 800;
  color: #2d2d2d;
}
.acc-sales-count { margin: .25rem 0 0; color: #888; }
.acc-panel--checker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.acc-panel__checker-text {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.acc-panel__checker-text strong { color: #2d2d2d; font-size: 1.05rem; }
.acc-panel__checker-text span { color: #777; font-size: .92rem; }
.acc-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: #888;
}
.acc-empty__title {
  margin: 0 0 .35rem;
  font-weight: 700;
  color: #666;
  font-size: 1.05rem;
}
.acc-empty__icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  opacity: .45;
}

.notif-tabs,
.tx-tabs {
  display: flex;
  gap: .25rem;
  border-bottom: 1px solid rgba(4, 4, 5, .1);
  margin-bottom: 1rem;
  overflow-x: auto;
}
.notif-tabs button,
.tx-tabs button {
  border: 0;
  background: none;
  font: inherit;
  font-weight: 700;
  color: #888;
  padding: .7rem 1rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
}
.notif-tabs button.is-active,
.tx-tabs button.is-active {
  color: #2d2d2d;
  border-bottom-color: #2d2d2d;
}
.notif-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: .85rem;
}
.notif-mark {
  border: 0;
  background: none;
  color: #666;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.notif-item {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: .75rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(4, 4, 5, .08);
  cursor: pointer;
}
.notif-item:last-child { border-bottom: 0; }
.notif-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f0f0f0;
  display: grid;
  place-items: center;
}
.notif-item__body {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  min-width: 0;
}
.notif-item__body strong { color: #2d2d2d; }
.notif-item__body span { color: #777; font-size: .9rem; }
.notif-item time { color: #999; font-size: .85rem; white-space: nowrap; }

.tx-table-wrap { overflow-x: auto; }
.tx-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.tx-table th {
  text-align: left;
  color: #888;
  font-size: .75rem;
  letter-spacing: .04em;
  padding: .65rem .4rem;
  border-bottom: 1px solid rgba(4, 4, 5, .1);
}
.tx-table td {
  padding: .85rem .4rem;
  border-bottom: 1px solid rgba(4, 4, 5, .06);
  color: #444;
  vertical-align: top;
}
.tx-table .is-plus { color: #1f9d57; font-weight: 700; }
.tx-table .is-minus { color: #d6455d; font-weight: 700; }

.recharge-amounts {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .5rem;
  margin-bottom: .85rem;
}
.recharge-amounts button {
  height: 42px;
  border: 1px solid rgba(4, 4, 5, .12);
  border-radius: 8px;
  background: #f5f5f5;
  font: inherit;
  font-weight: 700;
  color: #444;
  cursor: pointer;
}
.recharge-amounts button.is-active,
.recharge-amounts button:hover {
  border-color: #2d2d2d;
  background: rgba(45, 45, 45, .08);
  color: #2d2d2d;
}
.recharge-custom {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}
.recharge-custom input {
  flex: 1;
  min-width: 180px;
  height: 44px;
  border: 1px solid rgba(4, 4, 5, .14);
  border-radius: 8px;
  padding: 0 1rem;
  font: inherit;
  font-weight: 600;
}
.purchase-card--warn { border-left: 3px solid #f59e0b; }
.purchase-card__status.is-pending {
  background: #fff4e5;
  color: #c77700;
}
.purchase-card__pay-box {
  display: inline-block;
  background: #f3f3f3;
  border-radius: 6px;
  padding: .25rem .55rem;
  font-size: .88rem;
}
.q-card__top {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: .65rem;
  color: #666;
  font-size: .9rem;
}
.q-card__meta { margin: 0 0 .75rem; color: #555; }
.q-card__filtered { margin: 0 0 .5rem; color: #d6455d; font-weight: 700; }
.q-card__alert {
  background: #fdecef;
  border: 1px solid #f5c2c9;
  border-radius: 8px;
  padding: .85rem 1rem;
  color: #a33;
  font-size: .92rem;
}
.q-list { display: flex; flex-direction: column; gap: .85rem; }

.account-sidebar__sublink.is-active,
.account-sidebar__link.is-active {
  background: rgba(45, 45, 45, .1) !important;
  color: #2d2d2d !important;
  box-shadow: inset 3px 0 0 #2d2d2d;
}

/* —— Anunciar passo 2 —— */
.sell-listing-head {
  text-align: center;
  margin: 0 0 1.5rem;
}
.sell-listing-head h1 {
  margin: 0 0 .35rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: #2d2d2d;
}
.sell-listing-head p { margin: 0; color: #777; }
.sell-form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.sell-main:has(.sell-form) { width: min(920px, 100%); }
.sell-card--accent {
  border-left: 3px solid var(--ep-primary, #2d2d2d);
}
.sell-card--section,
.sell-card--accent {
  padding: 0;
  overflow: hidden;
}
.sell-card__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: 1rem 1.2rem;
  border: 0;
  background: #fff;
  cursor: pointer;
  font: inherit;
  text-align: left;
}
.sell-card__toggle h2 {
  margin: 0;
  flex: 1;
  font-size: 1.05rem;
  font-weight: 700;
  color: #2d2d2d;
}
.sell-card__chevron {
  transition: transform .2s;
  color: #888;
}
.sell-card.is-open .sell-card__chevron { transform: rotate(180deg); }
.sell-card__body {
  padding: 0 1.25rem 1.35rem;
  border-top: 1px solid rgba(4, 4, 5, .06);
}
.sell-card__icon--box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(45, 45, 45, .08);
  display: grid;
  place-items: center;
}
.sell-field { display: block; margin-bottom: 1.25rem; }
.sell-field__label {
  display: block;
  font-weight: 700;
  color: #333;
  margin-bottom: .45rem;
  font-size: .92rem;
}
.sell-field input[type="text"],
.sell-field input[type="password"],
.sell-field input[type="email"],
.sell-field input[type="tel"],
.sell-field input[type="number"],
.sell-field input:not([type]) {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(4, 4, 5, .14);
  border-radius: 10px;
  padding: 0 1rem;
  font: inherit;
  font-size: .95rem;
  background: #fff;
  color: #2d2d2d;
  box-sizing: border-box;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.sell-field input::placeholder {
  color: #9a9a9a;
}
.sell-field input:focus {
  outline: 0;
  border-color: #2d2d2d;
  box-shadow: 0 0 0 3px rgba(45, 45, 45, .12);
}
.sell-field__control {
  position: relative;
  display: block;
}
.sell-field__control input {
  padding-right: 2.65rem;
}
.sell-field__eye {
  position: absolute;
  right: .4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #9a9a9a;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.sell-field__eye:hover {
  color: #555;
  background: rgba(4, 4, 5, .05);
}
.password-form__fields {
  margin-bottom: .25rem;
}
.password-form__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(4, 4, 5, .1);
}
.sell-field__hint {
  display: block;
  margin-top: .4rem;
  color: #888;
  font-size: .88rem;
}
.sell-models {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin-top: .75rem;
}
.sell-model {
  border: 1.5px solid rgba(4, 4, 5, .12);
  border-radius: 10px;
  padding: 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  background: #fff;
  transition: border-color .15s, background .15s;
}
.sell-model input { position: absolute; opacity: 0; pointer-events: none; }
.sell-model strong { color: #2d2d2d; }
.sell-model span:last-child { color: #777; font-size: .85rem; line-height: 1.4; }
.sell-model.is-selected,
.sell-model:has(input:checked) {
  border-color: #2d2d2d;
  background: rgba(45, 45, 45, .05);
}
.sell-form__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: .5rem;
  padding: .5rem 0 1rem;
}
.sell-form__back {
  color: #666;
  font-weight: 700;
  text-decoration: none;
}
.sell-form__back:hover { color: #2d2d2d; }
.sell-form__next {
  height: 46px;
  padding: 0 1.5rem;
  border-radius: 10px;
  font-weight: 700;
}

html.theme-dark .acc-welcome,
html.theme-dark .acc-balance-card,
html.theme-dark .acc-panel {
  background: #1a1a1a;
  border-color: hsla(0, 0%, 100%, .1);
}
html.theme-dark .acc-welcome__hello,
html.theme-dark .acc-balance-card__value,
html.theme-dark .acc-panel__title,
html.theme-dark .acc-sales-total,
html.theme-dark .sell-listing-head h1,
html.theme-dark .sell-card__toggle h2 { color: #fff; }
html.theme-dark .sell-card { background: #1a1a1a; border-color: hsla(0, 0%, 100%, .1); }
html.theme-dark .sell-card__toggle { background: #1a1a1a; }
html.theme-dark .sell-model { background: #1a1a1a; border-color: hsla(0, 0%, 100%, .12); }
html.theme-dark .sell-model.is-selected { background: rgba(255,255,255,.06); border-color: #aaa; }
html.theme-dark .sell-field input[type="text"],
html.theme-dark .sell-field input[type="password"],
html.theme-dark .sell-field input[type="email"],
html.theme-dark .sell-field input[type="tel"],
html.theme-dark .sell-field__control input {
  background: #141414;
  border-color: hsla(0,0%,100%,.14);
  color: #eee;
}
html.theme-dark .sell-field__eye { color: #888; }

@media (max-width: 991px) {
  .acc-balances,
  .acc-grid-2,
  .sell-models { grid-template-columns: 1fr; }
  .recharge-amounts { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .recharge-amounts { grid-template-columns: repeat(2, 1fr); }
  .notif-item { grid-template-columns: auto 1fr; }
  .notif-item time { grid-column: 2; }
}

/* —— Vendas / métricas / ferramentas / retiradas —— */
.acc-balance-card__sub {
  display: block;
  margin-top: .25rem;
  color: #888;
  font-size: .85rem;
  font-weight: 600;
}
.metrics-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
  margin: 1rem 0 1.15rem;
}
.metrics-card {
  background: #fff;
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}
.metrics-card__label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: #777;
  margin-bottom: .45rem;
}
.metrics-card strong {
  display: block;
  font-size: 1.35rem;
  color: #2d2d2d;
  margin-bottom: .35rem;
}
.metrics-card__hint { color: #999; font-size: .82rem; }
.metrics-chart {
  min-height: 220px;
  padding-top: .5rem;
}
.metrics-chart__bars {
  display: flex;
  align-items: flex-end;
  gap: .5rem;
  height: 180px;
}
.metrics-chart__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  gap: .4rem;
}
.metrics-chart__bar {
  width: 100%;
  max-width: 36px;
  background: #2d2d2d;
  border-radius: 4px 4px 0 0;
  min-height: 2px;
  opacity: .85;
}
.metrics-chart__col span {
  font-size: .72rem;
  color: #888;
  white-space: nowrap;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.tools-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .9rem;
  align-items: start;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.tools-card:hover {
  border-color: rgba(4, 4, 5, .22);
  box-shadow: 0 4px 16px rgba(4, 4, 5, .06);
}
.tools-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(45, 45, 45, .08);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.tools-card strong {
  display: block;
  margin-bottom: .3rem;
  color: #2d2d2d;
  font-size: 1.05rem;
}
.tools-card span { color: #777; font-size: .92rem; line-height: 1.45; }
.tools-card__chevron {
  color: #999;
  font-size: 1.4rem;
  line-height: 1;
}

.qm-search { margin-bottom: 1rem; }
.qm-search input {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(4, 4, 5, .14);
  border-radius: 8px;
  padding: 0 1rem;
  font: inherit;
}
.qm-list { display: flex; flex-direction: column; gap: .75rem; }
.qm-item strong { color: #2d2d2d; }
.qm-item p { margin: .35rem 0; color: #555; }
.qm-item__cat {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
}

body.qm-modal-open { overflow: hidden; }
.qm-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.qm-modal[hidden] { display: none !important; }
.qm-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 4, 5, .55);
  cursor: pointer;
}
.qm-modal__panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.35rem 1.35rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
}
.qm-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.qm-modal__head h2 {
  margin: 0;
  font-size: 1.25rem;
  color: #2d2d2d;
}
.qm-modal__x {
  border: 0;
  background: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #666;
}
.qm-shortcut {
  display: flex;
  align-items: center;
  gap: .35rem;
  border: 1px solid rgba(4, 4, 5, .14);
  border-radius: 8px;
  padding: 0 .85rem;
  height: 46px;
}
.qm-shortcut > span {
  color: #2d2d2d;
  font-weight: 800;
}
.qm-shortcut input {
  border: 0;
  outline: 0;
  flex: 1;
  height: 100%;
  font: inherit;
  background: transparent;
}
.qm-tip {
  background: rgba(45, 45, 45, .06);
  border-radius: 8px;
  padding: .65rem .8rem;
  margin-bottom: .55rem;
  font-size: .88rem;
  color: #555;
}
.qm-tip code {
  font-family: ui-monospace, monospace;
  font-weight: 700;
  color: #2d2d2d;
}
.qm-modal__form textarea {
  width: 100%;
  border: 1px solid rgba(4, 4, 5, .14);
  border-radius: 8px;
  padding: .75rem .9rem;
  font: inherit;
  resize: vertical;
  min-height: 110px;
}
.qm-textarea-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .35rem;
  color: #888;
  font-size: .85rem;
}
.qm-category { position: relative; }
.qm-category__btn {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(4, 4, 5, .14);
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.qm-category__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - .35rem);
  z-index: 5;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .16);
  overflow: hidden;
  padding: .35rem 0;
}
.qm-category__menu button {
  width: 100%;
  border: 0;
  background: none;
  text-align: left;
  padding: .75rem 1rem;
  font: inherit;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.qm-category__menu button:hover,
.qm-category__menu button.is-active { background: #f7f7f7; color: #2d2d2d; }
.qm-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: .65rem;
  margin-top: .5rem;
}
.qm-modal__save { background: #3a3a3a; }

.sim-panel { max-width: 480px; }
.sim-results {
  display: grid;
  gap: .65rem;
  margin-top: .5rem;
}
.sim-results > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem .9rem;
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 8px;
}
.sim-results span { color: #777; font-weight: 600; }
.sim-results strong { color: #2d2d2d; font-size: 1.05rem; }

html.theme-dark .metrics-card,
html.theme-dark .tools-card,
html.theme-dark .qm-modal__panel {
  background: #1a1a1a;
  border-color: hsla(0, 0%, 100%, .1);
}
html.theme-dark .metrics-card strong,
html.theme-dark .tools-card strong,
html.theme-dark .qm-modal__head h2 { color: #fff; }
html.theme-dark .qm-shortcut,
html.theme-dark .qm-category__btn,
html.theme-dark .qm-modal__form textarea,
html.theme-dark .qm-search input {
  background: #121212;
  border-color: hsla(0, 0%, 100%, .14);
  color: #eee;
}
html.theme-dark .qm-category__menu { background: #1e1e21; }

@media (max-width: 1100px) {
  .metrics-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
  .tools-grid { grid-template-columns: 1fr; }
  .metrics-cards { grid-template-columns: 1fr; }
}

/* —— Configuração / 2FA —— */
.account-sidebar__badge {
  display: inline-block;
  margin-left: .35rem;
  padding: .1rem .35rem;
  border-radius: 4px;
  background: #2d2d2d;
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  vertical-align: middle;
}
.cfg-tabs {
  display: flex;
  gap: .25rem;
  border-bottom: 1px solid rgba(4, 4, 5, .1);
  margin-bottom: 1.15rem;
}
.cfg-tabs button {
  border: 0;
  background: none;
  font: inherit;
  font-weight: 700;
  color: #888;
  padding: .7rem 1rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.cfg-tabs button.is-active {
  color: #2d2d2d;
  border-bottom-color: #2d2d2d;
}
.cfg-tabs__warn {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e2556a;
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  display: inline-grid;
  place-items: center;
}
.cfg-profile {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.cfg-profile__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
}
.cfg-profile__info strong {
  display: block;
  font-size: 1.15rem;
  color: #2d2d2d;
  margin-bottom: .2rem;
}
.cfg-profile__info a {
  display: inline-block;
  margin-bottom: .65rem;
  color: #2d2d2d;
  font-weight: 700;
  font-size: .9rem;
}
.cfg-profile__info p {
  margin: .2rem 0;
  color: #555;
}
.cfg-profile__info span {
  display: inline-block;
  min-width: 70px;
  color: #999;
  font-weight: 600;
}
.cfg-help { color: #777; margin: 0 0 1rem; font-size: .95rem; }
.cfg-actions { display: flex; justify-content: flex-end; }
.cfg-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 .85rem;
}
.cfg-form .acc-panel { margin-bottom: 1rem; }
.sell-field__label em { color: #e2556a; font-style: normal; }
.danger-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.danger-card {
  border-radius: 10px;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(4, 4, 5, .12);
}
.danger-card--warn { border-color: #f0b060; background: #fffaf3; }
.danger-card--danger { border-color: #f0a0ab; background: #fff5f6; }
.danger-card h3 { margin: 0 0 .5rem; color: #2d2d2d; }
.danger-card p { margin: 0 0 1rem; color: #666; font-size: .92rem; }
.danger-card__btn { width: 100%; justify-content: center; }
.danger-card__btn--warn { background: #e89a3c; color: #fff; }
.danger-card__btn--danger { background: #e2556a; color: #fff; }

.verify-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 1.15rem;
  width: 100%;
}
.verify-card {
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 12px;
  padding: 1.35rem 1.4rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
.verify-card__head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: .85rem;
}
.verify-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(45, 45, 45, .08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #2d2d2d;
}
.verify-card__head h3 {
  margin: 0;
  color: #2d2d2d;
  font-size: 1.05rem;
  line-height: 1.25;
}
.verify-card > h3 { margin: 0 0 .35rem; color: #2d2d2d; }
.verify-card > p,
.verify-card > ul {
  margin: 0 0 .85rem;
  color: #777;
  font-size: .94rem;
  line-height: 1.45;
}
.verify-card ul { padding-left: 1.1rem; }
.verify-card__status {
  font-weight: 700;
  margin: 0 0 .9rem;
  font-size: .9rem;
}
.verify-card__status.is-ok,
.verify-card .is-ok { color: #1f9d57; }
.verify-card__status.is-pending,
.verify-card .is-pending { color: #c77700; }
.verify-card .is-rejected { color: #e2556a; }
.verify-card > .btn,
.verify-card .verify-form .btn,
.verify-card .verify-inline > summary.btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.verify-form {
  display: grid;
  gap: .55rem;
  margin-top: .35rem;
  width: 100%;
}
.verify-form .sell-field {
  margin-bottom: 0;
  width: 100%;
}
.verify-form .sell-field input {
  width: 100%;
}
.verify-inline {
  margin-top: auto;
  width: 100%;
}
.verify-inline > summary {
  list-style: none;
  display: flex;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}
.verify-inline > summary::-webkit-details-marker { display: none; }
.verify-doc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 .85rem;
  display: grid;
  gap: .75rem;
  width: 100%;
}
.verify-doc-list li {
  color: #555;
  font-size: .92rem;
}
.verify-upload {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .5rem;
  align-items: center;
  margin-top: .4rem;
  width: 100%;
}
.verify-upload input[type="file"] {
  width: 100%;
  min-width: 0;
  font-size: .8rem;
}
.btn--sm {
  height: 34px;
  padding: 0 .85rem;
  font-size: .82rem;
}
.verify-security {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1.25rem;
  padding: 1.2rem 1.35rem;
  border-radius: 12px;
  border: 1px solid rgba(4, 4, 5, .1);
  background: #f7f8f7;
  width: 100%;
  box-sizing: border-box;
}
.verify-security__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(45, 45, 45, .08);
  color: #2d2d2d;
}
.verify-security--high {
  background: #f2faf5;
  border-color: #b7e4c7;
}
.verify-security--high .verify-security__icon {
  background: #d8f3e3;
  color: #1f9d57;
}
.verify-security--medium {
  background: #fffaf3;
  border-color: #f0d2a0;
}
.verify-security--medium .verify-security__icon {
  background: #fce9c8;
  color: #c77700;
}
.verify-security strong {
  display: block;
  color: #2d2d2d;
  margin-bottom: .25rem;
}
.verify-security p {
  margin: 0;
  color: #666;
  font-size: .92rem;
  line-height: 1.45;
}
.verify-security__pct {
  display: inline-block;
  margin-left: .35rem;
  font-weight: 700;
  color: #2d2d2d;
}
.cfg-details {
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 10px;
  padding: .9rem 1.15rem;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}
.cfg-details summary { cursor: pointer; font-weight: 700; color: #2d2d2d; }
.cfg-details p { margin: .65rem 0 0; color: #666; }

.twofa-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 1rem 1.15rem;
}
.twofa-status__on { color: #1f9d57; font-weight: 800; }
.twofa-status__off { color: #888; font-weight: 700; }
.twofa-status__remove { background: #e2556a; color: #fff; }
.cfg-tips {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}
.cfg-tips ul { margin: 0; padding-left: 1.15rem; color: #555; line-height: 1.7; }

.cfg-inline {
  display: flex;
  gap: .65rem;
  align-items: center;
}
.cfg-inline input {
  flex: 1;
  height: 44px;
  border: 1px solid rgba(4, 4, 5, .14);
  border-radius: 8px;
  padding: 0 1rem;
  font: inherit;
}
.cfg-toggles { display: flex; flex-direction: column; gap: .55rem; margin-top: 1rem; }
.cfg-toggles label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f7f7;
  border-radius: 8px;
  padding: .85rem 1rem;
  font-weight: 600;
  color: #444;
}
.cfg-toggles input { width: 42px; height: 22px; accent-color: #2d2d2d; }
.cfg-alert {
  background: #fff4e5;
  border-radius: 8px;
  padding: .75rem 1rem;
  color: #8a5a00;
  font-size: .92rem;
  margin-bottom: .85rem;
}
.cfg-tip--discord {
  background: rgba(45, 45, 45, .06);
  border-radius: 10px;
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
  color: #555;
}
.integ-card { margin-bottom: 1rem; }
.integ-card__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}
.integ-badge {
  flex-shrink: 0;
  font-size: .75rem;
  font-weight: 700;
  color: #888;
  background: #efefef;
  border-radius: 999px;
  padding: .25rem .65rem;
}

body.twofa-open { overflow: hidden; }
.twofa-modal {
  position: fixed;
  inset: 0;
  z-index: 13000;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.twofa-modal[hidden] { display: none !important; }
.twofa-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 4, 5, .55);
  cursor: pointer;
}
.twofa-modal__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem 1.5rem 1.35rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
}
.twofa-modal__x {
  position: absolute;
  top: .65rem;
  right: .85rem;
  border: 0;
  background: none;
  font-size: 1.5rem;
  color: #777;
  cursor: pointer;
}
.twofa-modal__panel h2 {
  margin: 0 0 .65rem;
  font-size: 1.35rem;
  color: #2d2d2d;
}
.twofa-modal__panel > p {
  margin: 0 0 1.25rem;
  color: #666;
  font-size: .95rem;
}
.twofa-code {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.twofa-code input {
  width: 44px;
  height: 52px;
  border: 1px solid rgba(4, 4, 5, .14);
  border-radius: 10px;
  background: #f5f5f5;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d2d2d;
}
.twofa-code input:focus {
  outline: 0;
  border-color: #2d2d2d;
  background: #fff;
}
.twofa-code__dash {
  color: #999;
  font-weight: 700;
  padding: 0 .15rem;
}
.twofa-modal__verify {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  font-weight: 800;
  margin-bottom: .85rem;
}
.twofa-modal__cancel {
  border: 0;
  background: none;
  color: #666;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.twofa-modal__hint {
  margin: .85rem 0 0 !important;
  font-size: .8rem !important;
  color: #999 !important;
}

html.theme-dark .twofa-modal__panel,
html.theme-dark .verify-card,
html.theme-dark .cfg-details { background: #1a1a1a; border-color: hsla(0,0%,100%,.1); }
html.theme-dark .twofa-modal__panel h2,
html.theme-dark .verify-card h3,
html.theme-dark .cfg-profile__info strong { color: #fff; }
html.theme-dark .twofa-code input { background: #121212; color: #fff; border-color: hsla(0,0%,100%,.14); }
html.theme-dark .twofa-status,
html.theme-dark .cfg-toggles label { background: #121212; }

@media (max-width: 800px) {
  .cfg-grid-2,
  .danger-grid,
  .verify-grid { grid-template-columns: 1fr; }
  .cfg-tips { flex-direction: column; }
}

/* —— Carrinho —— */
.cart-page {
  padding: 1.5rem 0 4rem;
}
.cart-page__shell { max-width: 1100px; }
.cart-page__title {
  margin: 1rem 0 1.5rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: #2d2d2d;
}
.cart-page__empty {
  padding: 2.5rem 1rem;
  text-align: center;
  color: #666;
}
.cart-page__empty .btn { margin-top: 1rem; }
.cart-page__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
  align-items: start;
}
.cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.cart-list__item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(4, 4, 5, .08);
}
.cart-list__item:last-child { border-bottom: 0; }
.cart-list__media img {
  width: 88px;
  height: 66px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.cart-list__title {
  color: #2d2d2d;
  font-weight: 700;
  text-decoration: none;
}
.cart-list__title:hover { text-decoration: underline; }
.cart-list__seller,
.cart-list__qty {
  margin: .25rem 0 0;
  color: #888;
  font-size: .88rem;
}
.cart-list__side {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .5rem;
}
.cart-list__price { color: #2d2d2d; font-size: 1.05rem; }
.cart-list__remove {
  border: 0;
  background: none;
  color: #c0392b;
  font: inherit;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
.cart-summary {
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 12px;
  padding: 1.25rem;
  background: #fff;
}
.cart-summary h2 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  margin: 0 0 1rem;
  font-size: 1.05rem;
}
.cart-summary__note {
  margin: 0 0 1rem;
  color: #888;
  font-size: .85rem;
  line-height: 1.4;
}
.cart-summary .btn { width: 100%; }
.cart-summary__clear { margin-top: .85rem; text-align: center; }
.link-btn {
  border: 0;
  background: none;
  color: #666;
  font: inherit;
  font-size: .88rem;
  cursor: pointer;
  text-decoration: underline;
}
.fav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fav-list__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: .85rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(4, 4, 5, .08);
}
.fav-list__item:last-child { border-bottom: 0; }
.fav-list__media img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.fav-list__body {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.fav-list__body a {
  color: #2d2d2d;
  font-weight: 700;
  text-decoration: none;
}
.fav-list__body a:hover { text-decoration: underline; }
.fav-list__body span { color: #888; font-size: .88rem; }

.auth-page__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.auth-page__form label {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-weight: 600;
  color: #2d2d2d;
}
.auth-page__form input {
  height: 44px;
  border: 1px solid rgba(4, 4, 5, .14);
  border-radius: 10px;
  padding: 0 .85rem;
  font: inherit;
}
.auth-page__error { color: #c0392b; font-weight: 600; }
.auth-page__ok { color: #15803d; font-weight: 600; }

html.theme-dark .cart-page__title,
html.theme-dark .cart-list__title,
html.theme-dark .cart-list__price,
html.theme-dark .fav-list__body a { color: #fff; }
html.theme-dark .cart-list,
html.theme-dark .cart-summary { background: #1a1a1a; border-color: hsla(0,0%,100%,.1); }

@media (max-width: 800px) {
  .cart-page__layout { grid-template-columns: 1fr; }
  .cart-list__item { grid-template-columns: 72px 1fr; }
  .cart-list__side {
    grid-column: 2;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
}
/* —— PWA native shell —— */
html.is-standalone,
html.is-standalone body {
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}
html.is-standalone body {
  /* iOS status bar translucent */
  background: var(--ep-bg);
}
html.is-standalone .site-header {
  padding-top: max(env(safe-area-inset-top, 0px), 0px);
}
html.is-standalone .site-footer .footer-bottom,
html.is-standalone .site-footer .footer-about p {
  font-size: .82rem;
}
@media (max-width: 767px) {
  html.is-standalone .site-footer {
    display: none;
  }
}

.listing-sticky-buy {
  display: none;
}

@media (max-width: 767px) {
  .listing-sticky-buy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: var(--ep-tabbar-h);
    z-index: 170;
    padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom, 0px) * 0);
    background: rgba(255, 255, 255, .94);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    backdrop-filter: saturate(180%) blur(16px);
    border-top: 1px solid rgba(4, 4, 5, .08);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, .06);
    transform: translateY(110%);
    transition: transform .28s cubic-bezier(.2, .8, .2, 1);
    pointer-events: none;
  }
  .listing-sticky-buy.is-visible {
    transform: translateY(0);
    pointer-events: auto;
  }
  .listing-sticky-buy__price {
    font-size: 1.15rem;
    font-weight: 800;
    color: #2d2d2d;
  }
  .listing-sticky-buy__btn {
    min-width: 140px;
    height: 44px;
    border-radius: 12px;
    font-weight: 800;
  }
  html.theme-dark .listing-sticky-buy {
    background: rgba(18, 18, 18, .94);
    border-top-color: hsla(0, 0%, 100%, .1);
  }
  html.theme-dark .listing-sticky-buy__price { color: #fff; }

  /* Auth / cookies como bottom sheet nativo */
  .auth-modal {
    place-items: end center;
    padding: 0;
  }
  .auth-modal__panel {
    width: 100%;
    max-width: 100%;
    border-radius: 18px 18px 0 0;
    max-height: min(92dvh, 920px);
    overflow: auto;
    padding: 1.35rem 1.15rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
    animation: epSheetUp .28s cubic-bezier(.2, .8, .2, 1);
  }
  .auth-modal__backdrop {
    background: rgba(0, 0, 0, .45);
  }
  .cookie-modal {
    place-items: end center;
    padding: 0;
  }
  .cookie-modal__panel {
    width: 100%;
    max-width: 100%;
    max-height: min(90dvh, 860px);
    border-radius: 18px 18px 0 0;
    margin: 0;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    animation: epSheetUp .28s cubic-bezier(.2, .8, .2, 1);
  }

  /* Conta: menu compacto sticky (estilo app) */
  .account-page__shell { padding-left: .75rem; padding-right: .75rem; }
  .account-sidebar {
    position: sticky;
    top: calc(var(--ep-header-h) + var(--ep-safe-top));
    z-index: 50;
    margin-bottom: 1rem;
    border-radius: 14px;
    max-height: min(42vh, 320px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .04);
  }
  .account-sidebar__link,
  .account-sidebar__toggle {
    min-height: 44px;
  }
  .account-content__header h1 {
    font-size: 1.45rem;
  }

  /* Cards e grids mais “app” */
  .category-tile,
  .category-card,
  .listing-card {
    border-radius: 12px;
  }
  .listing-card__media,
  .listing-card__media img {
    border-radius: 12px;
  }

  /* Mega / drawers full-bleed */
  .mobile-drawer__panel {
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  }
}

@keyframes epSheetUp {
  from { transform: translateY(24px); opacity: .6; }
  to { transform: translateY(0); opacity: 1; }
}

/* Install prompt */
.pwa-install {
  position: fixed;
  left: .75rem;
  right: .75rem;
  bottom: calc(var(--ep-tabbar-h, 0px) + .75rem);
  z-index: 190;
}
.pwa-install[hidden] { display: none !important; }
.pwa-install__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
  background: #fff;
  border: 1px solid rgba(4, 4, 5, .1);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .14);
  padding: .85rem 1rem;
}
.pwa-install__text {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
}
.pwa-install__text strong {
  font-size: .92rem;
  color: #2d2d2d;
}
.pwa-install__text span {
  font-size: .78rem;
  color: #777;
  line-height: 1.35;
}
.pwa-install__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .35rem;
  flex-shrink: 0;
}
.pwa-install__actions .btn {
  height: 36px;
  padding: 0 .9rem;
  font-size: .82rem;
  border-radius: 10px;
  white-space: nowrap;
}
.pwa-install__dismiss {
  border: 0;
  background: none;
  color: #888;
  font: inherit;
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  padding: .15rem;
}
html.theme-dark .pwa-install__inner {
  background: #1a1a1a;
  border-color: hsla(0, 0%, 100%, .12);
}
html.theme-dark .pwa-install__text strong { color: #fff; }

@media (min-width: 768px) {
  .pwa-install { display: none !important; }
}

/* Touch feedback global */
html.is-touch .btn:active,
html.is-touch .icon-btn:active,
html.is-touch .listing-card__fav:active,
html.is-touch .category-card:active {
  transform: scale(.97);
  opacity: .92;
}

/* Sell flow safe area */
.sell-body {
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  min-height: 100dvh;
}
html.is-standalone .sell-topbar {
  padding-top: .35rem;
}

/* Progress bar sob status bar */
.ep-progress {
  top: 0;
}
html.is-standalone .ep-progress {
  top: env(safe-area-inset-top, 0px);
}

/* —— Perfil público —— */
.profile-page {
  background: #f4f4f5;
  padding-bottom: 3.5rem;
  min-height: 60vh;
}
.profile-hero {
  background:
    radial-gradient(1200px 280px at 15% -40%, rgba(255,255,255,.12), transparent 60%),
    linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 55%, #3a3a3a 100%);
  color: #fff;
  padding: 1.75rem 0 1.9rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.profile-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.profile-hero__identity {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-width: 0;
}
.profile-hero__avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  background: #111;
  border: 3px solid rgba(255,255,255,.18);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}
.profile-hero__name-row {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
}
.profile-hero__name {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -.02em;
}
.profile-status {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 .55rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.profile-status.is-off {
  background: rgba(255,255,255,.12);
  color: #ddd;
}
.profile-status.is-on {
  background: rgba(34, 197, 94, .2);
  color: #86efac;
}
.profile-hero__edit {
  display: inline-block;
  margin-top: .45rem;
  color: #cfcfcf;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.profile-hero__edit:hover { color: #fff; }
.profile-hero__kpis {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.profile-kpi {
  min-width: 96px;
  padding: .75rem .9rem;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.profile-kpi strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
}
.profile-kpi span {
  display: block;
  margin-top: .15rem;
  font-size: .75rem;
  color: #bbb;
  font-weight: 600;
}

.profile-page__shell {
  margin-top: 1.35rem;
}
.profile-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
}
.profile-aside {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  position: sticky;
  top: calc(var(--ep-header-h, 64px) + .75rem);
}
.profile-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.profile-card {
  background: #fff;
  border: 1px solid rgba(4,4,5,.1);
  border-radius: 14px;
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: 0 1px 0 rgba(4,4,5,.03);
}
.profile-card__title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #2d2d2d;
}
.profile-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: .25rem;
}
.profile-card__head .profile-card__title { margin-bottom: 0; }

.profile-details {
  margin: 0;
  display: grid;
  gap: .85rem;
}
.profile-details > div {
  display: grid;
  gap: .15rem;
}
.profile-details dt {
  font-size: .8rem;
  color: #888;
  font-weight: 600;
}
.profile-details dd {
  margin: 0;
  font-size: .98rem;
  font-weight: 700;
  color: #2d2d2d;
}

.profile-verify {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .65rem;
}
.profile-verify li {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: .55rem;
  font-size: .92rem;
}
.profile-verify__icon {
  display: grid;
  place-items: center;
  color: #16a34a;
}
.profile-verify li.is-pending .profile-verify__icon { color: #999; }
.profile-verify__label { color: #333; font-weight: 600; }
.profile-verify strong {
  font-size: .82rem;
  color: #16a34a;
  font-weight: 700;
}
.profile-verify li.is-pending strong { color: #999; }

.profile-report {
  display: inline-block;
  margin: .15rem .25rem 0;
  color: #2563eb;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}
.profile-report:hover { text-decoration: underline; }

.profile-filter select {
  height: 38px;
  border: 1px solid rgba(4,4,5,.14);
  border-radius: 10px;
  padding: 0 .75rem;
  background: #fff;
  font: inherit;
  font-size: .88rem;
  font-weight: 600;
  color: #333;
  max-width: 100%;
}

.profile-rep {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 1rem;
}
.profile-rep__item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .95rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(4,4,5,.1);
  background: #fafafa;
}
.profile-rep__item span { display: block; font-size: .82rem; color: #777; font-weight: 600; }
.profile-rep__item strong { display: block; font-size: 1.35rem; font-weight: 800; color: #2d2d2d; line-height: 1.1; }
.profile-rep__icon { display: grid; place-items: center; flex-shrink: 0; }
.profile-rep__item--pos .profile-rep__icon { color: #16a34a; }
.profile-rep__item--neu .profile-rep__icon { color: #888; font-weight: 800; letter-spacing: .08em; }
.profile-rep__item--neg .profile-rep__icon { color: #dc2626; }

.profile-reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
.profile-review {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .75rem;
  padding: 1rem;
  border: 1px solid rgba(4,4,5,.1);
  border-radius: 12px;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.profile-review:hover {
  border-color: rgba(45,45,45,.2);
  box-shadow: 0 8px 22px rgba(4,4,5,.06);
}
.profile-review__body p {
  margin: 0 0 .45rem;
  color: #444;
  font-size: .95rem;
  line-height: 1.45;
}
.profile-review__listing {
  display: inline-block;
  margin-bottom: .55rem;
  color: #2563eb;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.35;
}
.profile-review__listing:hover { text-decoration: underline; }
.profile-review__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .75rem;
  font-size: .8rem;
  color: #888;
}
.profile-review__meta a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}
.profile-review__meta a:hover { text-decoration: underline; }
.profile-review__thumb {
  align-self: start;
  margin-top: .15rem;
}
.profile-review__thumb.is-pos { color: #16a34a; }
.profile-review__thumb.is-neg { color: #dc2626; }
.profile-review__thumb.is-neu { color: #888; font-weight: 800; }

.profile-empty {
  margin: .25rem 0 0;
  color: #777;
  font-size: .95rem;
}
.listing-grid--profile {
  margin-top: .35rem;
}

html.theme-dark .profile-page { background: #0f0f10; }
html.theme-dark .profile-card {
  background: #1a1a1a;
  border-color: hsla(0,0%,100%,.1);
}
html.theme-dark .profile-card__title,
html.theme-dark .profile-details dd,
html.theme-dark .profile-rep__item strong { color: #fff; }
html.theme-dark .profile-rep__item {
  background: #121212;
  border-color: hsla(0,0%,100%,.1);
}
html.theme-dark .profile-review {
  background: #121212;
  border-color: hsla(0,0%,100%,.1);
}
html.theme-dark .profile-review__body p { color: #ccc; }
html.theme-dark .profile-filter select {
  background: #121212;
  color: #eee;
  border-color: hsla(0,0%,100%,.14);
}

@media (max-width: 991px) {
  .profile-layout { grid-template-columns: 1fr; }
  .profile-aside { position: static; }
  .profile-reviews { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .profile-hero { padding: 1.25rem 0 1.4rem; }
  .profile-hero__avatar { width: 68px; height: 68px; }
  .profile-hero__kpis { width: 100%; }
  .profile-kpi { flex: 1; min-width: 0; }
  .profile-rep { grid-template-columns: 1fr; }
  .profile-card { padding: 1rem; border-radius: 12px; }
}

/* —— Cart modal (checkout flow) —— */
body.cart-modal-open { overflow: hidden; }
.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 10040;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.cart-modal[hidden] { display: none !important; }
.cart-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 4, 5, .55);
  cursor: pointer;
}
.cart-modal__panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(88vh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  padding: 1.35rem 1.4rem 1.4rem;
  font-family: Mulish, sans-serif;
}
.cart-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}
.cart-modal__head h2 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 800;
  color: #2d2d2d;
  letter-spacing: -0.02em;
}
.cart-modal__close {
  border: 0;
  background: transparent;
  color: #2d2d2d;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 8px;
  flex-shrink: 0;
}
.cart-modal__close:hover { background: #f3f3f4; }
.cart-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.cart-modal__card {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.9rem 2.25rem 0.9rem 0.9rem;
  background: #f5f5f6;
  border-radius: 12px;
}
.cart-modal__trash {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  border: 0;
  background: transparent;
  color: #9a9a9e;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 6px;
  padding: 0;
}
.cart-modal__trash:hover { color: #dc2626; background: rgba(0,0,0,.04); }
.cart-modal__media {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #e8e8ea;
}
.cart-modal__media img {
  width: 76px;
  height: 58px;
  object-fit: cover;
  display: block;
}
.cart-modal__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.cart-modal__title {
  color: #2d2d2d;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.35;
  padding-right: 0.5rem;
}
.cart-modal__title:hover { text-decoration: underline; }
.cart-modal__unit {
  font-size: 0.82rem;
  color: #888;
  font-weight: 600;
}
.cart-modal__card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.55rem;
}
.cart-modal__sub {
  color: #2d2d2d;
  font-size: 1.05rem;
  font-weight: 800;
}
.cart-modal__stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(4,4,5,.12);
  background: #fff;
}
.cart-modal__stepper button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 0;
  background: #e8e8ea;
  color: #2d2d2d;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  display: grid;
  place-items: center;
  padding: 0;
}
.cart-modal__stepper button:hover {
  background: #dddde0;
}
.cart-modal__stepper button:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.cart-modal__stepper button[data-cart-inc] {
  background: #2d2d2d;
  color: #fff;
}
.cart-modal__stepper button[data-cart-inc]:hover:not(:disabled) {
  background: #1a1a1a;
}
.cart-modal__stepper input {
  width: 40px;
  height: 32px;
  border: 0;
  border-radius: 0;
  text-align: center;
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  color: #2d2d2d;
  background: #fff;
  -moz-appearance: textfield;
}
.cart-modal__stepper input::-webkit-outer-spin-button,
.cart-modal__stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-modal__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 0.25rem;
}
.cart-modal__total {
  display: grid;
  gap: 0.1rem;
}
.cart-modal__total span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: #999;
}
.cart-modal__total strong {
  font-size: 1.5rem;
  color: #2d2d2d;
  font-weight: 800;
}
.cart-modal__checkout {
  min-width: 168px;
  min-height: 46px;
  border-radius: 10px !important;
}
.cart-modal__checkout.is-loading {
  pointer-events: none;
  background: #222 !important;
}
[data-buy-slug].is-busy {
  opacity: .7;
  pointer-events: none;
}
.cart-checkout-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: cartSpin .7s linear infinite;
  margin-right: .4rem;
  vertical-align: -3px;
}
@keyframes cartSpin { to { transform: rotate(360deg); } }
.cart-modal__empty {
  text-align: center;
  padding: 2rem 1rem;
  color: #666;
  font-weight: 600;
}
.cart-modal__empty .btn { margin-top: 1rem; }
@media (max-width: 520px) {
  .cart-modal__panel { padding: 1.1rem 1rem 1.15rem; }
  .cart-modal__foot {
    flex-direction: column;
    align-items: stretch;
  }
  .cart-modal__checkout { width: 100%; }
}
