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

:root {
  --ink: #08080f;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f0f0f0;
  --muted: rgba(255, 255, 255, 0.5);
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --amber: #e8a838;
  --amber-dark: #cc8f2e;
  --teal: #2a9d8f;
  --green: #4caf50;
  --red: #ef5350;
}

body {
  min-height: 100vh;
  font-family: Poppins, Arial, sans-serif;
  background: radial-gradient(ellipse at center, #2a1050 0%, #1a0838 40%, #0d0520 100%);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px);
  pointer-events: none;
  z-index: 0;
}

main {
  flex: 1;
}

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

img {
  display: block;
  max-width: 100%;
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 0 48px;
  background: radial-gradient(ellipse at center, rgba(42,16,80,0.94) 0%, rgba(26,8,56,0.94) 40%, rgba(13,5,32,0.94) 100%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.logo span {
  color: var(--primary);
}

.logo {
  font-family: Bungee, Poppins, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-actions-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-links a,
.nav-dropdown > a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active,
.nav-dropdown > a:hover {
  color: var(--amber);
}

.nav-dropdown {
  position: relative;
  list-style: none;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  padding: 12px 0 0;
  background: transparent;
  border: 0;
  z-index: 30;
  list-style: none;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown-menu-inner {
  background: #0f1e3d;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu li {
  margin: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0;
}

.nav-dropdown-menu a:hover {
  color: var(--amber);
  background: rgba(255, 255, 255, 0.05);
}

.nav-actions {
  display: contents;
}

.nav-actions .nav-text-link {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 10px 4px;
}

.nav-actions .nav-text-link:hover,
.nav-actions .nav-text-link.active {
  color: var(--amber);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.btn-yellow {
  color: #0b0b18;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.btn-outline:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-danger {
  background: rgba(239, 83, 80, 0.16);
  color: #ffb8b6;
  border: 1px solid rgba(239, 83, 80, 0.35);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.btn-sm {
  min-height: 32px;
  padding: 6px 14px;
  font-size: 0.78rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 520px);
  align-items: center;
  gap: 48px;
  padding: 64px 48px 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -140px 8% auto;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18), transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -120px auto auto -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.1), transparent 60%);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label {
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.05;
}

.display-title,
.section-title,
.page-title {
  font-family: Bungee, Poppins, sans-serif;
  letter-spacing: 0;
}

.display-title {
  max-width: 780px;
  margin: 16px 0;
  font-size: clamp(3rem, 8vw, 7rem);
}

.display-title span,
.section-title span {
  color: var(--primary);
}

.hero-copy {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stack {
  position: relative;
  min-height: 500px;
  opacity: 0;
  transition: opacity 0.2s;
}

.hero-card {
  position: absolute;
  width: min(46vw, 230px);
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

.hero-card:nth-child(1) {
  left: 0;
  top: 20px;
  transform: rotate(-9deg);
}

.hero-card:nth-child(2) {
  left: 170px;
  top: -12px;
  transform: rotate(5deg);
}

.hero-card:nth-child(3) {
  left: 80px;
  top: 160px;
  transform: rotate(12deg);
}

.section {
  padding: 78px 48px;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,194,0,0.2), transparent);
}

.pokeball {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(to bottom, var(--red) 50%, #fff 50%);
  border: 3px solid #333;
  position: relative;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

.pokeball::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #333;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  width: 100%;
  min-height: 50vh;
}

[data-sets-loading] {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  width: 100%;
  margin: 0;
}

[data-sets-loading] .loading-wrap {
  min-height: auto;
  padding: 0;
}

.section-header,
.page-header {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-title,
.page-title {
  margin-top: 8px;
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.section-sub,
.page-sub {
  max-width: 640px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.75;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto;
}

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  opacity: 0.3;
}

.product-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
  position: relative;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(245,194,0,0.04), transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover::after {
  opacity: 1;
}

.product-card .product-info {
  flex: 1;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 168, 56, 0.55);
  box-shadow: 0 0 24px rgba(124,58,237,0.3), 0 18px 45px rgba(0, 0, 0, 0.24);
}

.product-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 18px;
  background: linear-gradient(135deg, #10081a, #1a0d2d);
  overflow: hidden;
}

.product-image::before {
  content: "";
  position: absolute;
  inset: auto -30% -30% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.1), transparent 60%);
  pointer-events: none;
}

.product-image img {
  max-height: 245px;
  object-fit: contain;
}

.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.tag-blue {
  background: var(--teal);
}

.tag-yellow {
  color: var(--ink);
  background: var(--amber);
}

.tag-green {
  background: var(--green);
}

.product-info {
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.product-info .product-footer {
  margin-top: auto;
}

.detail-panel .product-footer {
  justify-content: flex-end;
}

.product-name {
  font-weight: 900;
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
}

.product-image .status-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.detail-image .status-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
}

.status-pre {
  color: var(--ink);
  background: var(--amber);
  border-color: rgba(15, 30, 61, 0.2);
}

.status-stock {
  color: #d7ffe0;
  background: rgba(76, 175, 80, 0.88);
  border-color: rgba(255, 255, 255, 0.18);
}

.status-low {
  color: #fff4d6;
  background: rgba(255, 152, 0, 0.88);
  border-color: rgba(255, 255, 255, 0.18);
}

.status-sold {
  color: #ffd5d4;
  background: rgba(183, 28, 28, 0.88);
  border-color: rgba(255, 255, 255, 0.18);
}

.product-meta,
.muted {
  color: var(--muted);
}

.product-meta {
  min-height: 46px;
  margin-top: 6px;
  font-size: 0.82rem;
  line-height: 1.55;
}

.product-footer,
.cart-row,
.order-row,
.admin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.price {
  color: var(--amber);
  font-size: 1.1rem;
  font-weight: 900;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
}

.product-footer .btn-card-action {
  width: 130px;
}

.product-footer .btn-card-action:disabled {
  background: #555;
  border-color: #555;
  color: #aaa;
  cursor: not-allowed;
  pointer-events: none;
}

.featured-expansion {
  padding: 0 48px 60px;
  position: relative;
}

.featured-expansion::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,194,0,0.04), transparent 60%);
  pointer-events: none;
}

