:root {
  --bg: #070707;
  --bg-soft: #0d0d0d;
  --card: #121212;
  --card-2: #171717;
  --panel: #0b0b0b;
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.065);
  --line-strong: rgba(214, 168, 79, 0.42);
  --text: #ffffff;
  --muted: #b8b8b8;
  --muted-2: #777777;
  --gold: #d6a84f;
  --gold-2: #f1d27a;
  --gold-deep: #8a651d;
  --danger: #ff6b6b;
  --success: #77d48b;
  --radius: 8px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  --sidebar: 286px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(112deg, rgba(214, 168, 79, 0.11) 0, transparent 29rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 31rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  color-scheme: dark;
  transition: color 260ms ease, background-color 260ms ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 62%);
  z-index: -1;
}

body[data-theme="light"] {
  --bg: #f6f1e7;
  --bg-soft: #eee5d6;
  --card: #fffaf0;
  --card-2: #ffffff;
  --panel: #fff7e8;
  --line: rgba(34, 28, 18, 0.14);
  --line-soft: rgba(34, 28, 18, 0.09);
  --line-strong: rgba(154, 106, 24, 0.38);
  --text: #14110c;
  --muted: #625a4e;
  --muted-2: #8b8173;
  --gold: #bd8a27;
  --gold-2: #7d5818;
  --gold-deep: #67440d;
  --shadow: 0 24px 70px rgba(55, 38, 16, 0.14);
  color-scheme: light;
}

body[data-theme="light"] {
  background:
    linear-gradient(112deg, rgba(214, 168, 79, 0.22) 0, transparent 29rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), transparent 34rem),
    var(--bg);
}

body[data-theme="light"]::before {
  background-image:
    linear-gradient(rgba(44, 32, 14, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 32, 14, 0.045) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.46), transparent 62%);
}

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  background: var(--gold);
  color: #111;
  padding: 10px 14px;
  border-radius: var(--radius);
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

.theme-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 75;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    var(--card);
  box-shadow: var(--shadow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.theme-toggle::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(214, 168, 79, 0.14);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: var(--line-strong);
  outline: 0;
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
}

.mobile-menu-backdrop {
  display: none;
}

.hidden {
  display: none !important;
}

[data-admin-only][hidden] {
  display: none !important;
}

.user-account-button {
  position: fixed;
  top: 18px;
  right: 126px;
  z-index: 75;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 12px 6px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    var(--card);
  box-shadow: var(--shadow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: 180ms ease;
}

.user-account-button:hover,
.user-account-button:focus-visible {
  border-color: var(--line-strong);
  outline: 0;
  transform: translateY(-1px);
}

.user-account-avatar,
.profile-avatar-large {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  color: #0a0a0a;
  background: linear-gradient(145deg, var(--gold-2), var(--gold));
  font-weight: 950;
  text-transform: uppercase;
}

.user-account-avatar {
  width: 28px;
  height: 28px;
  font-size: 0.82rem;
}

.user-account-avatar img,
.profile-avatar-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
}

.user-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
}

.user-modal-card {
  position: relative;
  width: min(520px, calc(100vw - 28px));
  max-height: min(760px, calc(100vh - 28px));
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    var(--card);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.55);
}

.user-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.user-modal-close:hover,
.user-modal-close:focus-visible {
  color: var(--text);
  border-color: var(--line-strong);
  outline: 0;
}

.user-modal-head {
  padding-right: 42px;
}

