/* ─────────────────────────────────────────────────────────────────
   LE VAULT — Homepage stylesheet
   Font: DM Sans 400/700 + Bebas Neue | Palette: #000 / #fff / #CCFF00
───────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
  --color-accent-pink: #FF2D6B;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "DM Sans", sans-serif;
  background: #fff;
  color: #000;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Background glows — homepage only (styles.css not shared) ── */
.lv-bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.lv-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* TOP RIGHT — large green glow */
.lv-glow-1 {
  width: 800px;
  height: 800px;
  top: -300px;
  right: -200px;
  background: radial-gradient(circle at center,
    rgba(204, 255, 0, 0.18) 0%,
    rgba(204, 255, 0, 0.08) 40%,
    transparent 70%);
}

/* BOTTOM LEFT — large pink glow */
.lv-glow-2 {
  width: 700px;
  height: 700px;
  bottom: -100px;
  left: -200px;
  background: radial-gradient(circle at center,
    rgba(255, 45, 107, 0.15) 0%,
    rgba(255, 45, 107, 0.06) 40%,
    transparent 70%);
}

/* CENTER RIGHT — mid green glow */
.lv-glow-3 {
  width: 500px;
  height: 500px;
  top: 45%;
  right: -100px;
  background: radial-gradient(circle at center,
    rgba(204, 255, 0, 0.10) 0%,
    transparent 65%);
}

/* CENTER LEFT — mid pink glow */
.lv-glow-4 {
  width: 450px;
  height: 450px;
  top: 30%;
  left: -100px;
  background: radial-gradient(circle at center,
    rgba(255, 45, 107, 0.08) 0%,
    transparent 65%);
}

/* ── Status bar ──────────────────────────────────────────────── */
.status-bar {
  position: relative;
  z-index: 1;
  background: #fff;
  color: #000;
  border-bottom: 1px solid #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccff00;
  flex-shrink: 0;
}

/* ── Header ──────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0 48px;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #000;
}

.brand {
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  font-family: 'Bebas Neue', sans-serif;
  flex-shrink: 0;
}

/* ── Header buttons — shared base ── */
.header-sign-in,
.header-cta,
#headerCta {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 20px;
  height: 38px;
  border-radius: 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-width: 148px;
  flex-shrink: 0;
  box-sizing: border-box;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

/* SIGN IN → outline style */
.header-sign-in {
  background: transparent;
  color: #000;
  border: 1.5px solid #000;
  text-decoration: none;
  margin-left: auto;
  margin-right: 10px;
}
.header-sign-in:hover {
  background: #000;
  color: #fff;
}

/* APPLY FOR MEMBERSHIP → filled style */
.header-cta,
#headerCta {
  background: #000;
  color: #fff;
  border: 1.5px solid #000;
}
.header-cta:hover,
#headerCta:hover {
  background: #ccff00;
  color: #000;
  border-color: #ccff00;
}

/* When sign-in is hidden (logged-in), push avatar CTA to the right */
#headerSignIn.is-hidden {
  display: none !important;
}
#headerSignIn.is-hidden ~ #headerCta {
  margin-left: auto;
}

/* ── Inbox icon ── */
.icon-mail {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #1A1A18;
  text-decoration: none;
  flex-shrink: 0;
  margin-left: 4px;
}

.inbox-badge {
  background: #E5265A;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  right: -2px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;
  pointer-events: none;
}

/* Language selector centered in the main nav */
.nav > .lv-lang-selector {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  flex-shrink: 0;
}

/* ── Header avatar (logged-in) ── */
.header-cta.is-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  padding: 0;
  background: transparent;
  border: 1.5px solid #000;
  border-radius: 0;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-cta.is-avatar:hover {
  background: #000;
  color: #fff;
}

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

/* ── Combined category + filter bar ─────────────────────────── */
.nav-filter-bar {
  position: relative;
  background: #FFFFFF;
  border-bottom: 1px solid #EEEEEE;
  z-index: 55;
  display: flex;
  align-items: center;
  padding: 0 48px;
  overflow: visible;
}

.nav-filter-sep {
  width: 1px;
  height: 16px;
  background: #EEEEEE;
  flex-shrink: 0;
  margin: 0 20px;
}