.exp-banner {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 480px);
  align-items: center;
  gap: 40px;
  padding: 60px 48px;
  margin: 0 auto;
  max-width: 1160px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0e071a 0%, #16082a 30%, #1f0d35 60%, #0d0716 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.exp-banner::before {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 60, 200, 0.15), transparent 65%);
  pointer-events: none;
}

.exp-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.exp-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.exp-title {
  font-family: Bungee, Poppins, sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.1;
}

.exp-desc {
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

.exp-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}

.exp-release {
  color: var(--muted);
  font-size: 0.82rem;
}

.exp-trailer-wrap {
  position: relative;
  z-index: 1;
}

.exp-trailer {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.exp-trailer img {
  display: block;
  width: 100%;
  height: auto;
}

.exp-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.exp-play-btn::after {
  content: "";
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='30' height='30'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/30px no-repeat;
  transition: transform 0.2s, background 0.2s;
}

.exp-trailer:hover .exp-play-btn::after {
  transform: scale(1.12);
  background: rgba(255, 0, 0, 0.85) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='30' height='30'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/30px no-repeat;
}

.exp-section {
  max-width: 1160px;
  margin: 48px auto 64px;
  text-align: center;
}

.exp-section-title {
  font-family: Bungee, Poppins, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 8px 0;
}

.exp-section-title span {
  color: var(--amber);
}

.exp-section-sub {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.exp-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}

.exp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  transition: transform 0.2s, border-color 0.2s;
  text-align: center;
}

.exp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 168, 56, 0.45);
}

.exp-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  margin-bottom: 10px;
}

.exp-card-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.exp-card-name {
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.3;
}