.user-modal-head span,
.profile-summary span {
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.user-modal-head h2,
.profile-summary h2 {
  margin: 8px 0 8px;
  font-size: clamp(1.8rem, 5vw, 2.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.user-modal-head p,
.profile-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.user-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 20px 0 16px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.user-auth-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.user-auth-tabs button.active,
.user-auth-tabs button:hover,
.user-auth-tabs button:focus-visible {
  color: #0a0a0a;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  outline: 0;
}

.user-auth-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.user-auth-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.user-auth-panel label.full,
.user-auth-panel .full,
.user-feedback {
  grid-column: 1 / -1;
}

.user-auth-panel input[type="file"] {
  padding: 10px;
}

.user-feedback {
  min-height: 20px;
  margin: 0;
  color: var(--gold-2);
  font-size: 0.86rem;
  font-weight: 800;
}

.profile-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.profile-avatar-large {
  width: 78px;
  height: 78px;
  border: 1px solid rgba(214, 168, 79, 0.36);
  box-shadow: 0 14px 34px rgba(214, 168, 79, 0.18);
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar);
  max-width: var(--sidebar);
  padding: 22px 18px 18px;
  border-right: 1px solid rgba(214, 168, 79, 0.16);
  background:
    linear-gradient(180deg, rgba(214, 168, 79, 0.08), transparent 24%),
    rgba(7, 7, 7, 0.94);
  backdrop-filter: blur(20px);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 18px 0 60px rgba(0, 0, 0, 0.34);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(214, 168, 79, 0.46) rgba(255, 255, 255, 0.04);
  contain: paint;
}

.sidebar::-webkit-scrollbar {
  width: 7px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(214, 168, 79, 0.44);
  border-radius: 999px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 6px 8px 16px;
  border-bottom: 1px solid var(--line-soft);
}

.brand-mark {
  width: 92px;
  height: 36px;
  max-width: 92px;
  min-width: 92px;
  flex: 0 0 92px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.brand-logo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  padding: 0;
}

.brand strong {
  display: block;
  font-size: 1.28rem;
  letter-spacing: 0.12em;
  min-width: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.76rem;
}

.side-nav {
  display: grid;
  gap: 5px;
  width: 100%;
  min-width: 0;
}

.side-nav a {
  min-height: 38px;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--muted);
  border: 1px solid transparent;
  transition: 180ms ease;
  font-size: 0.94rem;
  font-weight: 720;
  overflow-wrap: anywhere;
}

.side-nav a span {
  width: 30px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  border: 1px solid rgba(214, 168, 79, 0.2);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
}

.side-nav a:hover,
.side-nav a:focus-visible,
.side-nav a.active {
  color: var(--text);
  background: linear-gradient(90deg, rgba(214, 168, 79, 0.14), rgba(255, 255, 255, 0.045));
  border-color: rgba(214, 168, 79, 0.18);
  outline: 0;
}

.side-nav a:hover,
.side-nav a:focus-visible {
  transform: translateX(3px);
}

.side-nav a.active {
  box-shadow: inset 3px 0 0 var(--gold), 0 12px 26px rgba(0, 0, 0, 0.22);
}

.side-nav a.active span {
  color: #090909;
  background: var(--gold-2);
  border-color: transparent;
}

.sidebar-status {
  width: 100%;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.sidebar-status span {
  display: block;
  color: var(--gold-2);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.sidebar-status strong {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.35;
}

.side-cta {
  width: 100%;
  min-width: 0;
  margin-top: 0;
  padding: 14px;
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(241, 210, 122, 0.18), rgba(255, 255, 255, 0.035) 54%),
    #101010;
  border: 1px solid var(--line-strong);
}

.side-cta p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.35;
}

.mobile-nav {
  display: none;
}

.shell {
  margin-left: var(--sidebar);
  width: calc(100% - var(--sidebar));
  min-height: 100vh;
}

.section-pad {
  padding: 74px clamp(24px, 5vw, 72px);
}

#produtos,
#promocoes,
#servicos,
.store-catalog {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(115deg, rgba(214, 168, 79, 0.055), transparent 36%),
    rgba(255, 255, 255, 0.012);
}

.hero {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  padding-top: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(132deg, rgba(214, 168, 79, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 58%);
}

.hero-copy {
  min-width: 0;
  max-width: 100%;
}

.hero-brand-lockup {
  width: clamp(128px, 12vw, 188px);
  aspect-ratio: 1028 / 293;
  height: auto;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  animation: wee-brand-enter 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-brand-lockup img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  max-width: none;
  padding: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 210, 122, 0.48), transparent);
  pointer-events: none;
}

.eyebrow,
.section-header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.eyebrow::before,
.section-header span::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin: 18px 0 16px;
  max-width: 820px;
  font-size: 6.2rem;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-title-line {
  display: block;
  width: fit-content;
  transform-origin: 50% 86%;
  animation: wee-title-hop 820ms cubic-bezier(0.18, 0.82, 0.26, 1) both;
  will-change: transform, opacity;
}

.hero-title-main {
  animation-delay: 90ms;
}

.hero h1 .hero-title-accent {
  color: var(--gold);
  animation-delay: 210ms;
}

@keyframes wee-title-hop {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  42% {
    opacity: 1;
    transform: translateY(-10px) scale(1.025);
  }

  62% {
    transform: translateY(4px) scale(0.995);
  }

  78% {
    transform: translateY(-3px) scale(1.006);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes wee-brand-enter {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes wee-search-enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wee-preview-enter {
  from {
    opacity: 0;
    transform: translateX(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes wee-preview-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes wee-modal-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-line {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero-copy > p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.26rem);
  line-height: 1.55;
}

.search-panel {
  width: min(740px, 100%);
  margin-top: 24px;
  padding: 16px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(214, 168, 79, 0.22);
  box-shadow: var(--shadow);
  position: relative;
  animation: wee-search-enter 680ms 280ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.search-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--gold), rgba(241, 210, 122, 0.28), transparent);
}

.search-panel:focus-within {
  border-color: var(--line-strong);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), 0 0 0 3px rgba(214, 168, 79, 0.1);
}

.search-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.search-head span {
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-head strong {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
}

.search-panel label {
  display: block;
  margin: 0 0 10px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 850;
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 164px;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.44);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  outline: 0;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-2) 50%), linear-gradient(135deg, var(--gold-2) 50%, transparent 50%);
  background-position: calc(100% - 18px) 20px, calc(100% - 12px) 20px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.62);
  box-shadow: 0 0 0 3px rgba(214, 168, 79, 0.2);
}

