.development-note {
  display: flex;
  margin-top: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255,255,255,.018);
  font-size: .78rem;
}
.development-note strong { color: var(--text-soft); font-weight: 650; }
.footer-note { display: block; max-width: 220px; margin-top: 2px; color: var(--muted-2); font-size: .72rem; line-height: 1.55; }
.store-wip-panel { position: relative; overflow: hidden; }
.store-wip-panel::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(141,255,103,.07), transparent 70%);
  pointer-events: none;
}

/* Shared Opti logo */
.hero-emblem {
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-emblem img {
  width: 235%;
  height: 235%;
  max-width: none;
  object-fit: contain;
  mix-blend-mode: screen;
}

/* Store */
.store-page { background: #090a09; }
.store-header { background: rgba(9,10,9,.94); }
.store-nav-account { display: flex; align-items: center; gap: 9px; }
.store-nav-account #store-account-actions { display: flex; align-items: center; gap: 8px; }
.store-nav-account .button-primary,
.store-nav-account .button-secondary { min-height: 38px; padding-inline: 14px; }
.store-user-chip {
  max-width: 170px;
  overflow: hidden;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text-soft);
  background: rgba(255,255,255,.022);
  font-size: .72rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.button-disabled { opacity: .5; pointer-events: none; cursor: not-allowed; }

.store-simple-main {
  min-height: calc(100vh - 160px);
  padding: calc(var(--nav-height) + 58px) 0 72px;
}
.store-simple-container { max-width: 980px; }
.store-simple-head {
  padding: 52px 0 42px;
  text-align: center;
}
.store-simple-head .eyebrow { justify-content: center; }
.store-simple-head h1 {
  margin: 13px 0 0;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: .95;
  letter-spacing: -.065em;
}
.store-simple-head > p:not(.store-message) {
  margin: 15px auto 0;
  color: var(--muted);
  font-size: .96rem;
}
.store-account-line {
  display: inline-flex;
  margin-top: 20px;
  align-items: center;
  gap: 8px;
  color: var(--muted-2);
  font-size: .72rem;
}
.store-account-line strong { color: var(--text-soft); font-weight: 650; }
.store-account-line strong::after { margin-left: 8px; content: "·"; color: #465045; }
.store-message { min-height: 18px; margin: 9px 0 0; color: var(--muted-2); font-size: .7rem; }
.store-message.error { color: #ff9696; }

.store-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.store-product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #111311;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.store-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(141,255,103,.16);
  background: #121512;
}
.store-product-art {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1.08;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    #0c0e0c;
  background-size: 34px 34px;
}
.store-product-art::before {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(141,255,103,.08), transparent 68%);
}
.store-product-art img,
.wings-art img,
.bandana-art img,
.more-art img {
  position: relative;
  z-index: 1;
  width: 80%;
  max-width: none;
  opacity: 1;
  transform: none;
  filter: none;
  mix-blend-mode: screen;
}
.store-product-info {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
}
.store-product-info strong { font-size: .78rem; }
.store-product-info span { color: var(--muted-2); font-size: .67rem; font-weight: 650; }
.store-wip-note {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--muted-2);
  font-size: .73rem;
  line-height: 1.65;
  text-align: center;
}

.store-owned {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.store-owned h2 { margin: 0; font-size: 1rem; }
.store-owned-list { display: flex; margin-top: 12px; gap: 8px; flex-wrap: wrap; }
.store-owned-pill {
  padding: 7px 10px;
  border: 1px solid var(--line-green);
  border-radius: 999px;
  color: var(--green-2);
  background: rgba(141,255,103,.035);
  font-size: .68rem;
  font-weight: 700;
}

.store-simple-footer { border-top: 1px solid var(--line); }
.store-simple-footer-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted-2);
  font-size: .69rem;
}
.store-simple-footer-inner > div { display: flex; gap: 18px; }
.store-simple-footer a { transition: color 150ms ease; }
.store-simple-footer a:hover { color: var(--text-soft); }

@media (max-width: 860px) {
  .development-note { align-items: flex-start; flex-direction: column; }
  .store-product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .store-nav-account .store-user-chip { display: none; }
}
@media (max-width: 620px) {
  .store-simple-main { padding-top: calc(var(--nav-height) + 34px); }
  .store-simple-head { padding: 34px 0 28px; }
  .store-product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .store-product-info { min-height: 52px; padding: 0 11px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 2px; }
  .store-simple-footer-inner { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 22px; }
  .store-simple-footer-inner > div { flex-wrap: wrap; }
}