.exp-card-price {
  color: var(--amber);
  font-weight: 900;
  margin-top: 4px;
}

.band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 54px 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,30,61,0.1), transparent 60%);
  pointer-events: none;
}

.band::after {
  content: "";
  position: absolute;
  inset: -80px auto auto -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,30,61,0.08), transparent 60%);
  pointer-events: none;
}

.band h2 {
  font-family: Bungee, Poppins, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.band p {
  max-width: 620px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.page-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 84px;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  align-items: center;
}

.toolbar .field {
  flex: 1 1 180px;
  min-width: 130px;
}

.toolbar .select {
  flex: 0 0 auto;
  min-width: 110px;
  width: auto;
}

.shop-breadcrumb {
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.field,
.textarea,
.select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 11px 13px;
  outline: 0;
}

select.select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 14px center;
  padding: 11px 40px 11px 16px;
}
select.select option {
  background: transparent;
  color: #fff;
}
.select.select-readonly {
  background: rgba(255, 255, 255, 0.08);
  padding: 11px 16px;
  cursor: default;
}

.field::placeholder,
.textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.select option {
  color: #111;
}

.form-card,
.detail-layout,
.checkout-layout,
.admin-layout {
  display: grid;
}

.form-card {
  width: min(460px, 100%);
  margin: 0 auto;
  padding: 28px;
}

.form-card form,
.checkout-form {
  display: grid;
  gap: 14px;
}

.form-card h1 {
  font-family: Bungee, Poppins, sans-serif;
  font-size: 2rem;
}

.form-card a {
  color: var(--amber);
  font-weight: 700;
  text-decoration: underline;
}

.form-card a:hover {
  color: var(--amber-dark);
}

.form-help {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-top: 18px;
}

.form-help:first-of-type {
  margin-top: 0;
  margin-bottom: 18px;
}

.detail-layout {
  grid-template-columns: minmax(280px, 430px) 1fr;
  align-items: start;
}