.search-panel input {
  min-height: 58px;
  font-size: 1rem;
  padding-inline: 16px;
}

.search-panel .button {
  min-height: 58px;
}

.search-helper {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.quick-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.quick-searches button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 750;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.quick-searches button:hover,
.quick-searches button:focus-visible {
  color: #111;
  background: var(--gold-2);
  outline: 0;
  transform: translateY(-2px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid transparent;
  transition: 180ms ease;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button-gold {
  color: #0a0a0a;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 28px rgba(214, 168, 79, 0.22);
}

.button-gold::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -45% auto -45% -42%;
  width: 28%;
  transform: skewX(-22deg);
  background: rgba(255, 255, 255, 0.38);
  transition: transform 420ms ease;
}

.button-gold:hover::after,
.button-gold:focus-visible::after {
  transform: translateX(540%) skewX(-22deg);
}

.button-light {
  color: #111;
  background: #fff;
}

.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.button-danger {
  color: #7a160f;
  background: rgba(194, 43, 31, 0.08);
  border-color: rgba(194, 43, 31, 0.28);
}

.button-small {
  min-height: 38px;
  width: 100%;
  padding: 9px 11px;
  font-size: 0.88rem;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(214, 168, 79, 0.18);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 0 0 3px rgba(214, 168, 79, 0.18), 0 18px 34px rgba(214, 168, 79, 0.25);
}

.hero-visual {
  min-height: 420px;
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  max-width: 420px;
  justify-self: end;
  animation: wee-preview-enter 760ms 220ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-preview {
  position: relative;
  width: min(420px, 100%);
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(214, 168, 79, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.026)),
    rgba(12, 12, 12, 0.9);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
  overflow: hidden;
  animation: wee-preview-float 7s 1.1s ease-in-out infinite;
}

.hero-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.64), transparent 76%);
}

.preview-topline,
.preview-search-card,
.preview-list {
  position: relative;
  z-index: 1;
}

.preview-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.preview-topline span,
.preview-search-card span,
.preview-item span {
  color: var(--gold-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
}

.preview-topline strong {
  color: var(--text);
  font-size: 0.88rem;
}

.preview-search-card {
  min-height: 132px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62)),
    url("https://images.unsplash.com/photo-1426927308491-6380b6a9936f?auto=format&fit=crop&w=900&q=82") center/cover;
  overflow: hidden;
}

.preview-search-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1.04;
}

.preview-search-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.preview-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.preview-item {
  min-height: 82px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  transition: 180ms ease;
}

.preview-item.featured {
  border-color: var(--line-strong);
  background: linear-gradient(90deg, rgba(214, 168, 79, 0.14), rgba(255, 255, 255, 0.055));
}

.preview-item:hover {
  transform: translateX(3px);
  border-color: rgba(214, 168, 79, 0.28);
}

.preview-item img {
  width: 74px;
  height: 62px;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.preview-item strong,
.preview-item small {
  display: block;
}

.preview-item strong {
  margin: 4px 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.16;
}

.preview-item small {
  color: var(--muted);
  font-size: 0.84rem;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.section-header.compact {
  display: block;
}

.section-header.compact > div {
  margin-bottom: clamp(14px, 1.4vw, 22px);
}

.section-header h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-header p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section-header.compact p {
  margin-top: 0;
}

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

.category-card,
.product-card,
.company-card,
.promo-card,
.request-panel,
.sell-panel,
.result-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.024)),
    var(--card);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.category-card {
  min-height: 252px;
  padding: 16px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  text-align: left;
  color: var(--text);
  transition: 180ms ease;
  position: relative;
  overflow: hidden;
}

.category-image {
  position: relative;
  display: block;
  height: 96px;
  margin: -4px -4px 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
}

.category-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.4)),
    linear-gradient(90deg, rgba(214, 168, 79, 0.18), transparent 48%);
}

.category-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
  transition: 220ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: auto 14px 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: 180ms ease;
}

.category-card:hover,
.category-card:focus-visible {
  border-color: var(--line-strong);
  background:
    linear-gradient(150deg, rgba(214, 168, 79, 0.16), rgba(255, 255, 255, 0.035) 62%),
    var(--card-2);
  transform: translateY(-3px);
  outline: 0;
}