.category-nav {
  display: flex;
  align-items: center;
  height: 44px;
  gap: 0;
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-nav::-webkit-scrollbar { display: none; }

.category-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #AAAAAA;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 14px;
  height: 44px;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.14s, border-bottom-color 0.14s;
  flex-shrink: 0;
}

.category-link.is-active {
  color: #1A1A18;
  border-bottom-color: #1A1A18;
}

.category-link:hover { color: #1A1A18; }

/* ── Subcategory dropdown ────────────────────────────────────── */
.subcategory-bar {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #000;
  border-top: 2px solid #000;
  border-radius: 0;
  z-index: 100;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.subcategory-bar.dropdown-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.subcategory-bar.dropdown-closing {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.subcategory-track {
  padding: 8px 0;
}

.subcategory-link {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  border-left: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: #999;
  padding: 12px 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.12s ease, padding-left 0.12s ease, color 0.12s ease;
}

.subcategory-link:hover {
  border-left-color: #ccff00;
  padding-left: 22px;
  color: #000;
}

.subcategory-link.is-active {
  border-left-color: #FF2D6B;
  padding-left: 22px;
  color: #000;
}

.category-link.dropdown-is-open {
  color: #000;
}

/* ── Hero section ────────────────────────────────────────────── */
.hero-section {
  position: relative;
  z-index: 1;
  padding: 80px 48px 64px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left {
  word-break: break-word;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 20px;
}

.hero-headline {
  margin: 0;
}

.hl-solid,
.hl-pink {
  display: block;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.92;
  text-transform: uppercase;
}

.hl-solid {
  color: #000;
}

.hl-pink {
  color: #FF2D6B;
}

.hero-sep {
  width: 60px;
  height: 2px;
  background: #FF2D6B;
  margin: 24px 0;
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  white-space: nowrap;
  max-width: none;
}

/* ── Pillars (hero right) ── */
.hero-right {}

.pillar-stack {
  display: flex;
  flex-direction: column;
}

.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-left: 3px solid transparent;
  transition: border-left-color 0.2s ease, padding-left 0.2s ease;
}

.pillar:first-child {
  border-top: none;
  padding-top: 0;
}

@media (hover: hover) and (pointer: fine) {
  .pillar:hover {
    border-left-color: #ccff00;
    padding-left: 13px;
  }
}

.pillar-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #FF2D6B;
  min-width: 20px;
  padding-top: 2px;
  flex-shrink: 0;
  font-family: "DM Sans", sans-serif;
}

.pillar-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 4px;
}

.pillar-body {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ── Search bar ──────────────────────────────────────────────── */
.search-bar-wrap {
  position: relative;
  z-index: 60;
  background: #FFFFFF;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  display: flex;
  align-items: center;
  padding: 14px 48px;
  gap: 16px;
}

#vaultSearchInput {
  flex: 1;
  border: none;
  border-bottom: 1.5px solid #C8F135;
  outline: none;
  background: transparent;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #000;
  padding-bottom: 6px;
}

#vaultSearchInput::placeholder {
  color: #AAAAAA;
  font-weight: 300;
}

.vault-search-submit {
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}
.vault-search-submit:hover svg { stroke: #000 !important; }

.search-icon-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.search-icon-sep {
  width: 1px;
  height: 14px;
  background: #DDDDDD;
  flex-shrink: 0;
}

.vault-image-search {
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}
.vault-image-search:hover svg { stroke: #666 !important; }

/* ── Featured relics section ── */
.archival-section {
  position: relative;
  z-index: 1;
  background: #fafafa;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 100%;
  padding: 48px 48px 0;
}

.archival-inner {
  max-width: none;
  margin: 0;
  padding: 0;
}

.archival-head {
  margin-bottom: 0;
}

.archival-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}

.archival-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #000;
  line-height: 1.1;
}

.archival-sep {
  width: 100%;
  height: 1px;
  background: #000;
  margin: 24px 0 32px;
}

/* ── Main grid section ───────────────────────────────────────── */
.main-section {
  position: relative;
  z-index: 1;
  padding: 48px 48px 80px;
}