.detail-image {
  position: relative;
  padding: 26px;
  background: linear-gradient(135deg, #113462, #40216a);
}

.detail-image img {
  max-height: 560px;
  margin: 0 auto;
  object-fit: contain;
}

.detail-panel,
.summary-panel,
.admin-panel {
  padding: 24px;
}

.detail-panel h1 {
  margin: 8px 0 12px;
  font-family: Bungee, Poppins, sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.fact {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.fact strong {
  display: block;
  margin-top: 4px;
}

.detail-countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(232, 168, 56, 0.12);
  border: 1px solid rgba(232, 168, 56, 0.25);
  font-size: 0.85rem;
  font-weight: 700;
  margin: 4px 0 14px;
}

.detail-countdown .countdown-num {
  color: var(--primary);
  font-size: 1rem;
}

.detail-eta {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.type-toggle {
  display: flex;
  gap: 8px;
  margin: 14px 0;
}

.type-btn {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: 0.2s;
}

.type-btn:hover {
  border-color: var(--primary);
}

.type-btn.active {
  background: var(--primary);
  color: #111;
  border-color: var(--primary);
}

.type-btn small {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 2px;
}

.type-btn.active small {
  opacity: 1;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 14px 0;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.qty-btn:first-child {
  border-radius: 8px 0 0 8px;
}

.qty-btn:last-child {
  border-radius: 0 8px 8px 0;
}

.qty-btn:hover {
  background: var(--panel-strong);
  border-color: var(--primary);
}

.qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.qty-input {
  width: 64px;
  height: 44px;
  border: 1.5px solid var(--line);
  border-left: none;
  border-right: none;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  outline: none;
}

.detail-pricing {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 14px 0;
}

.detail-pricing .price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-pricing .price-line .label {
  color: var(--muted);
  font-size: 0.85rem;
}

.detail-pricing .price-line .value {
  font-weight: 800;
  font-size: 1.1rem;
}

.detail-pricing .price-line.dp .value {
  color: var(--primary);
}

.cart-list,
.orders-list,
.admin-list {
  display: grid;
  gap: 14px;
}

.cart-row,
.order-row,
.admin-row {
  padding: 16px;
}

.cart-row img {
  width: 68px;
  height: 86px;
  object-fit: contain;
}

.cart-main {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty-controls .btn {
  width: 32px;
  height: 32px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  border-radius: 6px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
}

.cart-qty-controls .btn:hover {
  background: var(--line);
}

.cart-qty-num {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
}

.cart-qty-input {
  width: 56px;
  height: 32px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--text);
  -moz-appearance: textfield;
}

.cart-qty-input::-webkit-inner-spin-button,
.cart-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: start;
  gap: 32px;
}

.admin-layout {
  gap: 24px;
  grid-template-columns: 1fr 340px;
  align-items: start;
}

.checkout-main {
  display: grid;
  gap: 24px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.summary-line.total {
  color: var(--amber);
  border-bottom: 0;
  font-size: 1.2rem;
  font-weight: 900;
}

.status {
  display: inline-flex;
  min-width: 96px;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(232, 168, 56, 0.16);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lookup-panel {
  max-width: 760px;
  margin: 0 auto 24px;
  padding: 20px;
}

.account-orders h2,
.lookup-panel h2 {
  margin-bottom: 8px;
}

.lookup-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.lookup-result {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.qr-box {
  display: grid;
  place-items: center;
  width: min(100%, 260px);
  margin: 20px auto 0;
  padding: 12px;
  border: 2px dashed rgba(15, 30, 61, 0.42);
  border-radius: 8px;
  background: #f7f7f7;
}

.gcash-qr {
  display: block;
  width: min(100%, 236px);
  height: auto;
  border-radius: 4px;
}

.allocation-panel {
  max-width: 1160px;
  margin: 0 auto 28px;
  padding: 24px;
}

.allocation-panel h2 {
  font-family: Bungee, Poppins, sans-serif;
  font-size: 1.6rem;
  margin: 8px 0;
}

.alloc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 18px;
}

.alloc-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.alloc-step {
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.alloc-field .select,
.alloc-field .field {
  width: 100%;
  box-sizing: border-box;
}

.alloc-toggle-row {
  display: flex;
  gap: 8px;
}

.alloc-mode-btn {
  flex: 1;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}

.alloc-mode-btn.active {
  background: var(--primary);
  color: #111;
  border-color: var(--primary);
}

.alloc-right {
  display: flex;
  flex-direction: column;
}

.alloc-results-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.alloc-result {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.alloc-result span {
  font-size: 0.85rem;
  color: var(--muted);
}

.alloc-result strong {
  font-size: 1.5rem;
  color: var(--text);
}

.alloc-dp-box strong {
  color: var(--primary);
  font-size: 1.8rem;
}

.alloc-result + .alloc-result {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.product-muted {
  opacity: 0.45;
  filter: grayscale(0.8);
}

.product-muted .btn-primary,
.product-muted .btn {
  background: #555;
  border-color: #555;
  color: #aaa;
  cursor: not-allowed;
  pointer-events: none;
}

.countdown-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background: var(--primary);
  color: #111;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.badge-closed {
  background: #555;
  color: #ccc;
}

.product-image .badge-soldout {
  bottom: 14px;
  top: auto;
  background: #555;
  color: #ccc;
  font-size: 0.55rem;
  padding: 3px 8px;
}

.timer-text {
  color: var(--primary);
  font-weight: 700;
}

.alloc-stat.highlight {
  border-color: rgba(232, 168, 56, 0.45);
  background: rgba(232, 168, 56, 0.08);
}

.alloc-note {
  margin-top: 14px;
}

.receipt-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, #0e071a, #16082a);
}

.receipt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.receipt-logo {
  font-family: Bungee, Poppins, sans-serif;
  font-size: 1.1rem;
  color: #fff;
}

.receipt-logo span {
  color: var(--amber);
}

.receipt-badge {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
}

.receipt-body {
  padding: 24px;
}

.receipt-order-number {
  font-family: Bungee, Poppins, sans-serif;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.receipt-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--line), rgba(124,58,237,0.2), var(--line));
  margin: 12px 0;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.receipt-label {
  color: var(--muted);
  font-size: 0.85rem;
}

.receipt-value {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}

.receipt-items {
  padding: 4px 0;
}

.receipt-item {
  padding: 3px 0;
  font-size: 0.88rem;
  color: var(--text);
}

.receipt-item span::before {
  content: "\2022";
  color: var(--primary);
  margin-right: 8px;
}

.receipt-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Bungee, Poppins, sans-serif;
  font-size: 1.3rem;
  color: var(--amber);
  padding: 4px 0;
}

.receipt-qr-section {
  padding: 0 24px 20px;
  text-align: center;
}

.receipt-pay-instruction {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 10px;
  line-height: 1.5;
}

.receipt-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.15);
}

.footer-location {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.stat {
  padding: 18px;
}

.stat strong {
  display: block;
  margin-top: 8px;
  color: var(--amber);
  font-size: 1.7rem;
}

.site-footer {
  padding: 44px 48px;
  background: #070e1f;
  border-top: 1px solid var(--line);
}

.site-footer-compact {
  padding: 22px 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 26px;
}

.site-footer h4 {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-footer li {
  margin: 8px 0;
  list-style: none;
}

.site-footer a,
.site-footer p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid > .footer-bottom {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  grid-column: -2 / -1;
  align-self: start;
}

.empty-state {
  padding: 28px;
  text-align: center;
}

/* ─── Sets / Gallery ─── */

.sets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
}

.set-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(15, 30, 61, 0.9), rgba(26, 26, 62, 0.7));
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}

.set-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 168, 56, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.set-card-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--primary);
  color: #111;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.set-card-body {
  flex: 1;
  margin: 14px 0;
}