.category-card:hover::after,
.category-card:focus-visible::after {
  opacity: 1;
}

.category-card:hover .category-image img,
.category-card:focus-visible .category-image img {
  transform: scale(1.04);
}

.category-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
}

.category-icon {
  display: none !important;
}

.category-action {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.category-card h3,
.product-card h3,
.company-card h3,
.promo-card h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.15;
}

.category-card p,
.product-card p,
.company-card p,
.promo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.category-count {
  color: var(--gold-2);
  font-weight: 800;
  font-size: 0.9rem;
}

.offer-loop {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  overflow: hidden;
}

.offer-loop-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.offer-loop-head span {
  flex: 0 0 auto;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-loop-head h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
}

.offer-loop-head p {
  max-width: 620px;
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.offer-loop-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.offer-loop-track {
  width: max-content;
  display: flex;
  gap: 14px;
  padding: 2px 0 8px;
  animation: offer-marquee 46s linear infinite;
}

.offer-loop:hover .offer-loop-track,
.offer-loop:focus-within .offer-loop-track {
  animation-play-state: paused;
}

.offer-loop-card {
  width: 292px;
  min-height: 156px;
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(214, 168, 79, 0.13), rgba(255, 255, 255, 0.04) 56%),
    var(--card);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.offer-loop-card[aria-hidden="true"] {
  pointer-events: none;
}

.offer-loop-media {
  position: relative;
  min-height: 136px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.045);
}

.offer-loop-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.offer-loop-media small {
  position: absolute;
  left: 8px;
  bottom: 8px;
  max-width: calc(100% - 16px);
  padding: 5px 7px;
  border-radius: 999px;
  color: #111;
  background: var(--gold-2);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-loop-body {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 6px;
}

.offer-loop-body > span {
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-loop-body strong {
  color: var(--text);
  line-height: 1.12;
}

.offer-loop-body small {
  color: var(--muted);
  line-height: 1.25;
}

.offer-loop-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 2px;
}

.offer-loop-price b {
  color: var(--gold-2);
  font-size: 1.08rem;
}

.offer-loop-price em {
  color: var(--muted-2);
  font-size: 0.78rem;
  text-decoration: line-through;
  font-style: normal;
}

.offer-loop-detail {
  width: fit-content;
  min-height: 34px;
  margin-top: 4px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.78rem;
  font-weight: 900;
}

.offer-loop-detail:hover,
.offer-loop-detail:focus-visible {
  color: #111;
  background: var(--gold-2);
  border-color: transparent;
  outline: 0;
}

@keyframes offer-marquee {
  to {
    transform: translateX(-50%);
  }
}

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

.results-section.is-hidden {
  display: none;
}

.results-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.results-toolbar span {
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.results-toolbar h2 {
  margin: 6px 0 0;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  line-height: 1.1;
}

.results-toolbar p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.filters-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 10px;
  margin-bottom: 14px;
  padding: 8px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.filters-bar select,
.filters-bar button {
  min-height: 42px;
}

.empty-state {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
}

.empty-state strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.empty-state.hidden {
  display: none;
}

.results-grid,
.product-grid,
.company-grid,
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card,
.company-card,
.promo-card,
.result-card {
  padding: 16px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 220ms ease, box-shadow 260ms ease;
}

.product-card::before,
.company-card::before,
.promo-card::before,
.result-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 18px auto;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-2), var(--gold), transparent);
  transition: transform 260ms ease;
  pointer-events: none;
}

.product-card:hover,
.company-card:hover,
.promo-card:hover,
.result-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 168, 79, 0.26);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.32);
}

.product-card:hover::before,
.company-card:hover::before,
.promo-card:hover::before,
.result-card:hover::before,
.product-card:focus-within::before,
.company-card:focus-within::before,
.promo-card:focus-within::before,
.result-card:focus-within::before {
  transform: scaleX(1);
}

.product-card.is-promo,
.promo-card,
.result-card.is-promo {
  border-color: rgba(214, 168, 79, 0.24);
}

.product-media,
.promo-media,
.result-media {
  position: relative;
  height: 172px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.2), rgba(255, 255, 255, 0.045)),
    linear-gradient(45deg, transparent 0 48%, rgba(255, 255, 255, 0.055) 49% 51%, transparent 52%);
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 12px;
  overflow: hidden;
}

.product-media::after,
.promo-media::after,
.result-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 22%, rgba(0, 0, 0, 0.56)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 52%);
  pointer-events: none;
}

.result-media {
  height: 148px;
  margin: -4px -4px 0;
}

.media-token {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.46);
  border: 1px solid var(--line);
  color: var(--gold-2);
  font-weight: 900;
  font-size: 1.35rem;
}

.product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 1px);
  border: 0;
  box-shadow: none;
  filter: saturate(0.95) contrast(1.08);
  transition: 220ms ease;
}