.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 32px;
}
/* When inside .grid-head the margin is controlled by grid-head */
.grid-head > .section-eyebrow { margin-bottom: 0; }

/* Section dimming (subcategory hover) */
.section.is-dimmed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  pointer-events: none;
  z-index: 2;
}

/* ── Item grid ───────────────────────────────────────────────── */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
}

/* Featured section gets a 4-column fixed grid */
.archival-section .store-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 0;
}

.store-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.store-item {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
}

.card-img-wrap {
  position: relative;
  display: block;
}

.card-img-missing {
  aspect-ratio: 3 / 4;
  background: #f4f4f4;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.card-img-missing::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  border: 1.5px solid #ccc;
  border-radius: 0;
}

.card-img-missing::after {
  content: "NO IMAGE";
  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #bbb;
  text-transform: uppercase;
}

.card-featured-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #000;
  color: #ccff00;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 0;
  pointer-events: none;
  z-index: 1;
}

.store-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .store-link:hover .store-item img {
    transform: scale(1.03);
  }
}

.store-item-body {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-item-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 4px;
}

.store-item-name {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.price {
  font-size: 15px;
  font-weight: 700;
  color: #000;
}

.condition-badge {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid #000;
  background: transparent;
  border-radius: 0;
  margin-top: 8px;
}

.featured-badge {
  display: inline-block;
  background: #000;
  color: #ccff00;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 0;
  margin-top: 4px;
}

.card-relic-tag {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E5265A;
  margin-top: 6px;
}

.card-seller {
  display: block;
  font-size: 11px;
  color: #999;
  margin-top: 4px;
  text-decoration: none;
}

.card-seller:hover {
  color: #000;
  text-decoration: underline;
}

/* Hidden (JS compatibility) */
.store-item-action {
  display: none;
}

/* ── Empty state ─────────────────────────────────────────────── */
.store-empty {
  grid-column: 1 / -1;
  padding: 80px 0;
  text-align: center;
}

.store-empty h3,
.store-empty .empty-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.store-empty p,
.store-empty .empty-sub {
  font-size: 13px;
  color: #999;
}

.empty-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccff00;
  box-shadow: 0 0 8px #ccff00;
  flex-shrink: 0;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  background: #080808;
  border-top: 1px solid #1c1c1c;
  padding: 64px 6vw 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid #1c1c1c;
}

.footer-col--brand {
  padding-right: 24px;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
}

.footer-tagline {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #444;
  margin: 0 0 6px;
}

.footer-tagline-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2e2e2e;
  margin: 0;
}

.footer-col-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #555;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1c1c1c;
}

.footer-nav-link {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  text-decoration: none;
  margin-bottom: 11px;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

.footer-nav-link:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
}

.footer-secure {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ccff00;
  flex-shrink: 0;
}

.footer-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ccff00;
  box-shadow: 0 0 8px rgba(204, 255, 0, 0.7);
  flex-shrink: 0;
}

.footer-cnpj {
  font-size: 10px;
  color: #2e2e2e;
  letter-spacing: 0.05em;
  text-align: center;
  flex: 1;
  margin: 0;
}

/* Footer social icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.footer-social a {
  display: flex;
  color: #555;
  transition: color 0.15s;
  line-height: 0;
}
.footer-social a:hover { color: #C8F135; }

/* Footer lang selector overrides for dark bg */
.footer-lang-slot .lv-lang-btn {
  color: #555 !important;
}
.footer-lang-slot .lv-lang-btn:hover {
  color: #fff !important;
}
.footer-lang-slot .lv-lang-dropdown {
  background: #111 !important;
  border-color: #2a2a2a !important;
  bottom: calc(100% + 8px);
  top: auto !important;
}
.footer-lang-slot .lv-lang-option {
  color: #777 !important;
}
.footer-lang-slot .lv-lang-option:hover {
  background: #fff !important;
  color: #000 !important;
}

/* ── Sold relics section ─────────────────────────────────────── */
.sold-relics-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.store-item--sold {
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .store-item--sold img {
    transform: none !important;
  }
  .store-link:has(.store-item--sold):hover .store-item-brand,
  .store-link:has(.store-item--sold):hover .store-item-name {
    color: #999;
    border-bottom: none;
    padding-bottom: 0;
  }
}