.set-card-name {
  font-family: Bungee, Poppins, sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.set-card-count {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 4px;
}

.set-card-desc {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.set-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.set-card-date {
  color: var(--muted);
  font-size: 0.78rem;
}

.set-card-link {
  color: var(--amber);
  font-weight: 700;
  font-size: 0.82rem;
}

/* ─── Gallery Page ─── */

.gallery-page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 48px 64px;
}

.gallery-banner {
  text-align: center;
  padding: 48px 32px 36px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0e071a 0%, #16082a 30%, #1f0d35 60%, #0d0716 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.gallery-banner::before {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 65%);
  pointer-events: none;
}

.gallery-banner-inner {
  position: relative;
  z-index: 1;
}

.gallery-badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gallery-title {
  font-family: Bungee, Poppins, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 12px 0;
}

.gallery-desc {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 0.95rem;
}

.gallery-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.85rem;
}

.gallery-trailer {
  display: block;
  max-width: 520px;
  margin: 24px auto 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.gallery-trailer img {
  width: 100%;
  display: block;
}

.gallery-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-play-btn::after {
  content: "";
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='28' height='28'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/28px no-repeat;
  transition: transform 0.2s, background 0.2s;
}

.gallery-trailer:hover .gallery-play-btn::after {
  transform: scale(1.12);
  background: rgba(255, 0, 0, 0.85) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='28' height='28'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/28px no-repeat;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.gallery-filters {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 3px;
  flex: 1;
  min-width: 280px;
}

.gallery-filter {
  flex: 1;
  padding: 8px 10px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  transition: 0.2s;
  text-align: center;
}

.gallery-filter:hover {
  color: var(--text);
}

.gallery-filter.active {
  background: var(--amber);
  color: #111;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 8px;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
  text-align: left;
  font: inherit;
  color: inherit;
  width: 100%;
}

.gallery-card:focus {
  outline: none;
}

.gallery-card:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 168, 56, 0.4);
}