.media-label {
  display: none !important;
}

.media-label small {
  display: none !important;
}

.media-label .badge {
  display: none !important;
}

.product-card:hover .product-image,
.promo-card:hover .product-image,
.result-card:hover .product-image {
  transform: scale(1.065);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
}

.badge.gold {
  color: #111;
  background: var(--gold-2);
  border-color: transparent;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
}

.price {
  color: var(--gold-2);
  font-size: 1.28rem;
  font-weight: 900;
}

.old-price {
  color: var(--muted-2);
  text-decoration: line-through;
}

.card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 8px;
}

.company-card {
  min-height: 326px;
  padding: 19px;
}

.company-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.company-logo {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #d9d9d9);
  color: #080808;
  font-weight: 900;
}

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

.company-meta,
.product-meta-line {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.product-meta-line strong,
.company-meta strong {
  color: var(--text);
}

.company-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.trending-list {
  display: grid;
  gap: 10px;
}

.trending-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(214, 168, 79, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.trending-item:hover {
  border-color: rgba(214, 168, 79, 0.24);
  transform: translateX(6px);
  background:
    linear-gradient(90deg, rgba(214, 168, 79, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.035);
}

.rank {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--gold);
  color: #111;
  font-weight: 900;
}

.trending-item strong {
  display: block;
}

.trending-item span,
.metric-note {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 18px;
  align-items: start;
}

.form-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(18, 18, 18, 0.9);
  border: 1px solid var(--line-soft);
}

.form-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: lowercase;
}

.form-card .full {
  grid-column: 1 / -1;
}

.form-feedback {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--success);
  font-weight: 800;
}

.request-panel,
.sell-panel {
  padding: 20px;
}

.request-panel h3,
.sell-panel strong {
  margin: 0 0 14px;
  font-size: 1.34rem;
}

.urgent-list {
  display: grid;
  gap: 10px;
}

.urgent-card {
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.urgent-card strong {
  display: block;
  margin-bottom: 5px;
}

.urgent-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.urgent-card .button {
  width: 100%;
  margin-top: 10px;
}

.sell-panel li {
  color: var(--muted);
  line-height: 1.5;
}

.sell-panel ul {
  margin: 0;
  padding-left: 18px;
}

.footer {
  padding: 28px clamp(24px, 5vw, 72px) 90px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer strong {
  color: var(--text);
  margin-right: 10px;
}

body.detail-open {
  overflow: hidden;
}

.product-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 22px;
}

.product-detail-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(12px);
}

.product-detail-card {
  position: relative;
  width: min(1120px, calc(100vw - 28px));
  max-height: min(820px, calc(100vh - 28px));
  overflow: auto;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  color: var(--text);
  background:
    linear-gradient(140deg, rgba(214, 168, 79, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    var(--card);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.58);
}

.product-detail-modal:not(.hidden) .product-detail-card,
.user-modal:not(.hidden) .user-modal-card {
  animation: wee-modal-enter 300ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.product-detail-close {
  position: sticky;
  top: 0;
  z-index: 3;
  float: right;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin: 0 0 8px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.product-detail-close:hover,
.product-detail-close:focus-visible {
  color: var(--text);
  border-color: var(--line-strong);
  outline: 0;
}

.product-detail-layout {
  clear: both;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 18px;
}

.product-detail-gallery {
  min-width: 0;
}

.detail-main-media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.16), rgba(255, 255, 255, 0.04)),
    var(--bg-soft);
}

.detail-main-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  display: block;
  object-fit: cover;
}

.detail-main-media > span {
  min-height: 440px;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-size: 5rem;
  font-weight: 900;
}