.sold-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.38);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sold-overlay-label {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #fff;
  text-transform: uppercase;
}

.sold-overlay-line {
  width: 24px;
  height: 1px;
  background: #ccff00;
}

.store-item-body--sold .store-item-brand,
.store-item-body--sold .store-item-name,
.store-item-body--sold .price {
  color: #bbb;
}

.store-item-body--sold .price {
  text-decoration: line-through;
  text-decoration-color: #999;
}

/* ── Own-listing note (item page) ────────────────────────────── */
.item-own-listing-note {
  font-size: 12px;
  color: #999;
  font-style: italic;
  margin-bottom: 8px;
}

.item-manage-link {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 1px;
}

.item-login-hint {
  margin-top: 10px;
  font-size: 11px;
  color: #999;
  letter-spacing: 0.04em;
}

/* ── Image search overlay ────────────────────────────────────── */
.vault-drop-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.vault-drop-overlay[hidden] {
  display: none !important;
}

.vault-drop-card {
  width: min(680px, 100%);
  background: #fff;
  border: 1px dashed #ccff00;
  border-radius: 0;
  padding: 26px;
  display: grid;
  gap: 12px;
  position: relative;
}

.vault-drop-dismiss {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid #000;
  border-radius: 0;
  background: #fff;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
}

.vault-drop-dismiss:hover {
  background: #000;
  color: #fff;
}

.vault-drop-overlay.is-dragover .vault-drop-card {
  border-style: solid;
  box-shadow: 0 0 0 1px #ccff00 inset;
}

.vault-drop-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
}