.gallery-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  background: linear-gradient(135deg, #133f71, #34236f);
  border-radius: 4px;
  overflow: hidden;
}

.gallery-card-img img {
  max-height: 160px;
  object-fit: contain;
}

.gallery-card-info {
  padding: 8px 4px 4px;
}

.gallery-card-name {
  font-weight: 700;
  font-size: 0.78rem;
  display: block;
  line-height: 1.3;
}

.gallery-card-number {
  color: var(--muted);
  font-size: 0.7rem;
  display: block;
  margin-top: 2px;
}

.gallery-nav-back {
  text-align: center;
  margin-top: 32px;
}

/* ─── Card Modal ─── */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.modal-content {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  padding: 28px;
  border-radius: 16px;
  background: #0f1e3d;
  border: 1px solid var(--line);
  overflow-y: auto;
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 8px;
  z-index: 2;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text);
}

.modal-card-image {
  flex: 0 0 260px;
  max-width: 260px;
}

.modal-card-image img {
  width: 100%;
  border-radius: 8px;
}

.modal-card-info {
  flex: 1;
  min-width: 0;
}

.modal-card-info h2 {
  font-family: Bungee, Poppins, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

@media (max-width: 880px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 20px;
  }

  .nav-right {
    justify-content: flex-start;
    width: 100%;
  }

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

  .nav-dropdown-menu {
    left: 0;
    transform: none;
  }

  .hero,
  .detail-layout,
  .checkout-layout,
  .admin-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 48px 20px 60px;
  }

  .hero-stack {
    display: none;
  }

  .section,
  .band,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .toolbar {
    grid-template-columns: 1fr;
  }

  .band,
  .footer-bottom,
  .cart-row,
  .order-row,
  .admin-row,
  .lookup-form {
    align-items: flex-start;
    flex-direction: column;
  }

  .lookup-form {
    display: flex;
  }

  .exp-banner {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  .exp-trailer-wrap {
    order: -1;
  }

  .featured-expansion {
    padding: 0 20px 40px;
  }

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

  .admin-stat-grid,
  .facts,
  .allocation-form,
  .alloc-grid {
    grid-template-columns: 1fr;
  }

  .gallery-page {
    padding: 24px 20px 48px;
  }

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

  .modal-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .modal-card-image {
    flex: none;
    max-width: 200px;
  }

  .gallery-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-filters {
    min-width: 0;
  }

  .gallery-search {
    max-width: 100%;
  }

  .sets-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Animated Gradient Text ─── */

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.display-title {
  background: linear-gradient(135deg, var(--primary) 0%, #a78bfa 25%, var(--amber) 50%, #c084fc 75%, var(--primary) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 5s ease-in-out infinite;
}

/* ─── Hero Starfield ─── */

.hero-starfield {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

@keyframes star-drift {
  0% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-12px) translateX(6px); }
  50% { transform: translateY(4px) translateX(-8px); }
  75% { transform: translateY(-6px) translateX(10px); }
  100% { transform: translateY(0) translateX(0); }
}

.hero-star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  animation: star-drift var(--dur, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0.5;
}

/* ─── Set Cards ─── */



/* ─── Band Shimmer ─── */

.band-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

@keyframes shimmer-sweep {
  0% { transform: translateX(-100%) skewX(-20deg); }
  100% { transform: translateX(300%) skewX(-20deg); }
}

.band-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  width: 60%;
  animation: shimmer-sweep 4s ease-in-out infinite;
}

.toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  text-align: center;
  max-width: min(90vw, 420px);
  animation: toast-in 0.25s ease-out;
}
.toast-out {
  animation: toast-out 0.2s ease-in forwards;
}
.scroll-items {
  max-height:300px;
  overflow-y:auto;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.scroll-items::-webkit-scrollbar { display:none; }

@keyframes toast-in {
  from { opacity: 0; transform: translateY(-20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toast-out {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(-20px) scale(0.95); }
}