.detail-media-badge {
  display: none !important;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.detail-thumbs button {
  height: 84px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.detail-thumbs button.active,
.detail-thumbs button:hover,
.detail-thumbs button:focus-visible {
  border-color: var(--line-strong);
  outline: 0;
}

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

.product-detail-info {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 14px;
}

.detail-kicker,
.detail-related > span {
  color: var(--gold-2);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail-info h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.detail-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.detail-price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.detail-price-box span,
.detail-info-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-price-box strong {
  display: block;
  margin-top: 4px;
  color: var(--gold-2);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.detail-price-box small {
  color: var(--muted-2);
  text-decoration: line-through;
}

.detail-price-box em {
  padding: 7px 9px;
  border-radius: 999px;
  color: #111;
  background: var(--gold-2);
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-company-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.detail-company-box strong {
  display: block;
}

.detail-company-box p {
  margin: 4px 0 0;
  color: var(--muted);
}

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

.detail-info-grid div,
.detail-benefits {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.detail-info-grid strong {
  display: block;
  margin-top: 6px;
  line-height: 1.25;
}

.detail-benefits strong {
  display: block;
  margin-bottom: 8px;
}

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

.detail-actions {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
}

.detail-related {
  clear: both;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

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

.detail-related-grid article {
  display: grid;
  gap: 7px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.detail-related-grid img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 1px);
}

.detail-related-grid small {
  color: var(--muted);
}

.detail-related-grid b {
  color: var(--gold-2);
}

.detail-related-grid button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 900;
}

.detail-related-grid button:hover,
.detail-related-grid button:focus-visible {
  color: #111;
  background: var(--gold-2);
  border-color: transparent;
  outline: 0;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: #fff;
  color: #111;
  font-weight: 800;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: 180ms ease;
  z-index: 80;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

body[data-theme="light"] .sidebar {
  background:
    linear-gradient(180deg, rgba(214, 168, 79, 0.16), transparent 30%),
    rgba(255, 250, 240, 0.94);
  box-shadow: 18px 0 60px rgba(58, 41, 16, 0.13);
}

body[data-theme="light"] .sidebar-status,
body[data-theme="light"] .urgent-card {
  background: rgba(255, 255, 255, 0.6);
}

body[data-theme="light"] .side-cta {
  background:
    linear-gradient(140deg, rgba(214, 168, 79, 0.22), rgba(255, 255, 255, 0.74) 54%),
    #fff7e8;
}

body[data-theme="light"] .hero {
  background:
    linear-gradient(132deg, rgba(214, 168, 79, 0.11), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), transparent 60%);
}

body[data-theme="light"] .brand-mark,
body[data-theme="light"] .hero-brand-lockup {
  background: #050505;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(28, 20, 6, 0.16);
  overflow: hidden;
  box-sizing: border-box;
}

body[data-theme="light"] .brand-mark {
  width: 92px;
  height: 38px;
  padding: 0;
  place-items: center;
}

body[data-theme="light"] .brand-mark .brand-logo {
  width: 78%;
  height: auto;
  max-height: 68%;
  margin: auto;
}

body[data-theme="light"] .hero-brand-lockup {
  width: clamp(150px, 14vw, 216px);
  aspect-ratio: 3 / 1;
  padding: 0;
  place-items: center;
}

body[data-theme="light"] .hero-brand-lockup img {
  width: 82%;
  height: auto;
  max-height: 70%;
  margin: auto;
}

body[data-theme="light"] .search-panel,
body[data-theme="light"] .hero-preview,
body[data-theme="light"] .form-card,
body[data-theme="light"] .user-modal-card,
body[data-theme="light"] .product-detail-card,
body[data-theme="light"] .offer-loop-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 240, 0.72)),
    var(--card);
  border-color: rgba(154, 106, 24, 0.2);
}

body[data-theme="light"] .user-account-button {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 240, 0.72)),
    var(--card);
}

body[data-theme="light"] .user-modal-backdrop {
  background: rgba(26, 20, 10, 0.34);
}

body[data-theme="light"] input,
body[data-theme="light"] select,
body[data-theme="light"] textarea {
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
}

body[data-theme="light"] input:focus,
body[data-theme="light"] select:focus,
body[data-theme="light"] textarea:focus {
  background: #ffffff;
}

body[data-theme="light"] .quick-searches button,
body[data-theme="light"] .filters-bar,
body[data-theme="light"] .empty-state,
body[data-theme="light"] .badge,
body[data-theme="light"] .trending-item {
  background: rgba(255, 255, 255, 0.62);
}

body[data-theme="light"] .button-gold {
  color: #111;
  background: linear-gradient(180deg, #f1d27a, #bd8a27);
}

body[data-theme="light"] .badge.gold,
body[data-theme="light"] .side-nav a.active span,
body[data-theme="light"] .quick-searches button:hover,
body[data-theme="light"] .quick-searches button:focus-visible {
  color: #111;
  background: #f1d27a;
}

body[data-theme="light"] .preview-item {
  background: rgba(255, 255, 255, 0.62);
}

body[data-theme="light"] .preview-search-card p {
  color: rgba(255, 255, 255, 0.82);
}

body[data-theme="light"] .product-media,
body[data-theme="light"] .promo-media,
body[data-theme="light"] .result-media {
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.2), rgba(255, 255, 255, 0.66)),
    linear-gradient(45deg, transparent 0 48%, rgba(134, 93, 18, 0.07) 49% 51%, transparent 52%);
}

body[data-theme="light"] .product-media::after,
body[data-theme="light"] .promo-media::after,
body[data-theme="light"] .result-media::after {
  background:
    linear-gradient(180deg, transparent 20%, rgba(20, 17, 12, 0.44)),
    linear-gradient(90deg, rgba(255, 250, 240, 0.08), transparent 52%);
}