.vault-drop-card input {
  border: 1px solid #000;
  border-radius: 0;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  font: inherit;
  width: 100%;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero-section {
    padding: 48px 24px 40px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-subtitle {
    max-width: none;
    white-space: normal;
  }

  .hero-left {
    min-width: 0;
  }

  .search-bar-wrap {
    padding: 0 24px;
  }

  .archival-section {
    padding: 40px 24px 0;
  }

  .archival-section .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-section {
    padding: 40px 24px 60px;
  }

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

  .site-footer {
    padding: 48px 24px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
    border-bottom: 1px solid #1c1c1c;
    padding-bottom: 28px;
    margin-bottom: 4px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-cnpj {
    text-align: left;
  }

  /* ── Nav mobile ── */
  .nav {
    padding: 0 16px;
    height: 56px;
    gap: 6px;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .brand {
    font-size: 11px;
    flex-shrink: 0;
  }

  .header-sign-in,
  .header-cta,
  #headerCta {
    min-width: unset;
    padding: 0 12px;
    font-size: 8px;
    letter-spacing: 0.1em;
    height: 44px;
    white-space: nowrap;
  }

  /* Shorten "APPLY FOR MEMBERSHIP →" to "APPLY →" via CSS — CTA stays visible */
  #headerCta:not(.is-avatar) {
    font-size: 0 !important;
    letter-spacing: 0 !important;
  }
  #headerCta:not(.is-avatar)::after {
    content: "APPLY \2192";
    font-family: 'DM Sans', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .nav > .lv-lang-selector {
    position: static;
    transform: none;
    margin-left: auto;
    flex-shrink: 0;
  }

  .header-sign-in {
    margin-left: auto;
    margin-right: 4px;
  }

  /* ── Hero — prevent text overflow ── */
  .hero-subtitle,
  .hero-copy,
  .hero-section p {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* ── Status bar mobile ── */
  .status-bar {
    font-size: 8px;
    letter-spacing: 0.1em;
    padding: 8px 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* ── Profile tabs — scroll horizontal ── */
  .profile-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .profile-tabs::-webkit-scrollbar { display: none; }
  .profile-tab {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 10px;
    padding: 10px 14px;
  }

  /* ── Hero slogans — scale down clamp minimums for narrow viewports ──
     Desktop clamp() values have minimums too large for 360-430px screens.
     Base covers: slogan3 (.hl-pink) all languages + slogan1/2 in PT.
     Per-language rules override slogan1 and slogan2 where needed. ── */
  .hl-solid,
  .hl-pink {
    font-size: clamp(26px, 11vw, 48px);
  }

  /* EN: TIMELESS./SELECTED./VERIFIED. — 9 chars, can be bolder */
  html[lang="en"] [data-slogan="1"],
  html[lang="en"] [data-slogan="2"],
  html[lang="en"] [data-slogan="3"] {
    font-size: clamp(32px, 14vw, 56px);
  }

  /* FR: INTEMPOREL.(11), SÉLECTIONNÉ.(12), CERTIFIÉ.(9) */
  html[lang="fr"] [data-slogan="1"] { font-size: clamp(26px, 11.5vw, 46px); }
  html[lang="fr"] [data-slogan="2"] { font-size: clamp(24px, 10.5vw, 42px); }
  html[lang="fr"] [data-slogan="3"] { font-size: clamp(30px, 13vw, 52px); }

  /* IT: SENZA TEMPO.(12+space), SELEZIONATO.(12), CERTIFICATO.(12) */
  html[lang="it"] [data-slogan="1"],
  html[lang="it"] [data-slogan="2"],
  html[lang="it"] [data-slogan="3"] { font-size: clamp(24px, 10.5vw, 42px); }

  /* ES: INTEMPORAL.(11), SELECCIONADO.(13), VERIFICADO.(11) */
  html[lang="es"] [data-slogan="1"],
  html[lang="es"] [data-slogan="3"] { font-size: clamp(26px, 11.5vw, 46px); }
  html[lang="es"] [data-slogan="2"] { font-size: clamp(22px, 9.5vw, 38px); }

  /* PT: ATEMPORAL.(10), SELECIONADO.(12), VERIFICADO.(11) — covered by base */
}

@media (min-width: 641px) and (max-width: 1024px) {
  .hero-inner {
    gap: 40px;
  }

  .archival-section .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 1025px) and (max-width: 1400px) {
  .store-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ── Per-language hero typography ───────────────────────────────────── */

/* All three slogan lines: consistent line-height */
[data-slogan] {
  line-height: 0.92;
}

/* EN — short words, full size */
html[lang="en"] [data-slogan="1"],
html[lang="en"] [data-slogan="2"] {
  font-size: clamp(56px, 8vw, 96px);
  letter-spacing: -0.03em;
}

/* FR — mixed lengths */
html[lang="fr"] [data-slogan="1"] {
  font-size: clamp(48px, 6.5vw, 84px);
  letter-spacing: -0.03em;
}
html[lang="fr"] [data-slogan="2"] {
  font-size: clamp(52px, 7vw, 88px);
  letter-spacing: -0.03em;
}

/* IT — long compound words */
html[lang="it"] [data-slogan="1"] {
  font-size: clamp(40px, 5.5vw, 68px);
  letter-spacing: -0.04em;
}
html[lang="it"] [data-slogan="2"] {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.04em;
}

/* ES — long words */
html[lang="es"] [data-slogan="1"] {
  font-size: clamp(48px, 6.5vw, 84px);
  letter-spacing: -0.03em;
}
html[lang="es"] [data-slogan="2"] {
  font-size: clamp(32px, 4.5vw, 60px);
  letter-spacing: -0.04em;
}

/* Neon dot to the left of the search bar */
.search-neon-dot {
  width: 6px;
  height: 6px;
  background: #ccff00;
  flex-shrink: 0;
  align-self: center;
  border-radius: 50%;
}

/* ── Featured section — light editorial ── */
.archival-section .archival-eyebrow {
  color: #999;
}

.archival-section .archival-title {
  color: #000;
}

.archival-section .archival-sep {
  background: #ccff00;
  width: 60px;
  height: 2px;
}

.archival-section .store-item {
  background: #fff;
  border: 1px solid #eee;
}

.archival-section .store-item-brand {
  color: #999;
}

.archival-section .store-item-name {
  color: #000;
}

.archival-section .price {
  color: #000;
}

.archival-section .featured-badge {
  background: #000;
  color: #ccff00;
}

.archival-section .store-item img {
  transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .archival-section .store-link:hover .store-item {
    border-color: #000;
  }

  .archival-section .store-link:hover .store-item img {
    transform: scale(1.03);
  }
}

/* ── Item grid — card hover personality ─────────────────────── */
.store-link {
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .store-link:hover .store-item-brand {
    color: #000;
    transition: color 0.2s ease;
  }

  .store-link:hover .store-item-name {
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
    transition: border-bottom 0.2s ease, padding-bottom 0.2s ease;
  }

  .store-link:hover .price::before {
    content: '● ';
    color: #ccff00;
    font-size: 8px;
    margin-right: 2px;
  }
}


/* ── Scroll animations ───────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade"] {
  transform: none;
}

[data-animate="left"] {
  transform: translateX(-24px);
}

[data-animate="right"] {
  transform: translateX(24px);
}

[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }

/* ── Marketplace filter bar ──────────────────────────────────── */
/* ── Filter buttons ─────────────────────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  padding: 10px 0;
  gap: 8px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}
.filter-bar::-webkit-scrollbar { display: none; }

.filter-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 32px;
  padding: 0 12px;
  border: 1px solid #1A1A18;
  background: #FFFFFF;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1A1A18;
  white-space: nowrap;
  user-select: none;
  flex-shrink: 0;
  box-sizing: border-box;
}
.filter-btn:hover { background: #F5F5F5; }
.filter-btn.has-value { background: #1A1A18; color: #FFFFFF; }
.filter-btn.has-value:hover { background: #2A2A28; }

.filter-btn-label { pointer-events: none; }
.filter-btn-chevron {
  font-size: 8px;
  opacity: 0.6;
  pointer-events: none;
  flex-shrink: 0;
}

/* Hidden native select overlays entire button for click-to-open */
.filter-btn > select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
  font-size: 16px;
}
/* When active, pull the select back so the × button stays clickable */
.filter-btn.has-value > select { right: 22px; }

/* Per-filter clear × */
.filter-btn-clear {
  position: relative;
  z-index: 2;
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  pointer-events: all;
}
.filter-btn-clear:hover { color: #FFFFFF; }

/* Price button — inputs are interactive, no select overlay */
.filter-price-btn { gap: 3px; padding: 0 10px; cursor: default; }
.filter-price-btn:hover { background: #FFFFFF; }
.filter-price-btn.has-value:hover { background: #2A2A28; }

.filter-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  width: 38px;
  text-align: center;
  cursor: text;
  position: relative;
  z-index: 2;
}
.filter-num::placeholder { color: #AAAAAA; }
.filter-price-btn.has-value .filter-num::placeholder { color: rgba(255,255,255,0.45); }

.filter-price-sep {
  font-size: 10px;
  color: #AAAAAA;
  pointer-events: none;
  flex-shrink: 0;
}
.filter-price-btn.has-value .filter-price-sep { color: rgba(255,255,255,0.45); }

/* Sort button — never goes dark */
.filter-sort-btn.has-value { background: #FFFFFF; color: #1A1A18; }
.filter-sort-btn.has-value:hover { background: #F5F5F5; }

/* ── Grid header (eyebrow + count + clear) ───────────────────── */
.grid-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.grid-head .section-eyebrow { margin-bottom: 0; }
.grid-head-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.filter-result-count {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #6B6B68;
  white-space: nowrap;
}
.filter-clear-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1.5px solid #1A1A18;
  background: transparent;
  color: #1A1A18;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.12s, color 0.12s;
}
.filter-clear-btn:hover { background: #1A1A18; color: #fff; }

@media (max-width: 768px) {
  .nav-filter-bar { padding: 0 20px; }
  .filter-bar { gap: 6px; padding: 8px 0; }
  .filter-btn { height: 28px; padding: 0 9px; font-size: 10px; }
  .filter-num { width: 34px; }
}

@media (max-width: 640px) {
  /* Stack tabs row + filter row vertically so neither can expand the body width.
     Each row scrolls independently; flex-shrink: 0 on category-nav is safe in
     column layout because width comes from the parent (100%), not content. */
  .nav-filter-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    overflow-x: hidden;
  }
  .nav-filter-sep { display: none; }
  .category-nav { padding: 0 20px; }
  .filter-bar { padding: 8px 20px; border-top: 1px solid #eee; }
}