body[data-theme="light"] .media-token {
  color: #fff;
  background: rgba(18, 15, 10, 0.68);
  border-color: rgba(255, 255, 255, 0.24);
}

body[data-theme="light"] .media-label {
  display: none !important;
}

body[data-theme="light"] .media-label small {
  display: none !important;
}

body[data-theme="light"] .media-label .badge {
  display: none !important;
}

body[data-theme="light"] .mobile-nav {
  background:
    linear-gradient(180deg, rgba(214, 168, 79, 0.18), rgba(255, 255, 255, 0.72)),
    rgba(255, 250, 240, 0.94);
}

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

.store-hero {
  min-height: 540px;
  padding-top: 92px;
  background:
    linear-gradient(132deg, rgba(214, 168, 79, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 62%);
  border-bottom: 1px solid var(--line-soft);
}

.store-back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.store-back-link:hover,
.store-back-link:focus-visible {
  color: var(--gold-2);
  outline: 0;
}

.store-identity {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: clamp(26px, 4vw, 58px);
}

.store-logo-large {
  width: 190px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  color: var(--gold-2);
  background: #080808;
  box-shadow: var(--shadow);
  font-size: 3rem;
  font-weight: 900;
}

.store-logo-large img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 14px;
}

.store-identity-copy {
  min-width: 0;
}

.store-identity-copy h1,
.store-not-found h1 {
  max-width: 920px;
  margin: 10px 0 12px;
  font-size: clamp(3.6rem, 7vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.store-identity-copy > strong {
  display: block;
  color: var(--gold-2);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
}

.store-identity-copy > p,
.store-not-found p {
  max-width: 720px;
  margin: 16px 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
}

.store-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.store-loading {
  color: var(--muted);
  font-weight: 800;
}

.store-not-found {
  grid-column: 1 / -1;
  max-width: 820px;
}

.store-catalog {
  min-height: 520px;
}

.store-catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.store-catalog-head h2 {
  margin: 9px 0 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.store-catalog-head p {
  margin: 12px 0 0;
  color: var(--muted);
}

.store-tabs {
  display: inline-grid;
  grid-template-columns: repeat(3, auto);
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.store-tabs button {
  min-height: 38px;
  padding: 8px 13px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
}

.store-tabs button:hover,
.store-tabs button:focus-visible,
.store-tabs button.active {
  color: #111;
  background: var(--gold-2);
  outline: 0;
}

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

.store-empty {
  grid-column: 1 / -1;
  min-height: 220px;
  display: grid;
  place-content: center;
  gap: 7px;
  padding: 28px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  text-align: center;
}

.store-empty p {
  margin: 0;
  color: var(--muted);
}

.store-product-detail-card {
  width: min(980px, calc(100vw - 28px));
}

body[data-theme="light"] .store-hero {
  background:
    linear-gradient(132deg, rgba(214, 168, 79, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), transparent 68%);
}

body[data-theme="light"] .store-tabs {
  background: rgba(255, 255, 255, 0.68);
}

body[data-theme="light"] #produtos,
body[data-theme="light"] #promocoes,
body[data-theme="light"] #servicos,
body[data-theme="light"] .store-catalog {
  background:
    linear-gradient(115deg, rgba(189, 138, 39, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.28);
}

.store-logo-large {
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 300ms ease;
}

.store-logo-large:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 0 34px 74px rgba(0, 0, 0, 0.34);
}

.wee-motion-enabled .motion-section {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wee-motion-enabled .motion-section.is-motion-visible {
  opacity: 1;
  transform: translateY(0);
}

.wee-motion-enabled .motion-item {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 560ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.wee-motion-enabled .motion-item.is-motion-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1520px) {
  .hero h1 {
    font-size: 5.8rem;
  }
}

@media (max-width: 1320px) {
  .category-grid,
  .results-grid,
  .product-grid,
  .company-grid,
  .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1 {
    font-size: 5.2rem;
  }

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

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

  .detail-main-media,
  .detail-main-media img,
  .detail-main-media > span {
    min-height: 360px;
  }
}

@media (max-width: 1180px) {
  :root {
    --sidebar: 0px;
  }

  body {
    padding-top: 58px;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .mobile-menu-button {
    position: fixed;
    top: 12px;
    left: 14px;
    z-index: 95;
    width: 42px;
    height: 42px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 13px;
    color: var(--text);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
      var(--card);
    box-shadow: var(--shadow);
  }

  .mobile-menu-button span {
    width: 19px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: 180ms ease;
  }

  .mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 78;
    display: block;
    background: rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(4px);
  }

  .mobile-menu-backdrop[hidden] {
    display: none;
  }

  .sidebar {
    width: min(312px, calc(100vw - 34px));
    max-width: min(312px, calc(100vw - 34px));
    transform: translateX(calc(-100% - 20px));
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
    z-index: 90;
  }

  body.mobile-menu-open .sidebar {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .shell,
  .footer {
    margin-left: 0;
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
    min-height: auto;
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 880px) {
  body {
    padding-bottom: 0;
  }

  .mobile-nav {
    display: none;
  }

  .section-pad {
    padding: 48px 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 34px;
    gap: 20px;
  }

  .hero-brand-lockup {
    width: clamp(118px, 34vw, 154px);
    aspect-ratio: 1028 / 293;
    height: auto;
    margin-bottom: 14px;
    border-radius: 16px;
  }

  body[data-theme="light"] .hero-brand-lockup {
    width: clamp(142px, 42vw, 176px);
    aspect-ratio: 3 / 1;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 16vw, 4.2rem);
    letter-spacing: 0;
    max-width: calc(100vw - 54px);
  }

  .search-row,
  .filters-bar,
  .split-section,
  .form-card {
    grid-template-columns: 1fr;
  }

  .search-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .section-header {
    display: block;
  }

  .store-hero {
    min-height: auto;
    padding-top: 42px;
  }

  .store-back-link {
    margin-bottom: 24px;
  }

  .store-identity {
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
  }

  .store-logo-large {
    width: 112px;
    border-radius: 14px;
  }

  .store-logo-large img {
    padding: 9px;
  }

  .store-identity-copy h1,
  .store-not-found h1 {
    font-size: clamp(2.8rem, 12vw, 4.3rem);
  }

  .store-catalog-head {
    align-items: start;
    flex-direction: column;
  }

  .results-toolbar {
    display: block;
  }

  .results-toolbar p {
    margin-top: 8px;
  }

  .section-header p {
    margin-top: 12px;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .offer-loop-head {
    display: block;
  }

  .offer-loop-head span {
    display: block;
    margin-bottom: 8px;
  }

  .detail-info-grid,
  .detail-actions,
  .detail-related-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-card {
    padding: 14px;
  }
}

@media (max-width: 620px) {
  .theme-toggle {
    top: 10px;
    right: auto;
    left: 66px;
    min-height: 34px;
    padding: 7px 9px;
    font-size: 0.68rem;
  }

  .theme-toggle::before {
    display: none;
  }

  .user-account-button {
    top: 10px;
    right: 18px;
    max-width: calc(100vw - 128px);
    min-height: 34px;
    padding: 5px 9px 5px 5px;
    font-size: 0.68rem;
  }

  .user-account-avatar {
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
  }

  .user-modal {
    align-items: end;
    padding: 10px;
  }

  .user-modal-card {
    width: 100%;
    max-height: calc(100vh - 20px);
    padding: 20px;
    border-radius: 16px;
  }

  .user-auth-panel {
    grid-template-columns: 1fr;
  }

  .profile-summary {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .results-grid,
  .product-grid,
  .company-grid,
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .store-identity {
    grid-template-columns: 1fr;
  }

  .store-logo-large {
    width: 104px;
  }

  .store-identity-copy h1,
  .store-not-found h1 {
    font-size: clamp(2.65rem, 14vw, 3.7rem);
  }

  .store-hero-actions,
  .store-hero-actions .button {
    width: 100%;
  }

  .store-tabs {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .store-tabs button {
    min-width: 0;
    padding-inline: 7px;
  }

  .offer-loop-card {
    width: 268px;
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .offer-loop-media {
    min-height: 126px;
  }

  .product-detail-modal {
    align-items: end;
    padding: 10px;
  }

  .product-detail-card {
    width: 100%;
    max-height: calc(100vh - 20px);
    border-radius: 16px;
  }

  .detail-main-media,
  .detail-main-media img,
  .detail-main-media > span {
    min-height: 270px;
  }

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

  .hero {
    padding-bottom: 24px;
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.78rem, 15vw, 3.15rem);
  }

  .hero-visual {
    display: none;
  }

  .search-panel {
    margin-top: 16px;
    padding: 15px;
    width: calc(100vw - 54px);
    max-width: calc(100vw - 54px);
    inline-size: calc(100vw - 54px);
  }

  .search-panel input,
  .search-panel .button {
    min-height: 54px;
  }

  .hero-actions {
    width: calc(100vw - 54px);
    max-width: calc(100vw - 54px);
    inline-size: calc(100vw - 54px);
    margin-top: 14px;
  }

  #categorias {
    padding-top: 36px;
  }

  .trending-item {
    grid-template-columns: 44px 1fr;
  }

  .trending-item .button {
    grid-column: 1 / -1;
  }

  .toast {
    left: 16px;
    right: 16px;
    bottom: 84px;
  }
}

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

  .offer-loop-track {
    animation: none !important;
  }
}
